diff --git a/.eslintrc.js b/.eslintrc.js index ae4c4cfdd2..cc55b4443c 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -54,6 +54,7 @@ module.exports = { required: 'id', allowChildren: false, }], + 'no-param-reassign': [2, { props: false }], }, env: { jest: true, diff --git a/.github/workflows/analyze-dependents.yml b/.github/workflows/analyze-dependents.yml index 53e9921226..6839a0ec20 100644 --- a/.github/workflows/analyze-dependents.yml +++ b/.github/workflows/analyze-dependents.yml @@ -191,6 +191,16 @@ jobs: with: repository: edx/studio-frontend path: dependent-usage-analyzer/.projects/studio-frontend + - name: Checkout edx/frontend-app-communications + uses: actions/checkout@v2 + with: + repository: edx/frontend-app-communications + path: dependent-usage-analyzer/.projects/frontend-app-communications + - name: Checkout edx/frontend-app-learner-dashboard + uses: actions/checkout@v2 + with: + repository: edx/frontend-app-learner-dashboard + path: dependent-usage-analyzer/.projects/frontend-app-learner-dashboard - name: Verify checkouts working-directory: dependent-usage-analyzer run: ls -la .projects diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index cfca2cafe7..bf0ff00660 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,9 @@ jobs: run: | npm ci npm run generate-component-install + npm run doc-site-install + - name: Check Types + run: npm run type-check - name: Lint run: npm run lint - name: Test diff --git a/.github/workflows/manual-publish.yml b/.github/workflows/manual-publish.yml new file mode 100644 index 0000000000..f6863d4333 --- /dev/null +++ b/.github/workflows/manual-publish.yml @@ -0,0 +1,40 @@ +name: Manual Publish +on: [workflow_dispatch] +jobs: + release: + name: Manual Publish + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v2 + with: + fetch-depth: 0 + - name: Setup Node.js + uses: actions/setup-node@v2 + with: + node-version: 16 + - name: Install dependencies + run: npm ci + - name: Validate package-lock.json changes + run: make validate-no-uncommitted-package-lock-changes + - name: Lint + run: npm run lint + - name: Test + run: npm run test + - name: i18n_extract + run: npm run i18n_extract + - name: Coverage + uses: codecov/codecov-action@v2 + - name: Build + run: npm run build + # NPM expects to be authenticated for publishing. This step will fail CI if NPM is not authenticated + - name: Check NPM authentication + run: | + echo "//registry.npmjs.org/:_authToken=${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }}" >> .npmrc + npm whoami + - name: Release + env: + GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GITHUB_TOKEN }} + NPM_TOKEN: ${{ secrets.SEMANTIC_RELEASE_NPM_TOKEN }} + # `npm publish` relies on version specified in package.json file + run: npm publish --tag old-version diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index bc318e214b..058eac39f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,9 +1,12 @@ name: Release CI on: + workflow_dispatch: push: branches: - master + - alpha + - beta jobs: release: name: Release @@ -22,6 +25,7 @@ jobs: run: | npm ci npm run generate-component-install + npm run doc-site-install - name: Lint run: npm run lint - name: Test diff --git a/.github/workflows/update-browserslist-db.yml b/.github/workflows/update-browserslist-db.yml new file mode 100644 index 0000000000..db4346efe0 --- /dev/null +++ b/.github/workflows/update-browserslist-db.yml @@ -0,0 +1,12 @@ +name: Update Browserslist DB +on: + schedule: + - cron: '0 0 * * 1' + workflow_dispatch: + +jobs: + update-browserslist: + uses: openedx/.github/.github/workflows/update-browserslist-db.yml@master + + secrets: + requirements_bot_github_token: ${{ secrets.requirements_bot_github_token }} diff --git a/.releaserc b/.releaserc index 2c101b5028..50eab9763c 100644 --- a/.releaserc +++ b/.releaserc @@ -1,5 +1,10 @@ { - "branches": ["master", "next"], + "branches": [ + "master", + "next", + { "name": "alpha", "prerelease": true }, + { "name": "beta", "prerelease": true } + ], "plugins": [ "@semantic-release/commit-analyzer", "@semantic-release/release-notes-generator", diff --git a/.stylelintrc.json b/.stylelintrc.json index 5dafbb25a8..6abc524964 100644 --- a/.stylelintrc.json +++ b/.stylelintrc.json @@ -31,6 +31,9 @@ "ignoreProperties": ["xs", "sm", "md", "lg", "xl", "xxl"] }], "alpha-value-notation": "number", - "color-function-notation": "legacy" + "color-function-notation": "legacy", + "value-keyword-case": ["lower", { + "ignoreProperties": ["/font-family/"] + }] } } diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000000..49e27eda3f --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,13 @@ +# Contributing + +## Open edX + +Please refer to the ["How to Contribute"](https://openedx.org/r/how-to-contribute) documentation and [Code of Conduct](https://openedx.org/code-of-conduct/) from Open edX for general information on contributing to the Open edX project. + +## Paragon + +The Paragon Working Group accepts bug fixes, new features, documentation, and security patches. You may find open issues [here](https://github.com/openedx/paragon/issues) or by visiting the Paragon Working Group [project board](https://github.com/orgs/openedx/projects/43/views/15). Issues with the "help wanted" or "byte-size" labels may be good candidates to pick up. + +If you'd like to contribute a new component or update an existing component, please consider reaching out to the Paragon Working Group via the channels [described in the README](./README.md#getting-help) to propose your changes. + +The Paragon Working Group looks forward to your contributions! 💎 diff --git a/Makefile b/Makefile index 2989e4a9d3..ef1fd811c4 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ push_translations: # Pulls translations from Transifex. pull_translations: | requirements - tx pull -f --mode reviewed --languages=$(transifex_langs) + tx pull -t -f --mode reviewed --languages=$(transifex_langs) # compile files with translated strings to KEYVALUEJSON format which react-intl understands... npm run-script i18n_compile diff --git a/README.md b/README.md index f4e5c15200..3ba1851bbb 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,19 @@ # Paragon -[![npm_version](https://img.shields.io/npm/v/@edx/paragon.svg)](@edx/paragon) [![NPM downloads](https://img.shields.io/npm/dw/@edx/paragon)](https://www.npmjs.com/package/@edx/paragon) [![Build Status](https://github.com/openedx/paragon/actions/workflows/release.yml/badge.svg)](https://github.com/openedx/paragon/actions/workflows/release.yml) [![codecov](https://codecov.io/gh/edx/paragon/branch/master/graph/badge.svg?token=x1tZmNduy9)](https://codecov.io/gh/edx/paragon) +[![Build Status](https://github.com/openedx/paragon/actions/workflows/release.yml/badge.svg)](https://github.com/openedx/paragon/actions/workflows/release.yml) +[![npm_version](https://img.shields.io/npm/v/@edx/paragon.svg)](@edx/paragon) +![status](https://img.shields.io/badge/status-Maintained-brightgreen) +![license](https://img.shields.io/github/license/openedx/paragon.svg) +[![codecov](https://codecov.io/gh/edx/paragon/branch/master/graph/badge.svg?token=x1tZmNduy9)](https://codecov.io/gh/edx/paragon) +[![NPM downloads](https://img.shields.io/npm/dw/@edx/paragon)](https://www.npmjs.com/package/@edx/paragon) -Paragon is a pattern library containing [accessible](https://www.w3.org/WAI/standards-guidelines/aria/) React components and a SCSS foundation built on Twitter Bootstrap. Paragon is developed for the Open edX platform. +## Purpose -Documentation lives at https://paragon-openedx.netlify.app/. +Paragon is a pattern library containing [accessible](https://www.w3.org/WAI/standards-guidelines/aria/) React components and a SCSS foundation built on Twitter Bootstrap. Paragon is developed for the [Open edX](https://openedx.org/) platform. +Documentation lives at https://paragon-openedx.netlify.app/. -## Usage +## Getting Started ### React Components @@ -36,7 +42,9 @@ Usage for Open edX and others: @import '~@edx/paragon/scss/core/core.scss'; ``` -Usage on edx.org: +Usage on with `@edx/brand`: + +**index.scss** ``` @import '~@edx/brand/paragon/fonts.scss'; @@ -47,133 +55,20 @@ Usage on edx.org: Note that including fonts will affect performance. In some applications may choose not to load the custom font to keep it highly performant. -## Contributing & Development - -See the [code of conduct](https://github.com/openedx/.github/blob/master/CODE_OF_CONDUCT.md). - -#### 1. Start the documentation site development server - -The Paragon documentation site serves both as documentation and as a workbench to create your component within. To see your component in action, you need to run the documentation site locally. (Note you need to install dependencies both in the project root and the `www` directory) - -``` -npm run install-all -cd www -npm start -``` - -#### 2. Create new component - -To create new component run - -``` -npm run generate-component MyComponent -``` - -where `MyComponent` is your new component's name. - -This will create a directory in `/src/` that will contain templates for all necessary files to start developing the component: -``` -MyComponent -├── index.jsx -├── README.md -├── MyComponent.scss -├── _variables.scss -└── MyComponent.test.jsx -``` - -The script will also automatically export your component from Paragon. - -#### 3. Start developing +## Getting Help -`/src/MyComponent/index.jsx` is where your component lives, the file is created with the following template, edit it to implement your own component. +Please reach out to the Paragon Working Group (PWG): -``` jsx -import React from 'react'; -import PropTypes from 'prop-types'; -import classNames from 'classnames'; - -const MyComponent = React.forwardRef(({ className, children }, ref) => ( -
- {children} -
-)); +* Open edX Slack ([request an invite](https://openedx.org/slack)): [#wg-paragon](https://openedx.slack.com/archives/C02NR285KV4) +* [Github Issues](https://github.com/openedx/paragon/issues/new?template=blank-issue.md) +* [Weekly PWG Meeting](https://calendar.google.com/calendar/embed?src=c_v86shrnegshsqgp4fj2k94u7bc%40group.calendar.google.com&ctz=America%2FNew_York) -MyComponent.defaultProps = { - className: undefined, -}; +## Internationalization -MyComponent.propTypes = { - /** A class name to append to the base element. */ - className: PropTypes.string, - /** Specifies contents of the component. */ - children: PropTypes.node.isRequired, -}; - -export default MyComponent; - -``` - -#### 4. (Optional) Add styles to your component. - -If your component requires additional styling (which most likely is the case), edit created SCSS style sheet in your -component's directory `/src/MyComponent/MyComponent.scss` which by default contains an empty class for your component. - -If you wish to use SASS variables (which is the preferred way of styling the components since values can be -easily overridden and customized by the consumers of Paragon), add them in `/src/MyComponent/_variables.scss` (this file should contain all variables specific to your component). -This way the variables will also get automatically picked up by documentation site and displayed on your component's page. - -**Please note that you need to follow [Paragon's CSS styling conventions](docs/decisions/0012-css-styling-conventions).** +Paragon supports internationalization for its components out of the box with the support of [react-intl](https://formatjs.io/docs/react-intl/). You may view translated strings for each component on the documentation website by switching languages in the settings. -#### 5. Document you component +Due to Paragon's dependence on ``react-intl``, that means that your whole app needs to be wrapped in its provider, e.g.: -The documentation for you component lives in `src/MyComponent/README.md`. The documentation site scans this directory for markdown or mdx files to create pages. By default, the file is created with following content: - -```` md ---- -title: 'MyComponent' -type: 'component' -components: -- MyComponent -status: 'New' -designStatus: 'Done' -devStatus: 'Done' -notes: | - Something special about this component ---- - -Describe your component here and give usage examples. - -### Basic Usage - -```jsx live - - Hello! - -``` - -```` - -##### Some notes on the format above: - -The top part of the markdown file is known as `frontmatter`. This metadata with consumed by the documentation site to control the title of the page and the doc site navigation. -- **title** controls the page title of the generated page -- **components** is a list of react components by displayName. This usually matches the name you define the component as in code. (In our example so far it is MyComponent). Components added to this list will be scanned by react-docgen for code comments and a props api table will be rendered at the bottom of the page. -- **categories** is a list of categories where this page will appear the documentation site menu. -- **status**, **designStatus**, **devStatus**, and **notes** appear in the http://localhost:8000/status page. - -JSX code blocks in the markdown file can be made interactive with the live attribute. All paragon components and icons are in scope. (Note: the scope of this code block is controlled by `www/components/CodeBlock.jsx`). - -#### 6. Navigate to your component on the doc site and start building - -Visit the documentation at [http://localhost:8000](http://localhost:8000) and navigate to see your README.md powered page and workbench. Changes to the README.md file will auto refresh the page. - -### Internationalization - -Paragon supports internationalization for its components out of the box with the support of [react-intl](https://formatjs.io/docs/react-intl/). You can view translated strings for each component on the docs site after switching language on a settings tab. - -#### For consumers - -Since we are using ``react-intl`` that means that your whole app needs to be wrapped in its context, e.g. ```javascript import { IntlProvider } from 'react-intl'; import { messages as paragonMessages } from '@edx/paragon'; @@ -186,8 +81,7 @@ Since we are using ``react-intl`` that means that your whole app needs to be wra ) ``` -Note that if you are using ``@edx/frontend-platform``'s ``AppProvider`` component you don't need a separate context, -you would only need to add Paragon's messages like this +Note that if you are using ``@edx/frontend-platform``'s ``AppProvider`` component, you don't need a separate context as `IntlProvider` is already included; you would only need to add Paragon's i18n messages like this: ```javascript import { APP_READY, subscribe, initialize } from '@edx/frontend-platform'; @@ -217,7 +111,46 @@ you would only need to add Paragon's messages like this }); ``` -#### For developers +## Contributing + +Please refer to the ["How to Contribute"](https://openedx.org/r/how-to-contribute) documentation and [Code of Conduct](https://openedx.org/code-of-conduct/) from Open edX. + +The Paragon Working Group accepts bug fixes, new features, documentation, and security patches. You may find open issues [here](https://github.com/openedx/paragon/issues) or by visiting the Paragon Working Group [project board](https://github.com/orgs/openedx/projects/43/views/15). + +If you'd like to contribute a new component or update an existing component, please consider reaching out to the Paragon Working Group via the channels [described above](#getting-help) to propose your changes. + +The Paragon Working Group looks forward to your contributions! 💎 + +### Development + +#### Developing locally against a micro-frontend (MFE) + +If you want to test the changes with local MFE setup, you need to create a "module.config.js" file in your MFE's directory containing local module overrides. After that the webpack build for your application will automatically pick your local version of Paragon and use it. The example of module.config.js file looks like this (for more details about module.config.js, refer to the [frontend-build documentation](https://github.com/openedx/frontend-build#local-module-configuration-for-webpack).): + +```javascript +module.exports = { + /* + Modules you want to use from local source code. Adding a module here means that when + your MFE runs its build, it'll resolve the source from peer directories of the app. + + moduleName: the name you use to import code from the module. + dir: The relative path to the module's source code. + dist: The sub-directory of the source code where it puts its build artifact. Often "dist". + */ + localModules: [ + { moduleName: '@edx/paragon/scss/core', dir: '../src/paragon', dist: 'scss/core' }, + { moduleName: '@edx/paragon/icons', dir: '../src/paragon', dist: 'icons' }, + // Note that using dist: 'dist' will require you to run 'npm build' in Paragon + // to add local changes to the 'dist' directory, so that they can be picked up by the MFE. + // To avoid doing that you can use dist: 'src' to get any local changes hot reloaded on save in the MFE. + { moduleName: '@edx/paragon', dir: '../src/paragon', dist: 'dist' }, + ], +}; +``` + +Then, when importing Paragon's core SCSS in your MFE the import needs to begin with a tilde `~` so that path to your local Paragon repository gets resolved correctly: `@import "~@edx/paragon/scss/core";` + +#### Internationalization When developing a new component you should generally follow three rules: 1. The component should not have **any** hardcoded strings as it would be impossible for consumers to translate it @@ -301,32 +234,124 @@ When developing a new component you should generally follow three rules: }; ``` -### Developing locally against MFE +#### Adding a new component -If you want to test the changes with local MFE setup, you need to create a "module.config.js" file in your MFE's directory containing local module overrides. After that the webpack build for your application will automatically pick your local version of Paragon and use it. The example of module.config.js file looks like this (for more details about module.config.js, refer to the [frontend-build documentation](https://github.com/openedx/frontend-build#local-module-configuration-for-webpack).): +##### 1. Start the documentation site development server -```javascript -module.exports = { - /* - Modules you want to use from local source code. Adding a module here means that when - your MFE runs its build, it'll resolve the source from peer directories of the app. +The Paragon documentation site serves both as documentation and as a workbench to create your component within. To see your component in action, you need to run the documentation site locally. (Note you need to install dependencies both in the project root and the `www` directory) - moduleName: the name you use to import code from the module. - dir: The relative path to the module's source code. - dist: The sub-directory of the source code where it puts its build artifact. Often "dist". - */ - localModules: [ - { moduleName: '@edx/paragon/scss/core', dir: '../src/paragon', dist: 'scss/core' }, - { moduleName: '@edx/paragon/icons', dir: '../src/paragon', dist: 'icons' }, - // Note that using dist: 'dist' will require you to run 'npm build' in Paragon - // to add local changes to the 'dist' directory, so that they can be picked up by the MFE. - // To avoid doing that you can use dist: 'src' to get any local changes hot reloaded on save in the MFE. - { moduleName: '@edx/paragon', dir: '../src/paragon', dist: 'dist' }, - ], +``` +npm run install-all +cd www +npm start +``` + +##### 2. Create new component + +To create new component run + +``` +npm run generate-component MyComponent +``` + +where `MyComponent` is your new component's name. + +This will create a directory in `/src/` that will contain templates for all necessary files to start developing the component: +``` +MyComponent +├── index.jsx +├── README.md +├── MyComponent.scss +├── _variables.scss +└── MyComponent.test.jsx +``` + +The script will also automatically export your component from Paragon. + +##### 3. Start developing + +`/src/MyComponent/index.jsx` is where your component lives, the file is created with the following template, edit it to implement your own component. + +``` jsx +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +const MyComponent = React.forwardRef(({ className, children }, ref) => ( +
+ {children} +
+)); + +MyComponent.defaultProps = { + className: undefined, +}; + +MyComponent.propTypes = { + /** A class name to append to the base element. */ + className: PropTypes.string, + /** Specifies contents of the component. */ + children: PropTypes.node.isRequired, }; + +export default MyComponent; + ``` -Then, when importing Paragon's core SCSS in your MFE the import needs to begin with a tilde `~` so that path to your local Paragon repository gets resolved correctly: `@import "~@edx/paragon/scss/core";` +##### 4. (Optional) Add styles to your component. + +If your component requires additional styling (which most likely is the case), edit created SCSS style sheet in your +component's directory `/src/MyComponent/MyComponent.scss` which by default contains an empty class for your component. + +If you wish to use SASS variables (which is the preferred way of styling the components since values can be +easily overridden and customized by the consumers of Paragon), add them in `/src/MyComponent/_variables.scss` (this file should contain all variables specific to your component). +This way the variables will also get automatically picked up by documentation site and displayed on your component's page. + +**Please note that you need to follow [Paragon's CSS styling conventions](docs/decisions/0012-css-styling-conventions).** + +##### 5. Document your component + +The documentation for your component lives in `src/MyComponent/README.md`. The documentation site scans this directory for markdown or mdx files to create pages. By default, the file is created with following content: + +```` md +--- +title: 'MyComponent' +type: 'component' +components: +- MyComponent +status: 'New' +designStatus: 'Done' +devStatus: 'Done' +notes: | + Something special about this component +--- + +Describe your component here and give usage examples. + +### Basic Usage + +```jsx live + + Hello! + +``` + +```` + +Some notes on the format above: + +The top part of the markdown file is known as `frontmatter`. This metadata with consumed by the documentation site to control the title of the page and the doc site navigation. + +- **title** controls the page title of the generated page +- **components** is a list of react components by displayName. This usually matches the name you define the component as in code. (In our example so far it is MyComponent). Components added to this list will be scanned by react-docgen for code comments and a props api table will be rendered at the bottom of the page. +- **categories** is a list of categories where this page will appear the documentation site menu. +- **status**, **designStatus**, **devStatus**, and **notes** appear in the http://localhost:8000/status page. + +JSX code blocks in the markdown file can be made interactive with the live attribute. All paragon components and icons are in scope. (Note: the scope of this code block is controlled by `www/components/CodeBlock.jsx`). + +##### 6. Navigate to your component on the doc site and start building + +Visit the documentation at [http://localhost:8000](http://localhost:8000) and navigate to see your README.md powered page and workbench. Changes to the README.md file will auto refresh the page. ### ESLint @@ -433,3 +458,30 @@ BREAKING CHANGE: The graphiteWidth option has been removed. The default graphite Paragon is distributed on npm as ES6 modules. This means that webpack can use treeshaking on any Paragon components that a consuming app is not using, resulting in greatly reduced bundle sizes. To get treeshaking to work, your app may require some updates - most notably, Babel 7. See this PR for an example of the changes necessary to update an app to take advantage of treeshaking with Paragon: https://github.com/openedx/frontend-app-payment/pull/48 + +## People + +The assigned maintainers for this component and other project details may be found in [Backstage](https://backstage.openedx.org/catalog/default/component/paragon). Backstage pulls this data from the `catalog-info.yml` file in this repository. + +## Reporting Security Issues +Please do not report security issues in public. Please email security@edx.org. + +We tend to prioritize security issues which impact the published `@edx/paragon` NPM library more so than the [documentation website](https://paragon-openedx.netlify.app/) or example React application. + +## Design Tokens + +Design tokens are all the values needed to build and maintain a design system — spacing, color, typography, object styles, etc. They can represent anything defined by the design: color as an RGB value, opacity as a number, spacing as a REM value. They are used instead of hard-coded values to provide flexibility and uniformity across the application. + +### Design Tokens in Paragon + +Folder `tokens` in the project root contains split by categories `json` files. They consist of `JSON` objects that store information about the variable name and its value. Scripts that also reside in the `tokens` folder provide following facilities: build tokens into `css`, `scss` variables, map `scss` to `css` variables and replace old `scss` to new `css` variables. + +### Usage + +``` +cd tokens +npm install +npm run build-tokens # creates "build" folder with scss and css variables based on json tokens +npm run build-scss-to-css-map # creats scss-to-css-core.json and scss-to-css-components.json +npm run replace-variables -- --path ../src # this will replace all scss variables in the project with the new css variables based on the "scss-to-css-core.json" and "scss-to-css-components.json" files +``` diff --git a/catalog-info.yml b/catalog-info.yml new file mode 100644 index 0000000000..ab870f2316 --- /dev/null +++ b/catalog-info.yml @@ -0,0 +1,33 @@ +# This file records information about this repo. Its use is described in OEP-55: +# https://open-edx-proposals.readthedocs.io/en/latest/processes/oep-0055-proc-project-maintainers.html + +apiVersion: backstage.io/v1alpha1 +kind: Component +metadata: + name: 'paragon' + description: "The design system and React component library for Open edX" + links: + - url: "https://paragon-openedx.netlify.app" + title: "Documentation Website" + # Backstage uses the MaterialUI Icon Set. + # https://mui.com/material-ui/material-icons/ + # The value will be the name of the icon. + icon: "Web" + - url: "http://github.com/openedx/paragon" + title: "Source Code" + icon: "Code" + - url: "https://www.figma.com/file/eGmDp94FlqEr4iSqy1Uc1K/Paragon-2021" + title: "Figma" + icon: "Gesture" + - url: "https://github.com/openedx/paragon/releases" + title: "GitHub Releases" + icon: "Source" + - url: "https://www.npmjs.com/package/@edx/paragon" + title: "NPM" + icon: "Terminal" + annotations: + openedx.org/arch-interest-groups: "adamstankiewicz" +spec: + owner: group:paragon-working-group + type: 'library' + lifecycle: 'production' diff --git a/dependent-usage-analyzer/checkout-dependents.sh b/dependent-usage-analyzer/checkout-dependents.sh index cda8473dc8..09019b6252 100644 --- a/dependent-usage-analyzer/checkout-dependents.sh +++ b/dependent-usage-analyzer/checkout-dependents.sh @@ -38,4 +38,6 @@ mkdir .projects git clone git@github.com:openedx/frontend-template-application.git --depth 1 git clone git@github.com:edx/prospectus.git --depth 1 git clone git@github.com:openedx/studio-frontend.git --depth 1 + git clone git@github.com:edx/frontend-app-communications --depth 1 + git clone git@github.com:edx/frontend-app-learner-dashboard.git -- depth 1 ) diff --git a/dependent-usage-analyzer/package-lock.json b/dependent-usage-analyzer/package-lock.json index 618bde6337..a1a6d3cf50 100644 --- a/dependent-usage-analyzer/package-lock.json +++ b/dependent-usage-analyzer/package-lock.json @@ -123,9 +123,9 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "node_modules/minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dependencies": { "brace-expansion": "^1.1.7" }, @@ -254,9 +254,9 @@ "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "requires": { "brace-expansion": "^1.1.7" } diff --git a/dependent-usage.json b/dependent-usage.json index 4e7b4b1053..15b876d2c6 100644 --- a/dependent-usage.json +++ b/dependent-usage.json @@ -1,5 +1,5 @@ { - "lastModified": 1668780527249, + "lastModified": 1676470129254, "projectUsages": [ { "version": "19.19.1", @@ -25,17 +25,17 @@ }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 278, + "line": 283, "column": 14 }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 285, + "line": 290, "column": 12 }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 297, + "line": 302, "column": 12 }, { @@ -57,17 +57,17 @@ }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 305, + "line": 311, "column": 8 }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 314, + "line": 320, "column": 8 }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 326, + "line": 334, "column": 8 }, { @@ -94,17 +94,17 @@ }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 312, + "line": 318, "column": 10 }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 320, + "line": 326, "column": 10 }, { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 332, + "line": 340, "column": 10 }, { @@ -121,7 +121,7 @@ "Icon": [ { "filePath": "credentials/static/components/ProgramRecord.jsx", - "line": 309, + "line": 315, "column": 22 }, { @@ -728,7 +728,7 @@ } }, { - "version": "19.25.3", + "version": "20.27.0", "name": "@edx/frontend-app-account", "repository": { "type": "git", @@ -786,7 +786,7 @@ }, { "filePath": "src/account-settings/BetaLanguageBanner.jsx", - "line": 74, + "line": 77, "column": 12 }, { @@ -872,7 +872,7 @@ }, { "filePath": "src/account-settings/BetaLanguageBanner.jsx", - "line": 68, + "line": 71, "column": 12 }, { @@ -882,8 +882,13 @@ }, { "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", - "line": 124, - "column": 10 + "line": 83, + "column": 12 + }, + { + "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", + "line": 84, + "column": 12 }, { "filePath": "src/account-settings/delete-account/DeleteAccount.jsx", @@ -892,7 +897,7 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 65, + "line": 75, "column": 6 }, { @@ -1017,13 +1022,18 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 68, + "line": 78, "column": 6 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 156, "column": 4 + }, + { + "filePath": "src/id-verification/IdVerificationPage.jsx", + "line": 77, + "column": 8 } ], "Form": [ @@ -1051,13 +1061,18 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 77, + "line": 87, "column": 10 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 164, "column": 8 + }, + { + "filePath": "src/id-verification/IdVerificationPage.jsx", + "line": 84, + "column": 10 } ], "ModalDialog.Title": [ @@ -1068,13 +1083,18 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 78, + "line": 88, "column": 12 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 165, "column": 10 + }, + { + "filePath": "src/id-verification/IdVerificationPage.jsx", + "line": 85, + "column": 12 } ], "ModalDialog.Body": [ @@ -1085,13 +1105,18 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 83, + "line": 93, "column": 10 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 170, "column": 8 + }, + { + "filePath": "src/id-verification/IdVerificationPage.jsx", + "line": 89, + "column": 10 } ], "Form.Group": [ @@ -1105,19 +1130,14 @@ "line": 40, "column": 4 }, - { - "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", - "line": 103, - "column": 12 - }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 85, + "line": 95, "column": 12 }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 98, + "line": 110, "column": 12 }, { @@ -1157,19 +1177,14 @@ "line": 116, "column": 14 }, - { - "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", - "line": 107, - "column": 14 - }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 86, + "line": 96, "column": 14 }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 99, + "line": 111, "column": 14 }, { @@ -1225,13 +1240,18 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 114, + "line": 128, "column": 10 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 174, "column": 8 + }, + { + "filePath": "src/id-verification/IdVerificationPage.jsx", + "line": 112, + "column": 10 } ], "ActionRow": [ @@ -1240,15 +1260,25 @@ "line": 137, "column": 12 }, + { + "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", + "line": 82, + "column": 10 + }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 115, + "line": 129, "column": 12 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 175, "column": 10 + }, + { + "filePath": "src/id-verification/IdVerificationPage.jsx", + "line": 113, + "column": 12 } ], "ModalDialog.CloseButton": [ @@ -1259,13 +1289,18 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 116, + "line": 130, "column": 14 }, { "filePath": "src/account-settings/name-change/NameChange.jsx", "line": 176, "column": 12 + }, + { + "filePath": "src/id-verification/IdVerificationPage.jsx", + "line": 114, + "column": 14 } ], "StatefulButton": [ @@ -1276,7 +1311,7 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 119, + "line": 133, "column": 14 }, { @@ -1321,11 +1356,6 @@ "line": 54, "column": 10 }, - { - "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", - "line": 110, - "column": 14 - }, { "filePath": "src/account-settings/demographics/DemographicsSection.jsx", "line": 202, @@ -1338,12 +1368,12 @@ }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 89, + "line": 99, "column": 14 }, { "filePath": "src/account-settings/DOBForm.jsx", - "line": 102, + "line": 114, "column": 14 }, { @@ -1384,21 +1414,39 @@ "column": 6 } ], - "Modal": [ + "AlertModal": [ { "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", "line": 77, "column": 6 - }, + } + ], + "ValidationFormGroup": [ + { + "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", + "line": 110, + "column": 10 + } + ], + "Input": [ + { + "filePath": "src/account-settings/delete-account/ConfirmationModal.jsx", + "line": 118, + "column": 12 + } + ], + "ModalLayer": [ { "filePath": "src/account-settings/delete-account/SuccessModal.jsx", - "line": 11, + "line": 12, "column": 4 - }, + } + ], + "ModalCloseButton": [ { - "filePath": "src/id-verification/IdVerificationPage.jsx", - "line": 78, - "column": 8 + "filePath": "src/account-settings/delete-account/SuccessModal.jsx", + "line": 23, + "column": 10 } ], "useToggle": [ @@ -1509,7 +1557,7 @@ } }, { - "version": "20.4.1", + "version": "20.26.3", "name": "frontend-app-admin-portal", "repository": "https://github.com/openedx/frontend-app-admin-portal", "folderName": "frontend-app-admin-portal", @@ -1520,6 +1568,11 @@ "line": 15, "column": 6 }, + { + "filePath": "src/components/Admin/SubscriptionDetails.jsx", + "line": 48, + "column": 18 + }, { "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", "line": 15, @@ -1532,12 +1585,12 @@ }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 82, + "line": 83, "column": 12 }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 91, + "line": 92, "column": 12 }, { @@ -1547,7 +1600,7 @@ }, { "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 145, + "line": 146, "column": 8 }, { @@ -1562,17 +1615,12 @@ }, { "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", - "line": 55, - "column": 12 - }, - { - "filePath": "src/components/BulkEnrollmentPage/table/BaseSelectionStatus.jsx", - "line": 27, - "column": 8 + "line": 66, + "column": 16 }, { "filePath": "src/components/BulkEnrollmentPage/table/BaseSelectionStatus.jsx", - "line": 36, + "line": 23, "column": 8 }, { @@ -1582,8 +1630,8 @@ }, { "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 412, - "column": 12 + "line": 411, + "column": 10 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", @@ -1592,13 +1640,13 @@ }, { "filePath": "src/components/CodeReminderModal/index.jsx", - "line": 224, - "column": 12 + "line": 223, + "column": 10 }, { "filePath": "src/components/CodeRevokeModal/index.jsx", - "line": 242, - "column": 12 + "line": 237, + "column": 10 }, { "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", @@ -1610,69 +1658,69 @@ "line": 56, "column": 8 }, + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 72, + "column": 12 + }, { "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 25, + "line": 73, "column": 8 }, { "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 62, + "line": 105, "column": 6 }, { "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 69, + "line": 112, "column": 12 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 58, - "column": 16 - }, - { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 59, + "line": 272, "column": 16 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 65, + "line": 278, "column": 16 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 66, + "line": 290, "column": 16 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 72, + "line": 296, "column": 16 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 73, + "line": 308, "column": 16 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 79, - "column": 16 + "line": 365, + "column": 10 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 80, - "column": 16 + "line": 366, + "column": 10 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/tests/ContentHighlightStepper.test.jsx", - "line": 18, - "column": 6 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSelectionStatus.jsx", + "line": 27, + "column": 8 }, { "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 31, + "line": 54, "column": 12 }, { @@ -1687,17 +1735,17 @@ }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 618, + "line": 617, "column": 26 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 633, + "line": 632, "column": 26 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 664, + "line": 663, "column": 28 }, { @@ -1707,27 +1755,27 @@ }, { "filePath": "src/components/FileInput/index.jsx", - "line": 131, - "column": 14 + "line": 130, + "column": 12 }, { "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 189, - "column": 12 + "line": 188, + "column": 10 }, { "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", - "line": 57, + "line": 50, "column": 8 }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 206, + "line": 200, "column": 14 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 366, + "line": 433, "column": 12 }, { @@ -1762,7 +1810,7 @@ }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 144, + "line": 145, "column": 10 }, { @@ -1796,38 +1844,68 @@ "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 103, - "column": 17 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 128, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 107, - "column": 15 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 136, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 109, - "column": 15 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 138, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 129, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 144, + "column": 8 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 159, + "column": 12 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 166, "column": 12 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 136, + "line": 105, + "column": 17 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 109, + "column": 15 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 111, + "column": 15 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 142, + "column": 12 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 149, "column": 12 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 155, + "line": 150, "column": 10 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 174, + "line": 169, "column": 14 }, { @@ -1900,6 +1978,16 @@ "line": 217, "column": 10 }, + { + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 34, + "column": 8 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", + "line": 32, + "column": 8 + }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", "line": 106, @@ -2059,7 +2147,22 @@ }, { "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 92, + "line": 132, + "column": 8 + }, + { + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", + "line": 58, + "column": 10 + }, + { + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 11, + "column": 12 + }, + { + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 13, "column": 8 }, { @@ -2089,17 +2192,22 @@ }, { "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", - "line": 88, - "column": 12 + "line": 87, + "column": 10 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 187, + "column": 37 }, { "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 194, + "line": 189, "column": 55 }, { "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 82, + "line": 90, "column": 37 }, { @@ -2155,9 +2263,14 @@ "column": 14 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 31, - "column": 8 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 110, + "column": 6 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitleInput.jsx", + "line": 59, + "column": 4 }, { "filePath": "src/components/CouponDetails/CouponBulkActions.jsx", @@ -2191,17 +2304,17 @@ }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 82, + "line": 83, "column": 10 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 99, + "line": 100, "column": 10 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 116, + "line": 117, "column": 10 }, { @@ -2579,9 +2692,14 @@ "column": 16 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 32, - "column": 10 + "filePath": "src/components/Admin/EmbeddedSubscription.jsx", + "line": 45, + "column": 22 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitleInput.jsx", + "line": 62, + "column": 6 }, { "filePath": "src/components/CouponDetails/CouponBulkActions.jsx", @@ -2610,17 +2728,17 @@ }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 83, + "line": 84, "column": 12 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 100, + "line": 101, "column": 12 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 117, + "line": 118, "column": 12 }, { @@ -2920,14 +3038,24 @@ } ], "Icon": [ + { + "filePath": "src/components/Admin/EmbeddedSubscription.jsx", + "line": 61, + "column": 16 + }, + { + "filePath": "src/components/Admin/EmbeddedSubscription.jsx", + "line": 75, + "column": 18 + }, { "filePath": "src/components/Admin/index.jsx", - "line": 226, + "line": 230, "column": 8 }, { "filePath": "src/components/Admin/index.jsx", - "line": 243, + "line": 247, "column": 8 }, { @@ -2942,8 +3070,8 @@ }, { "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 419, - "column": 62 + "line": 418, + "column": 60 }, { "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", @@ -2962,13 +3090,13 @@ }, { "filePath": "src/components/CodeReminderModal/index.jsx", - "line": 231, - "column": 55 + "line": 229, + "column": 51 }, { "filePath": "src/components/CodeRevokeModal/index.jsx", - "line": 249, - "column": 62 + "line": 243, + "column": 58 }, { "filePath": "src/components/CodeSearchResults/CodeSearchResultsHeading.jsx", @@ -2981,23 +3109,38 @@ "column": 8 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", + "line": 67, + "column": 16 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 145, + "column": 12 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentHeader.jsx", "line": 13, + "column": 8 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", + "line": 15, "column": 10 }, { "filePath": "src/components/Coupon/index.jsx", - "line": 91, + "line": 90, "column": 6 }, { "filePath": "src/components/Coupon/index.jsx", - "line": 100, + "line": 99, "column": 6 }, { "filePath": "src/components/CouponDetails/index.jsx", - "line": 360, + "line": 417, "column": 10 }, { @@ -3007,13 +3150,13 @@ }, { "filePath": "src/components/FileInput/index.jsx", - "line": 141, - "column": 18 + "line": 139, + "column": 14 }, { "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 196, - "column": 31 + "line": 195, + "column": 29 }, { "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", @@ -3032,47 +3175,47 @@ }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 159, + "line": 153, "column": 15 }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 190, + "line": 184, "column": 16 }, { "filePath": "src/components/NumberCard/index.jsx", - "line": 220, + "line": 214, "column": 20 }, { "filePath": "src/components/ReportingConfig/index.jsx", - "line": 146, - "column": 22 + "line": 145, + "column": 20 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 355, + "line": 422, "column": 25 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 356, + "line": 423, "column": 25 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 357, + "line": 424, "column": 26 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 358, + "line": 425, "column": 23 }, { "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 370, + "line": 437, "column": 14 }, { @@ -3092,33 +3235,68 @@ }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 130, + "line": 131, "column": 10 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 68, + "line": 73, "column": 19 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 70, + "line": 75, "column": 20 }, { "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 71, + "line": 76, "column": 23 }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 76, + "column": 12 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 86, + "column": 12 + }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 165, + "line": 120, + "column": 51 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 124, + "column": 43 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 178, "column": 24 }, + { + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 265, + "column": 12 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 39, + "column": 36 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 44, + "column": 10 + }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 124, - "column": 30 + "line": 120, + "column": 28 }, { "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", @@ -3127,12 +3305,12 @@ }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 107, + "line": 102, "column": 12 }, { "filePath": "src/components/Sidebar/index.jsx", - "line": 114, + "line": 109, "column": 12 }, { @@ -3171,15368 +3349,17836 @@ "column": 4 } ], - "Container": [ + "Lightbulb": [ { - "filePath": "src/components/analytics/AnalyticsCharts.jsx", - "line": 66, - "column": 6 - }, + "filePath": "src/components/Admin/EmbeddedSubscription.jsx", + "line": 61, + "column": 27 + } + ], + "ArrowOutward": [ { - "filePath": "src/components/CodeManagement/index.jsx", - "line": 15, - "column": 6 + "filePath": "src/components/Admin/EmbeddedSubscription.jsx", + "line": 75, + "column": 60 + } + ], + "Badge": [ + { + "filePath": "src/components/Admin/licenses/LicenseAllocationHeader.jsx", + "line": 22, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", - "line": 33, - "column": 4 + "filePath": "src/components/Admin/licenses/LicenseAllocationHeader.jsx", + "line": 26, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightSet.jsx", - "line": 6, - "column": 2 + "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", + "line": 76, + "column": 14 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmCourses.jsx", - "line": 6, - "column": 2 + "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", + "line": 78, + "column": 14 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmHighlight.jsx", - "line": 6, - "column": 2 + "filePath": "src/components/settings/SettingsAccessTab/StatusTableCell.jsx", + "line": 8, + "column": 4 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectCourses.jsx", - "line": 6, - "column": 2 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 252, + "column": 20 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 9, - "column": 2 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 257, + "column": 16 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", - "line": 65, - "column": 6 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 168, + "column": 43 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 139, - "column": 8 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 169, + "column": 63 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 150, - "column": 4 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 170, + "column": 64 }, { - "filePath": "src/components/subscriptions/SubscriptionManagementPage.jsx", - "line": 19, - "column": 8 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementUserBadge.jsx", + "line": 18, + "column": 11 }, { - "filePath": "src/components/UserActivationPage/index.jsx", + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", "line": 76, + "column": 10 + }, + { + "filePath": "src/components/SubsidyRequestManagementTable/RequestStatusCell.jsx", + "line": 23, "column": 4 } ], - "BookOpen": [ + "DataTable": [ { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", - "line": 18, - "column": 16 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 53, + "column": 10 }, { - "filePath": "src/components/Sidebar/index.jsx", - "line": 114, - "column": 23 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 54, + "column": 8 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/EnrollBulkAction.jsx", - "line": 115, - "column": 20 - } - ], - "AlertModal": [ - { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", - "line": 14, - "column": 2 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 208, + "column": 6 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 36, - "column": 2 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 217, + "column": 34 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 63, + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 158, "column": 6 }, { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 15, - "column": 2 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 95, + "column": 4 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 32, + "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", + "line": 22, "column": 4 }, { - "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 52, - "column": 4 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 134, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 122, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 91, "column": 6 - } - ], - "Error": [ - { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", - "line": 17, - "column": 50 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 34, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 93, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 44, - "column": 37 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 53, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", - "line": 281, - "column": 12 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 54, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", - "line": 310, - "column": 12 - } - ], - "ActionRow": [ - { - "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", - "line": 23, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 210, "column": 6 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 41, - "column": 6 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 217, + "column": 34 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 55, - "column": 6 - }, + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 61, + "column": 4 + } + ], + "DataTable.EmptyTable": [ { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 20, - "column": 6 + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 236, + "column": 19 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", - "line": 17, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 154, "column": 6 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 68, - "column": 10 + "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", + "line": 76, + "column": 17 }, { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 21, - "column": 6 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 186, + "column": 28 }, { - "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", - "line": 70, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 146, "column": 8 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 37, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 154, "column": 8 }, { - "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 57, - "column": 8 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 237, + "column": 19 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 143, + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 93, "column": 8 - }, + } + ], + "Toast": [ { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 40, + "filePath": "src/components/Admin/licenses/LicenseManagementTable/index.jsx", + "line": 317, "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 28, + "filePath": "src/components/Admin/SubscriptionDetails.jsx", + "line": 66, "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 51, - "column": 10 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 128, - "column": 10 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 155, + "column": 8 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 36, + "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", + "line": 51, "column": 8 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 66, + "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", + "line": 64, "column": 8 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 210, - "column": 8 + "filePath": "src/components/ContentHighlights/ContentHighlightToast.jsx", + "line": 16, + "column": 4 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 186, - "column": 8 + "filePath": "src/components/settings/SettingsAccessTab/LinkCopiedToast.jsx", + "line": 5, + "column": 2 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 162, - "column": 10 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 136, + "column": 6 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 161, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 58, + "column": 5 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 108, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 222, "column": 8 }, { - "filePath": "src/components/SubsidyRequestManagementTable/ActionCell.jsx", - "line": 15, - "column": 4 - } - ], - "DataTable": [ - { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 119, + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 233, "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 22, - "column": 4 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 81, + "column": 12 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 134, - "column": 8 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 66, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 321, "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 65, + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 100, "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 51, - "column": 10 + "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", + "line": 36, + "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 52, + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 62, "column": 8 + } + ], + "Row": [ + { + "filePath": "src/components/Admin/SubscriptionDetails.jsx", + "line": 35, + "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 200, + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewStep.jsx", + "line": 29, "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 207, - "column": 34 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 43, + "column": 6 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 61, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 66, "column": 4 - } - ], - "DataTable.TableControlBar": [ - { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 131, - "column": 10 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 183, - "column": 10 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 142, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 113, - "column": 8 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 11, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 118, - "column": 8 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 16, + "column": 4 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 89, - "column": 6 - } - ], - "DataTable.Table": [ - { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 132, - "column": 10 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 184, - "column": 10 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", + "line": 41, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 114, - "column": 8 + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 61, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 119, - "column": 8 + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 66, + "column": 6 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 90, - "column": 6 - } - ], - "DataTable.TableFooter": [ + "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", + "line": 14, + "column": 2 + }, { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 133, + "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "line": 40, "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 116, + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 112, "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 121, + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 38, "column": 8 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 94, - "column": 6 - } - ], - "DataTable.RowStatus": [ - { - "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", - "line": 134, - "column": 12 - } - ], - "Stepper": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 49, - "column": 4 - }, - { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 42, + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 48, "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 136, + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 77, "column": 6 } ], - "ModalDialog": [ + "Col": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 50, - "column": 6 + "filePath": "src/components/Admin/SubscriptionDetails.jsx", + "line": 36, + "column": 8 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 28, - "column": 2 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 44, + "column": 8 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 65, - "column": 4 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 67, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 13, - "column": 2 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 143, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 16, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 12, "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 160, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 17, "column": 6 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 21, - "column": 4 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", + "line": 13, + "column": 6 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 43, - "column": 4 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", + "line": 42, + "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 150, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 11, "column": 4 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 144, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 20, "column": 4 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 85, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 29, "column": 4 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 84, - "column": 4 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 59, + "column": 8 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 62, - "column": 4 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 59, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 71, "column": 8 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 35, - "column": 4 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 83, + "column": 8 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 73, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 107, "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 19, + "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", + "line": 10, "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 24, + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 62, "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 165, + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 67, "column": 8 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 49, - "column": 6 + "filePath": "src/components/settings/SettingsAccessTab/index.jsx", + "line": 73, + "column": 8 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 156, - "column": 6 + "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", + "line": 15, + "column": 4 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 150, - "column": 6 + "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", + "line": 19, + "column": 4 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 93, - "column": 8 + "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "line": 41, + "column": 12 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 92, + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 114, + "column": 12 + }, + { + "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", + "line": 49, "column": 8 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 69, - "column": 6 + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 78, + "column": 8 } ], - "ModalDialog.Title": [ + "BookOpen": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 60, - "column": 10 + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollButton.jsx", + "line": 18, + "column": 16 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 36, - "column": 6 + "filePath": "src/components/Sidebar/index.jsx", + "line": 109, + "column": 23 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 74, - "column": 8 - }, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/EnrollBulkAction.jsx", + "line": 115, + "column": 20 + } + ], + "AlertModal": [ { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 20, - "column": 6 + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "line": 14, + "column": 2 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 25, - "column": 10 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 36, + "column": 2 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 166, - "column": 10 + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 106, + "column": 6 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 50, - "column": 8 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 356, + "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 157, - "column": 8 + "filePath": "src/components/settings/ConfigError.jsx", + "line": 15, + "column": 2 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 151, - "column": 8 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 32, + "column": 4 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 94, - "column": 10 + "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", + "line": 52, + "column": 4 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 93, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 152, + "column": 6 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 70, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 135, + "column": 6 } ], - "ModalDialog.Body": [ + "Error": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 64, - "column": 8 + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "line": 17, + "column": 50 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 51, - "column": 4 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 76, + "column": 23 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 80, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 34, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 24, - "column": 4 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 44, + "column": 37 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 30, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 120, + "column": 101 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 170, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", + "line": 281, + "column": 12 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 27, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", + "line": 310, + "column": 12 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 55, - "column": 6 - }, + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 39, + "column": 70 + } + ], + "ActionRow": [ { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 161, + "filePath": "src/components/BulkEnrollmentPage/BulkEnrollmentWarningModal.jsx", + "line": 23, "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 155, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 41, "column": 6 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 109, - "column": 8 - }, - { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 108, - "column": 8 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 55, + "column": 6 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 84, + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 67, "column": 6 - } - ], - "Stepper.Step": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 65, - "column": 10 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 73, - "column": 10 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 10, + "column": 6 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 85, - "column": 10 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 20, + "column": 6 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 89, + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 111, "column": 10 }, { "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 93, - "column": 10 + "line": 364, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 97, - "column": 10 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 11, + "column": 2 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 140, - "column": 10 + "filePath": "src/components/settings/ConfigError.jsx", + "line": 21, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 144, - "column": 10 + "filePath": "src/components/settings/SettingsAccessTab/ActionsTableCell.jsx", + "line": 70, + "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 148, - "column": 10 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 37, + "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 166, - "column": 10 - } - ], - "ModalDialog.Footer": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 80, + "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", + "line": 57, "column": 8 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 54, - "column": 4 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 144, + "column": 8 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 142, + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 40, "column": 6 }, { "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", - "line": 27, - "column": 4 + "line": 28, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 50, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 127, "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 175, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 135, "column": 8 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 35, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 143, "column": 6 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 65, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 158, + "column": 10 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 209, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 141, + "column": 10 + }, + { + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 36, + "column": 8 + }, + { + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 57, + "column": 8 + }, + { + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 210, + "column": 8 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 185, - "column": 6 + "line": 186, + "column": 8 }, { "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 161, - "column": 8 + "line": 162, + "column": 10 }, { "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 160, - "column": 8 + "line": 161, + "column": 10 }, { "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 107, - "column": 6 + "line": 108, + "column": 8 + }, + { + "filePath": "src/components/SubsidyRequestManagementTable/ActionCell.jsx", + "line": 15, + "column": 4 } ], - "Stepper.ActionRow": [ + "DataTable.TableControlBar": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 81, - "column": 10 + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 177, + "column": 8 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", - "line": 90, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 140, + "column": 6 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 184, "column": 10 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 53, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 144, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 62, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 152, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 69, - "column": 14 + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 90, + "column": 6 + } + ], + "DataTable.Table": [ + { + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 178, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 76, - "column": 14 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 153, + "column": 33 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 176, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 185, "column": 10 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 204, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 145, + "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 218, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 153, + "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 239, - "column": 10 + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 91, + "column": 6 } ], - "MailtoLink": [ + "DataTable.TableFooter": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 48, + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 179, + "column": 8 + }, + { + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 155, "column": 6 }, { - "filePath": "src/components/ForbiddenPage/index.jsx", - "line": 17, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", + "line": 147, + "column": 8 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 88, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", + "line": 155, + "column": 8 + }, + { + "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", + "line": 95, + "column": 6 } ], - "useToggle": [ + "DataTable.RowStatus": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 99, - "column": 74 + "filePath": "src/components/BulkEnrollmentPage/CourseSearchResults.jsx", + "line": 180, + "column": 10 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", - "line": 39, - "column": 42 - }, + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 12, + "column": 4 + } + ], + "Stepper": [ { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 23, - "column": 32 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 50, + "column": 4 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 23, - "column": 65 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 258, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 36, - "column": 32 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 136, + "column": 6 + } + ], + "ModalDialog": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 51, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 17, - "column": 47 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 28, + "column": 2 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 18, - "column": 55 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 66, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", - "line": 29, - "column": 47 + "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", + "line": 13, + "column": 2 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", - "line": 30, - "column": 47 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 160, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", - "line": 33, - "column": 47 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 21, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", "line": 34, - "column": 47 + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CornerstoneConfig.jsx", - "line": 21, - "column": 47 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 150, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CornerstoneConfig.jsx", - "line": 22, - "column": 47 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 144, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", - "line": 24, - "column": 47 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 85, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", - "line": 25, - "column": 47 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 84, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", - "line": 26, - "column": 47 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 62, + "column": 4 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 60, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", - "line": 27, - "column": 47 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 35, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", - "line": 24, - "column": 47 + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 74, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", - "line": 25, - "column": 47 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", - "line": 25, - "column": 47 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", - "line": 26, - "column": 47 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 22, - "column": 47 + "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", + "line": 19, + "column": 4 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", - "line": 84, - "column": 68 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 165, + "column": 8 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", - "line": 85, - "column": 71 - } - ], - "Stack": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 137, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 40, "column": 6 }, { - "filePath": "src/components/CodeManagement/ManageRequestsTab.jsx", - "line": 49, - "column": 4 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 156, + "column": 6 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardContainer.jsx", - "line": 13, - "column": 4 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 150, + "column": 6 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlights.jsx", - "line": 10, - "column": 2 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 93, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmCourses.jsx", - "line": 7, - "column": 4 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 92, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmHighlight.jsx", - "line": 7, - "column": 4 - }, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 69, + "column": 6 + } + ], + "ModalDialog.Title": [ { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectCourses.jsx", - "line": 7, - "column": 4 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 61, + "column": 10 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 10, - "column": 4 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 36, + "column": 6 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 12, + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 75, "column": 8 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 14, - "column": 4 - }, - { - "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", - "line": 8, - "column": 2 + "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", + "line": 20, + "column": 6 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", - "line": 74, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 166, "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSCard.jsx", - "line": 14, - "column": 8 - }, - { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 75, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 41, "column": 8 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 132, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 157, "column": 8 }, { - "filePath": "src/components/subscriptions/SubscriptionSubsidyRequests.jsx", - "line": 44, - "column": 4 - } - ], - "Form.Checkbox": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 138, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 151, "column": 8 }, { - "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 369, + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 94, "column": 10 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 223, + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 93, "column": 10 }, - { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", - "line": 44, - "column": 6 - }, - { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 89, - "column": 8 - }, { "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 97, + "line": 70, "column": 8 } ], - "Toast": [ + "ModalDialog.Body": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", - "line": 154, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 65, "column": 8 }, { - "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", + "filePath": "src/components/ConfirmationModal/index.jsx", "line": 51, - "column": 8 - }, - { - "filePath": "src/components/BulkEnrollmentResultsDownloadPage/index.jsx", - "line": 64, - "column": 8 - }, - { - "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", - "line": 36, - "column": 6 - }, - { - "filePath": "src/components/settings/SettingsAccessTab/LinkCopiedToast.jsx", - "line": 5, - "column": 2 + "column": 4 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 136, + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 81, "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 53, - "column": 5 + "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", + "line": 24, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 230, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 170, "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 73, - "column": 12 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 27, + "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 304, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 46, "column": 6 }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 100, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 161, "column": 6 }, { - "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", - "line": 36, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 155, "column": 6 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 62, + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 109, + "column": 8 + }, + { + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 108, "column": 8 + }, + { + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 84, + "column": 6 } ], - "Alert": [ + "Stepper.Step": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", - "line": 13, - "column": 4 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 66, + "column": 10 }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", - "line": 53, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 74, "column": 10 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 173, - "column": 6 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 328, + "column": 10 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 214, - "column": 6 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 338, + "column": 10 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 229, - "column": 6 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 346, + "column": 10 }, { - "filePath": "src/components/CodeModal/ModalError.jsx", - "line": 11, - "column": 4 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 140, + "column": 10 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 40, - "column": 8 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 144, + "column": 10 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 83, - "column": 8 - }, - { - "filePath": "src/components/ErrorPage/index.jsx", - "line": 27, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 148, "column": 10 }, { - "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", - "line": 50, - "column": 6 - }, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 166, + "column": 10 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 157, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 81, "column": 8 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 56, - "column": 6 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 54, + "column": 4 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 78, + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 143, "column": 6 }, { - "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", - "line": 52, + "filePath": "src/components/settings/SettingsLMSTab/ConfigModal.jsx", + "line": 27, "column": 4 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 44, - "column": 8 - }, - { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 120, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 175, "column": 8 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 41, - "column": 8 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 35, + "column": 6 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", "line": 56, - "column": 8 - }, - { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 97, "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 168, - "column": 8 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 63, - "column": 10 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 68, - "column": 10 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 209, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 18, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 185, "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 199, + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 161, "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", - "line": 56, + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 160, "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", - "line": 61, - "column": 30 - }, - { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 122, - "column": 4 - }, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 107, + "column": 6 + } + ], + "Stepper.ActionRow": [ { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 164, - "column": 12 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 82, + "column": 10 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 158, - "column": 12 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentStepper.jsx", + "line": 91, + "column": 10 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 170, - "column": 12 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 267, + "column": 14 }, { - "filePath": "src/components/subscriptions/SubscriptionData.jsx", - "line": 36, - "column": 4 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 287, + "column": 14 }, { - "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", - "line": 23, - "column": 4 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 305, + "column": 14 }, { - "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", - "line": 19, - "column": 4 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 176, + "column": 10 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 98, - "column": 12 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 204, + "column": 10 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 151, - "column": 12 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 218, + "column": 10 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 97, - "column": 12 - }, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 239, + "column": 10 + } + ], + "MailtoLink": [ { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 150, - "column": 12 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 48, + "column": 6 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 74, + "filePath": "src/components/ForbiddenPage/index.jsx", + "line": 17, "column": 10 }, { "filePath": "src/components/UserActivationPage/index.jsx", - "line": 79, - "column": 10 + "line": 88, + "column": 14 } ], - "WarningFilled": [ + "useToggle": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", - "line": 16, - "column": 12 + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 100, + "column": 74 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 229, - "column": 37 + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", + "line": 44, + "column": 42 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 59, - "column": 14 + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 25, + "column": 32 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 63, - "column": 41 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 52, + "column": 62 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 68, - "column": 41 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 23, + "column": 65 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 21, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 37, + "column": 32 }, { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 8, - "column": 15 - } - ], - "Alert.Heading": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", - "line": 20, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 31, + "column": 47 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 174, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", + "line": 16, + "column": 47 }, { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 221, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", + "line": 29, + "column": 47 }, { - "filePath": "src/components/CodeModal/ModalError.jsx", - "line": 14, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", + "line": 30, + "column": 47 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 44, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", + "line": 33, + "column": 47 }, { - "filePath": "src/components/ErrorPage/index.jsx", - "line": 31, - "column": 12 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", + "line": 34, + "column": 47 }, { - "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", - "line": 51, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CornerstoneConfig.jsx", + "line": 21, + "column": 47 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 161, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CornerstoneConfig.jsx", + "line": 22, + "column": 47 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 72, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", + "line": 24, + "column": 47 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 92, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", + "line": 25, + "column": 47 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 45, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", + "line": 26, + "column": 47 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 121, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", + "line": 27, + "column": 47 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 42, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", + "line": 24, + "column": 47 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", - "line": 57, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", + "line": 25, + "column": 47 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 105, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", + "line": 25, + "column": 47 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 178, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", + "line": 26, + "column": 47 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", - "line": 32, - "column": 8 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 19, + "column": 47 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 212, - "column": 10 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", + "line": 84, + "column": 68 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 33, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationModals.jsx", + "line": 85, + "column": 71 + } + ], + "Stack": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 138, "column": 6 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 42, - "column": 6 + "filePath": "src/components/CodeManagement/ManageRequestsTab.jsx", + "line": 49, + "column": 4 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 52, - "column": 6 + "filePath": "src/components/ContentHighlights/ContentHighlightCardContainer.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", - "line": 59, - "column": 6 + "filePath": "src/components/ContentHighlights/CurrentContentHighlights.jsx", + "line": 10, + "column": 2 }, { - "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", - "line": 32, - "column": 6 + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 14, + "column": 4 }, { - "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", - "line": 28, - "column": 6 + "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", + "line": 8, + "column": 2 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 104, - "column": 14 + "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", + "line": 74, + "column": 10 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 156, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/LMSCard.jsx", + "line": 14, + "column": 8 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 103, - "column": 14 + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 75, + "column": 8 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 155, - "column": 14 + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 132, + "column": 8 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 79, - "column": 12 + "filePath": "src/components/subscriptions/SubscriptionSubsidyRequests.jsx", + "line": 44, + "column": 4 } ], - "Card": [ + "Form.Checkbox": [ { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", - "line": 19, + "filePath": "src/components/BulkEnrollmentPage/stepper/BulkEnrollmentSubmit.jsx", + "line": 139, + "column": 8 + }, + { + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 369, + "column": 10 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 223, + "column": 10 + }, + { + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", + "line": 44, "column": 6 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 7, - "column": 2 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 89, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 32, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 97, + "column": 8 + } + ], + "Alert": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", + "line": 13, "column": 4 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 21, - "column": 8 + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewList.jsx", + "line": 64, + "column": 14 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 12, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 173, "column": 6 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 21, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 214, "column": 6 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 30, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 229, "column": 6 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 60, - "column": 10 + "filePath": "src/components/CodeModal/ModalError.jsx", + "line": 11, + "column": 4 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 72, - "column": 10 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 40, + "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 84, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 45, "column": 10 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 108, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 68, "column": 8 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 25, - "column": 4 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 151, + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", + "line": 26, "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSCard.jsx", - "line": 7, - "column": 2 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 83, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 107, - "column": 12 + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 126, + "column": 8 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 38, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 110, "column": 6 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 125, - "column": 4 + "filePath": "src/components/ErrorPage/index.jsx", + "line": 27, + "column": 10 }, { - "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", - "line": 19, + "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", + "line": 50, "column": 6 - } - ], - "Card.Section": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", - "line": 20, - "column": 8 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 16, - "column": 4 + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 157, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 38, + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 56, "column": 6 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardText.jsx", - "line": 6, - "column": 2 + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 78, + "column": 6 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 13, - "column": 8 + "filePath": "src/components/NewFeatureAlertBrowseAndRequest/index.jsx", + "line": 45, + "column": 4 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 22, + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 44, "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 31, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 120, "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 61, - "column": 12 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", + "line": 41, + "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 73, - "column": 12 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", + "line": 56, + "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 85, - "column": 12 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 97, + "column": 6 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 109, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 163, + "column": 8 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 26, - "column": 6 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 71, + "column": 10 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 39, - "column": 8 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 76, + "column": 10 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 108, + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 18, "column": 6 }, { - "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", - "line": 20, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 199, "column": 8 - } - ], - "IconButton": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", - "line": 23, - "column": 12 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 46, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", + "line": 54, "column": 8 }, { - "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", - "line": 94, - "column": 12 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 163, - "column": 20 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConnectStep.jsx", + "line": 59, + "column": 30 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", "line": 122, - "column": 26 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 118, - "column": 8 + "column": 4 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 139, - "column": 8 - } - ], - "Delete": [ - { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", - "line": 24, - "column": 19 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 164, + "column": 12 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", "line": 158, - "column": 28 - } - ], - "Row": [ + "column": 12 + }, { - "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewStep.jsx", - "line": 37, - "column": 6 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 170, + "column": 12 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 19, + "filePath": "src/components/subscriptions/SubscriptionData.jsx", + "line": 36, "column": 4 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 61, - "column": 6 + "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", + "line": 23, + "column": 4 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 66, - "column": 6 + "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", + "line": 19, + "column": 4 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", - "line": 15, - "column": 4 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 98, + "column": 12 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 40, - "column": 10 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 151, + "column": 12 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 112, - "column": 8 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 97, + "column": 12 }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 38, - "column": 8 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 150, + "column": 12 }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 48, - "column": 6 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 74, + "column": 10 }, { "filePath": "src/components/UserActivationPage/index.jsx", - "line": 77, - "column": 6 + "line": 79, + "column": 10 } ], - "DataTableContext.Provider": [ + "WarningFilled": [ { - "filePath": "src/components/BulkEnrollmentPage/table/BaseSelectionStatus.test.jsx", - "line": 22, - "column": 2 - } - ], - "CheckboxControl": [ + "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", + "line": 16, + "column": 12 + }, { - "filePath": "src/components/BulkEnrollmentPage/table/BulkEnrollSelect.jsx", - "line": 27, - "column": 6 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 229, + "column": 37 }, { - "filePath": "src/components/BulkEnrollmentPage/table/BulkEnrollSelect.jsx", - "line": 61, - "column": 6 - } - ], - "OverlayTrigger": [ + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 59, + "column": 14 + }, { - "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", - "line": 12, - "column": 2 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 71, + "column": 41 }, { - "filePath": "src/components/IconWithTooltip/index.jsx", - "line": 13, - "column": 4 + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 76, + "column": 41 }, { - "filePath": "src/components/InfoHover/index.jsx", - "line": 10, - "column": 4 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 21, + "column": 14 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 16, + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 8, + "column": 15 + } + ], + "Alert.Heading": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/DismissibleCourseWarning.jsx", + "line": 20, "column": 6 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", - "line": 16, - "column": 6 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 174, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 36, + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 221, "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 228, - "column": 16 + "filePath": "src/components/CodeModal/ModalError.jsx", + "line": 14, + "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 95, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 44, "column": 10 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 110, - "column": 6 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 131, - "column": 6 - }, - { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 63, - "column": 2 - }, - { - "filePath": "src/components/TemplateSourceFields/index.jsx", - "line": 116, - "column": 10 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 49, + "column": 12 }, { - "filePath": "src/components/TemplateSourceFields/index.jsx", - "line": 142, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 81, "column": 10 - } - ], - "Popover": [ - { - "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", - "line": 18, - "column": 6 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 20, - "column": 10 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 91, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 42, + "filePath": "src/components/ErrorPage/index.jsx", + "line": 31, "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 233, - "column": 20 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 99, - "column": 14 - }, - { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 68, - "column": 6 - } - ], - "Popover.Title": [ - { - "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", - "line": 19, + "filePath": "src/components/FeatureAnnouncementBanner/index.jsx", + "line": 51, "column": 8 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 21, - "column": 12 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 234, - "column": 22 + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 161, + "column": 10 }, { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 69, - "column": 8 - } - ], - "Popover.Content": [ - { - "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", - "line": 20, + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 72, "column": 8 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 22, - "column": 12 + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 92, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 43, - "column": 14 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 45, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 235, - "column": 22 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 121, + "column": 10 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 100, - "column": 16 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", + "line": 42, + "column": 10 }, { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 70, - "column": 8 - } - ], - "Modal": [ - { - "filePath": "src/components/CodeAssignmentModal/index.jsx", - "line": 406, - "column": 8 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", + "line": 57, + "column": 10 }, { - "filePath": "src/components/CodeReminderModal/index.jsx", - "line": 218, + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 105, "column": 8 }, { - "filePath": "src/components/CodeRevokeModal/index.jsx", - "line": 236, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 173, + "column": 10 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 183, + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 32, "column": 8 - } - ], - "Tabs": [ - { - "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", - "line": 58, - "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 31, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 212, "column": 10 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 151, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 33, "column": 6 }, { - "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", - "line": 60, - "column": 4 - } - ], - "Tab": [ - { - "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", - "line": 63, + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 42, "column": 6 }, { - "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", - "line": 77, - "column": 8 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 52, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 37, - "column": 12 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpirationBanner.jsx", + "line": 59, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 42, - "column": 12 + "filePath": "src/components/subsidy-request-management-alerts/NoAvailableCodesBanner.jsx", + "line": 32, + "column": 6 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 53, - "column": 8 + "filePath": "src/components/subsidy-request-management-alerts/NoAvailableLicensesBanner.jsx", + "line": 28, + "column": 6 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 72, - "column": 8 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 104, + "column": 14 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", - "line": 86, - "column": 8 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 156, + "column": 14 }, { - "filePath": "src/components/settings/SettingsTabs.jsx", + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", "line": 103, - "column": 8 + "column": 14 }, { - "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", - "line": 65, - "column": 6 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 155, + "column": 14 }, { - "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", - "line": 75, - "column": 8 + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 79, + "column": 12 } ], - "Info": [ + "Card": [ { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 173, - "column": 36 + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", + "line": 19, + "column": 6 }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 41, - "column": 16 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 34, + "column": 4 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 88, - "column": 16 + "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", + "line": 34, + "column": 4 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", - "line": 9, - "column": 15 + "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", + "line": 5, + "column": 2 }, { - "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", - "line": 81, - "column": 14 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", + "line": 43, + "column": 8 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 44, - "column": 21 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 12, + "column": 6 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 120, - "column": 21 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 21, + "column": 6 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", - "line": 41, - "column": 21 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 30, + "column": 6 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", - "line": 56, - "column": 21 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 60, + "column": 10 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 100, - "column": 14 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 72, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 171, - "column": 16 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 84, + "column": 10 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 210, - "column": 16 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 108, + "column": 8 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 100, - "column": 20 + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 25, + "column": 4 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 152, - "column": 20 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 197, + "column": 10 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 99, - "column": 20 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 164, + "column": 6 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 151, - "column": 20 + "filePath": "src/components/settings/SettingsLMSTab/LMSCard.jsx", + "line": 7, + "column": 2 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 75, - "column": 18 - } - ], - "Pagination": [ - { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 197, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 19, + "column": 4 }, { - "filePath": "src/components/TableComponent/index.jsx", + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", "line": 103, - "column": 12 - } - ], - "CheckCircle": [ - { - "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", - "line": 218, - "column": 14 - }, - { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", - "line": 26, "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 30, - "column": 31 + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", + "line": 17, + "column": 4 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 123, - "column": 10 - } - ], - "Warning": [ + "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "line": 38, + "column": 6 + }, { - "filePath": "src/components/CodeModal/ModalError.jsx", - "line": 12, - "column": 17 - } - ], - "TransitionReplace": [ + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 125, + "column": 4 + }, { - "filePath": "src/components/CodeSearchResults/index.jsx", - "line": 86, + "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", + "line": 19, "column": 6 } ], - "StatefulButton": [ + "Card.Section": [ { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 59, + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", + "line": 20, "column": 8 }, { - "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", - "line": 70, - "column": 12 - }, - { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 344, - "column": 12 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 48, + "column": 10 }, { - "filePath": "src/components/SaveTemplateButton/index.jsx", - "line": 141, + "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", + "line": 41, "column": 6 }, { - "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", - "line": 39, - "column": 10 - }, - { - "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", - "line": 59, - "column": 10 + "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", + "line": 7, + "column": 4 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessGenerateLinkButton.jsx", - "line": 52, - "column": 4 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardText.jsx", + "line": 6, + "column": 2 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 57, - "column": 6 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 13, + "column": 8 }, { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 42, - "column": 4 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 22, + "column": 8 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 214, - "column": 10 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 31, + "column": 8 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 190, - "column": 10 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 61, + "column": 12 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 166, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 73, "column": 12 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 165, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 85, "column": 12 }, { - "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", - "line": 112, + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 109, "column": 10 - } - ], - "Hyperlink": [ - { - "filePath": "src/components/ContactCustomerSupportButton/index.jsx", - "line": 16, - "column": 4 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperFooterHelpLink.jsx", - "line": 8, - "column": 4 + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 26, + "column": 6 }, { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 24, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 198, + "column": 12 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 131, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 25, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 49, - "column": 9 + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", + "line": 23, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 146, + "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "line": 39, "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/index.jsx", - "line": 36, - "column": 8 + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 108, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "filePath": "src/components/subscriptions/SubscriptionZeroStateMessage.jsx", + "line": 20, + "column": 8 + } + ], + "IconButton": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", "line": 23, - "column": 10 + "column": 12 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 151, - "column": 8 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", + "line": 65, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 202, - "column": 12 + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 46, + "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 370, + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 94, "column": 12 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", - "line": 35, - "column": 41 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 176, + "column": 20 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 168, - "column": 16 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 118, + "column": 24 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 162, - "column": 16 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 118, + "column": 8 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 177, - "column": 10 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 139, + "column": 8 + } + ], + "Delete": [ + { + "filePath": "src/components/BulkEnrollmentPage/stepper/ReviewItem.jsx", + "line": 24, + "column": 19 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 47, - "column": 14 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentConfirmContentCard.jsx", + "line": 66, + "column": 13 }, { - "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", - "line": 40, - "column": 8 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 154, + "column": 24 } ], - "Card.ImageCap": [ + "DataTableContext.Provider": [ { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 8, - "column": 4 - }, + "filePath": "src/components/BulkEnrollmentPage/table/BaseSelectionStatus.test.jsx", + "line": 44, + "column": 2 + } + ], + "CheckboxControl": [ { - "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 36, + "filePath": "src/components/BulkEnrollmentPage/table/BulkEnrollSelect.jsx", + "line": 18, "column": 6 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardImage.jsx", - "line": 7, - "column": 4 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSelectionCheckbox.jsx", + "line": 25, + "column": 6 } ], - "Card.Header": [ + "OverlayTrigger": [ { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 14, + "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", + "line": 12, + "column": 2 + }, + { + "filePath": "src/components/IconWithTooltip/index.jsx", + "line": 13, "column": 4 }, { - "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", - "line": 37, + "filePath": "src/components/InfoHover/index.jsx", + "line": 9, + "column": 2 + }, + { + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 16, "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 156, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", + "line": 16, + "column": 6 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 36, "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSCard.jsx", - "line": 12, - "column": 4 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 237, + "column": 16 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 111, - "column": 14 + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 95, + "column": 10 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 87, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 110, "column": 6 - } - ], - "Card.Footer": [ + }, { - "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", - "line": 19, - "column": 4 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 131, + "column": 6 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardFooter.jsx", - "line": 6, + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 63, "column": 2 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 29, - "column": 6 + "filePath": "src/components/TemplateSourceFields/index.jsx", + "line": 116, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 254, - "column": 8 + "filePath": "src/components/TemplateSourceFields/index.jsx", + "line": 142, + "column": 10 } ], - "CardGrid": [ - { - "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", - "line": 17, - "column": 4 - }, - { - "filePath": "src/components/ContentHighlights/ContentHighlightSetCardContainer.jsx", - "line": 8, - "column": 2 - }, + "Popover": [ { - "filePath": "src/components/ContentHighlights/HighlightSetSection.jsx", + "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", "line": 18, "column": 6 }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 146, - "column": 6 + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 20, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 85, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 42, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", - "line": 101, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 242, + "column": 20 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 200, - "column": 10 + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 99, + "column": 14 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 96, - "column": 8 + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 68, + "column": 6 } ], - "ActionRow.Spacer": [ + "Popover.Title": [ { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 24, + "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", + "line": 19, "column": 8 }, { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", "line": 21, - "column": 8 + "column": 12 }, { - "filePath": "src/components/settings/ConfigError.jsx", - "line": 22, + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 243, + "column": 22 + }, + { + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 69, "column": 8 } ], - "Add": [ + "Popover.Content": [ { - "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", - "line": 26, - "column": 22 + "filePath": "src/components/BulkEnrollmentPage/table/CourseSearchResultsCells.jsx", + "line": 20, + "column": 8 }, { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 31, - "column": 69 + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 22, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/index.jsx", - "line": 158, - "column": 24 - } - ], - "FullscreenModal": [ - { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", "line": 43, - "column": 8 - } - ], - "Stepper.Header": [ + "column": 14 + }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", - "line": 50, - "column": 26 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 244, + "column": 22 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 137, + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 100, + "column": 16 + }, + { + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 70, "column": 8 } ], - "Col": [ + "Modal": [ { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmCourses.jsx", - "line": 9, + "filePath": "src/components/CodeAssignmentModal/index.jsx", + "line": 405, "column": 6 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectCourses.jsx", - "line": 9, + "filePath": "src/components/CodeReminderModal/index.jsx", + "line": 217, "column": 6 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 11, + "filePath": "src/components/CodeRevokeModal/index.jsx", + "line": 231, "column": 6 }, { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 14, - "column": 10 - }, + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 182, + "column": 6 + } + ], + "Tab": [ { - "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", - "line": 20, + "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", + "line": 60, "column": 6 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 11, - "column": 4 - }, - { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 20, - "column": 4 - }, - { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 29, - "column": 4 + "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", + "line": 77, + "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 59, + "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "line": 55, "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 71, + "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "line": 61, "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 83, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", + "line": 24, "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 107, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", + "line": 29, + "column": 8 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", - "line": 10, - "column": 4 + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 53, + "column": 8 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 62, + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 72, "column": 8 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 67, + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 86, "column": 8 }, { - "filePath": "src/components/settings/SettingsAccessTab/index.jsx", - "line": 73, + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 103, "column": 8 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", - "line": 16, + "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", + "line": 64, "column": 6 }, { - "filePath": "src/components/subscriptions/MultipleSubscriptionPicker.jsx", - "line": 20, - "column": 6 - }, + "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", + "line": 77, + "column": 8 + } + ], + "Tabs": [ { - "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", - "line": 41, - "column": 12 + "filePath": "src/components/CodeManagement/CouponCodeTabs.jsx", + "line": 98, + "column": 4 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 114, - "column": 12 + "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "line": 47, + "column": 6 }, { - "filePath": "src/components/subscriptions/SubscriptionDetails.jsx", - "line": 49, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingTable.jsx", + "line": 18, + "column": 6 }, { - "filePath": "src/components/UserActivationPage/index.jsx", - "line": 78, - "column": 8 - } - ], - "AddCircle": [ - { - "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", - "line": 13, - "column": 21 + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 151, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", - "line": 110, - "column": 25 + "filePath": "src/components/subscriptions/SubscriptionTabs.jsx", + "line": 98, + "column": 4 } ], - "CheckBox": [ + "Container": [ { - "filePath": "src/components/CouponDetails/index.jsx", - "line": 88, - "column": 8 + "filePath": "src/components/CodeManagement/index.jsx", + "line": 15, + "column": 6 }, { - "filePath": "src/components/CouponDetails/index.jsx", - "line": 376, - "column": 8 - } - ], - "MediaQuery": [ + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 109, + "column": 4 + }, { - "filePath": "src/components/EnterpriseApp/index.jsx", - "line": 130, - "column": 10 - } - ], - "breakpoints": [ + "filePath": "src/components/ContentHighlights/ContentHighlightsDashboard.jsx", + "line": 15, + "column": 2 + }, { - "filePath": "src/components/EnterpriseApp/index.jsx", - "line": 130, - "column": 32 + "filePath": "src/components/ContentHighlights/ContentHighlightSet.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 20, - "column": 51 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 141, + "column": 4 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 60, - "column": 53 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContent.jsx", + "line": 10, + "column": 2 }, { - "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", - "line": 53, - "column": 50 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", + "line": 11, + "column": 2 }, { - "filePath": "src/containers/EnterpriseApp/EnterpriseApp.test.jsx", - "line": 179, - "column": 26 - } - ], - "ErrorIcon": [ + "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", + "line": 65, + "column": 6 + }, { - "filePath": "src/components/ErrorPage/index.jsx", - "line": 29, - "column": 18 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 139, + "column": 8 }, { - "filePath": "src/components/InviteLearnersModal/index.jsx", - "line": 159, - "column": 16 - } - ], - "ValidationFormGroup": [ + "filePath": "src/components/settings/SettingsTabs.jsx", + "line": 150, + "column": 4 + }, { - "filePath": "src/components/FileInput/index.jsx", - "line": 71, + "filePath": "src/components/subscriptions/SubscriptionManagementPage.jsx", + "line": 18, "column": 6 }, { - "filePath": "src/components/ReduxFormCheckbox/index.jsx", - "line": 15, + "filePath": "src/components/UserActivationPage/index.jsx", + "line": 76, "column": 4 + } + ], + "Info": [ + { + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 173, + "column": 36 }, { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 13, - "column": 8 + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 41, + "column": 16 }, { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 45, - "column": 8 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 47, + "column": 18 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 160, - "column": 10 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 70, + "column": 16 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 176, - "column": 12 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 85, + "column": 14 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 190, - "column": 12 + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 131, + "column": 16 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 205, - "column": 12 + "filePath": "src/components/learner-credit-management/LearnerCreditDisclaimer.jsx", + "line": 9, + "column": 15 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 219, - "column": 12 + "filePath": "src/components/learner-credit-management/OfferUtilizationAlerts.jsx", + "line": 81, + "column": 14 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 237, - "column": 12 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 44, + "column": 21 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 256, - "column": 12 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", + "line": 120, + "column": 21 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 272, - "column": 12 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSSOManagement.jsx", + "line": 41, + "column": 21 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 289, - "column": 8 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyRequestManagement.jsx", + "line": 56, + "column": 21 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 317, - "column": 10 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 100, + "column": 14 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 338, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 166, + "column": 16 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 12, - "column": 10 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 210, + "column": 16 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 30, - "column": 10 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 100, + "column": 20 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 49, - "column": 10 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 152, + "column": 20 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 77, - "column": 10 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 99, + "column": 20 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 93, - "column": 10 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 151, + "column": 20 + }, + { + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 75, + "column": 18 } ], - "Dropdown": [ + "Pagination": [ { - "filePath": "src/components/Header/index.jsx", - "line": 46, - "column": 4 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 197, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 159, - "column": 12 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 20, + "column": 4 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 118, - "column": 18 + "filePath": "src/components/TableComponent/index.jsx", + "line": 103, + "column": 12 } ], - "Dropdown.Toggle": [ + "CheckCircle": [ { - "filePath": "src/components/Header/index.jsx", - "line": 47, - "column": 6 + "filePath": "src/components/CodeManagement/ManageCodesTab.jsx", + "line": 218, + "column": 14 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", + "line": 26, + "column": 10 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 86, + "column": 23 + }, + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 30, + "column": 31 }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 160, - "column": 14 + "line": 124, + "column": 94 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 119, - "column": 20 + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 123, + "column": 10 } ], - "AvatarButton": [ + "Warning": [ { - "filePath": "src/components/Header/index.jsx", - "line": 48, - "column": 12 + "filePath": "src/components/CodeModal/ModalError.jsx", + "line": 12, + "column": 17 } ], - "Dropdown.Menu": [ + "TransitionReplace": [ { - "filePath": "src/components/Header/index.jsx", - "line": 56, + "filePath": "src/components/CodeSearchResults/index.jsx", + "line": 78, "column": 6 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 169, - "column": 14 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 128, - "column": 20 } ], - "Dropdown.Item": [ + "StatefulButton": [ { - "filePath": "src/components/Header/index.jsx", - "line": 57, + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 59, "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 174, - "column": 22 + "filePath": "src/components/ContentHighlights/DeleteHighlightSet.jsx", + "line": 113, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 186, - "column": 18 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 314, + "column": 16 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 196, - "column": 18 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 411, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 207, - "column": 20 + "filePath": "src/components/SaveTemplateButton/index.jsx", + "line": 141, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 130, - "column": 24 + "filePath": "src/components/settings/SettingsAccessTab/DisableLinkManagementAlertModal.jsx", + "line": 39, + "column": 10 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 137, - "column": 24 + "filePath": "src/components/settings/SettingsAccessTab/LinkDeactivationAlertModal.jsx", + "line": 59, + "column": 10 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 145, - "column": 26 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessGenerateLinkButton.jsx", + "line": 52, + "column": 4 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 162, - "column": 22 - } - ], - "Navbar": [ - { - "filePath": "src/components/Header/index.jsx", - "line": 88, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 62, "column": 6 - } - ], - "Nav": [ + }, { - "filePath": "src/components/Header/index.jsx", - "line": 89, - "column": 8 + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 42, + "column": 4 }, { - "filePath": "src/components/Header/index.jsx", - "line": 99, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 214, "column": 10 - } - ], - "Nav.Link": [ + }, { - "filePath": "src/components/Header/index.jsx", - "line": 91, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 190, "column": 10 - } - ], - "Tooltip": [ - { - "filePath": "src/components/IconWithTooltip/index.jsx", - "line": 18, - "column": 8 }, { - "filePath": "src/components/InfoHover/index.jsx", - "line": 12, - "column": 15 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 166, + "column": 12 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", - "line": 20, - "column": 10 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 165, + "column": 12 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 113, + "filePath": "src/components/subsidy-request-modals/DeclineSubsidyRequestModal.jsx", + "line": 112, "column": 10 - }, + } + ], + "Hyperlink": [ { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 134, - "column": 10 + "filePath": "src/components/ContactCustomerSupportButton/index.jsx", + "line": 16, + "column": 4 }, { - "filePath": "src/components/TemplateSourceFields/index.jsx", - "line": 120, - "column": 14 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 28, + "column": 6 }, { - "filePath": "src/components/TemplateSourceFields/index.jsx", - "line": 146, - "column": 14 - } - ], - "InfoOutline": [ - { - "filePath": "src/components/InfoHover/index.jsx", - "line": 14, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperFooterHelpLink.jsx", + "line": 33, "column": 6 }, { - "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", - "line": 47, - "column": 15 + "filePath": "src/components/settings/ConfigError.jsx", + "line": 24, + "column": 10 }, { "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 130, - "column": 21 - } - ], - "ProgressBar.Annotated": [ - { - "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", - "line": 87, - "column": 16 - } - ], - "useMediaQuery": [ - { - "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 20, - "column": 25 - } - ], - "DataTable.EmptyTable": [ - { - "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", - "line": 75, - "column": 17 + "line": 132, + "column": 10 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessLinkManagement.jsx", - "line": 185, - "column": 28 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 49, + "column": 9 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ContentMetadataTable.jsx", - "line": 115, + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 141, "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/LearnerMetadataTable.jsx", - "line": 120, + "filePath": "src/components/settings/SettingsSSOTab/index.jsx", + "line": 44, "column": 8 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 226, - "column": 19 + "filePath": "src/components/settings/SettingsSSOTab/NewSSOConfigForm.jsx", + "line": 23, + "column": 10 }, { - "filePath": "src/components/SubsidyRequestManagementTable/SubsidyRequestManagementTable.jsx", - "line": 92, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 151, "column": 8 - } - ], - "Badge": [ - { - "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", - "line": 76, - "column": 14 }, { - "filePath": "src/components/learner-credit-management/LearnerCreditManagement.jsx", - "line": 78, - "column": 14 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 202, + "column": 12 }, { - "filePath": "src/components/settings/SettingsAccessTab/StatusTableCell.jsx", - "line": 8, - "column": 4 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 370, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 243, - "column": 20 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigServiceProviderStep.jsx", + "line": 35, + "column": 41 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 248, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 168, "column": 16 }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 172, - "column": 45 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 173, - "column": 65 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 174, - "column": 66 - }, - { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementUserBadge.jsx", - "line": 18, - "column": 11 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 162, + "column": 16 }, { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", - "line": 76, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 177, "column": 10 }, { - "filePath": "src/components/SubsidyRequestManagementTable/RequestStatusCell.jsx", - "line": 23, - "column": 4 - } - ], - "Search": [ + "filePath": "src/components/subscriptions/MultipleSubscriptionsPage.jsx", + "line": 47, + "column": 14 + }, { - "filePath": "src/components/learner-credit-management/TableTextFilter.jsx", - "line": 28, - "column": 36 + "filePath": "src/components/SubsidyRequestManagementTable/CourseTitleCell.jsx", + "line": 40, + "column": 8 } ], - "FormControl.Feedback": [ + "Add": [ { - "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", - "line": 87, - "column": 25 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityAlert.jsx", + "line": 75, + "column": 26 }, { - "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", - "line": 88, - "column": 19 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 74, + "column": 22 }, { - "filePath": "src/components/ReduxFormSelect/index.jsx", - "line": 15, - "column": 19 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateHighlights.jsx", + "line": 56, + "column": 26 }, { - "filePath": "src/components/RenderField/index.jsx", - "line": 31, - "column": 19 + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 153, + "column": 24 }, { - "filePath": "src/components/TextAreaAutoSize/index.jsx", - "line": 30, - "column": 19 - } - ], - "Form.Text": [ - { - "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", - "line": 89, - "column": 22 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 34, + "column": 28 }, { - "filePath": "src/components/ReduxFormSelect/index.jsx", - "line": 16, - "column": 22 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 44, + "column": 21 }, { - "filePath": "src/components/RenderField/index.jsx", + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", "line": 32, - "column": 22 + "column": 28 + } + ], + "Form.RadioSet": [ + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 111, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", - "line": 253, - "column": 10 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyTypeSelection.jsx", + "line": 58, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", - "line": 240, + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", + "line": 202, "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CornerstoneConfig.jsx", - "line": 114, - "column": 10 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 122, + "column": 16 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", - "line": 128, - "column": 10 + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 121, + "column": 16 + } + ], + "Spinner": [ + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 118, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", - "line": 191, - "column": 10 + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 141, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", - "line": 128, - "column": 10 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", + "line": 32, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", - "line": 204, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 74, + "column": 19 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", - "line": 218, - "column": 10 + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 52, + "column": 17 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", - "line": 136, - "column": 10 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 221, + "column": 23 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", - "line": 186, + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 198, + "column": 23 + } + ], + "Form.Radio": [ + { + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 130, "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", - "line": 202, + "filePath": "src/components/ContentHighlights/CatalogVisibility/ContentHighlightCatalogVisibilityRadioInput.jsx", + "line": 155, "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", - "line": 127, - "column": 10 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyTypeSelection.jsx", + "line": 66, + "column": 12 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 240, - "column": 12 + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 31, + "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 257, + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", + "line": 211, "column": 12 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 280, + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", + "line": 212, "column": 12 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 296, - "column": 12 + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 127, + "column": 20 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 312, - "column": 12 - }, + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 126, + "column": 20 + } + ], + "Card.ImageCap": [ { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 328, - "column": 12 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 35, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 344, - "column": 12 + "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", + "line": 39, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 360, - "column": 12 + "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", + "line": 6, + "column": 4 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 384, - "column": 12 + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardImage.jsx", + "line": 7, + "column": 4 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 403, - "column": 12 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 20, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 422, - "column": 12 - }, + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", + "line": 18, + "column": 6 + } + ], + "Card.Header": [ { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 436, - "column": 12 + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 42, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 450, - "column": 12 + "filePath": "src/components/ContentHighlights/ContentHighlightSetCard.jsx", + "line": 40, + "column": 6 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 472, - "column": 12 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 169, + "column": 8 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 494, - "column": 12 + "filePath": "src/components/settings/SettingsLMSTab/LMSCard.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 510, + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 107, "column": 12 }, { - "filePath": "src/components/TextAreaAutoSize/index.jsx", - "line": 31, - "column": 22 + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 87, + "column": 6 } ], - "ProductTour": [ + "Card.Footer": [ { - "filePath": "src/components/ProductTours/ProductTours.jsx", - "line": 70, + "filePath": "src/components/ContentHighlights/ContentHighlightCardItem.jsx", + "line": 49, + "column": 10 + }, + { + "filePath": "src/components/ContentHighlights/SkeletonContentCard.jsx", + "line": 8, "column": 4 - } - ], - "Form.Check": [ + }, { - "filePath": "src/components/ReduxFormCheckbox/index.jsx", - "line": 19, - "column": 6 - } - ], - "FormControl": [ + "filePath": "src/components/ContentHighlights/ZeroState/ZeroStateCardFooter.jsx", + "line": 6, + "column": 2 + }, { - "filePath": "src/components/ReduxFormSelect/index.jsx", - "line": 12, + "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", + "line": 29, "column": 6 - } - ], - "Input": [ - { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 20, - "column": 10 }, { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 36, - "column": 12 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 263, + "column": 8 }, { - "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", - "line": 52, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 33, + "column": 6 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 164, - "column": 12 + "filePath": "src/components/settings/SettingsLMSTab/NoConfigCard.jsx", + "line": 38, + "column": 6 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 181, - "column": 14 + "filePath": "src/components/settings/SettingsSSOTab/NoSSOCard.jsx", + "line": 31, + "column": 6 + } + ], + "CardGrid": [ + { + "filePath": "src/components/ContentHighlights/ContentHighlightsCardItemsContainer.jsx", + "line": 42, + "column": 4 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 195, - "column": 14 + "filePath": "src/components/ContentHighlights/HighlightSetSection.jsx", + "line": 36, + "column": 6 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 210, - "column": 14 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 50, + "column": 4 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 224, - "column": 14 + "filePath": "src/components/ContentHighlights/SkeletonContentCardContainer.jsx", + "line": 8, + "column": 2 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 243, - "column": 14 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 146, + "column": 6 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 261, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", + "line": 55, + "column": 8 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 279, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/ExistingLMSCardDeck.jsx", + "line": 71, + "column": 8 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 294, + "filePath": "src/components/settings/SettingsLMSTab/index.jsx", + "line": 203, "column": 10 }, { - "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", - "line": 322, - "column": 12 - }, + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 92, + "column": 6 + } + ], + "ActionRow.Spacer": [ { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 19, - "column": 12 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightHeader.jsx", + "line": 71, + "column": 8 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 37, - "column": 12 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 12, + "column": 8 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 56, - "column": 12 + "filePath": "src/components/ContentHighlights/CurrentContentHighlightItemsHeader.jsx", + "line": 24, + "column": 8 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 68, - "column": 14 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 13, + "column": 4 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 84, - "column": 12 + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 19, + "column": 4 }, { - "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", - "line": 100, - "column": 12 + "filePath": "src/components/settings/ConfigError.jsx", + "line": 22, + "column": 8 } ], - "Collapsible": [ + "FullscreenModal": [ { - "filePath": "src/components/ReportingConfig/index.jsx", - "line": 141, - "column": 16 - }, + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 259, + "column": 8 + } + ], + "Stepper.Header": [ { - "filePath": "src/components/ReportingConfig/index.jsx", - "line": 176, - "column": 12 + "filePath": "src/components/ContentHighlights/HighlightStepper/ContentHighlightStepper.jsx", + "line": 264, + "column": 26 }, { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", - "line": 52, - "column": 10 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 137, + "column": 8 } ], - "SearchField": [ + "Assignment": [ { - "filePath": "src/components/SearchBar/index.jsx", - "line": 6, - "column": 2 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperConfirmContent.jsx", + "line": 145, + "column": 23 } ], - "Form.RadioSet": [ + "AddCircle": [ { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyTypeSelection.jsx", - "line": 58, - "column": 6 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentHeader.jsx", + "line": 13, + "column": 19 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", - "line": 202, - "column": 10 - }, + "filePath": "src/components/settings/SettingsSSOTab/SSOConfigConfiguredCard.jsx", + "line": 110, + "column": 25 + } + ], + "CardView": [ { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 122, - "column": 16 - }, + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperSelectContentSearch.jsx", + "line": 142, + "column": 8 + } + ], + "EditCircle": [ { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 121, - "column": 16 + "filePath": "src/components/ContentHighlights/HighlightStepper/HighlightStepperTitle.jsx", + "line": 15, + "column": 21 } ], - "Form.Radio": [ + "Pagination.Reduced": [ { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessSubsidyTypeSelection.jsx", - "line": 66, - "column": 12 - }, + "filePath": "src/components/ContentHighlights/HighlightStepper/SelectContentSearchPagination.jsx", + "line": 14, + "column": 4 + } + ], + "CheckBox": [ { - "filePath": "src/components/settings/SettingsAppearanceTab/ThemeCard.jsx", - "line": 31, + "filePath": "src/components/CouponDetails/index.jsx", + "line": 245, "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", - "line": 211, - "column": 12 - }, - { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", - "line": 212, - "column": 12 - }, - { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 127, - "column": 20 - }, + "filePath": "src/components/CouponDetails/index.jsx", + "line": 433, + "column": 8 + } + ], + "MediaQuery": [ { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 126, - "column": 20 + "filePath": "src/components/EnterpriseApp/index.jsx", + "line": 130, + "column": 10 } ], - "Spinner": [ + "breakpoints": [ { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", - "line": 32, - "column": 8 + "filePath": "src/components/EnterpriseApp/index.jsx", + "line": 130, + "column": 32 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 69, - "column": 19 + "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", + "line": 20, + "column": 51 }, { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 52, - "column": 17 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 62, + "column": 53 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 221, - "column": 23 + "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", + "line": 31, + "column": 40 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 198, - "column": 23 + "filePath": "src/containers/EnterpriseApp/EnterpriseApp.test.jsx", + "line": 185, + "column": 26 } ], - "Form.Switch": [ + "ErrorIcon": [ { - "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", - "line": 40, - "column": 8 + "filePath": "src/components/ErrorPage/index.jsx", + "line": 29, + "column": 18 + }, + { + "filePath": "src/components/InviteLearnersModal/index.jsx", + "line": 159, + "column": 16 } ], - "Form": [ + "ValidationFormGroup": [ { - "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", - "line": 81, - "column": 8 + "filePath": "src/components/FileInput/index.jsx", + "line": 71, + "column": 6 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", - "line": 240, - "column": 6 + "filePath": "src/components/ReduxFormCheckbox/index.jsx", + "line": 15, + "column": 4 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", - "line": 228, - "column": 6 + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 13, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CornerstoneConfig.jsx", - "line": 102, - "column": 6 + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 45, + "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", - "line": 115, - "column": 6 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 197, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", - "line": 116, - "column": 6 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 213, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", - "line": 124, - "column": 6 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 227, + "column": 12 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", - "line": 115, - "column": 6 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 242, + "column": 12 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 175, - "column": 8 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 265, + "column": 12 }, { - "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", - "line": 92, - "column": 6 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 283, + "column": 12 }, { - "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", - "line": 91, - "column": 6 - } - ], - "Dropzone": [ + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 302, + "column": 12 + }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 115, - "column": 6 - } - ], - "Image": [ + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 318, + "column": 12 + }, { - "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", - "line": 130, + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 335, "column": 8 }, { - "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 219, - "column": 14 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 366, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSCard.jsx", - "line": 15, + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 384, "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/LMSConfigPage.jsx", - "line": 34, - "column": 6 - } - ], - "Download": [ + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 405, + "column": 10 + }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 68, - "column": 30 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 12, + "column": 10 }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 71, - "column": 34 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 30, + "column": 10 }, { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 51, - "column": 28 - } - ], - "Check": [ + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 49, + "column": 10 + }, { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", - "line": 70, - "column": 31 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 77, + "column": 10 }, { - "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", - "line": 53, - "column": 29 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 93, + "column": 10 } ], - "ModalDialog.CloseButton": [ + "Dropdown": [ { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/ErrorReportingModal.jsx", - "line": 52, - "column": 12 + "filePath": "src/components/Header/index.jsx", + "line": 46, + "column": 4 }, { - "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", - "line": 176, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 172, + "column": 12 }, { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", - "line": 37, - "column": 10 - }, + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 114, + "column": 16 + } + ], + "Dropdown.Toggle": [ { - "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", - "line": 67, - "column": 10 + "filePath": "src/components/Header/index.jsx", + "line": 47, + "column": 6 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", - "line": 211, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 173, + "column": 14 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 187, - "column": 10 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 115, + "column": 18 } ], - "Sync": [ + "AvatarButton": [ { - "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", - "line": 31, - "column": 34 + "filePath": "src/components/Header/index.jsx", + "line": 48, + "column": 12 } ], - "MoreVert": [ + "Dropdown.Menu": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 56, + "column": 6 + }, { "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", - "line": 164, - "column": 21 + "line": 182, + "column": 14 }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 123, - "column": 27 + "line": 124, + "column": 18 } ], - "PlayCircleFilled": [ + "Dropdown.Item": [ { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 133, - "column": 26 - } - ], - "RemoveCircle": [ + "filePath": "src/components/Header/index.jsx", + "line": 57, + "column": 8 + }, { - "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 140, - "column": 26 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 185, + "column": 20 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", - "line": 197, - "column": 34 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 195, + "column": 20 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RevokeBulkAction.jsx", - "line": 115, + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 205, "column": 20 }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 142, - "column": 15 - } - ], - "Edit": [ + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 216, + "column": 20 + }, { "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", - "line": 165, - "column": 24 - } - ], - "ArrowForward": [ + "line": 126, + "column": 20 + }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 200, - "column": 18 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 133, + "column": 20 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 214, - "column": 14 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 141, + "column": 22 }, { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 236, - "column": 14 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 158, + "column": 20 } ], - "ArrowBack": [ - { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 206, - "column": 14 - }, - { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 220, - "column": 14 - }, + "Navbar": [ { - "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", - "line": 241, - "column": 14 + "filePath": "src/components/Header/index.jsx", + "line": 88, + "column": 6 } ], - "Bubble": [ + "Nav": [ { - "filePath": "src/components/Sidebar/IconLink.jsx", - "line": 54, + "filePath": "src/components/Header/index.jsx", + "line": 89, + "column": 8 + }, + { + "filePath": "src/components/Header/index.jsx", + "line": 99, "column": 10 } ], - "MoneyOutline": [ + "Nav.Link": [ { - "filePath": "src/components/Sidebar/index.jsx", - "line": 107, - "column": 23 + "filePath": "src/components/Header/index.jsx", + "line": 91, + "column": 10 } ], - "StatusAlert": [ + "Tooltip": [ { - "filePath": "src/components/StatusAlert/index.jsx", + "filePath": "src/components/IconWithTooltip/index.jsx", "line": 18, - "column": 4 - } - ], - "Email": [ + "column": 8 + }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RemindBulkAction.jsx", - "line": 118, - "column": 20 + "filePath": "src/components/InfoHover/index.jsx", + "line": 11, + "column": 13 + }, + { + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessConfiguredSubsidyType.jsx", + "line": 20, + "column": 10 }, { "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", - "line": 121, - "column": 15 - } - ], - "useWindowSize": [ + "line": 113, + "column": 10 + }, { - "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", - "line": 59, - "column": 20 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 134, + "column": 10 + }, + { + "filePath": "src/components/TemplateSourceFields/index.jsx", + "line": 120, + "column": 14 + }, + { + "filePath": "src/components/TemplateSourceFields/index.jsx", + "line": 146, + "column": 14 } ], - "Card.Body": [ + "InfoOutline": [ { - "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "filePath": "src/components/InfoHover/index.jsx", + "line": 13, + "column": 4 + }, + { + "filePath": "src/components/learner-credit-management/EmailAddressTableCell.jsx", + "line": 47, + "column": 15 + }, + { + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", "line": 131, - "column": 6 + "column": 21 } ], - "ResponsiveContext.Provider": [ + "ProgressBar.Annotated": [ { - "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", - "line": 53, - "column": 6 + "filePath": "src/components/learner-credit-management/LearnerCreditAggregateCards.jsx", + "line": 87, + "column": 16 } ], - "PageBanner": [ + "useMediaQuery": [ { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 7, - "column": 2 + "filePath": "src/components/learner-credit-management/LearnerCreditAllocationTable.jsx", + "line": 20, + "column": 25 } ], - "Table": [ + "Search": [ { - "filePath": "src/components/TableComponent/index.jsx", - "line": 89, - "column": 14 + "filePath": "src/components/learner-credit-management/TableTextFilter.jsx", + "line": 28, + "column": 36 } - ] - } - }, - { - "version": "20.18.2", - "name": "@edx/frontend-app-authn", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-authn.git" - }, - "folderName": "frontend-app-authn", - "usages": { - "Hyperlink": [ - { - "filePath": "src/base-component/AuthLargeLayout.jsx", - "line": 13, - "column": 6 - }, - { - "filePath": "src/base-component/AuthMediumLayout.jsx", - "line": 15, - "column": 8 - }, + ], + "FormControl.Feedback": [ { - "filePath": "src/base-component/AuthSmallLayout.jsx", - "line": 13, - "column": 4 + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 87, + "column": 25 }, { - "filePath": "src/base-component/LargeLayout.jsx", - "line": 13, - "column": 6 + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 88, + "column": 19 }, { - "filePath": "src/base-component/MediumLayout.jsx", + "filePath": "src/components/ReduxFormSelect/index.jsx", "line": 15, - "column": 8 + "column": 19 }, { - "filePath": "src/base-component/SmallLayout.jsx", - "line": 14, - "column": 6 + "filePath": "src/components/RenderField/index.jsx", + "line": 31, + "column": 19 }, { - "filePath": "src/common-components/InstitutionLogistration.jsx", - "line": 53, - "column": 18 - }, + "filePath": "src/components/TextAreaAutoSize/index.jsx", + "line": 30, + "column": 19 + } + ], + "Form.Text": [ { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 144, - "column": 12 + "filePath": "src/components/MultipleFileInputField/MultipleFileInputField.jsx", + "line": 89, + "column": 22 }, { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 157, - "column": 16 + "filePath": "src/components/ReduxFormSelect/index.jsx", + "line": 16, + "column": 22 }, { - "filePath": "src/login/LoginFailure.jsx", + "filePath": "src/components/RenderField/index.jsx", "line": 32, - "column": 4 + "column": 22 }, { - "filePath": "src/login/LoginFailure.jsx", - "line": 97, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", + "line": 253, + "column": 10 }, { - "filePath": "src/login/LoginPage.jsx", - "line": 181, + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", + "line": 240, "column": 10 }, { - "filePath": "src/register/HonorCode.jsx", - "line": 26, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CornerstoneConfig.jsx", + "line": 114, + "column": 10 }, { - "filePath": "src/register/HonorCode.jsx", - "line": 31, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", + "line": 128, + "column": 10 }, { - "filePath": "src/register/HonorCode.jsx", - "line": 58, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", + "line": 191, + "column": 10 }, { - "filePath": "src/register/TermsOfService.jsx", - "line": 33, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", + "line": 128, + "column": 10 }, { - "filePath": "src/welcome/ProgressiveProfiling.jsx", - "line": 152, - "column": 14 - } - ], - "Image": [ + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", + "line": 204, + "column": 10 + }, { - "filePath": "src/base-component/AuthLargeLayout.jsx", - "line": 14, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", + "line": 218, + "column": 10 }, { - "filePath": "src/base-component/AuthMediumLayout.jsx", - "line": 16, + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", + "line": 136, "column": 10 }, { - "filePath": "src/base-component/AuthSmallLayout.jsx", - "line": 14, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", + "line": 186, + "column": 12 }, { - "filePath": "src/base-component/LargeLayout.jsx", - "line": 14, - "column": 8 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", + "line": 202, + "column": 12 }, { - "filePath": "src/base-component/MediumLayout.jsx", - "line": 16, + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", + "line": 127, "column": 10 }, { - "filePath": "src/base-component/SmallLayout.jsx", - "line": 15, - "column": 8 - } - ], - "breakpoints": [ - { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 27, - "column": 30 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 240, + "column": 12 }, { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 30, - "column": 30 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 257, + "column": 12 }, { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 30, - "column": 69 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 280, + "column": 12 }, { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 33, - "column": 30 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 296, + "column": 12 }, { - "filePath": "src/base-component/BaseComponent.jsx", - "line": 33, - "column": 73 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 312, + "column": 12 }, { - "filePath": "src/data/utils/useMobileResponsive.js", - "line": 13, - "column": 69 - } - ], - "Form": [ + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 328, + "column": 12 + }, { - "filePath": "src/common-components/EnterpriseSSO.jsx", - "line": 34, + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 344, "column": 12 }, { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 111, - "column": 10 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 360, + "column": 12 }, { - "filePath": "src/login/LoginPage.jsx", - "line": 262, - "column": 10 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 384, + "column": 12 }, { - "filePath": "src/register/RegistrationPage.jsx", - "line": 769, - "column": 10 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 403, + "column": 12 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 176, - "column": 14 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 422, + "column": 12 }, { - "filePath": "src/welcome/ProgressiveProfiling.jsx", - "line": 149, - "column": 10 - } - ], - "Button": [ + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 436, + "column": 12 + }, { - "filePath": "src/common-components/EnterpriseSSO.jsx", - "line": 36, - "column": 14 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 450, + "column": 12 }, { - "filePath": "src/common-components/EnterpriseSSO.jsx", - "line": 62, - "column": 14 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 472, + "column": 12 }, { - "filePath": "src/common-components/InstitutionLogistration.jsx", - "line": 15, - "column": 4 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 494, + "column": 12 }, { - "filePath": "src/register/UsernameField.jsx", - "line": 21, - "column": 10 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 510, + "column": 12 }, { - "filePath": "src/welcome/WelcomePageModal.jsx", - "line": 40, - "column": 10 + "filePath": "src/components/TextAreaAutoSize/index.jsx", + "line": 31, + "column": 22 } ], - "Form.Group": [ + "ProductTour": [ { - "filePath": "src/common-components/FormGroup.jsx", - "line": 24, + "filePath": "src/components/ProductTours/ProductTours.jsx", + "line": 70, "column": 4 - }, - { - "filePath": "src/common-components/PasswordField.jsx", - "line": 58, - "column": 4 - }, - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 27, - "column": 8 - }, - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 55, - "column": 8 - }, - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 77, - "column": 8 - }, - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 98, - "column": 8 } ], - "Form.Control": [ + "Form.Check": [ { - "filePath": "src/common-components/FormGroup.jsx", - "line": 25, + "filePath": "src/components/ReduxFormCheckbox/index.jsx", + "line": 19, "column": 6 - }, - { - "filePath": "src/common-components/PasswordField.jsx", - "line": 60, - "column": 8 - }, - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 28, - "column": 10 - }, - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 56, - "column": 10 - }, - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 78, - "column": 10 } ], - "TransitionReplace": [ + "FormControl": [ { - "filePath": "src/common-components/FormGroup.jsx", - "line": 46, + "filePath": "src/components/ReduxFormSelect/index.jsx", + "line": 12, "column": 6 - }, - { - "filePath": "src/common-components/SwitchContent.jsx", - "line": 42, - "column": 4 } ], - "Icon": [ + "Input": [ { - "filePath": "src/common-components/InstitutionLogistration.jsx", - "line": 21, - "column": 6 + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 20, + "column": 10 }, { - "filePath": "src/common-components/Logistration.jsx", - "line": 54, - "column": 6 + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 36, + "column": 12 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 33, - "column": 112 + "filePath": "src/components/ReportingConfig/EmailDeliveryMethodForm.jsx", + "line": 52, + "column": 10 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 37, - "column": 109 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 201, + "column": 12 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 43, - "column": 42 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 218, + "column": 14 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 43, - "column": 95 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 232, + "column": 14 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 47, - "column": 42 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 249, + "column": 14 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 47, - "column": 95 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 270, + "column": 14 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 51, - "column": 35 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 289, + "column": 14 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 51, - "column": 88 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 307, + "column": 14 }, { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 34, - "column": 29 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 325, + "column": 14 }, { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 91, - "column": 6 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 342, + "column": 10 }, { - "filePath": "src/login/LoginPage.jsx", - "line": 182, + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 373, "column": 12 }, { - "filePath": "src/register/CountryDropdown.jsx", - "line": 158, - "column": 16 + "filePath": "src/components/ReportingConfig/ReportingConfigForm.jsx", + "line": 389, + "column": 12 }, { - "filePath": "src/register/CountryDropdown.jsx", - "line": 175, - "column": 16 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 19, + "column": 12 }, { - "filePath": "src/register/RegistrationPage.jsx", - "line": 582, - "column": 26 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 37, + "column": 12 }, { - "filePath": "src/register/UsernameField.jsx", - "line": 39, - "column": 49 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 56, + "column": 12 }, { - "filePath": "src/register/UsernameField.jsx", - "line": 43, - "column": 49 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 68, + "column": 14 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 141, - "column": 6 - } - ], - "Institution": [ - { - "filePath": "src/common-components/InstitutionLogistration.jsx", - "line": 21, - "column": 17 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 84, + "column": 12 }, { - "filePath": "src/login/LoginPage.jsx", - "line": 182, - "column": 23 + "filePath": "src/components/ReportingConfig/SFTPDeliveryMethodForm.jsx", + "line": 100, + "column": 12 } ], - "ChevronLeft": [ + "Collapsible": [ { - "filePath": "src/common-components/Logistration.jsx", - "line": 54, - "column": 17 + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 140, + "column": 14 }, { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 91, - "column": 17 + "filePath": "src/components/ReportingConfig/index.jsx", + "line": 175, + "column": 10 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 141, - "column": 17 + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", + "line": 52, + "column": 10 } ], - "Tabs": [ + "SearchField": [ { - "filePath": "src/common-components/Logistration.jsx", - "line": 68, - "column": 12 - }, + "filePath": "src/components/SearchBar/index.jsx", + "line": 6, + "column": 2 + } + ], + "Form.Switch": [ { - "filePath": "src/common-components/Logistration.jsx", - "line": 75, - "column": 16 - }, + "filePath": "src/components/settings/SettingsAccessTab/SettingsAccessTabSection.jsx", + "line": 40, + "column": 8 + } + ], + "Form": [ { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 104, + "filePath": "src/components/settings/SettingsAppearanceTab/CustomThemeModal.jsx", + "line": 82, "column": 8 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 165, - "column": 10 - } - ], - "Tab": [ + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/BlackboardConfig.jsx", + "line": 240, + "column": 6 + }, { - "filePath": "src/common-components/Logistration.jsx", - "line": 69, - "column": 14 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CanvasConfig.jsx", + "line": 228, + "column": 6 }, { - "filePath": "src/common-components/Logistration.jsx", - "line": 76, - "column": 18 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/CornerstoneConfig.jsx", + "line": 102, + "column": 6 }, { - "filePath": "src/common-components/Logistration.jsx", - "line": 77, - "column": 18 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/Degreed2Config.jsx", + "line": 115, + "column": 6 }, { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 105, - "column": 10 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/DegreedConfig.jsx", + "line": 116, + "column": 6 }, { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 166, - "column": 12 - } - ], - "useToggle": [ - { - "filePath": "src/common-components/PasswordField.jsx", - "line": 17, - "column": 60 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/MoodleConfig.jsx", + "line": 124, + "column": 6 }, { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 30, - "column": 32 - } - ], - "IconButton": [ - { - "filePath": "src/common-components/PasswordField.jsx", - "line": 33, - "column": 4 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigs/SAPConfig.jsx", + "line": 115, + "column": 6 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 37, - "column": 4 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 175, + "column": 8 }, { - "filePath": "src/register/CountryDropdown.jsx", - "line": 152, + "filePath": "src/components/subsidy-request-modals/ApproveCouponCodeRequestModal.jsx", + "line": 92, "column": 6 }, { - "filePath": "src/register/CountryDropdown.jsx", - "line": 169, + "filePath": "src/components/subsidy-request-modals/ApproveLicenseRequestModal.jsx", + "line": 91, "column": 6 - }, - { - "filePath": "src/register/UsernameField.jsx", - "line": 39, - "column": 17 - }, - { - "filePath": "src/register/UsernameField.jsx", - "line": 43, - "column": 17 } ], - "VisibilityOff": [ + "Dropzone": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 33, - "column": 89 + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 115, + "column": 6 } ], - "Visibility": [ + "Image": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 37, - "column": 89 - } - ], - "Tooltip": [ + "filePath": "src/components/settings/SettingsAppearanceTab/index.jsx", + "line": 130, + "column": 8 + }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 41, - "column": 4 - } - ], - "Check": [ + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 204, + "column": 16 + }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 43, - "column": 83 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 228, + "column": 14 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 47, - "column": 83 + "filePath": "src/components/settings/SettingsLMSTab/LMSCard.jsx", + "line": 15, + "column": 10 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 51, - "column": 76 + "filePath": "src/components/settings/SettingsLMSTab/LMSConfigPage.jsx", + "line": 34, + "column": 6 } ], - "Remove": [ + "Download": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 43, - "column": 138 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 73, + "column": 30 }, { - "filePath": "src/common-components/PasswordField.jsx", - "line": 47, - "column": 138 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 76, + "column": 34 }, { - "filePath": "src/common-components/PasswordField.jsx", + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", "line": 51, - "column": 131 + "column": 28 } ], - "OverlayTrigger": [ + "Check": [ { - "filePath": "src/common-components/PasswordField.jsx", - "line": 59, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/DownloadCsvButton.jsx", + "line": 75, + "column": 31 + }, + { + "filePath": "src/components/subscriptions/buttons/DownloadCsvButton.jsx", + "line": 53, + "column": 29 } ], - "Alert": [ + "Card.Status": [ { - "filePath": "src/common-components/ThirdPartyAuthAlert.jsx", - "line": 23, - "column": 4 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 74, + "column": 8 }, { - "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 84, + "column": 8 + } + ], + "Sync": [ + { + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", "line": 74, - "column": 6 + "column": 27 }, { - "filePath": "src/login/AccountActivationMessage.jsx", - "line": 59, - "column": 4 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 84, + "column": 27 }, { - "filePath": "src/login/LoginFailure.jsx", - "line": 175, - "column": 4 + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/utils.jsx", + "line": 31, + "column": 34 }, { - "filePath": "src/register/RegistrationFailure.jsx", - "line": 38, - "column": 4 - }, + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 265, + "column": 46 + } + ], + "Breadcrumb": [ { - "filePath": "src/register/RegistrationPage.jsx", - "line": 573, - "column": 8 - }, + "filePath": "src/components/settings/SettingsLMSTab/ErrorReporting/SyncHistory.jsx", + "line": 191, + "column": 10 + } + ], + "MoreVert": [ { - "filePath": "src/reset-password/ResetPasswordFailure.jsx", - "line": 36, - "column": 6 + "filePath": "src/components/settings/SettingsLMSTab/ExistingCard.jsx", + "line": 177, + "column": 21 }, { - "filePath": "src/reset-password/ResetPasswordSuccess.jsx", - "line": 12, - "column": 4 - }, + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 119, + "column": 25 + } + ], + "PlayCircleFilled": [ { - "filePath": "src/welcome/ProgressiveProfiling.jsx", - "line": 144, - "column": 12 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 129, + "column": 22 } ], - "Alert.Heading": [ + "RemoveCircle": [ { - "filePath": "src/common-components/ThirdPartyAuthAlert.jsx", - "line": 25, - "column": 8 + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 136, + "column": 22 }, { - "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", - "line": 80, - "column": 8 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 197, + "column": 34 }, { - "filePath": "src/login/AccountActivationMessage.jsx", - "line": 65, - "column": 18 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RevokeBulkAction.jsx", + "line": 115, + "column": 20 }, { - "filePath": "src/login/LoginFailure.jsx", - "line": 176, - "column": 6 - }, + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 142, + "column": 15 + } + ], + "Edit": [ { - "filePath": "src/register/RegistrationFailure.jsx", - "line": 39, - "column": 6 - }, + "filePath": "src/components/settings/SettingsSSOTab/ExistingSSOConfigs.jsx", + "line": 161, + "column": 22 + } + ], + "ArrowForward": [ { - "filePath": "src/reset-password/ResetPasswordFailure.jsx", - "line": 37, - "column": 8 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 200, + "column": 18 }, { - "filePath": "src/reset-password/ResetPasswordSuccess.jsx", - "line": 13, - "column": 6 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 214, + "column": 14 }, { - "filePath": "src/welcome/ProgressiveProfiling.jsx", - "line": 145, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 236, "column": 14 } ], - "ExpandMore": [ + "ArrowBack": [ { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 34, - "column": 40 + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 206, + "column": 14 }, { - "filePath": "src/register/CountryDropdown.jsx", - "line": 157, - "column": 13 - } - ], - "Form.Checkbox": [ - { - "filePath": "src/field-renderer/FieldRenderer.jsx", - "line": 99, - "column": 10 - }, - { - "filePath": "src/register/HonorCode.jsx", - "line": 43, - "column": 6 - }, - { - "filePath": "src/register/RegistrationPage.jsx", - "line": 841, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 220, "column": 14 }, { - "filePath": "src/register/TermsOfService.jsx", - "line": 17, - "column": 6 - } - ], - "Alert.Link": [ - { - "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", - "line": 38, + "filePath": "src/components/settings/SettingsSSOTab/SSOStepper.jsx", + "line": 241, "column": 14 - }, - { - "filePath": "src/login/AccountActivationMessage.jsx", - "line": 38, - "column": 8 - }, - { - "filePath": "src/register/RegistrationPage.jsx", - "line": 576, - "column": 12 - }, - { - "filePath": "src/register/RegistrationPage.jsx", - "line": 591, - "column": 10 } ], - "StatefulButton": [ - { - "filePath": "src/forgot-password/ForgotPasswordPage.jsx", - "line": 130, - "column": 12 - }, - { - "filePath": "src/login/LoginPage.jsx", - "line": 284, - "column": 12 - }, - { - "filePath": "src/register/RegistrationPage.jsx", - "line": 857, - "column": 12 - }, + "ModalDialog.CloseButton": [ { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 195, - "column": 16 + "filePath": "src/components/settings/SettingsSSOTab/steps/SSOConfigConfigureStep.jsx", + "line": 176, + "column": 10 }, { - "filePath": "src/welcome/ProgressiveProfiling.jsx", - "line": 164, - "column": 14 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiredModal.jsx", + "line": 37, + "column": 10 }, { - "filePath": "src/welcome/ProgressiveProfiling.jsx", - "line": 176, - "column": 14 - } - ], - "ModalDialog": [ - { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 36, - "column": 4 + "filePath": "src/components/subscriptions/expiration/SubscriptionExpiringModal.jsx", + "line": 58, + "column": 10 }, { - "filePath": "src/welcome/WelcomePageModal.jsx", - "line": 20, - "column": 4 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 43, - "column": 6 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRemindModal.jsx", + "line": 211, + "column": 10 }, { - "filePath": "src/welcome/WelcomePageModal.jsx", - "line": 28, - "column": 6 + "filePath": "src/components/subscriptions/licenses/LicenseManagementModals/LicenseManagementRevokeModal.jsx", + "line": 187, + "column": 10 } ], - "ModalDialog.Title": [ - { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 44, - "column": 8 - }, + "Bubble": [ { - "filePath": "src/welcome/WelcomePageModal.jsx", - "line": 29, - "column": 8 + "filePath": "src/components/Sidebar/IconLink.jsx", + "line": 54, + "column": 10 } ], - "ModalDialog.Body": [ - { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 48, - "column": 6 - }, + "MoneyOutline": [ { - "filePath": "src/welcome/WelcomePageModal.jsx", - "line": 34, - "column": 6 + "filePath": "src/components/Sidebar/index.jsx", + "line": 102, + "column": 23 } ], - "ModalDialog.Footer": [ - { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 51, - "column": 6 - }, + "StatusAlert": [ { - "filePath": "src/welcome/WelcomePageModal.jsx", - "line": 38, - "column": 6 + "filePath": "src/components/StatusAlert/index.jsx", + "line": 18, + "column": 4 } ], - "ActionRow": [ + "Email": [ { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 52, - "column": 8 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/bulk-actions/RemindBulkAction.jsx", + "line": 118, + "column": 20 }, { - "filePath": "src/welcome/WelcomePageModal.jsx", - "line": 39, - "column": 8 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/LicenseManagementTableActionColumn.jsx", + "line": 121, + "column": 15 } ], - "ModalDialog.CloseButton": [ + "useWindowSize": [ { - "filePath": "src/login/ChangePasswordPrompt.jsx", - "line": 57, - "column": 12 + "filePath": "src/components/subscriptions/licenses/LicenseManagementTable/index.jsx", + "line": 61, + "column": 20 } ], - "Error": [ - { - "filePath": "src/login/LoginFailure.jsx", - "line": 175, - "column": 76 - }, - { - "filePath": "src/register/RegistrationFailure.jsx", - "line": 38, - "column": 74 - }, - { - "filePath": "src/register/RegistrationPage.jsx", - "line": 573, - "column": 68 - }, - { - "filePath": "src/reset-password/ResetPasswordFailure.jsx", - "line": 36, - "column": 76 - }, + "Card.Body": [ { - "filePath": "src/welcome/ProgressiveProfiling.jsx", - "line": 144, - "column": 79 + "filePath": "src/components/subscriptions/SubscriptionCard.jsx", + "line": 131, + "column": 6 } ], - "ExpandLess": [ + "ResponsiveContext.Provider": [ { - "filePath": "src/register/CountryDropdown.jsx", - "line": 174, - "column": 13 + "filePath": "src/components/subscriptions/tests/SubscriptionCard.test.jsx", + "line": 54, + "column": 6 } ], - "Close": [ - { - "filePath": "src/register/RegistrationPage.jsx", - "line": 582, - "column": 37 - }, - { - "filePath": "src/register/UsernameField.jsx", - "line": 39, - "column": 34 - }, + "PageBanner": [ { - "filePath": "src/register/UsernameField.jsx", - "line": 43, - "column": 34 + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 7, + "column": 2 } ], - "Spinner": [ + "Table": [ { - "filePath": "src/reset-password/ResetPasswordPage.jsx", - "line": 150, - "column": 13 + "filePath": "src/components/TableComponent/index.jsx", + "line": 89, + "column": 14 } ] } }, { - "version": "19.25.3", - "name": "@edx/frontend-app-communications", + "version": "20.28.4", + "name": "@edx/frontend-app-authn", "repository": { "type": "git", - "url": "git+https://github.com/edx/frontend-app-communications.git" + "url": "git+https://github.com/openedx/frontend-app-authn.git" }, - "folderName": "frontend-app-communications", + "folderName": "frontend-app-authn", "usages": { - "Form.Group": [ + "Hyperlink": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 19, - "column": 4 + "filePath": "src/base-component/AuthLargeLayout.jsx", + "line": 13, + "column": 6 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 274, + "filePath": "src/base-component/AuthMediumLayout.jsx", + "line": 15, "column": 8 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 283, - "column": 8 + "filePath": "src/base-component/AuthSmallLayout.jsx", + "line": 13, + "column": 4 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 295, - "column": 8 + "filePath": "src/base-component/LargeLayout.jsx", + "line": 14, + "column": 6 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", - "line": 13, - "column": 4 - } - ], - "Form.Label": [ + "filePath": "src/base-component/MediumLayout.jsx", + "line": 16, + "column": 8 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 20, + "filePath": "src/base-component/SmallLayout.jsx", + "line": 15, "column": 6 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 275, - "column": 10 + "filePath": "src/common-components/InstitutionLogistration.jsx", + "line": 59, + "column": 18 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 284, - "column": 10 - } - ], - "Form.CheckboxSet": [ + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 145, + "column": 14 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 29, - "column": 6 - } - ], - "Form.Checkbox": [ + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 159, + "column": 16 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 35, - "column": 8 + "filePath": "src/login/LoginFailure.jsx", + "line": 32, + "column": 4 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 42, + "filePath": "src/login/LoginFailure.jsx", + "line": 97, "column": 8 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 53, - "column": 8 + "filePath": "src/login/LoginPage.jsx", + "line": 181, + "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 69, - "column": 12 + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 156, + "column": 14 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 83, - "column": 8 + "filePath": "src/register/registrationFields/HonorCode.jsx", + "line": 32, + "column": 14 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", - "line": 95, - "column": 8 + "filePath": "src/register/registrationFields/HonorCode.jsx", + "line": 37, + "column": 14 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 298, + "filePath": "src/register/registrationFields/HonorCode.jsx", + "line": 64, + "column": 14 + }, + { + "filePath": "src/register/registrationFields/TermsOfService.jsx", + "line": 33, "column": 14 } ], - "useToggle": [ + "Image": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 59, - "column": 59 + "filePath": "src/base-component/AuthLargeLayout.jsx", + "line": 14, + "column": 8 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 40, - "column": 68 - } - ], - "Form": [ + "filePath": "src/base-component/AuthMediumLayout.jsx", + "line": 16, + "column": 10 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 267, + "filePath": "src/base-component/AuthSmallLayout.jsx", + "line": 14, "column": 6 - } - ], - "Form.Control": [ + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 276, - "column": 10 + "filePath": "src/base-component/LargeLayout.jsx", + "line": 15, + "column": 8 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", - "line": 16, + "filePath": "src/base-component/MediumLayout.jsx", + "line": 17, "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", - "line": 38, - "column": 10 + "filePath": "src/base-component/SmallLayout.jsx", + "line": 16, + "column": 8 } ], - "Button": [ + "breakpoints": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 322, - "column": 32 + "filePath": "src/base-component/BaseComponent.jsx", + "line": 28, + "column": 30 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 110, - "column": 10 + "filePath": "src/base-component/BaseComponent.jsx", + "line": 31, + "column": 30 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", - "line": 46, - "column": 10 + "filePath": "src/base-component/BaseComponent.jsx", + "line": 31, + "column": 69 }, { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 26, - "column": 10 + "filePath": "src/base-component/BaseComponent.jsx", + "line": 34, + "column": 30 }, { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 33, - "column": 10 + "filePath": "src/base-component/BaseComponent.jsx", + "line": 34, + "column": 73 }, { - "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", - "line": 10, - "column": 4 + "filePath": "src/data/utils/useMobileResponsive.js", + "line": 13, + "column": 69 } ], - "StatefulButton": [ + "Form": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 323, + "filePath": "src/common-components/EnterpriseSSO.jsx", + "line": 37, "column": 12 - } - ], - "Icon": [ + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 332, - "column": 46 + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 111, + "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 333, - "column": 47 + "filePath": "src/login/LoginPage.jsx", + "line": 259, + "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 334, - "column": 49 + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 153, + "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 335, - "column": 46 + "filePath": "src/register/RegistrationPage.jsx", + "line": 488, + "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 336, - "column": 47 + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 176, + "column": 14 + } + ], + "Button": [ + { + "filePath": "src/common-components/EnterpriseSSO.jsx", + "line": 39, + "column": 14 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 337, - "column": 56 + "filePath": "src/common-components/EnterpriseSSO.jsx", + "line": 65, + "column": 14 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 338, - "column": 44 + "filePath": "src/common-components/InstitutionLogistration.jsx", + "line": 18, + "column": 4 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 172, - "column": 55 + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 40, + "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 175, - "column": 28 + "filePath": "src/register/registrationFields/UsernameField.jsx", + "line": 23, + "column": 10 + } + ], + "Form.Group": [ + { + "filePath": "src/common-components/FormGroup.jsx", + "line": 24, + "column": 4 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 184, - "column": 49 + "filePath": "src/common-components/PasswordField.jsx", + "line": 58, + "column": 4 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 147, - "column": 12 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 27, + "column": 8 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", - "line": 103, - "column": 12 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 56, + "column": 8 }, { - "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", - "line": 15, - "column": 6 - } - ], - "Send": [ + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 79, + "column": 8 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 332, - "column": 57 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 101, + "column": 8 } ], - "Event": [ + "Form.Control": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 333, - "column": 58 + "filePath": "src/common-components/FormGroup.jsx", + "line": 25, + "column": 6 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 334, - "column": 60 - } - ], - "SpinnerSimple": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 335, - "column": 57 + "filePath": "src/common-components/PasswordField.jsx", + "line": 60, + "column": 8 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 147, - "column": 23 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 28, + "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", - "line": 103, - "column": 23 - } - ], - "Check": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 336, - "column": 58 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 57, + "column": 10 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 337, - "column": 67 - } - ], - "Cancel": [ - { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 338, - "column": 55 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 80, + "column": 10 } ], - "Toast": [ + "TransitionReplace": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", - "line": 357, - "column": 12 + "filePath": "src/common-components/FormGroup.jsx", + "line": 45, + "column": 6 } ], - "Alert": [ + "Icon": [ { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 68, - "column": 8 + "filePath": "src/common-components/InstitutionLogistration.jsx", + "line": 24, + "column": 6 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", - "line": 21, + "filePath": "src/common-components/Logistration.jsx", + "line": 65, "column": 6 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 11, - "column": 6 - } - ], - "Info": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 33, + "column": 102 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 68, - "column": 38 - } - ], - "Alert.Heading": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 37, + "column": 99 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 69, - "column": 10 - } - ], - "DataTable": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 43, + "column": 42 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 134, - "column": 8 + "filePath": "src/common-components/PasswordField.jsx", + "line": 43, + "column": 95 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", - "line": 40, - "column": 6 - } - ], - "IconButton": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 47, + "column": 42 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 172, - "column": 18 + "filePath": "src/common-components/PasswordField.jsx", + "line": 47, + "column": 95 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 173, - "column": 18 + "filePath": "src/common-components/PasswordField.jsx", + "line": 51, + "column": 35 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 184, - "column": 18 - } - ], - "Visibility": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 51, + "column": 88 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 172, - "column": 35 - } - ], - "Delete": [ + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 35, + "column": 29 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 174, - "column": 25 - } - ], - "Edit": [ + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 91, + "column": 6 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", - "line": 184, - "column": 35 - } - ], - "Collapsible": [ + "filePath": "src/login/LoginPage.jsx", + "line": 182, + "column": 12 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", - "line": 130, - "column": 8 + "filePath": "src/register/registrationFields/CountryField.jsx", + "line": 101, + "column": 14 }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", - "line": 89, - "column": 8 - } - ], - "WarningFilled": [ + "filePath": "src/register/registrationFields/CountryField.jsx", + "line": 116, + "column": 14 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 11, - "column": 37 - } - ], - "Hyperlink": [ + "filePath": "src/register/registrationFields/EmailField.jsx", + "line": 31, + "column": 26 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", - "line": 16, - "column": 8 - } - ], - "Modal": [ + "filePath": "src/register/registrationFields/UsernameField.jsx", + "line": 41, + "column": 49 + }, { - "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", - "line": 15, + "filePath": "src/register/registrationFields/UsernameField.jsx", + "line": 45, + "column": 49 + }, + { + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 141, "column": 6 } ], - "Container": [ + "Institution": [ { - "filePath": "src/components/bulk-email-tool/BulkEmailTool.jsx", + "filePath": "src/common-components/InstitutionLogistration.jsx", "line": 24, - "column": 12 + "column": 17 + }, + { + "filePath": "src/login/LoginPage.jsx", + "line": 182, + "column": 23 } ], - "AlertModal": [ + "ChevronLeft": [ { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 19, - "column": 4 + "filePath": "src/common-components/Logistration.jsx", + "line": 65, + "column": 17 + }, + { + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 91, + "column": 17 + }, + { + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 141, + "column": 17 } ], - "ActionRow": [ + "Tabs": [ { - "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", - "line": 25, + "filePath": "src/common-components/Logistration.jsx", + "line": 84, + "column": 12 + }, + { + "filePath": "src/common-components/Logistration.jsx", + "line": 90, + "column": 14 + }, + { + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 104, "column": 8 - } - ], - "ArrowBack": [ + }, { - "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", - "line": 16, - "column": 13 + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 165, + "column": 10 } ], - "Nav": [ + "Tab": [ { - "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", - "line": 11, - "column": 6 - } - ], - "Nav.Item": [ + "filePath": "src/common-components/Logistration.jsx", + "line": 85, + "column": 14 + }, { - "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", - "line": 13, + "filePath": "src/common-components/Logistration.jsx", + "line": 91, + "column": 16 + }, + { + "filePath": "src/common-components/Logistration.jsx", + "line": 92, + "column": 16 + }, + { + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 105, "column": 10 - } - ], - "Nav.Link": [ + }, { - "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", - "line": 14, + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 166, "column": 12 } ], - "Spinner": [ + "useToggle": [ { - "filePath": "src/components/page-container/PageContainer.jsx", - "line": 79, - "column": 6 - } - ] - } - }, - { - "version": "20.18.0", - "name": "@edx/frontend-app-course-authoring", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-course-authoring.git" - }, - "folderName": "frontend-app-course-authoring", - "usages": { - "Collapsible.Advanced": [ + "filePath": "src/common-components/PasswordField.jsx", + "line": 17, + "column": 60 + }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 19, - "column": 2 + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 30, + "column": 32 } ], - "Collapsible.Trigger": [ + "IconButton": [ { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 27, + "filePath": "src/common-components/PasswordField.jsx", + "line": 33, "column": 4 - } - ], - "Collapsible.Visible": [ - { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 32, - "column": 6 }, { - "filePath": "src/generic/CollapsableEditor.jsx", + "filePath": "src/common-components/PasswordField.jsx", "line": 37, - "column": 6 + "column": 4 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", - "line": 15, - "column": 10 + "filePath": "src/register/registrationFields/CountryField.jsx", + "line": 95, + "column": 4 }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", - "line": 18, - "column": 10 - } - ], - "IconButton": [ - { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, - "column": 10 + "filePath": "src/register/registrationFields/CountryField.jsx", + "line": 110, + "column": 4 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 40, - "column": 12 + "filePath": "src/register/registrationFields/UsernameField.jsx", + "line": 41, + "column": 17 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 53, - "column": 10 - }, + "filePath": "src/register/registrationFields/UsernameField.jsx", + "line": 45, + "column": 17 + } + ], + "VisibilityOff": [ { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 39, - "column": 10 - }, + "filePath": "src/common-components/PasswordField.jsx", + "line": 33, + "column": 79 + } + ], + "Visibility": [ { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 49, - "column": 6 + "filePath": "src/common-components/PasswordField.jsx", + "line": 37, + "column": 79 } ], - "ExpandMore": [ + "Tooltip": [ { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, - "column": 43 + "filePath": "src/common-components/PasswordField.jsx", + "line": 41, + "column": 4 } ], - "Icon": [ + "Check": [ { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 34, - "column": 63 + "filePath": "src/common-components/PasswordField.jsx", + "line": 43, + "column": 83 }, { - "filePath": "src/generic/CollapsableEditor.jsx", + "filePath": "src/common-components/PasswordField.jsx", "line": 47, - "column": 22 + "column": 83 }, { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 53, - "column": 65 - }, + "filePath": "src/common-components/PasswordField.jsx", + "line": 51, + "column": 76 + } + ], + "Remove": [ { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 110, - "column": 26 + "filePath": "src/common-components/PasswordField.jsx", + "line": 43, + "column": 138 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 41, - "column": 20 + "filePath": "src/common-components/PasswordField.jsx", + "line": 47, + "column": 138 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "filePath": "src/common-components/PasswordField.jsx", "line": 51, - "column": 16 - } - ], - "Delete": [ - { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 46, - "column": 19 - } - ], - "ExpandLess": [ - { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 53, - "column": 45 + "column": 131 } ], - "Collapsible.Body": [ + "OverlayTrigger": [ { - "filePath": "src/generic/CollapsableEditor.jsx", - "line": 57, - "column": 4 + "filePath": "src/common-components/PasswordField.jsx", + "line": 59, + "column": 6 } ], "Alert": [ { - "filePath": "src/generic/ConnectionErrorAlert.jsx", - "line": 10, - "column": 4 + "filePath": "src/common-components/ThirdPartyAuthAlert.jsx", + "line": 28, + "column": 6 }, { - "filePath": "src/generic/PermissionDeniedAlert.jsx", - "line": 7, - "column": 4 + "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", + "line": 74, + "column": 6 }, { - "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", - "line": 10, + "filePath": "src/login/AccountActivationMessage.jsx", + "line": 59, "column": 4 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 217, - "column": 16 - }, - { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 126, - "column": 18 + "filePath": "src/login/LoginFailure.jsx", + "line": 175, + "column": 4 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 250, + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 148, "column": 12 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 417, - "column": 6 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 444, - "column": 6 + "filePath": "src/register/RegistrationFailure.jsx", + "line": 42, + "column": 4 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 234, - "column": 12 + "filePath": "src/register/registrationFields/EmailField.jsx", + "line": 22, + "column": 8 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 445, + "filePath": "src/reset-password/ResetPasswordFailure.jsx", + "line": 36, "column": 6 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 467, - "column": 6 + "filePath": "src/reset-password/ResetPasswordSuccess.jsx", + "line": 13, + "column": 4 } ], - "Alert.Link": [ + "Alert.Heading": [ { - "filePath": "src/generic/ConnectionErrorAlert.jsx", - "line": 16, - "column": 12 + "filePath": "src/common-components/ThirdPartyAuthAlert.jsx", + "line": 30, + "column": 10 }, { - "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", - "line": 16, - "column": 12 + "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", + "line": 80, + "column": 8 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 155, - "column": 35 + "filePath": "src/login/AccountActivationMessage.jsx", + "line": 65, + "column": 18 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 167, - "column": 35 + "filePath": "src/login/LoginFailure.jsx", + "line": 176, + "column": 6 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 432, + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 149, "column": 14 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 461, - "column": 14 + "filePath": "src/register/RegistrationFailure.jsx", + "line": 43, + "column": 6 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 150, - "column": 35 + "filePath": "src/reset-password/ResetPasswordFailure.jsx", + "line": 37, + "column": 8 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 162, - "column": 35 - }, + "filePath": "src/reset-password/ResetPasswordSuccess.jsx", + "line": 14, + "column": 6 + } + ], + "ExpandMore": [ { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 459, + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 35, "column": 40 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 485, - "column": 14 + "filePath": "src/register/registrationFields/CountryField.jsx", + "line": 102, + "column": 11 } ], - "Card": [ + "Form.Checkbox": [ { - "filePath": "src/generic/DeletePopup.jsx", - "line": 13, - "column": 2 + "filePath": "src/field-renderer/FieldRenderer.jsx", + "line": 102, + "column": 10 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 67, - "column": 4 + "filePath": "src/register/registrationFields/HonorCode.jsx", + "line": 49, + "column": 6 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", - "line": 118, - "column": 12 + "filePath": "src/register/registrationFields/TermsOfService.jsx", + "line": 17, + "column": 6 + } + ], + "Alert.Link": [ + { + "filePath": "src/forgot-password/ForgotPasswordAlert.jsx", + "line": 38, + "column": 14 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 73, - "column": 4 + "filePath": "src/login/AccountActivationMessage.jsx", + "line": 38, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 23, - "column": 4 + "filePath": "src/register/registrationFields/EmailField.jsx", + "line": 25, + "column": 12 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 60, - "column": 4 + "filePath": "src/register/registrationFields/EmailField.jsx", + "line": 39, + "column": 8 } ], - "Card.Header": [ + "StatefulButton": [ { - "filePath": "src/generic/DeletePopup.jsx", - "line": 14, - "column": 4 + "filePath": "src/forgot-password/ForgotPasswordPage.jsx", + "line": 130, + "column": 12 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 74, - "column": 6 + "filePath": "src/login/LoginPage.jsx", + "line": 281, + "column": 12 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 33, - "column": 6 + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 168, + "column": 14 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 66, - "column": 6 + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 180, + "column": 14 + }, + { + "filePath": "src/register/RegistrationPage.jsx", + "line": 547, + "column": 12 + }, + { + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 195, + "column": 16 } ], - "Card.Body": [ + "ModalDialog": [ { - "filePath": "src/generic/DeletePopup.jsx", - "line": 19, + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 36, "column": 4 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 79, - "column": 6 - }, + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 20, + "column": 4 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 50, + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 43, "column": 6 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 76, + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 28, "column": 6 } ], - "Card.Section": [ + "ModalDialog.Title": [ { - "filePath": "src/generic/DeletePopup.jsx", - "line": 20, - "column": 6 + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 44, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 80, + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 29, "column": 8 - }, + } + ], + "ModalDialog.Body": [ { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 52, - "column": 10 + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 48, + "column": 6 }, { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 77, - "column": 8 + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 34, + "column": 6 } ], - "Card.Footer": [ + "ModalDialog.Footer": [ { - "filePath": "src/generic/DeletePopup.jsx", - "line": 21, + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 51, "column": 6 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 83, - "column": 8 + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 38, + "column": 6 } ], - "Button": [ + "ActionRow": [ { - "filePath": "src/generic/DeletePopup.jsx", - "line": 22, + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 52, "column": 8 }, { - "filePath": "src/generic/DeletePopup.jsx", - "line": 25, + "filePath": "src/progressive-profiling/ProgressiveProfilingPageModal.jsx", + "line": 39, "column": 8 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/BlackoutDatesField.jsx", - "line": 74, - "column": 16 - }, + } + ], + "ModalDialog.CloseButton": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", - "line": 78, - "column": 16 - }, + "filePath": "src/login/ChangePasswordPrompt.jsx", + "line": 57, + "column": 12 + } + ], + "Error": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 84, - "column": 10 + "filePath": "src/login/LoginFailure.jsx", + "line": 175, + "column": 76 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 87, - "column": 10 + "filePath": "src/progressive-profiling/ProgressiveProfiling.jsx", + "line": 148, + "column": 79 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppListNextButton.jsx", - "line": 20, - "column": 4 + "filePath": "src/register/RegistrationFailure.jsx", + "line": 42, + "column": 74 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 108, - "column": 20 + "filePath": "src/register/registrationFields/EmailField.jsx", + "line": 22, + "column": 73 }, { - "filePath": "src/pages-and-resources/PagesAndResources.jsx", - "line": 51, - "column": 12 - }, + "filePath": "src/reset-password/ResetPasswordFailure.jsx", + "line": 36, + "column": 76 + } + ], + "ExpandLess": [ { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 47, - "column": 14 - }, + "filePath": "src/register/registrationFields/CountryField.jsx", + "line": 117, + "column": 11 + } + ], + "Close": [ { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 50, - "column": 14 + "filePath": "src/register/registrationFields/EmailField.jsx", + "line": 31, + "column": 37 }, { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 147, - "column": 20 + "filePath": "src/register/registrationFields/UsernameField.jsx", + "line": 41, + "column": 34 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 406, - "column": 8 + "filePath": "src/register/registrationFields/UsernameField.jsx", + "line": 45, + "column": 34 } ], - "TransitionReplace": [ - { - "filePath": "src/generic/FieldFeedback.jsx", - "line": 15, - "column": 6 - }, + "Spinner": [ { - "filePath": "src/generic/FieldFeedback.jsx", - "line": 25, - "column": 6 - }, + "filePath": "src/reset-password/ResetPasswordPage.jsx", + "line": 150, + "column": 13 + } + ] + } + }, + { + "version": "20.20.0", + "name": "@edx/frontend-app-communications", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-app-communications.git" + }, + "folderName": "frontend-app-communications", + "usages": { + "Form.Group": [ { - "filePath": "src/generic/FormikErrorFeedback.jsx", - "line": 12, + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 19, "column": 4 }, { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 40, - "column": 4 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 274, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 71, - "column": 6 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 283, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 84, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 295, + "column": 8 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 40, + "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", + "line": 13, "column": 4 } ], - "Form.Group": [ + "Form.Label": [ { - "filePath": "src/generic/FormikControl.jsx", - "line": 22, - "column": 4 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 20, + "column": 6 }, { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 23, - "column": 4 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 275, + "column": 10 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 99, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 284, + "column": 10 + } + ], + "Form.CheckboxSet": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 29, + "column": 6 + } + ], + "Form.Checkbox": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 35, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 117, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 42, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 134, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 53, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 152, + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 69, "column": 12 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesInput.jsx", - "line": 34, - "column": 4 + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 83, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 112, + "filePath": "src/components/bulk-email-tool/bulk-email-form/bulk-email-recipient/BulkEmailRecipient.jsx", + "line": 95, "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 90, - "column": 22 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 298, + "column": 14 + } + ], + "useToggle": [ { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 54, - "column": 6 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 59, + "column": 59 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 293, - "column": 12 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 40, + "column": 68 + } + ], + "Form": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 319, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 267, + "column": 6 + } + ], + "Form.Control": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 276, "column": 10 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 350, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", + "line": 16, + "column": 10 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 373, - "column": 12 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/ScheduleEmailForm.jsx", + "line": 38, + "column": 10 + } + ], + "Button": [ { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 98, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 322, + "column": 32 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 245, - "column": 8 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", + "line": 110, + "column": 10 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 267, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 46, + "column": 10 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 311, - "column": 8 + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", + "line": 26, + "column": 10 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 335, + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", + "line": 33, "column": 10 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 368, + "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", + "line": 10, + "column": 4 + } + ], + "StatefulButton": [ + { + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 323, "column": 12 } ], - "Form.Control": [ + "Icon": [ { - "filePath": "src/generic/FormikControl.jsx", - "line": 24, - "column": 6 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 332, + "column": 46 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 105, - "column": 14 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 333, + "column": 47 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 122, - "column": 14 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 334, + "column": 49 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 135, - "column": 14 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 335, + "column": 46 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesInput.jsx", - "line": 39, - "column": 6 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 336, + "column": 47 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", - "line": 117, - "column": 10 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 337, + "column": 56 }, { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 62, - "column": 8 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 338, + "column": 44 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 297, - "column": 14 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 172, + "column": 55 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 323, - "column": 12 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 319, - "column": 10 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 343, - "column": 12 - } - ], - "Form.Text": [ - { - "filePath": "src/generic/FormikControl.jsx", - "line": 34, - "column": 8 - }, - { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 41, - "column": 8 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 151, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 175, + "column": 28 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 306, - "column": 14 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 184, + "column": 49 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 333, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", + "line": 147, "column": 12 }, { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 132, - "column": 14 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 255, - "column": 10 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 295, - "column": 14 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 327, - "column": 10 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 353, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", + "line": 103, "column": 12 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 396, - "column": 14 + "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", + "line": 15, + "column": 6 } ], - "Form.Label": [ - { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 29, - "column": 10 - }, - { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 55, - "column": 8 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 294, - "column": 14 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 320, - "column": 12 - }, + "Send": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 351, - "column": 14 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 332, + "column": 57 + } + ], + "Event": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 374, - "column": 14 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 333, + "column": 58 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 99, - "column": 14 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 334, + "column": 60 + } + ], + "SpinnerSimple": [ { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 128, - "column": 21 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 335, + "column": 57 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 268, - "column": 14 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", + "line": 147, + "column": 23 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 312, - "column": 10 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", + "line": 103, + "column": 23 + } + ], + "Check": [ { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", "line": 336, - "column": 12 + "column": 58 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 369, - "column": 14 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 337, + "column": 67 } ], - "SwitchControl": [ + "Cancel": [ { - "filePath": "src/generic/FormSwitchGroup.jsx", - "line": 32, - "column": 10 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 338, + "column": 55 } ], - "Spinner": [ - { - "filePath": "src/generic/Loading.jsx", - "line": 13, - "column": 6 - }, + "Toast": [ { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 419, - "column": 33 + "filePath": "src/components/bulk-email-tool/bulk-email-form/BulkEmailForm.jsx", + "line": 357, + "column": 12 } ], - "ModalDialog": [ + "Alert": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", "line": 68, - "column": 4 + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 119, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", + "line": 21, "column": 6 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 548, - "column": 4 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", + "line": 11, + "column": 6 } ], - "ModalDialog.Header": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 77, - "column": 6 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 125, - "column": 8 - }, + "Info": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 559, - "column": 8 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 68, + "column": 38 } ], - "ModalDialog.Title": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 78, - "column": 8 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 126, - "column": 10 - }, + "Alert.Heading": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 560, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 69, "column": 10 } ], - "ModalDialog.Body": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 82, - "column": 6 - }, + "DataTable": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 130, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 134, "column": 8 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 564, - "column": 8 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailHistoryTable.jsx", + "line": 40, + "column": 6 } ], - "ModalDialog.Footer": [ + "IconButton": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 85, - "column": 6 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 172, + "column": 18 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 133, - "column": 8 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 173, + "column": 18 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 572, - "column": 8 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 184, + "column": 18 } ], - "ActionRow": [ + "Visibility": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 86, - "column": 8 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 172, + "column": 35 + } + ], + "Delete": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 134, - "column": 10 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 174, + "column": 25 + } + ], + "Edit": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 577, - "column": 10 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/bulk-email-scheduled-emails-table/BulkEmailScheduledEmailsTable.jsx", + "line": 184, + "column": 35 } ], - "ModalDialog.CloseButton": [ + "Collapsible": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 87, - "column": 10 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailContentHistory.jsx", + "line": 130, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 135, - "column": 12 - }, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailTaskHistory.jsx", + "line": 89, + "column": 8 + } + ], + "WarningFilled": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 578, - "column": 12 + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", + "line": 11, + "column": 37 } ], "Hyperlink": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 167, - "column": 4 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", - "line": 30, - "column": 16 - }, - { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 73, - "column": 6 - }, - { - "filePath": "src/pages-and-resources/live/BBBSettings.jsx", - "line": 94, - "column": 16 - }, - { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 38, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/BulkEmailPendingTasksAlert.jsx", + "line": 16, "column": 8 - }, - { - "filePath": "src/pages-and-resources/PagesAndResources.jsx", - "line": 45, - "column": 10 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 234, - "column": 4 } ], - "Form": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 195, - "column": 10 - }, + "Modal": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 68, + "filePath": "src/components/bulk-email-tool/bulk-email-task-manager/ViewEmailModal.jsx", + "line": 15, "column": 6 - }, + } + ], + "Container": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", - "line": 119, - "column": 14 - }, + "filePath": "src/components/bulk-email-tool/BulkEmailTool.jsx", + "line": 24, + "column": 12 + } + ], + "AlertModal": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 558, - "column": 6 - }, + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", + "line": 19, + "column": 4 + } + ], + "ActionRow": [ { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 230, - "column": 6 + "filePath": "src/components/bulk-email-tool/task-alert-modal/TaskAlertModal.jsx", + "line": 25, + "column": 8 } ], - "StatefulButton": [ + "ArrowBack": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 205, - "column": 16 - }, + "filePath": "src/components/navigation-tabs/BackToInstructor.jsx", + "line": 16, + "column": 13 + } + ], + "Nav": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigFormSaveButton.jsx", - "line": 36, + "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", + "line": 11, "column": 6 - }, - { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 581, - "column": 12 } ], - "Info": [ + "Nav.Item": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 217, - "column": 46 + "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", + "line": 13, + "column": 10 } ], - "Alert.Heading": [ + "Nav.Link": [ { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 218, - "column": 18 + "filePath": "src/components/navigation-tabs/NavigationTabs.jsx", + "line": 14, + "column": 12 } ], - "Badge": [ - { - "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", - "line": 234, - "column": 22 - }, - { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/CollapseCardHeading.jsx", - "line": 18, - "column": 22 - }, + "Spinner": [ { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 69, - "column": 10 - }, + "filePath": "src/components/page-container/PageContainer.jsx", + "line": 79, + "column": 6 + } + ] + } + }, + { + "version": "20.28.0", + "name": "@edx/frontend-app-course-authoring", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-course-authoring.git" + }, + "folderName": "frontend-app-course-authoring", + "usages": { + "Collapsible.Advanced": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 272, - "column": 18 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 19, + "column": 2 } ], - "Container": [ + "Collapsible.Trigger": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", - "line": 116, + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 27, "column": 4 - }, - { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 51, - "column": 6 } ], - "MailtoLink": [ + "Collapsible.Visible": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 76, - "column": 16 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 32, + "column": 6 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 89, - "column": 16 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 37, + "column": 6 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", - "line": 50, - "column": 16 + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", + "line": 14, + "column": 8 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", + "line": 17, + "column": 8 } ], - "Form.Check": [ + "IconButton": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 153, - "column": 14 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 10 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", - "line": 161, - "column": 14 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 40, + "column": 12 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 246, + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, "column": 10 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 275, - "column": 14 + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 41, + "column": 10 }, { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 285, - "column": 14 - }, - { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 376, - "column": 14 - }, + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 51, + "column": 6 + } + ], + "ExpandMore": [ { - "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", - "line": 386, - "column": 14 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 43 } ], - "Form.Row": [ + "Icon": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesItem.jsx", - "line": 88, - "column": 6 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 34, + "column": 63 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesItem.jsx", - "line": 112, - "column": 6 - } - ], - "Add": [ + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 47, + "column": 22 + }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/BlackoutDatesField.jsx", - "line": 77, - "column": 30 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, + "column": 65 }, { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", - "line": 81, - "column": 30 + "filePath": "src/pages-and-resources/live/Settings.jsx", + "line": 108, + "column": 24 }, { - "filePath": "src/pages-and-resources/teams/Settings.jsx", - "line": 150, - "column": 34 + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 43, + "column": 20 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 53, + "column": 16 } ], - "Form.CheckboxSet": [ + "Delete": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 91, - "column": 24 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 46, + "column": 19 } ], - "Form.Checkbox": [ + "ExpandLess": [ { - "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", - "line": 99, - "column": 30 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 53, + "column": 45 } ], - "CheckboxControl": [ + "Collapsible.Body": [ { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 38, - "column": 12 + "filePath": "src/generic/CollapsableEditor.jsx", + "line": 57, + "column": 4 } ], - "breakpoints": [ + "Card": [ { - "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", - "line": 54, - "column": 34 + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 13, + "column": 2 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", - "line": 80, - "column": 28 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 67, + "column": 4 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 33, - "column": 41 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", + "line": 120, + "column": 12 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 59, - "column": 55 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 73, + "column": 4 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 81, - "column": 39 + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 23, + "column": 4 }, { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", - "line": 91, - "column": 39 - } - ], - "CardGrid": [ - { - "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "filePath": "src/pages-and-resources/pages/PageCard.jsx", "line": 62, - "column": 6 - }, - { - "filePath": "src/pages-and-resources/pages/PageGrid.jsx", - "line": 9, "column": 4 } ], - "Collapsible": [ + "Card.Header": [ { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", - "line": 11, + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 14, "column": 4 - } - ], - "Check": [ + }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 36, - "column": 20 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 74, + "column": 6 }, { - "filePath": "src/pages-and-resources/discussions/app-list/SupportedFeature.jsx", - "line": 8, + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 33, "column": 6 - } - ], - "Remove": [ + }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 37, - "column": 20 + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 68, + "column": 6 } ], - "DataTable": [ + "Card.Body": [ { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 60, + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 19, "column": 4 - } - ], - "DataTable.Table": [ + }, { - "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", - "line": 87, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 79, + "column": 6 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 50, + "column": 6 + }, + { + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 78, "column": 6 } ], - "FullscreenModal": [ + "Card.Section": [ { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 66, + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 20, "column": 6 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 79, - "column": 6 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 80, + "column": 8 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 94, + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 52, "column": 10 - } - ], - "Stepper": [ + }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 93, + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 79, "column": 8 } ], - "Stepper.Header": [ + "Card.Footer": [ { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 100, - "column": 28 + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 21, + "column": 6 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 83, + "column": 8 } ], - "Stepper.ActionRow": [ + "Button": [ { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 103, + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 22, + "column": 8 + }, + { + "filePath": "src/generic/ConfirmationPopup.jsx", + "line": 25, + "column": 8 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/BlackoutDatesField.jsx", + "line": 74, "column": 16 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 106, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", + "line": 78, "column": 16 - } - ], - "Stepper.Step": [ + }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 120, - "column": 12 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 84, + "column": 10 }, { - "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", - "line": 133, - "column": 12 - } - ], - "SelectableBox.Set": [ + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 87, + "column": 10 + }, { - "filePath": "src/pages-and-resources/live/Settings.jsx", - "line": 99, - "column": 18 - } - ], - "SelectableBox": [ + "filePath": "src/pages-and-resources/discussions/app-list/AppListNextButton.jsx", + "line": 20, + "column": 4 + }, { - "filePath": "src/pages-and-resources/live/Settings.jsx", + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", "line": 108, - "column": 22 - } - ], - "ArrowForward": [ - { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 40, - "column": 17 - } - ], - "Settings": [ - { - "filePath": "src/pages-and-resources/pages/PageCard.jsx", - "line": 50, - "column": 13 - } - ], - "Form.RadioSet": [ + "column": 20 + }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 354, - "column": 14 + "filePath": "src/pages-and-resources/PagesAndResources.jsx", + "line": 52, + "column": 12 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 377, + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 47, "column": 14 }, { "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 102, + "line": 50, "column": 14 + }, + { + "filePath": "src/pages-and-resources/teams/Settings.jsx", + "line": 147, + "column": 20 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 404, + "column": 8 } ], - "Form.Radio": [ + "Alert": [ { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 359, - "column": 16 + "filePath": "src/generic/ConnectionErrorAlert.jsx", + "line": 9, + "column": 2 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 362, - "column": 16 + "filePath": "src/generic/PermissionDeniedAlert.jsx", + "line": 6, + "column": 2 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 382, - "column": 16 + "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", + "line": 9, + "column": 2 }, { - "filePath": "src/pages-and-resources/proctoring/Settings.jsx", - "line": 385, + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 213, "column": 16 }, { - "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", - "line": 109, - "column": 18 - } - ], - "OverlayTrigger": [ - { - "filePath": "src/studio-header/Header.jsx", - "line": 137, - "column": 4 - } - ], - "Tooltip": [ - { - "filePath": "src/studio-header/Header.jsx", - "line": 140, - "column": 8 - } - ] - } - }, - { - "version": "20.15.0", - "name": "@edx/frontend-app-discussions", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-discussions.git" - }, - "folderName": "frontend-app-discussions", - "usages": { - "Collapsible.Advanced": [ + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 73, + "column": 6 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 95, - "column": 4 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 126, + "column": 18 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 65, - "column": 4 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 255, + "column": 12 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 122, - "column": 4 - } - ], - "Collapsible.Trigger": [ + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 422, + "column": 6 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 100, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 449, "column": 6 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 70, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 232, + "column": 12 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 443, "column": 6 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 127, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 465, "column": 6 } ], - "Collapsible.Visible": [ + "Alert.Link": [ { - "filePath": "src/components/FilterBar.jsx", - "line": 111, - "column": 8 + "filePath": "src/generic/ConnectionErrorAlert.jsx", + "line": 15, + "column": 12 }, { - "filePath": "src/components/FilterBar.jsx", - "line": 114, - "column": 8 + "filePath": "src/generic/SaveFormConnectionErrorAlert.jsx", + "line": 15, + "column": 12 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 76, - "column": 8 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 157, + "column": 16 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 79, - "column": 8 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 172, + "column": 35 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 138, - "column": 8 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 437, + "column": 14 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 141, - "column": 8 - } - ], - "Icon": [ - { - "filePath": "src/components/FilterBar.jsx", - "line": 112, - "column": 10 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 466, + "column": 14 }, { - "filePath": "src/components/FilterBar.jsx", - "line": 115, - "column": 10 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 148, + "column": 35 }, { - "filePath": "src/components/PostPreviewPane.jsx", - "line": 27, - "column": 20 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 160, + "column": 35 }, { - "filePath": "src/components/Search.jsx", - "line": 72, - "column": 10 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 457, + "column": 40 }, { - "filePath": "src/components/SearchInfo.jsx", - "line": 21, - "column": 6 - }, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 483, + "column": 14 + } + ], + "TransitionReplace": [ { - "filePath": "src/discussions/comments/comment/CommentHeader.jsx", - "line": 54, - "column": 18 + "filePath": "src/generic/FieldFeedback.jsx", + "line": 14, + "column": 4 }, { - "filePath": "src/discussions/comments/comment/CommentHeader.jsx", - "line": 55, - "column": 18 + "filePath": "src/generic/FieldFeedback.jsx", + "line": 24, + "column": 4 }, { - "filePath": "src/discussions/comments/CommentsView.jsx", - "line": 176, - "column": 20 + "filePath": "src/generic/FormikErrorFeedback.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 50, - "column": 16 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 39, + "column": 0 }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 80, - "column": 16 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 90, + "column": 6 }, { - "filePath": "src/discussions/common/AuthorLabel.jsx", - "line": 58, - "column": 8 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 103, + "column": 12 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 30, + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 40, "column": 4 - }, + } + ], + "Form.Group": [ { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 77, - "column": 10 + "filePath": "src/generic/FormikControl.jsx", + "line": 23, + "column": 4 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 80, - "column": 10 + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 24, + "column": 4 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 37, - "column": 10 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 99, + "column": 12 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 52, - "column": 10 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 117, + "column": 12 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 79, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 134, "column": 12 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 85, - "column": 18 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 152, + "column": 12 }, { - "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 60, - "column": 20 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesInput.jsx", + "line": 34, + "column": 4 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 44, - "column": 4 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 112, + "column": 8 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 139, - "column": 10 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 109, + "column": 22 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 142, - "column": 10 + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 54, + "column": 6 }, { - "filePath": "src/discussions/posts/post/LikeButton.jsx", - "line": 32, - "column": 16 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 298, + "column": 12 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 52, - "column": 16 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 324, + "column": 10 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 69, - "column": 20 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 355, + "column": 12 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 115, - "column": 14 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 378, + "column": 12 }, { - "filePath": "src/discussions/posts/post/PostHeader.jsx", - "line": 47, - "column": 8 + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 98, + "column": 12 }, { - "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 96, - "column": 18 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 243, + "column": 8 }, { - "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 113, - "column": 16 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 265, + "column": 12 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 70, - "column": 16 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 309, + "column": 8 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 86, - "column": 16 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 333, + "column": 10 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 110, - "column": 18 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 366, + "column": 12 } ], - "Tune": [ + "Form.Control": [ { - "filePath": "src/components/FilterBar.jsx", - "line": 112, - "column": 21 + "filePath": "src/generic/FormikControl.jsx", + "line": 25, + "column": 6 }, { - "filePath": "src/components/FilterBar.jsx", - "line": 115, - "column": 21 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 105, + "column": 14 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 77, - "column": 21 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 122, + "column": 14 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 80, - "column": 21 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 135, + "column": 14 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 139, - "column": 21 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesInput.jsx", + "line": 39, + "column": 6 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 142, - "column": 21 - } - ], - "Collapsible.Body": [ - { - "filePath": "src/components/FilterBar.jsx", - "line": 118, - "column": 6 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/TopicItem.jsx", + "line": 117, + "column": 10 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 83, - "column": 6 + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 62, + "column": 8 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 145, - "column": 6 - } - ], - "Form": [ + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 302, + "column": 14 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 119, - "column": 8 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 328, + "column": 12 }, { - "filePath": "src/discussions/comments/comment/CommentEditor.jsx", - "line": 101, - "column": 8 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 317, + "column": 10 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 84, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 341, + "column": 12 + } + ], + "Form.Text": [ + { + "filePath": "src/generic/FormikControl.jsx", + "line": 35, "column": 8 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 249, + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 43, "column": 8 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 146, - "column": 8 - } - ], - "Form.RadioSet": [ + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 151, + "column": 12 + }, { - "filePath": "src/components/FilterBar.jsx", - "line": 122, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 311, "column": 14 }, { - "filePath": "src/components/FilterBar.jsx", - "line": 157, - "column": 18 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 338, + "column": 12 }, { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 86, - "column": 12 + "filePath": "src/pages-and-resources/teams/Settings.jsx", + "line": 132, + "column": 14 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 255, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 253, "column": 10 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 148, - "column": 12 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 293, + "column": 14 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 173, - "column": 12 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 325, + "column": 10 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 220, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 351, "column": 12 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 255, - "column": 18 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 394, + "column": 14 } ], - "Spinner": [ + "Form.Label": [ { - "filePath": "src/components/FilterBar.jsx", - "line": 153, - "column": 18 + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 30, + "column": 10 }, { - "filePath": "src/discussions/comments/CommentsView.jsx", - "line": 114, - "column": 12 + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 55, + "column": 8 }, { - "filePath": "src/discussions/comments/CommentsView.jsx", - "line": 149, - "column": 6 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 299, + "column": 14 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 105, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 325, "column": 12 }, { - "filePath": "src/discussions/learners/LearnersView.jsx", - "line": 88, - "column": 12 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 356, + "column": 14 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 203, - "column": 8 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 379, + "column": 14 }, { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 251, - "column": 18 + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 99, + "column": 14 }, { - "filePath": "src/discussions/posts/PostsList.jsx", - "line": 87, + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 128, + "column": 21 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 266, + "column": 14 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 310, "column": 10 - } - ], - "TransitionReplace": [ + }, { - "filePath": "src/components/FormikErrorFeedback.jsx", - "line": 17, - "column": 4 - } - ], - "Dropdown": [ + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 334, + "column": 12 + }, { - "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 41, - "column": 8 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 367, + "column": 14 } ], - "Dropdown.Toggle": [ + "SwitchControl": [ { - "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 42, + "filePath": "src/generic/FormSwitchGroup.jsx", + "line": 33, "column": 10 } ], - "Dropdown.Menu": [ + "Spinner": [ { - "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", - "line": 49, - "column": 10 + "filePath": "src/generic/Loading.jsx", + "line": 12, + "column": 4 + }, + { + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 417, + "column": 33 } ], - "useWindowSize": [ - { - "filePath": "src/components/NavigationBar/tabs/useIndexOfLastVisibleChild.js", - "line": 38, - "column": 21 - }, + "ModalDialog": [ { - "filePath": "src/discussions/data/hooks.js", - "line": 99, - "column": 21 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 65, + "column": 2 }, { - "filePath": "src/discussions/data/hooks.js", - "line": 104, - "column": 21 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 119, + "column": 6 }, { - "filePath": "src/discussions/discussions-home/DiscussionSidebar.jsx", - "line": 30, - "column": 35 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 555, + "column": 4 } ], - "IconButton": [ + "ModalDialog.Header": [ { - "filePath": "src/components/PostPreviewPane.jsx", - "line": 23, - "column": 10 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 74, + "column": 4 }, { - "filePath": "src/discussions/comments/CommentsView.jsx", - "line": 174, - "column": 10 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 125, + "column": 8 }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 46, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 566, + "column": 8 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 75, "column": 6 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 83, - "column": 8 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 126, + "column": 10 }, { - "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 58, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 567, "column": 10 } ], - "Close": [ + "ModalDialog.Body": [ { - "filePath": "src/components/PostPreviewPane.jsx", - "line": 26, - "column": 17 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 79, + "column": 4 }, { - "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 59, - "column": 17 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 130, + "column": 8 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 571, + "column": 8 } ], - "Button": [ + "ModalDialog.Footer": [ { - "filePath": "src/components/PostPreviewPane.jsx", - "line": 38, - "column": 10 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 82, + "column": 4 }, { - "filePath": "src/components/SearchInfo.jsx", - "line": 22, - "column": 6 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 133, + "column": 8 }, { - "filePath": "src/components/SearchInfo.jsx", - "line": 33, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 579, + "column": 8 + } + ], + "ActionRow": [ + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 83, "column": 6 }, { - "filePath": "src/components/TinyMCEEditor.jsx", + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", "line": 134, - "column": 12 + "column": 10 }, { - "filePath": "src/discussions/comments/comment/Comment.jsx", - "line": 105, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 584, "column": 10 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 84, + "column": 8 }, { - "filePath": "src/discussions/comments/comment/Comment.jsx", - "line": 132, - "column": 20 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 135, + "column": 12 }, { - "filePath": "src/discussions/comments/comment/CommentEditor.jsx", - "line": 153, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 585, "column": 12 + } + ], + "Hyperlink": [ + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 163, + "column": 4 }, { - "filePath": "src/discussions/comments/comment/ResponseEditor.jsx", - "line": 42, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", + "line": 30, + "column": 16 + }, + { + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 75, "column": 8 }, { - "filePath": "src/discussions/comments/CommentsView.jsx", - "line": 98, - "column": 10 + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 73, + "column": 6 }, { - "filePath": "src/discussions/comments/CommentsView.jsx", - "line": 159, - "column": 14 + "filePath": "src/pages-and-resources/live/BBBSettings.jsx", + "line": 94, + "column": 16 }, { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 71, - "column": 20 + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 40, + "column": 8 }, { - "filePath": "src/discussions/common/DeleteConfirmation.jsx", - "line": 32, + "filePath": "src/pages-and-resources/PagesAndResources.jsx", + "line": 46, "column": 10 }, { - "filePath": "src/discussions/empty-posts/EmptyPage.jsx", - "line": 29, + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 239, + "column": 4 + } + ], + "Form": [ + { + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 191, "column": 10 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 109, - "column": 12 - }, - { - "filePath": "src/discussions/learners/LearnersView.jsx", - "line": 92, - "column": 12 - }, - { - "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", - "line": 45, - "column": 10 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 68, + "column": 6 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 426, - "column": 12 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/openedx/OpenedXConfigForm.jsx", + "line": 121, + "column": 14 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 83, - "column": 10 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 565, + "column": 6 }, { - "filePath": "src/discussions/posts/PostsList.jsx", - "line": 91, - "column": 10 - } - ], - "SearchField.Advanced": [ - { - "filePath": "src/components/Search.jsx", - "line": 60, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 228, "column": 6 } ], - "SearchField.Label": [ + "StatefulButton": [ { - "filePath": "src/components/Search.jsx", - "line": 66, - "column": 8 - } - ], - "SearchField.Input": [ + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 201, + "column": 16 + }, { - "filePath": "src/components/Search.jsx", - "line": 67, - "column": 8 - } - ], - "SearchIcon": [ + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigFormSaveButton.jsx", + "line": 36, + "column": 6 + }, { - "filePath": "src/components/Search.jsx", - "line": 73, - "column": 17 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 588, + "column": 12 } ], - "Search": [ + "Info": [ { - "filePath": "src/components/SearchInfo.jsx", - "line": 21, - "column": 17 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 213, + "column": 46 } ], - "AlertModal": [ + "Alert.Heading": [ { - "filePath": "src/components/TinyMCEEditor.jsx", - "line": 127, - "column": 6 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 214, + "column": 18 } ], - "ActionRow": [ + "Badge": [ { - "filePath": "src/components/TinyMCEEditor.jsx", - "line": 133, - "column": 10 + "filePath": "src/pages-and-resources/app-settings-modal/AppSettingsModal.jsx", + "line": 230, + "column": 22 }, { - "filePath": "src/discussions/common/DeleteConfirmation.jsx", - "line": 28, - "column": 8 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/CollapseCardHeading.jsx", + "line": 18, + "column": 22 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 79, - "column": 8 + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 71, + "column": 10 + }, + { + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 277, + "column": 18 } ], - "useToggle": [ + "Container": [ { - "filePath": "src/discussions/comments/comment/Comment.jsx", - "line": 37, - "column": 71 + "filePath": "src/pages-and-resources/discussions/app-config-form/AppConfigForm.jsx", + "line": 116, + "column": 4 }, { - "filePath": "src/discussions/comments/comment/Reply.jsx", - "line": 31, - "column": 71 - }, + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 51, + "column": 6 + } + ], + "MailtoLink": [ { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 27, - "column": 32 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 76, + "column": 16 }, { - "filePath": "src/discussions/posts/post/Post.jsx", - "line": 36, - "column": 71 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 89, + "column": 16 }, { - "filePath": "src/discussions/posts/post/Post.jsx", - "line": 37, - "column": 62 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/AppExternalLinks.jsx", + "line": 50, + "column": 16 } ], - "Form.Group": [ - { - "filePath": "src/discussions/comments/comment/CommentEditor.jsx", - "line": 103, - "column": 12 - }, + "Form.Check": [ { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 279, - "column": 12 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 153, + "column": 14 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 310, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/lti/LtiConfigForm.jsx", + "line": 161, "column": 14 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 331, - "column": 12 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 244, + "column": 10 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 351, + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 273, "column": 14 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 398, - "column": 16 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 283, + "column": 14 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 410, - "column": 16 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 374, + "column": 14 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 62, - "column": 8 + "filePath": "src/proctored-exam-settings/ProctoredExamSettings.jsx", + "line": 384, + "column": 14 } ], - "Form.Control": [ + "Form.Row": [ { - "filePath": "src/discussions/comments/comment/CommentEditor.jsx", - "line": 109, - "column": 14 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesItem.jsx", + "line": 88, + "column": 6 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 280, - "column": 14 - }, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/blackout-dates/BlackoutDatesItem.jsx", + "line": 112, + "column": 6 + } + ], + "Add": [ { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 311, - "column": 16 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/BlackoutDatesField.jsx", + "line": 77, + "column": 30 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 338, - "column": 14 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/discussion-topics/DiscussionTopics.jsx", + "line": 81, + "column": 30 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 358, - "column": 16 - }, + "filePath": "src/pages-and-resources/teams/Settings.jsx", + "line": 150, + "column": 34 + } + ], + "Form.CheckboxSet": [ { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 63, - "column": 10 + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 110, + "column": 24 } ], - "StatefulButton": [ + "Form.Checkbox": [ { - "filePath": "src/discussions/comments/comment/CommentEditor.jsx", - "line": 159, - "column": 12 - }, + "filePath": "src/pages-and-resources/discussions/app-config-form/apps/shared/DivisionByGroupFields.jsx", + "line": 118, + "column": 30 + } + ], + "CheckboxControl": [ { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 432, + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 38, "column": 12 } ], - "Avatar": [ + "breakpoints": [ { - "filePath": "src/discussions/comments/comment/CommentHeader.jsx", - "line": 33, - "column": 8 + "filePath": "src/pages-and-resources/discussions/app-list/AppCard.jsx", + "line": 54, + "column": 34 }, { - "filePath": "src/discussions/comments/comment/Reply.jsx", - "line": 62, - "column": 12 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 80, + "column": 28 }, { - "filePath": "src/discussions/comments/comment/Reply.jsx", - "line": 72, - "column": 10 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", + "line": 34, + "column": 41 }, { - "filePath": "src/discussions/learners/learner/LearnerAvatar.jsx", - "line": 14, - "column": 6 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", + "line": 60, + "column": 55 }, { - "filePath": "src/discussions/posts/post/PostHeader.jsx", - "line": 54, - "column": 6 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", + "line": 82, + "column": 39 + }, + { + "filePath": "src/pages-and-resources/discussions/app-list/AppList.test.jsx", + "line": 92, + "column": 39 } ], - "CheckCircle": [ + "CardGrid": [ { - "filePath": "src/discussions/comments/comment/CommentHeader.jsx", - "line": 54, - "column": 29 + "filePath": "src/pages-and-resources/discussions/app-list/AppList.jsx", + "line": 62, + "column": 6 }, { - "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 96, - "column": 29 + "filePath": "src/pages-and-resources/pages/PageGrid.jsx", + "line": 8, + "column": 2 } ], - "Verified": [ + "Collapsible": [ { - "filePath": "src/discussions/comments/comment/CommentHeader.jsx", - "line": 55, - "column": 29 + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesList.jsx", + "line": 10, + "column": 2 } ], - "ArrowBack": [ - { - "filePath": "src/discussions/comments/CommentsView.jsx", - "line": 162, - "column": 28 - }, + "Check": [ { - "filePath": "src/discussions/comments/CommentsView.jsx", - "line": 175, - "column": 17 + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 36, + "column": 20 }, { - "filePath": "src/discussions/learners/LearnerPostsView.jsx", - "line": 84, - "column": 15 + "filePath": "src/pages-and-resources/discussions/app-list/SupportedFeature.jsx", + "line": 8, + "column": 6 } ], - "MoreHoriz": [ + "Remove": [ { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 49, - "column": 13 + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 37, + "column": 20 } ], - "ModalPopup": [ + "DataTable": [ { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 55, - "column": 6 + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 60, + "column": 4 } ], - "Dropdown.Divider": [ + "DataTable.Table": [ { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 68, - "column": 17 + "filePath": "src/pages-and-resources/discussions/app-list/FeaturesTable.jsx", + "line": 87, + "column": 6 } ], - "Dropdown.Item": [ + "FullscreenModal": [ { - "filePath": "src/discussions/common/ActionsDropdown.jsx", - "line": 70, - "column": 14 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 66, + "column": 6 }, { - "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", - "line": 27, + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 79, "column": 6 }, { - "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", - "line": 37, - "column": 8 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 94, + "column": 10 } ], - "Alert": [ + "Stepper": [ { - "filePath": "src/discussions/common/AlertBanner.jsx", - "line": 31, + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 93, "column": 8 - }, + } + ], + "Stepper.Header": [ { - "filePath": "src/discussions/common/AlertBanner.jsx", - "line": 38, - "column": 12 - }, + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 100, + "column": 28 + } + ], + "Stepper.ActionRow": [ { - "filePath": "src/discussions/common/AlertBanner.jsx", - "line": 49, - "column": 12 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 103, + "column": 16 }, { - "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", - "line": 28, - "column": 6 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 106, + "column": 16 } ], - "Error": [ + "Stepper.Step": [ { - "filePath": "src/discussions/common/AlertBanner.jsx", - "line": 31, - "column": 21 + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 120, + "column": 12 + }, + { + "filePath": "src/pages-and-resources/discussions/DiscussionsSettings.jsx", + "line": 133, + "column": 12 } ], - "Institution": [ + "SelectableBox.Set": [ { - "filePath": "src/discussions/common/AuthorLabel.jsx", - "line": 30, - "column": 4 + "filePath": "src/pages-and-resources/live/Settings.jsx", + "line": 97, + "column": 16 } ], - "School": [ + "SelectableBox": [ { - "filePath": "src/discussions/common/AuthorLabel.jsx", - "line": 34, - "column": 4 + "filePath": "src/pages-and-resources/live/Settings.jsx", + "line": 106, + "column": 20 } ], - "ModalDialog": [ - { - "filePath": "src/discussions/common/DeleteConfirmation.jsx", - "line": 18, - "column": 4 - }, + "ArrowForward": [ { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 48, - "column": 4 + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 42, + "column": 17 } ], - "ModalDialog.Header": [ - { - "filePath": "src/discussions/common/DeleteConfirmation.jsx", - "line": 19, - "column": 6 - }, + "Settings": [ { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 55, - "column": 6 + "filePath": "src/pages-and-resources/pages/PageCard.jsx", + "line": 52, + "column": 13 } ], - "ModalDialog.Title": [ + "Form.RadioSet": [ { - "filePath": "src/discussions/common/DeleteConfirmation.jsx", - "line": 20, - "column": 8 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 359, + "column": 14 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 56, - "column": 8 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/discussions/common/DeleteConfirmation.jsx", - "line": 24, - "column": 6 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 382, + "column": 14 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 60, - "column": 6 + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 102, + "column": 14 } ], - "ModalDialog.Footer": [ + "Form.Radio": [ { - "filePath": "src/discussions/common/DeleteConfirmation.jsx", - "line": 27, - "column": 6 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 364, + "column": 16 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 78, - "column": 6 - } - ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/discussions/common/DeleteConfirmation.jsx", - "line": 29, - "column": 10 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 367, + "column": 16 }, { - "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", - "line": 80, - "column": 10 - } - ], - "breakpoints": [ + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 387, + "column": 16 + }, { - "filePath": "src/discussions/data/hooks.js", - "line": 100, - "column": 29 + "filePath": "src/pages-and-resources/proctoring/Settings.jsx", + "line": 390, + "column": 16 }, { - "filePath": "src/discussions/data/hooks.js", - "line": 105, - "column": 29 + "filePath": "src/pages-and-resources/teams/GroupEditor.jsx", + "line": 109, + "column": 18 } ], - "PageBanner": [ - { - "filePath": "src/discussions/discussions-home/BlackoutInformationBanner.jsx", - "line": 19, - "column": 4 - }, + "OverlayTrigger": [ { - "filePath": "src/discussions/discussions-home/InformationsBanner.jsx", - "line": 24, + "filePath": "src/studio-header/Header.jsx", + "line": 137, "column": 4 } ], - "Hyperlink": [ + "Tooltip": [ { - "filePath": "src/discussions/discussions-home/InformationsBanner.jsx", - "line": 34, - "column": 12 - }, - { - "filePath": "src/discussions/discussions-home/InformationsBanner.jsx", - "line": 45, + "filePath": "src/studio-header/Header.jsx", + "line": 140, "column": 8 - }, - { - "filePath": "src/discussions/posts/post/Post.jsx", - "line": 83, - "column": 10 } - ], - "Check": [ + ] + } + }, + { + "version": "20.15.0", + "name": "@edx/frontend-app-discussions", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-discussions.git" + }, + "folderName": "frontend-app-discussions", + "usages": { + "Collapsible.Advanced": [ { - "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 30, - "column": 15 + "filePath": "src/components/FilterBar.jsx", + "line": 95, + "column": 4 }, - { - "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 44, - "column": 15 - } - ], - "Form.Radio": [ { "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", - "line": 31, + "line": 72, "column": 4 }, - { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 55, - "column": 6 - }, { "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", - "line": 45, + "line": 134, "column": 4 } ], - "OverlayTrigger": [ + "Collapsible.Trigger": [ { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 26, + "filePath": "src/components/FilterBar.jsx", + "line": 100, "column": 6 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 41, + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 77, "column": 6 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 57, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 139, + "column": 6 + } + ], + "Collapsible.Visible": [ + { + "filePath": "src/components/FilterBar.jsx", + "line": 111, "column": 8 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 86, - "column": 12 + "filePath": "src/components/FilterBar.jsx", + "line": 114, + "column": 8 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 108, - "column": 12 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 83, + "column": 8 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 58, - "column": 12 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 86, + "column": 8 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 74, - "column": 12 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 151, + "column": 10 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 91, - "column": 14 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 154, + "column": 10 } ], - "Tooltip": [ + "Icon": [ { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 29, + "filePath": "src/components/FilterBar.jsx", + "line": 112, "column": 10 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 44, + "filePath": "src/components/FilterBar.jsx", + "line": 115, "column": 10 }, { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 60, - "column": 12 - }, - { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 88, - "column": 16 + "filePath": "src/components/PostPreviewPane.jsx", + "line": 27, + "column": 20 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 110, - "column": 16 + "filePath": "src/components/Search.jsx", + "line": 72, + "column": 10 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 60, - "column": 16 + "filePath": "src/components/SearchInfo.jsx", + "line": 21, + "column": 6 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 76, + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 52, "column": 16 }, { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 93, + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 84, "column": 18 - } - ], - "Edit": [ - { - "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", - "line": 52, - "column": 21 - } - ], - "DropdownButton": [ - { - "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", - "line": 23, - "column": 4 - } - ], - "Nav": [ - { - "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", - "line": 41, - "column": 4 - } - ], - "Nav.Item": [ - { - "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", - "line": 43, - "column": 8 - } - ], - "Nav.Link": [ + }, { - "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", - "line": 44, + "filePath": "src/discussions/common/AuthorLabel.jsx", + "line": 81, "column": 10 - } - ], - "Card": [ - { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 56, - "column": 6 - } - ], - "Card.Section": [ - { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 63, - "column": 8 - } - ], - "Post": [ + }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 267, - "column": 20 - } - ], - "Help": [ + "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", + "line": 35, + "column": 12 + }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 274, + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 54, "column": 20 - } - ], - "Form.Checkbox": [ - { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 399, - "column": 18 }, { - "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", - "line": 411, + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 68, "column": 18 - } - ], - "IconButtonWithTooltip": [ + }, { - "filePath": "src/discussions/posts/post/LikeButton.jsx", - "line": 27, - "column": 6 + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 82, + "column": 20 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 47, - "column": 6 + "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", + "line": 20, + "column": 18 }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 65, + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 50, "column": 10 - } - ], - "Badge": [ + }, { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 79, - "column": 8 + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 69, + "column": 18 }, { - "filePath": "src/discussions/posts/post/PostHeader.jsx", + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 85, + "column": 18 + }, + { + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", "line": 109, - "column": 21 + "column": 20 }, { - "filePath": "src/discussions/posts/post/PostLink.jsx", - "line": 102, - "column": 16 - } - ], - "Locked": [ - { - "filePath": "src/discussions/posts/post/PostFooter.jsx", - "line": 116, - "column": 21 - } - ], - "PostOutline": [ - { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 70, - "column": 27 - } - ], - "HelpOutline": [ - { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 86, - "column": 27 - } - ], - "Report": [ - { - "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", - "line": 110, - "column": 29 - } - ], - "SearchField": [ - { - "filePath": "src/discussions/topics/topic-search-bar/TopicSearchBar.jsx", - "line": 15, - "column": 6 - } - ] - } - }, - { - "version": "19.9.0", - "name": "@edx/frontend-app-ecommerce", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-ecommerce.git" - }, - "folderName": "frontend-app-ecommerce", - "usages": { - "Hyperlink": [ - { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 54, - "column": 8 - } - ], - "Pagination": [ - { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 71, - "column": 6 - } - ], - "Table": [ - { - "filePath": "src/order-history/OrderHistoryPage.jsx", - "line": 94, - "column": 6 - } - ] - } - }, - { - "version": "20.8.0", - "name": "@edx/frontend-app-enterprise-public-catalog", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-enterprise-public-catalog.git" - }, - "folderName": "frontend-app-enterprise-public-catalog", - "usages": { - "ModalDialog": [ - { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 52, - "column": 6 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 31, + "column": 4 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 219, - "column": 6 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 61, - "column": 8 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 84, + "column": 10 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 228, - "column": 8 - } - ], - "ModalDialog.Hero": [ - { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 62, + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 87, "column": 10 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 229, + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 37, "column": 10 - } - ], - "Image": [ + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 68, + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 52, "column": 10 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 172, - "column": 8 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 79, + "column": 12 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 235, - "column": 10 + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 85, + "column": 18 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 18, - "column": 4 + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 89, + "column": 20 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 33, + "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", + "line": 69, + "column": 22 + }, + { + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 45, "column": 4 - } - ], - "ModalDialog.Title": [ + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 75, - "column": 14 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 152, + "column": 12 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 80, - "column": 14 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 155, + "column": 12 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 242, + "filePath": "src/discussions/posts/post/LikeButton.jsx", + "line": 40, + "column": 18 + }, + { + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 48, + "column": 20 + }, + { + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 63, "column": 14 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 247, + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 84, "column": 14 - } - ], - "ModalDialog.Footer": [ + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 111, + "filePath": "src/discussions/posts/post/PostHeader.jsx", + "line": 47, "column": 8 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 289, - "column": 8 - } - ], - "ActionRow": [ + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 93, + "column": 18 + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 112, - "column": 10 + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 110, + "column": 18 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 290, + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 39, "column": 10 - } - ], - "Hyperlink": [ + }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 114, - "column": 14 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 55, + "column": 8 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 291, + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 71, "column": 12 - } - ], - "Button": [ - { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 121, - "column": 16 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 298, + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 94, "column": 14 }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", - "line": 40, - "column": 6 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 70, + "column": 16 }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/titleButton/TitleButton.jsx", - "line": 7, - "column": 4 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 86, + "column": 16 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 353, - "column": 12 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 110, + "column": 18 } ], - "Icon": [ + "Tune": [ { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 126, - "column": 18 + "filePath": "src/components/FilterBar.jsx", + "line": 112, + "column": 21 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 303, - "column": 16 - }, - { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 49, - "column": 10 - }, - { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 62, - "column": 12 - }, - { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 77, - "column": 10 - }, - { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 22, - "column": 14 - }, - { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 38, - "column": 14 + "filePath": "src/components/FilterBar.jsx", + "line": 115, + "column": 21 }, { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 53, - "column": 12 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 84, + "column": 21 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 63, - "column": 12 - } - ], - "Launch": [ - { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 126, - "column": 56 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 87, + "column": 21 }, { - "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", - "line": 303, - "column": 54 - } - ], - "MoneyOutline": [ - { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 49, - "column": 38 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 152, + "column": 23 }, { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 22, - "column": 42 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 155, + "column": 23 } ], - "BookOpen": [ + "Collapsible.Body": [ { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 62, - "column": 40 + "filePath": "src/components/FilterBar.jsx", + "line": 118, + "column": 6 }, { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 53, - "column": 40 - } - ], - "EventNote": [ - { - "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", - "line": 77, - "column": 38 - } - ], - "Assignment": [ - { - "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", - "line": 38, - "column": 42 - } - ], - "Alert": [ - { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 83, + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 90, "column": 6 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 311, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 160, "column": 6 } ], - "Alert.Heading": [ + "Form": [ { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 84, + "filePath": "src/components/FilterBar.jsx", + "line": 119, "column": 8 - } - ], - "Alert.Link": [ + }, { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 90, + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 91, "column": 8 - } - ], - "DataTable": [ - { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 101, - "column": 6 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 371, + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 101, "column": 8 - } - ], - "CardView": [ + }, { - "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", - "line": 114, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 270, "column": 8 }, { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 383, - "column": 12 + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 161, + "column": 8 } ], - "Badge": [ + "Form.RadioSet": [ { - "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", - "line": 15, - "column": 8 + "filePath": "src/components/FilterBar.jsx", + "line": 122, + "column": 14 }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", - "line": 22, - "column": 8 + "filePath": "src/components/FilterBar.jsx", + "line": 156, + "column": 18 }, { - "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", - "line": 29, - "column": 8 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 93, + "column": 12 }, { - "filePath": "src/components/catalogSelectionCard/CatalogSelectionCard.jsx", - "line": 45, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 276, + "column": 10 + }, + { + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 163, "column": 12 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 48, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 188, "column": 12 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 55, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 235, "column": 12 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 65, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 270, + "column": 18 + } + ], + "Spinner": [ + { + "filePath": "src/components/FilterBar.jsx", + "line": 152, + "column": 18 + }, + { + "filePath": "src/discussions/in-context-topics/TopicPostsView.jsx", + "line": 73, "column": 12 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 59, + "filePath": "src/discussions/in-context-topics/TopicsView.jsx", + "line": 56, "column": 10 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 72, + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 105, "column": 12 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 77, + "filePath": "src/discussions/learners/LearnersView.jsx", + "line": 88, "column": 12 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 82, - "column": 12 + "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", + "line": 67, + "column": 10 + }, + { + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 61, + "column": 8 + }, + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 212, + "column": 10 + }, + { + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 266, + "column": 18 + }, + { + "filePath": "src/discussions/posts/PostsList.jsx", + "line": 93, + "column": 10 } ], - "useToggle": [ + "TransitionReplace": [ { - "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", - "line": 10, - "column": 32 + "filePath": "src/components/FormikErrorFeedback.jsx", + "line": 17, + "column": 4 } ], - "Toast": [ + "Dropdown": [ { - "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", - "line": 36, + "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", + "line": 41, "column": 8 } ], - "Download": [ + "Dropdown.Toggle": [ { - "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", "line": 42, - "column": 20 + "column": 10 } ], - "DataTable.TableControlBar": [ + "Dropdown.Menu": [ { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 381, + "filePath": "src/components/NavigationBar/tabs/Tabs.jsx", + "line": 49, "column": 10 } ], - "DataTable.Table": [ + "useWindowSize": [ { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 394, - "column": 24 - } - ], - "DataTable.TableFooter": [ - { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 397, - "column": 12 - } - ], - "DataTable.RowStatus": [ - { - "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", - "line": 398, - "column": 14 - } - ], - "Form.Radio": [ - { - "filePath": "src/components/catalogSelectionCard/CatalogSelectionCard.jsx", - "line": 20, - "column": 4 - } - ], - "Card": [ + "filePath": "src/components/NavigationBar/tabs/useIndexOfLastVisibleChild.js", + "line": 38, + "column": 21 + }, { - "filePath": "src/components/catalogSelectionCard/CatalogSelectionCard.jsx", - "line": 41, - "column": 4 + "filePath": "src/discussions/data/hooks.js", + "line": 112, + "column": 21 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 26, - "column": 4 + "filePath": "src/discussions/data/hooks.js", + "line": 117, + "column": 21 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 37, - "column": 4 + "filePath": "src/discussions/discussions-home/DiscussionSidebar.jsx", + "line": 33, + "column": 35 } ], - "Card.Header": [ + "IconButton": [ { - "filePath": "src/components/catalogSelectionCard/CatalogSelectionCard.jsx", - "line": 42, - "column": 6 + "filePath": "src/components/PostPreviewPane.jsx", + "line": 23, + "column": 10 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 38, + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 48, "column": 6 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 49, - "column": 6 - } - ], - "Card.Section": [ - { - "filePath": "src/components/catalogSelectionCard/CatalogSelectionCard.jsx", - "line": 54, - "column": 6 + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 52, + "column": 10 }, { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 40, - "column": 6 + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 66, + "column": 8 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 57, - "column": 6 - } - ], - "Container": [ + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 80, + "column": 10 + }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 21, - "column": 6 + "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", + "line": 18, + "column": 8 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 77, - "column": 6 + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 83, + "column": 8 }, { - "filePath": "src/components/PageWrapper.jsx", - "line": 12, - "column": 4 + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 87, + "column": 10 }, { - "filePath": "src/components/subheader/subheader.jsx", - "line": 8, - "column": 6 - } - ], - "CardDeck": [ + "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", + "line": 67, + "column": 12 + }, { - "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", - "line": 23, + "filePath": "src/discussions/posts/post/LikeButton.jsx", + "line": 35, "column": 8 - } - ], - "Card.ImageCap": [ - { - "filePath": "src/components/courseCard/CourseCard.jsx", - "line": 32, - "column": 6 }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 43, - "column": 6 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 41, + "column": 10 } ], - "useMediaQuery": [ + "Close": [ { - "filePath": "src/components/hero/Hero.jsx", - "line": 47, - "column": 20 + "filePath": "src/components/PostPreviewPane.jsx", + "line": 26, + "column": 17 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 58, + "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", + "line": 68, "column": 19 } ], - "breakpoints": [ + "Button": [ { - "filePath": "src/components/hero/Hero.jsx", - "line": 47, - "column": 46 + "filePath": "src/components/PostPreviewPane.jsx", + "line": 37, + "column": 10 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 59, - "column": 14 + "filePath": "src/components/SearchInfo.jsx", + "line": 22, + "column": 6 }, { - "filePath": "src/components/hero/Hero.jsx", - "line": 60, - "column": 14 - } - ], - "Program": [ + "filePath": "src/components/SearchInfo.jsx", + "line": 33, + "column": 6 + }, { - "filePath": "src/components/programCard/ProgramCard.jsx", - "line": 63, - "column": 23 - } - ] - } - }, - { - "version": "19.6.0", - "name": "@edx/frontend-app-gradebook", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-app-gradebook.git" - }, - "folderName": "frontend-app-gradebook", - "usages": { - "Alert": [ + "filePath": "src/components/TinyMCEEditor.jsx", + "line": 138, + "column": 12 + }, { - "filePath": "src/components/BulkManagementHistoryView/BulkManagementAlerts.jsx", - "line": 21, - "column": 4 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 75, + "column": 22 }, { - "filePath": "src/components/BulkManagementHistoryView/BulkManagementAlerts.jsx", - "line": 28, - "column": 4 + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 35, + "column": 10 }, { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 56, + "filePath": "src/discussions/common/HoverCard.jsx", + "line": 38, + "column": 10 + }, + { + "filePath": "src/discussions/empty-posts/EmptyPage.jsx", + "line": 29, + "column": 10 + }, + { + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 109, "column": 12 }, { - "filePath": "src/components/GradesView/StatusAlerts.jsx", - "line": 43, - "column": 8 + "filePath": "src/discussions/learners/LearnersView.jsx", + "line": 92, + "column": 12 }, { - "filePath": "src/components/GradesView/StatusAlerts.jsx", - "line": 50, - "column": 8 - } - ], - "DataTable": [ + "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", + "line": 169, + "column": 12 + }, { - "filePath": "src/components/BulkManagementHistoryView/HistoryTable.jsx", - "line": 33, - "column": 2 + "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", + "line": 192, + "column": 20 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/index.jsx", - "line": 30, - "column": 4 + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 153, + "column": 12 }, { - "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 70, + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 33, "column": 8 - } - ], - "Hyperlink": [ - { - "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", - "line": 21, - "column": 2 }, { - "filePath": "src/components/EdxHeader/index.jsx", - "line": 13, - "column": 6 - } - ], - "Icon": [ + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 58, + "column": 18 + }, { - "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", - "line": 28, - "column": 4 + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 70, + "column": 18 }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 61, - "column": 14 + "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", + "line": 55, + "column": 8 }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 65, + "filePath": "src/discussions/post-comments/comments/CommentsView.jsx", + "line": 93, "column": 20 }, { - "filePath": "src/components/GradesView/FilterMenuToggle.jsx", - "line": 22, - "column": 4 + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 72, + "column": 14 }, { - "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 36, + "filePath": "src/discussions/posts/post-actions-bar/PostActionsBar.jsx", + "line": 52, "column": 10 }, { - "filePath": "src/components/GradesView/SpinnerIcon.jsx", - "line": 17, - "column": 4 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 480, + "column": 12 }, { - "filePath": "src/components/NetworkButton/index.jsx", - "line": 42, - "column": 16 + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 83, + "column": 10 }, { - "filePath": "src/components/NetworkButton/index.jsx", - "line": 43, - "column": 16 + "filePath": "src/discussions/posts/PostsList.jsx", + "line": 97, + "column": 10 + } + ], + "SearchField.Advanced": [ + { + "filePath": "src/components/Search.jsx", + "line": 60, + "column": 6 }, { - "filePath": "src/components/NetworkButton/test.jsx", - "line": 54, - "column": 20 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 38, + "column": 6 + } + ], + "SearchField.Label": [ + { + "filePath": "src/components/Search.jsx", + "line": 66, + "column": 8 }, { - "filePath": "src/components/NetworkButton/test.jsx", - "line": 55, - "column": 20 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 44, + "column": 8 + } + ], + "SearchField.Input": [ + { + "filePath": "src/components/Search.jsx", + "line": 67, + "column": 8 }, { - "filePath": "src/components/NetworkButton/test.jsx", - "line": 63, - "column": 20 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 45, + "column": 8 + } + ], + "SearchIcon": [ + { + "filePath": "src/components/Search.jsx", + "line": 73, + "column": 17 }, { - "filePath": "src/components/NetworkButton/test.jsx", - "line": 64, - "column": 20 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchBar.jsx", + "line": 51, + "column": 17 } ], - "Download": [ + "Search": [ { - "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", - "line": 28, - "column": 15 + "filePath": "src/components/SearchInfo.jsx", + "line": 21, + "column": 17 } ], - "Button": [ + "AlertModal": [ { - "filePath": "src/components/GradebookFilters/AssignmentGradeFilter/index.jsx", - "line": 59, + "filePath": "src/components/TinyMCEEditor.jsx", + "line": 131, + "column": 6 + } + ], + "ActionRow": [ + { + "filePath": "src/components/TinyMCEEditor.jsx", + "line": 137, "column": 10 }, { - "filePath": "src/components/GradebookFilters/CourseGradeFilter/index.jsx", - "line": 66, - "column": 10 + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 31, + "column": 8 }, { - "filePath": "src/components/GradebookHeader/index.jsx", - "line": 52, - "column": 12 + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 79, + "column": 8 + } + ], + "useToggle": [ + { + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 29, + "column": 32 }, { - "filePath": "src/components/GradebookHeader/test.jsx", - "line": 78, - "column": 10 + "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", + "line": 40, + "column": 71 }, { - "filePath": "src/components/GradebookHeader/test.jsx", - "line": 92, - "column": 10 + "filePath": "src/discussions/post-comments/comments/comment/Comment.jsx", + "line": 41, + "column": 72 }, { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 69, - "column": 10 + "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", + "line": 31, + "column": 71 }, { - "filePath": "src/components/GradesView/FilterBadges/FilterBadge.jsx", - "line": 36, - "column": 6 + "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", + "line": 32, + "column": 72 }, { - "filePath": "src/components/GradesView/FilterMenuToggle.jsx", - "line": 17, - "column": 2 + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 22, + "column": 32 }, { - "filePath": "src/components/GradesView/GradebookTable/GradeButton.jsx", - "line": 42, - "column": 8 + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 41, + "column": 71 }, { - "filePath": "src/components/GradesView/PageButtons/index.jsx", - "line": 33, - "column": 8 + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 42, + "column": 72 }, { - "filePath": "src/components/GradesView/PageButtons/index.jsx", - "line": 41, - "column": 8 + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 43, + "column": 62 } ], - "Collapsible": [ + "MoreHoriz": [ { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 44, - "column": 4 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 51, + "column": 13 } ], - "IconButton": [ + "ModalPopup": [ { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 62, - "column": 10 - } - ], - "Close": [ + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 59, + "column": 8 + }, { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 66, - "column": 17 + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 47, + "column": 8 } ], - "Form.Checkbox": [ + "Dropdown.Divider": [ { - "filePath": "src/components/GradebookFilters/index.jsx", - "line": 89, - "column": 10 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 72, + "column": 21 } ], - "Form.Group": [ + "Dropdown.Item": [ { - "filePath": "src/components/GradebookFilters/PercentGroup.jsx", - "line": 15, - "column": 4 + "filePath": "src/discussions/common/ActionsDropdown.jsx", + "line": 74, + "column": 16 }, { - "filePath": "src/components/GradebookFilters/SelectGroup.jsx", - "line": 16, - "column": 4 - } - ], - "Form.Label": [ - { - "filePath": "src/components/GradebookFilters/PercentGroup.jsx", - "line": 16, + "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", + "line": 27, "column": 6 }, { - "filePath": "src/components/GradebookFilters/SelectGroup.jsx", - "line": 17, - "column": 6 + "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", + "line": 37, + "column": 8 + }, + { + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 56, + "column": 12 + }, + { + "filePath": "src/discussions/post-comments/comments/CommentsSort.jsx", + "line": 68, + "column": 12 } ], - "Form.Control": [ + "Alert": [ { - "filePath": "src/components/GradebookFilters/PercentGroup.jsx", - "line": 17, - "column": 6 + "filePath": "src/discussions/common/AlertBanner.jsx", + "line": 36, + "column": 8 }, { - "filePath": "src/components/GradebookFilters/SelectGroup.jsx", - "line": 18, - "column": 6 + "filePath": "src/discussions/common/AlertBanner.jsx", + "line": 43, + "column": 12 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput.jsx", - "line": 30, - "column": 8 + "filePath": "src/discussions/common/AlertBanner.jsx", + "line": 60, + "column": 12 }, { - "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput.jsx", - "line": 31, + "filePath": "src/discussions/common/EndorsedAlertBanner.jsx", + "line": 28, "column": 6 } ], - "Modal": [ + "Report": [ { - "filePath": "src/components/GradesView/EditModal/index.jsx", - "line": 49, - "column": 6 - } - ], - "DataTable.TableControlBar": [ - { - "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 78, - "column": 10 - } - ], - "DataTable.Table": [ - { - "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 79, - "column": 10 - } - ], - "DataTable.EmptyTable": [ - { - "filePath": "src/components/GradesView/GradebookTable/index.jsx", - "line": 80, - "column": 10 - } - ], - "OverlayTrigger": [ - { - "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 23, - "column": 4 - } - ], - "Tooltip": [ - { - "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", - "line": 28, - "column": 8 - } - ], - "Form": [ - { - "filePath": "src/components/GradesView/ImportGradesButton.jsx", - "line": 62, - "column": 8 - } - ], - "FormGroup": [ - { - "filePath": "src/components/GradesView/ImportGradesButton.jsx", - "line": 63, - "column": 10 + "filePath": "src/discussions/common/AlertBanner.jsx", + "line": 36, + "column": 21 }, { - "filePath": "src/components/GradesView/ScoreViewInput.jsx", - "line": 17, - "column": 2 - } - ], - "FormControl": [ - { - "filePath": "src/components/GradesView/ImportGradesButton.jsx", - "line": 64, - "column": 12 + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 109, + "column": 31 }, { - "filePath": "src/components/GradesView/ScoreViewInput.jsx", - "line": 19, - "column": 4 - } - ], - "Toast": [ - { - "filePath": "src/components/GradesView/ImportSuccessToast.jsx", - "line": 40, - "column": 6 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 110, + "column": 29 } ], - "FormLabel": [ + "Institution": [ { - "filePath": "src/components/GradesView/ScoreViewInput.jsx", - "line": 18, + "filePath": "src/discussions/common/AuthorLabel.jsx", + "line": 37, "column": 4 } ], - "SearchField": [ + "School": [ { - "filePath": "src/components/GradesView/SearchControls.jsx", - "line": 44, - "column": 8 + "filePath": "src/discussions/common/AuthorLabel.jsx", + "line": 41, + "column": 4 } ], - "StatefulButton": [ + "OverlayTrigger": [ { - "filePath": "src/components/NetworkButton/index.jsx", - "line": 53, + "filePath": "src/discussions/common/AuthorLabel.jsx", + "line": 68, "column": 6 - } - ] - } - }, - { - "version": "19.22.0", - "name": "frontend-app-learner-portal-enterprise", - "repository": { - "type": "git", - "url": "https://github.com/edx/frontend-app-learner-portal-enterprise.git" - }, - "folderName": "frontend-app-learner-portal-enterprise", - "usages": { - "Hyperlink": [ - { - "filePath": "src/components/app/AuthenticatedPage.jsx", - "line": 40, - "column": 8 }, { - "filePath": "src/components/course/CourseAssociatedPrograms.jsx", - "line": 35, + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 57, "column": 14 }, { - "filePath": "src/components/course/CourseMainContent.jsx", - "line": 76, - "column": 16 + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 73, + "column": 14 }, { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 73, + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 90, "column": 16 }, { - "filePath": "src/components/course/CourseSidebar.jsx", - "line": 97, - "column": 14 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 26, + "column": 6 }, { - "filePath": "src/components/course/CreatedBy.jsx", - "line": 38, - "column": 14 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 41, + "column": 6 }, { - "filePath": "src/components/course/CreatedBy.jsx", - "line": 56, - "column": 16 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 57, + "column": 8 }, { - "filePath": "src/components/course/enrollment/components/ToCoursewarePage.jsx", - "line": 35, - "column": 10 + "filePath": "src/discussions/posts/post/LikeButton.jsx", + "line": 28, + "column": 6 }, { - "filePath": "src/components/course/enrollment/components/ToDataSharingConsent.jsx", - "line": 44, - "column": 10 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 34, + "column": 8 }, { - "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", - "line": 41, - "column": 8 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 57, + "column": 10 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 89, + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 77, "column": 12 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 96, - "column": 12 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 32, + "column": 8 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 105, - "column": 16 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 48, + "column": 6 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 213, - "column": 22 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 64, + "column": 10 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 239, - "column": 18 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 88, + "column": 10 }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 73, - "column": 20 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 58, + "column": 12 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 25, + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 74, "column": 12 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 81, + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 91, "column": 14 } ], - "Container": [ + "Tooltip": [ { - "filePath": "src/components/app/LoginRefresh.jsx", - "line": 29, - "column": 6 + "filePath": "src/discussions/common/AuthorLabel.jsx", + "line": 70, + "column": 10 }, { - "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", - "line": 107, - "column": 4 + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 59, + "column": 18 }, { - "filePath": "src/components/course/CourseHeader.jsx", - "line": 43, - "column": 6 + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 75, + "column": 18 }, { - "filePath": "src/components/course/CoursePage.jsx", - "line": 112, - "column": 6 + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 92, + "column": 20 }, { - "filePath": "src/components/course/CoursePage.jsx", - "line": 138, + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 29, "column": 10 }, { - "filePath": "src/components/course/LicenseRequestedAlert.jsx", - "line": 50, - "column": 4 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 44, + "column": 10 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 44, - "column": 6 + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", + "line": 60, + "column": 12 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 55, - "column": 6 + "filePath": "src/discussions/posts/post/LikeButton.jsx", + "line": 30, + "column": 10 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 82, - "column": 6 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 36, + "column": 12 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsContextProvider.jsx", - "line": 74, - "column": 6 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 59, + "column": 14 }, { - "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", - "line": 14, - "column": 6 - }, - { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 81, - "column": 8 - }, - { - "filePath": "src/components/enterprise-page/EnterprisePage.jsx", - "line": 60, - "column": 6 + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 79, + "column": 16 }, { - "filePath": "src/components/enterprise-subsidy-requests/SubsidyRequestsContextProvider.jsx", - "line": 67, - "column": 6 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 34, + "column": 12 }, { - "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", - "line": 49, - "column": 4 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 50, + "column": 10 }, { - "filePath": "src/components/enterprise-user-subsidy/UserSubsidy.jsx", - "line": 107, - "column": 6 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 66, + "column": 14 }, { - "filePath": "src/components/error-page/ErrorPageContent.jsx", - "line": 14, - "column": 2 + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 90, + "column": 14 }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 27, - "column": 8 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 60, + "column": 16 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 72, - "column": 4 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 76, + "column": 16 }, { - "filePath": "src/components/license-activation/LicenseActivation.jsx", - "line": 64, - "column": 6 - }, + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 93, + "column": 18 + } + ], + "ModalDialog": [ { - "filePath": "src/components/license-activation/LicenseActivationErrorAlert.jsx", - "line": 10, + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 21, "column": 4 }, { - "filePath": "src/components/NotFoundPage/index.jsx", - "line": 16, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 48, "column": 4 - }, + } + ], + "ModalDialog.Header": [ { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 34, + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 22, "column": 6 }, { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 42, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 55, "column": 6 - }, + } + ], + "ModalDialog.Title": [ { - "filePath": "src/components/pathway-progress/PathwayProgressPage.jsx", - "line": 38, - "column": 6 + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 23, + "column": 8 }, { - "filePath": "src/components/pathway-progress/PathwayProgressPage.jsx", - "line": 50, - "column": 10 - }, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 56, + "column": 8 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 92, + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 27, "column": 6 }, { - "filePath": "src/components/program-progress/ProgramListingPage.jsx", - "line": 34, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 60, "column": 6 - }, + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/components/program-progress/ProgramListingPage.jsx", - "line": 42, + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 30, "column": 6 }, { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 71, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 78, "column": 6 - }, + } + ], + "ModalDialog.CloseButton": [ { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 82, + "filePath": "src/discussions/common/Confirmation.jsx", + "line": 32, "column": 10 }, { - "filePath": "src/components/program/ProgramDataBar.jsx", - "line": 24, - "column": 8 - }, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 80, + "column": 10 + } + ], + "breakpoints": [ { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 51, - "column": 6 + "filePath": "src/discussions/data/hooks.js", + "line": 113, + "column": 29 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 75, - "column": 8 - }, + "filePath": "src/discussions/data/hooks.js", + "line": 118, + "column": 29 + } + ], + "PageBanner": [ { - "filePath": "src/components/search/SearchResults.jsx", - "line": 82, + "filePath": "src/discussions/discussions-home/BlackoutInformationBanner.jsx", + "line": 19, "column": 4 }, { - "filePath": "src/components/site-header/SiteHeader.jsx", - "line": 19, - "column": 6 - }, + "filePath": "src/discussions/discussions-home/InformationBanner.jsx", + "line": 24, + "column": 4 + } + ], + "Hyperlink": [ { - "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", - "line": 22, - "column": 6 + "filePath": "src/discussions/discussions-home/InformationBanner.jsx", + "line": 34, + "column": 12 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 222, - "column": 12 + "filePath": "src/discussions/discussions-home/InformationBanner.jsx", + "line": 45, + "column": 8 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 352, - "column": 12 + "filePath": "src/discussions/posts/post/Post.jsx", + "line": 136, + "column": 10 } ], - "MailtoLink": [ + "ArrowBack": [ { - "filePath": "src/components/contact-admin-mailto/index.jsx", - "line": 14, - "column": 6 + "filePath": "src/discussions/in-context-topics/components/BackButton.jsx", + "line": 19, + "column": 15 }, { - "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", - "line": 24, - "column": 8 + "filePath": "src/discussions/learners/LearnerPostsView.jsx", + "line": 84, + "column": 15 }, { - "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", - "line": 46, - "column": 8 + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 75, + "column": 28 }, { - "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", - "line": 34, - "column": 4 - }, + "filePath": "src/discussions/post-comments/PostCommentsView.jsx", + "line": 88, + "column": 17 + } + ], + "SearchField": [ { - "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", - "line": 21, - "column": 8 + "filePath": "src/discussions/in-context-topics/topic-search/TopicSearchResultBar.jsx", + "line": 16, + "column": 6 }, { - "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", - "line": 29, - "column": 8 + "filePath": "src/discussions/topics/topic-search-bar/TopicSearchBar.jsx", + "line": 15, + "column": 6 } ], - "Alert": [ + "PostOutline": [ { - "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", - "line": 96, - "column": 50 + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 69, + "column": 29 }, { - "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", - "line": 108, - "column": 6 + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 70, + "column": 27 + } + ], + "HelpOutline": [ + { + "filePath": "src/discussions/in-context-topics/topic/Topic.jsx", + "line": 85, + "column": 29 }, { - "filePath": "src/components/course/LicenseRequestedAlert.jsx", - "line": 51, + "filePath": "src/discussions/topics/topic-group/topic/Topic.jsx", + "line": 86, + "column": 27 + } + ], + "Avatar": [ + { + "filePath": "src/discussions/learners/learner/LearnerAvatar.jsx", + "line": 14, "column": 6 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 45, + "filePath": "src/discussions/post-comments/comments/comment/CommentHeader.jsx", + "line": 28, "column": 8 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 119, - "column": 14 + "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", + "line": 90, + "column": 12 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", - "line": 10, - "column": 4 + "filePath": "src/discussions/post-comments/comments/comment/Reply.jsx", + "line": 100, + "column": 10 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", - "line": 10, - "column": 4 - }, + "filePath": "src/discussions/posts/post/PostHeader.jsx", + "line": 54, + "column": 6 + } + ], + "Check": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 77, - "column": 8 + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 31, + "column": 15 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsAlert.jsx", - "line": 19, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 45, + "column": 15 + } + ], + "Form.Radio": [ + { + "filePath": "src/discussions/learners/learner/LearnerFilterBar.jsx", + "line": 32, "column": 4 }, { - "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", - "line": 50, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 63, "column": 6 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 126, - "column": 12 - }, - { - "filePath": "src/components/license-activation/LicenseActivation.jsx", - "line": 56, - "column": 47 - }, - { - "filePath": "src/components/license-activation/LicenseActivationErrorAlert.jsx", - "line": 11, - "column": 6 - }, + "filePath": "src/discussions/posts/post-filter-bar/PostFilterBar.jsx", + "line": 46, + "column": 4 + } + ], + "Edit": [ { - "filePath": "src/components/license-activation/LicenseActivationPage.jsx", + "filePath": "src/discussions/learners/learner/LearnerFooter.jsx", "line": 52, - "column": 47 - }, - { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 93, - "column": 20 + "column": 21 } ], - "Error": [ - { - "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", - "line": 108, - "column": 36 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 119, - "column": 44 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", - "line": 10, - "column": 34 - }, + "DropdownButton": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", - "line": 10, - "column": 34 + "filePath": "src/discussions/navigation/breadcrumb-menu/BreadcrumbDropdown.jsx", + "line": 23, + "column": 4 } ], - "Row": [ - { - "filePath": "src/components/course/CourseHeader.jsx", - "line": 44, - "column": 8 - }, - { - "filePath": "src/components/course/CoursePage.jsx", - "line": 139, - "column": 12 - }, + "Nav": [ { - "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 12, + "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", + "line": 41, "column": 4 - }, - { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 56, - "column": 8 - }, + } + ], + "Nav.Item": [ { - "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", - "line": 63, + "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", + "line": 43, "column": 8 - }, - { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", - "line": 27, - "column": 6 - }, + } + ], + "Nav.Link": [ { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 96, - "column": 12 - }, + "filePath": "src/discussions/navigation/navigation-bar/NavigationBar.jsx", + "line": 44, + "column": 10 + } + ], + "Form.Group": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 138, + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 103, "column": 12 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 177, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 298, "column": 12 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 199, - "column": 12 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 360, + "column": 14 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 235, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 381, "column": 12 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 246, - "column": 12 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 401, + "column": 14 }, { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 43, - "column": 8 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 448, + "column": 16 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 21, - "column": 4 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 462, + "column": 18 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 93, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 62, "column": 8 - }, - { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 142, - "column": 10 - }, + } + ], + "Form.Control": [ { - "filePath": "src/components/program-progress/ProgramListingPage.jsx", - "line": 43, - "column": 8 + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 109, + "column": 14 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 79, - "column": 4 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 299, + "column": 14 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 90, - "column": 6 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 361, + "column": 16 }, { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 84, - "column": 12 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 388, + "column": 14 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 76, - "column": 10 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 408, + "column": 16 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 88, + "filePath": "src/discussions/posts/post/ClosePostReasonModal.jsx", + "line": 63, "column": 10 - }, + } + ], + "StatefulButton": [ { - "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 12, - "column": 4 + "filePath": "src/discussions/post-comments/comments/comment/CommentEditor.jsx", + "line": 159, + "column": 12 }, { - "filePath": "src/components/search/SearchResults.jsx", - "line": 112, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 486, "column": 12 - }, + } + ], + "Card": [ { - "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", - "line": 23, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 64, + "column": 6 + } + ], + "Card.Section": [ + { + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 71, "column": 8 } ], - "Col": [ + "Post": [ { - "filePath": "src/components/course/CourseHeader.jsx", - "line": 45, - "column": 10 - }, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 288, + "column": 20 + } + ], + "Help": [ { - "filePath": "src/components/course/CourseHeader.jsx", - "line": 106, - "column": 12 - }, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 294, + "column": 20 + } + ], + "Form.Checkbox": [ { - "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 13, - "column": 6 + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 449, + "column": 18 }, { - "filePath": "src/components/course/CourseSidebarListItem.jsx", - "line": 17, - "column": 6 - }, + "filePath": "src/discussions/posts/post-editor/PostEditor.jsx", + "line": 463, + "column": 20 + } + ], + "People": [ { - "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", + "filePath": "src/discussions/posts/post/PostFooter.jsx", "line": 64, - "column": 10 - }, + "column": 21 + } + ], + "Locked": [ { - "filePath": "src/components/error-page/ErrorPage.jsx", - "line": 29, - "column": 8 - }, + "filePath": "src/discussions/posts/post/PostFooter.jsx", + "line": 85, + "column": 21 + } + ], + "Badge": [ { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", - "line": 28, - "column": 8 + "filePath": "src/discussions/posts/post/PostHeader.jsx", + "line": 108, + "column": 21 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", - "line": 97, - "column": 14 + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 99, + "column": 18 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 139, - "column": 14 - }, + "filePath": "src/discussions/posts/post/PostSummaryFooter.jsx", + "line": 82, + "column": 8 + } + ], + "Truncate": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 158, - "column": 14 - }, + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 74, + "column": 16 + } + ], + "CheckCircle": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 178, - "column": 14 - }, + "filePath": "src/discussions/posts/post/PostLink.jsx", + "line": 93, + "column": 29 + } + ], + "ProductTour": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 200, - "column": 14 - }, + "filePath": "src/discussions/tours/DiscussionsProductTour.jsx", + "line": 22, + "column": 8 + } + ] + } + }, + { + "version": "20.20.0", + "name": "@edx/frontend-app-ecommerce", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-ecommerce.git" + }, + "folderName": "frontend-app-ecommerce", + "usages": { + "Hyperlink": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 236, - "column": 14 - }, + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 54, + "column": 8 + } + ], + "Pagination": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 247, - "column": 14 - }, + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 71, + "column": 6 + } + ], + "Table": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 22, + "filePath": "src/order-history/OrderHistoryPage.jsx", + "line": 94, "column": 6 - }, + } + ] + } + }, + { + "version": "20.25.0", + "name": "@edx/frontend-app-enterprise-public-catalog", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-enterprise-public-catalog.git" + }, + "folderName": "frontend-app-enterprise-public-catalog", + "usages": { + "ModalDialog": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 31, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 50, "column": 6 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 42, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 219, "column": 6 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 59, + "column": 8 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 94, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 228, + "column": 8 + } + ], + "ModalDialog.Hero": [ + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 60, "column": 10 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 109, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 229, + "column": 10 + } + ], + "Image": [ + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 66, "column": 10 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 124, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 172, + "column": 8 + }, + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 235, "column": 10 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 80, - "column": 6 + "filePath": "src/components/hero/Hero.jsx", + "line": 17, + "column": 2 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 91, - "column": 8 + "filePath": "src/components/hero/Hero.jsx", + "line": 30, + "column": 2 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 73, + "column": 14 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 182, - "column": 61 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 78, + "column": 14 }, { - "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 13, - "column": 6 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 242, + "column": 14 }, { - "filePath": "src/components/program/ProgramSidebarListItem.jsx", - "line": 17, - "column": 6 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 247, + "column": 14 } ], - "Breadcrumb": [ + "ModalDialog.Footer": [ { - "filePath": "src/components/course/CourseHeader.jsx", - "line": 48, - "column": 16 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 110, + "column": 8 }, { - "filePath": "src/components/pathway-progress/PathwayProgressHeader.jsx", - "line": 19, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 289, + "column": 8 + } + ], + "ActionRow": [ + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 111, "column": 10 }, { - "filePath": "src/components/program/ProgramHeader.jsx", - "line": 82, - "column": 18 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 290, + "column": 10 } ], - "MediaQuery": [ - { - "filePath": "src/components/course/CourseMainContent.jsx", - "line": 38, - "column": 6 - }, + "Hyperlink": [ { - "filePath": "src/components/course/CoursePage.jsx", - "line": 143, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 113, "column": 14 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 62, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 291, "column": 12 - }, + } + ], + "Button": [ { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 25, - "column": 6 - }, - { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 57, - "column": 6 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 120, + "column": 16 }, { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 108, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 298, "column": 14 }, { - "filePath": "src/components/program/ProgramEndorsements.jsx", - "line": 17, - "column": 8 - }, - { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 80, - "column": 12 + "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "line": 40, + "column": 6 }, { - "filePath": "src/components/site-header/SiteHeader.jsx", - "line": 79, - "column": 6 + "filePath": "src/components/catalogSearchResults/associatedComponents/titleButton/TitleButton.jsx", + "line": 6, + "column": 2 }, { - "filePath": "src/components/site-header/SiteHeader.jsx", - "line": 82, - "column": 6 + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 448, + "column": 12 } ], - "breakpoints": [ + "Icon": [ { - "filePath": "src/components/course/CourseMainContent.jsx", - "line": 38, - "column": 28 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 125, + "column": 18 }, { - "filePath": "src/components/course/CoursePage.jsx", - "line": 143, - "column": 36 + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 303, + "column": 16 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 62, - "column": 34 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 51, + "column": 8 }, { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 25, - "column": 28 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 65, + "column": 10 }, { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 57, - "column": 28 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 81, + "column": 10 }, { - "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", - "line": 95, - "column": 9 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 97, + "column": 8 }, { - "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", - "line": 200, - "column": 62 + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 21, + "column": 10 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", "line": 37, - "column": 23 + "column": 10 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 39, - "column": 30 + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 52, + "column": 8 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 41, - "column": 30 + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 63, + "column": 12 + } + ], + "Launch": [ + { + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 125, + "column": 56 }, { - "filePath": "src/components/program-progress/ProgramProgressPage.jsx", - "line": 108, + "filePath": "src/components/catalogInfoModal/CatalogInfoModal.jsx", + "line": 303, + "column": 54 + } + ], + "MoneyOutline": [ + { + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 51, "column": 36 }, { - "filePath": "src/components/program/ProgramEndorsements.jsx", - "line": 17, - "column": 30 - }, + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 21, + "column": 38 + } + ], + "BookOpen": [ { - "filePath": "src/components/program/ProgramHeader.jsx", - "line": 25, - "column": 67 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 65, + "column": 38 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 80, - "column": 34 - }, + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 52, + "column": 36 + } + ], + "Book": [ { - "filePath": "src/components/site-header/tests/SiteHeader.test.jsx", - "line": 43, - "column": 9 + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 81, + "column": 38 } ], - "Card": [ + "EventNote": [ { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 45, - "column": 4 - }, + "filePath": "src/components/catalogModalBanner/CatalogCourseModalBanner.jsx", + "line": 97, + "column": 36 + } + ], + "Assignment": [ { - "filePath": "src/components/course/CourseRunCard.jsx", - "line": 237, - "column": 4 - }, + "filePath": "src/components/catalogModalBanner/CatalogProgramModalBanner.jsx", + "line": 37, + "column": 38 + } + ], + "Alert": [ { - "filePath": "src/components/dashboard/sidebar/DashboardSidebar.jsx", - "line": 10, - "column": 4 + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 87, + "column": 6 }, { - "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", - "line": 11, - "column": 2 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 394, + "column": 6 + } + ], + "Alert.Heading": [ { - "filePath": "src/components/pathway-progress/PathwayNode.jsx", - "line": 35, + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 88, "column": 8 - }, + } + ], + "Alert.Link": [ { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 18, - "column": 4 - }, + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 94, + "column": 8 + } + ], + "DataTable": [ { - "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", - "line": 26, + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 105, "column": 6 }, { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 70, - "column": 4 - }, - { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 83, - "column": 4 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 467, + "column": 10 + } + ], + "CardView": [ { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 58, - "column": 4 + "filePath": "src/components/catalogNoResultsDeck/CatalogNoResultsDeck.jsx", + "line": 118, + "column": 8 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 49, - "column": 4 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 480, + "column": 14 + } + ], + "Badge": [ { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 85, - "column": 6 + "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", + "line": 15, + "column": 8 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 79, - "column": 4 + "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", + "line": 22, + "column": 8 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 118, - "column": 6 + "filePath": "src/components/catalogSearchResults/associatedComponents/catalogBadges/CatalogBadges.jsx", + "line": 29, + "column": 8 }, { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 18, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 438, "column": 12 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 30, - "column": 4 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 47, + "column": 12 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", "line": 59, - "column": 6 + "column": 10 }, { - "filePath": "src/components/skills-quiz/JobCardComponent.jsx", - "line": 20, + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 71, "column": 10 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 159, - "column": 4 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 66, + "column": 12 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 195, - "column": 6 - } - ], - "Card.ImageCap": [ - { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 59, - "column": 6 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 73, + "column": 12 }, { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 23, - "column": 6 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 83, + "column": 12 }, { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 87, - "column": 6 + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 59, + "column": 10 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 63, - "column": 6 + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 72, + "column": 12 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 50, - "column": 6 + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 77, + "column": 12 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 89, - "column": 8 - }, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 82, + "column": 12 + } + ], + "useToggle": [ { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 80, - "column": 6 - }, + "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "line": 10, + "column": 32 + } + ], + "Toast": [ { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 122, + "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "line": 36, "column": 8 - }, - { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 19, - "column": 14 - }, + } + ], + "Download": [ { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 31, - "column": 6 - }, + "filePath": "src/components/catalogSearchResults/associatedComponents/downloadCsvButton/DownloadCsvButton.jsx", + "line": 42, + "column": 20 + } + ], + "DataTable.TableControlBar": [ { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 60, - "column": 8 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 478, + "column": 12 + } + ], + "DataTable.Table": [ { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 160, - "column": 6 - }, + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 491, + "column": 26 + } + ], + "DataTable.TableFooter": [ { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 196, - "column": 8 + "filePath": "src/components/catalogSearchResults/CatalogSearchResults.jsx", + "line": 494, + "column": 14 } ], - "Card.Header": [ + "useMediaQuery": [ { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 65, - "column": 6 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 26, + "column": 23 }, { - "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", - "line": 12, - "column": 14 + "filePath": "src/components/hero/Hero.jsx", + "line": 43, + "column": 20 }, { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 30, - "column": 6 - }, + "filePath": "src/components/hero/Hero.jsx", + "line": 54, + "column": 19 + } + ], + "breakpoints": [ { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 92, - "column": 6 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 26, + "column": 49 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 71, - "column": 6 + "filePath": "src/components/hero/Hero.jsx", + "line": 43, + "column": 46 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", + "filePath": "src/components/hero/Hero.jsx", "line": 55, - "column": 6 + "column": 14 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 97, - "column": 8 + "filePath": "src/components/hero/Hero.jsx", + "line": 56, + "column": 14 + } + ], + "Container": [ + { + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 35, + "column": 4 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 84, + "filePath": "src/components/hero/Hero.jsx", + "line": 73, "column": 6 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 129, - "column": 8 + "filePath": "src/components/PageWrapper.jsx", + "line": 11, + "column": 2 }, { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 24, - "column": 14 - }, + "filePath": "src/components/subheader/subheader.jsx", + "line": 7, + "column": 4 + } + ], + "SelectableBox.Set": [ { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 36, + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 37, "column": 6 - }, + } + ], + "SelectableBox": [ { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 67, + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 45, "column": 8 }, { - "filePath": "src/components/skills-quiz/JobCardComponent.jsx", - "line": 21, - "column": 12 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 58, + "column": 8 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 164, - "column": 6 + "filePath": "src/components/catalogSelectionDeck/CatalogSelectionDeck.jsx", + "line": 70, + "column": 8 + } + ], + "Card": [ + { + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 44, + "column": 4 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 202, - "column": 8 + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 37, + "column": 4 } ], - "Card.Section": [ + "Card.ImageCap": [ { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 83, + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 50, "column": 6 }, { - "filePath": "src/components/course/CourseRunCard.jsx", - "line": 238, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 43, "column": 6 - }, + } + ], + "Card.Header": [ { - "filePath": "src/components/dashboard/sidebar/DashboardSidebar.jsx", - "line": 11, + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 56, "column": 6 }, { - "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", - "line": 13, - "column": 4 - }, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 49, + "column": 6 + } + ], + "Card.Section": [ { - "filePath": "src/components/pathway-progress/PathwayNode.jsx", - "line": 36, - "column": 10 + "filePath": "src/components/courseCard/CourseCard.jsx", + "line": 58, + "column": 6 }, { - "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", - "line": 38, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 57, "column": 6 - }, + } + ], + "Program": [ { - "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", - "line": 27, - "column": 8 - }, + "filePath": "src/components/programCard/ProgramCard.jsx", + "line": 63, + "column": 23 + } + ] + } + }, + { + "version": "19.25.4", + "name": "@edx/frontend-app-gradebook", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-gradebook.git" + }, + "folderName": "frontend-app-gradebook", + "usages": { + "Alert": [ { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 100, - "column": 6 + "filePath": "src/components/BulkManagementHistoryView/BulkManagementAlerts.jsx", + "line": 21, + "column": 4 }, { - "filePath": "src/components/program-progress/ProgramListingCard.jsx", - "line": 98, - "column": 6 + "filePath": "src/components/BulkManagementHistoryView/BulkManagementAlerts.jsx", + "line": 28, + "column": 4 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", + "filePath": "src/components/GradesView/EditModal/index.jsx", "line": 61, - "column": 6 + "column": 12 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 106, + "filePath": "src/components/GradesView/StatusAlerts.jsx", + "line": 43, "column": 8 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 89, - "column": 6 + "filePath": "src/components/GradesView/StatusAlerts.jsx", + "line": 50, + "column": 8 + } + ], + "DataTable": [ + { + "filePath": "src/components/BulkManagementHistoryView/HistoryTable.jsx", + "line": 33, + "column": 2 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 146, + "filePath": "src/components/GradesView/EditModal/OverrideTable/index.jsx", + "line": 30, + "column": 4 + }, + { + "filePath": "src/components/GradesView/GradebookTable/index.jsx", + "line": 67, "column": 8 + } + ], + "Hyperlink": [ + { + "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", + "line": 21, + "column": 2 }, { - "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", - "line": 29, + "filePath": "src/components/EdxHeader/index.jsx", + "line": 13, + "column": 6 + } + ], + "Icon": [ + { + "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", + "line": 28, + "column": 4 + }, + { + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 61, "column": 14 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 42, - "column": 6 + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 65, + "column": 20 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 46, - "column": 6 + "filePath": "src/components/GradesView/FilterMenuToggle.jsx", + "line": 22, + "column": 4 }, { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 90, - "column": 8 + "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", + "line": 36, + "column": 10 }, { - "filePath": "src/components/skills-quiz/JobCardComponent.jsx", - "line": 33, - "column": 12 + "filePath": "src/components/GradesView/SpinnerIcon.jsx", + "line": 17, + "column": 4 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 169, - "column": 6 + "filePath": "src/components/NetworkButton/index.jsx", + "line": 42, + "column": 16 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 172, - "column": 6 + "filePath": "src/components/NetworkButton/index.jsx", + "line": 43, + "column": 16 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 175, - "column": 6 + "filePath": "src/components/NetworkButton/test.jsx", + "line": 54, + "column": 20 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 219, - "column": 8 + "filePath": "src/components/NetworkButton/test.jsx", + "line": 55, + "column": 20 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 237, - "column": 8 + "filePath": "src/components/NetworkButton/test.jsx", + "line": 63, + "column": 20 + }, + { + "filePath": "src/components/NetworkButton/test.jsx", + "line": 64, + "column": 20 } ], - "Card.Footer": [ + "Download": [ { - "filePath": "src/components/course/CourseRecommendationCard.jsx", - "line": 85, - "column": 6 + "filePath": "src/components/BulkManagementHistoryView/ResultsSummary.jsx", + "line": 28, + "column": 15 + } + ], + "Button": [ + { + "filePath": "src/components/GradebookFilters/AssignmentGradeFilter/index.jsx", + "line": 59, + "column": 10 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 65, - "column": 6 + "filePath": "src/components/GradebookFilters/CourseGradeFilter/index.jsx", + "line": 66, + "column": 10 }, { - "filePath": "src/components/search/SearchCourseCard.jsx", - "line": 120, - "column": 8 + "filePath": "src/components/GradebookHeader/index.jsx", + "line": 52, + "column": 12 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", + "filePath": "src/components/GradebookHeader/test.jsx", + "line": 78, + "column": 10 + }, + { + "filePath": "src/components/GradebookHeader/test.jsx", "line": 92, - "column": 6 + "column": 10 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 161, - "column": 8 + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 78, + "column": 12 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 178, + "filePath": "src/components/GradesView/FilterBadges/FilterBadge.jsx", + "line": 36, "column": 6 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 253, - "column": 8 - } - ], - "CardGrid": [ + "filePath": "src/components/GradesView/FilterMenuToggle.jsx", + "line": 17, + "column": 2 + }, { - "filePath": "src/components/course/CourseRecommendations.jsx", - "line": 16, - "column": 10 + "filePath": "src/components/GradesView/GradebookTable/GradeButton.jsx", + "line": 42, + "column": 8 }, { - "filePath": "src/components/course/CourseRecommendations.jsx", - "line": 26, - "column": 10 + "filePath": "src/components/GradesView/PageButtons/index.jsx", + "line": 33, + "column": 8 }, { - "filePath": "src/components/course/CourseRunCards.jsx", - "line": 24, + "filePath": "src/components/GradesView/PageButtons/index.jsx", + "line": 41, + "column": 8 + } + ], + "Collapsible": [ + { + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 44, "column": 4 } ], - "OverlayTrigger": [ + "IconButton": [ { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 27, + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 62, "column": 10 } ], - "Popover": [ + "Close": [ { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 32, - "column": 14 + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 66, + "column": 17 } ], - "Popover.Title": [ - { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 33, - "column": 16 - } - ], - "Popover.Content": [ + "Form.Checkbox": [ { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 34, - "column": 16 + "filePath": "src/components/GradebookFilters/index.jsx", + "line": 96, + "column": 12 } ], - "Badge": [ - { - "filePath": "src/components/course/CourseSkills.jsx", - "line": 45, - "column": 12 - }, - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 405, - "column": 24 - }, - { - "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", - "line": 87, - "column": 20 - }, - { - "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", - "line": 31, - "column": 12 - }, - { - "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", - "line": 93, - "column": 18 - }, - { - "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", - "line": 124, - "column": 18 - }, - { - "filePath": "src/components/pathway-progress/PathwayNode.jsx", - "line": 44, - "column": 50 - }, - { - "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", - "line": 32, - "column": 12 - }, - { - "filePath": "src/components/pathway/SearchPathwayCard.jsx", - "line": 106, - "column": 17 - }, - { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 148, - "column": 12 - }, - { - "filePath": "src/components/skills-quiz/CourseCard.jsx", - "line": 100, - "column": 20 - }, - { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 224, - "column": 18 - }, - { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 239, - "column": 12 - }, - { - "filePath": "src/components/skills-quiz/SelectedJobSkills.jsx", - "line": 23, - "column": 10 - }, + "Form.Group": [ { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 122, - "column": 21 + "filePath": "src/components/GradebookFilters/PercentGroup.jsx", + "line": 15, + "column": 4 }, { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 124, - "column": 12 + "filePath": "src/components/GradebookFilters/SelectGroup.jsx", + "line": 16, + "column": 4 } ], - "Modal": [ - { - "filePath": "src/components/course/EnrollModal.jsx", - "line": 85, - "column": 4 - }, + "Form.Label": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 114, + "filePath": "src/components/GradebookFilters/PercentGroup.jsx", + "line": 16, "column": 6 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", - "line": 76, + "filePath": "src/components/GradebookFilters/SelectGroup.jsx", + "line": 17, "column": 6 - }, + } + ], + "Form.Control": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", - "line": 67, + "filePath": "src/components/GradebookFilters/PercentGroup.jsx", + "line": 17, "column": 6 }, { - "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", - "line": 106, + "filePath": "src/components/GradebookFilters/SelectGroup.jsx", + "line": 18, "column": 6 }, { - "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", - "line": 141, - "column": 4 + "filePath": "src/components/GradesView/EditModal/OverrideTable/AdjustedGradeInput.jsx", + "line": 30, + "column": 8 }, { - "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", - "line": 29, + "filePath": "src/components/GradesView/EditModal/OverrideTable/ReasonInput.jsx", + "line": 31, "column": 6 } ], - "Alert.Heading": [ + "ModalDialog": [ { - "filePath": "src/components/course/LicenseRequestedAlert.jsx", - "line": 52, - "column": 8 - }, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 50, + "column": 6 + } + ], + "ModalDialog.Body": [ { - "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", - "line": 56, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 58, "column": 8 } ], - "StatefulButton": [ + "ModalDialog.Footer": [ { - "filePath": "src/components/course/SubsidyRequestButton.jsx", - "line": 119, - "column": 4 - }, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 73, + "column": 8 + } + ], + "ActionRow": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 141, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 74, "column": 10 - }, + } + ], + "ModalDialog.CloseButton": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", - "line": 80, + "filePath": "src/components/GradesView/EditModal/index.jsx", + "line": 75, + "column": 12 + } + ], + "DataTable.TableControlBar": [ + { + "filePath": "src/components/GradesView/GradebookTable/index.jsx", + "line": 75, "column": 10 - }, + } + ], + "DataTable.Table": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", - "line": 71, + "filePath": "src/components/GradesView/GradebookTable/index.jsx", + "line": 76, "column": 10 - }, + } + ], + "DataTable.EmptyTable": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 65, + "filePath": "src/components/GradesView/GradebookTable/index.jsx", + "line": 77, "column": 10 - }, + } + ], + "OverlayTrigger": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 248, - "column": 16 + "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", + "line": 23, + "column": 4 } ], - "useToggle": [ + "Tooltip": [ { - "filePath": "src/components/dashboard/DashboardPage.jsx", + "filePath": "src/components/GradesView/GradebookTable/LabelReplacements.jsx", "line": 28, - "column": 58 - }, - { - "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", - "line": 26, - "column": 6 - }, - { - "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", - "line": 32, - "column": 6 - }, - { - "filePath": "src/components/search/Search.jsx", - "line": 42, - "column": 72 + "column": 8 } ], - "Tabs": [ + "Form": [ { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 86, + "filePath": "src/components/GradesView/ImportGradesButton.jsx", + "line": 62, "column": 8 } ], - "Tab": [ - { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 87, - "column": 10 - }, + "FormGroup": [ { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 90, + "filePath": "src/components/GradesView/ImportGradesButton.jsx", + "line": 63, "column": 10 }, { - "filePath": "src/components/dashboard/DashboardPage.jsx", - "line": 94, - "column": 12 + "filePath": "src/components/GradesView/ScoreViewInput.jsx", + "line": 17, + "column": 2 } ], - "Dropdown": [ + "FormControl": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 249, - "column": 10 + "filePath": "src/components/GradesView/ImportGradesButton.jsx", + "line": 64, + "column": 12 }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 41, - "column": 14 - }, + "filePath": "src/components/GradesView/ScoreViewInput.jsx", + "line": 19, + "column": 4 + } + ], + "Toast": [ { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 106, - "column": 8 - }, + "filePath": "src/components/GradesView/ImportSuccessToast.jsx", + "line": 40, + "column": 6 + } + ], + "FormLabel": [ { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 27, + "filePath": "src/components/GradesView/ScoreViewInput.jsx", + "line": 18, "column": 4 - }, + } + ], + "SearchField": [ { - "filePath": "src/components/skills-quiz/GoalDropdown.jsx", - "line": 20, - "column": 4 + "filePath": "src/components/GradesView/SearchControls.jsx", + "line": 44, + "column": 8 } ], - "Dropdown.Toggle": [ + "StatefulButton": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 250, - "column": 12 - }, + "filePath": "src/components/NetworkButton/index.jsx", + "line": 53, + "column": 6 + } + ] + } + }, + { + "version": "20.19.0", + "name": "@edx/frontend-app-learner-dashboard", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-app-learner-dashboard.git" + }, + "folderName": "frontend-app-learner-dashboard", + "usages": { + "Alert": [ { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 42, - "column": 16 + "filePath": "src/App.jsx", + "line": 84, + "column": 14 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 107, - "column": 10 + "filePath": "src/App.test.jsx", + "line": 87, + "column": 12 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 28, - "column": 6 + "filePath": "src/App.test.jsx", + "line": 103, + "column": 12 }, { - "filePath": "src/components/skills-quiz/GoalDropdown.jsx", - "line": 21, - "column": 6 - } - ], - "IconButton": [ - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 251, - "column": 18 - } - ], - "MoreVert": [ - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 252, - "column": 19 + "filePath": "src/components/Banner.jsx", + "line": 10, + "column": 2 } ], - "Icon": [ + "MailtoLink": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 253, - "column": 22 + "filePath": "src/components/EmailLink.jsx", + "line": 11, + "column": 4 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 97, - "column": 16 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", + "line": 29, + "column": 42 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 112, - "column": 16 - }, + "filePath": "src/containers/CourseCard/components/CourseCardBanners/EntitlementBanner.jsx", + "line": 34, + "column": 37 + } + ], + "useWindowSize": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 127, - "column": 16 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", + "line": 4, + "column": 20 }, { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 152, - "column": 14 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 14, + "column": 4 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 243, - "column": 14 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 16, + "column": 4 }, { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 8, + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 18, "column": 4 - } - ], - "Dropdown.Menu": [ - { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 256, - "column": 12 }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 45, - "column": 16 + "filePath": "src/containers/CourseCard/hooks.js", + "line": 6, + "column": 20 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 110, - "column": 10 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 47, + "column": 20 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 31, + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 45, "column": 6 }, { - "filePath": "src/components/skills-quiz/GoalDropdown.jsx", - "line": 24, + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 52, "column": 6 - } - ], - "Dropdown.Item": [ + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 258, - "column": 16 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 59, + "column": 6 }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 49, - "column": 18 + "filePath": "src/containers/CourseList/hooks.js", + "line": 13, + "column": 20 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 113, - "column": 16 + "filePath": "src/containers/Dashboard/hooks.js", + "line": 9, + "column": 20 }, { - "filePath": "src/components/program/ProgramCTA.jsx", - "line": 133, - "column": 16 + "filePath": "src/containers/Dashboard/hooks.test.js", + "line": 33, + "column": 6 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", + "filePath": "src/containers/Dashboard/hooks.test.js", "line": 36, - "column": 8 + "column": 6 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", + "filePath": "src/containers/Dashboard/hooks.test.js", "line": 38, - "column": 8 + "column": 6 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 50, - "column": 8 + "filePath": "src/containers/LearnerDashboardHeader/hooks.js", + "line": 7, + "column": 20 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 51, - "column": 8 + "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", + "line": 17, + "column": 6 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 52, - "column": 8 + "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", + "line": 21, + "column": 6 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 54, - "column": 8 + "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.js", + "line": 14, + "column": 20 }, { - "filePath": "src/components/skills-quiz/GoalDropdown.jsx", - "line": 26, - "column": 10 - } - ], - "Input": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.test.js", + "line": 33, + "column": 6 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 124, - "column": 14 + "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.test.js", + "line": 37, + "column": 6 } ], - "Alert.Link": [ + "breakpoints": [ { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", - "line": 11, - "column": 21 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", + "line": 5, + "column": 17 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", - "line": 11, - "column": 42 - } - ], - "AlertModal": [ + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.js", + "line": 5, + "column": 56 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 53, - "column": 4 - } - ], - "ActionRow": [ + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 8, + "column": 7 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", - "line": 58, - "column": 8 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 9, + "column": 9 }, { - "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", - "line": 50, - "column": 8 + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 10, + "column": 10 }, { - "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", - "line": 58, - "column": 8 - } - ], - "Button": [ + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 11, + "column": 9 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 14, + "column": 43 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 16, + "column": 43 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/hooks.test.js", + "line": 18, + "column": 43 + }, + { + "filePath": "src/containers/CourseCard/hooks.js", + "line": 7, + "column": 17 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 48, + "column": 27 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 45, + "column": 49 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", + "line": 52, + "column": 49 + }, + { + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.test.jsx", "line": 59, - "column": 10 + "column": 49 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpcomingCourseCard.jsx", + "filePath": "src/containers/CourseList/hooks.js", + "line": 14, + "column": 17 + }, + { + "filePath": "src/containers/Dashboard/hooks.js", "line": 10, - "column": 4 + "column": 17 }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpgradeCourseButton.jsx", - "line": 46, + "filePath": "src/containers/Dashboard/hooks.test.js", + "line": 34, "column": 6 }, { - "filePath": "src/components/dashboard/main-content/CourseRecommendations.jsx", - "line": 24, - "column": 10 + "filePath": "src/containers/LearnerDashboardHeader/hooks.js", + "line": 8, + "column": 52 }, { - "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", - "line": 43, - "column": 12 + "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", + "line": 17, + "column": 49 }, { - "filePath": "src/components/dashboard/sidebar/SubsidiesSummary.jsx", - "line": 67, - "column": 6 + "filePath": "src/containers/LearnerDashboardHeader/hooks.test.js", + "line": 21, + "column": 49 }, { - "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", - "line": 21, - "column": 12 + "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.js", + "line": 15, + "column": 52 }, { - "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", - "line": 104, - "column": 10 + "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.test.js", + "line": 33, + "column": 49 }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", + "filePath": "src/containers/LearnerDashboardHeaderVariant/hooks.test.js", "line": 37, - "column": 12 + "column": 49 + } + ], + "Button": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardActions/ActionButton/index.jsx", + "line": 9, + "column": 4 }, { - "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", - "line": 38, - "column": 10 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditContent.jsx", + "line": 14, + "column": 8 }, { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 55, - "column": 16 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", + "line": 29, + "column": 6 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 43, - "column": 8 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/EntitlementBanner.jsx", + "line": 45, + "column": 12 }, { - "filePath": "src/components/preview-expand/PreviewExpand.jsx", + "filePath": "src/containers/CourseCard/components/CourseCardDetails/index.jsx", + "line": 30, + "column": 10 + }, + { + "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", "line": 21, "column": 6 }, { - "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", - "line": 51, - "column": 10 + "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", + "line": 28, + "column": 6 }, { - "filePath": "src/components/program-progress/ProgramListingPage.jsx", - "line": 50, - "column": 16 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 52, + "column": 6 }, { - "filePath": "src/components/program-progress/ProgramPathwayOpportunity.jsx", - "line": 16, - "column": 16 + "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", + "line": 27, + "column": 6 }, { - "filePath": "src/components/program-progress/ProgramProgressSidebar.jsx", - "line": 76, - "column": 14 + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 43, + "column": 10 }, { - "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", - "line": 59, + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 46, "column": 10 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 348, - "column": 18 + "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "line": 46, + "column": 10 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 360, - "column": 14 + "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "line": 49, + "column": 10 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 364, - "column": 14 + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 36, + "column": 12 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 371, - "column": 14 + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 62, + "column": 10 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 375, + "filePath": "src/containers/LearnerDashboardHeader/index.jsx", + "line": 45, "column": 14 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 378, - "column": 14 + "filePath": "src/containers/LearnerDashboardHeader/index.jsx", + "line": 68, + "column": 16 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 382, - "column": 14 - } - ], - "Collapsible": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 29, + "column": 8 + }, { - "filePath": "src/components/dashboard/main-content/course-enrollments/CourseSection.jsx", - "line": 127, + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 32, "column": 8 }, { - "filePath": "src/components/pathway-progress/PathwayStep.jsx", - "line": 14, - "column": 4 + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 35, + "column": 8 }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 155, - "column": 10 + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 43, + "column": 8 }, { - "filePath": "src/components/program/ProgramFAQ.jsx", - "line": 16, + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 49, "column": 14 - } - ], - "WarningFilled": [ - { - "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", - "line": 65, - "column": 18 }, { - "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", - "line": 100, - "column": 92 + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 53, + "column": 12 }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 93, - "column": 51 + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 62, + "column": 12 }, { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 8, - "column": 15 - } - ], - "Navbar": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 70, + "column": 14 + }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 26, - "column": 6 - } - ], - "Navbar.Brand": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/CollapseMenuBody.jsx", + "line": 78, + "column": 12 + }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 28, - "column": 10 - } - ], - "AvatarButton": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/index.jsx", + "line": 29, + "column": 8 + }, { - "filePath": "src/components/error-page/ErrorPageHeader.jsx", - "line": 42, - "column": 47 + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/index.jsx", + "line": 37, + "column": 8 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 28, - "column": 49 - } - ], - "ArrowBack": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/index.jsx", + "line": 45, + "column": 8 + }, { - "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", - "line": 39, - "column": 26 - } - ], - "Form.Group": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/index.jsx", + "line": 55, + "column": 8 + }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 140, - "column": 16 + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 66, + "column": 8 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 159, - "column": 16 + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 69, + "column": 8 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 179, - "column": 16 + "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", + "line": 22, + "column": 8 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 201, - "column": 16 + "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", + "line": 25, + "column": 8 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 182, - "column": 28 - } - ], - "Form.Control": [ - { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 144, - "column": 18 + "filePath": "src/containers/UnenrollConfirmModal/components/FinishedPane.jsx", + "line": 25, + "column": 8 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 162, - "column": 18 + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 40, + "column": 8 }, { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 182, - "column": 18 + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 43, + "column": 8 }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 184, - "column": 30 + "filePath": "src/widgets/RecommendationsPanel/LoadedView.jsx", + "line": 37, + "column": 8 } ], - "CheckboxControl": [ + "ActionRow": [ { - "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", - "line": 203, - "column": 20 - } - ], - "Search": [ + "filePath": "src/containers/CourseCard/components/CourseCardActions/index.jsx", + "line": 28, + "column": 4 + }, { - "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", - "line": 55, - "column": 54 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditContent.jsx", + "line": 13, + "column": 6 }, { - "filePath": "src/components/program-progress/ProgramListingPage.jsx", - "line": 50, - "column": 54 - } - ], - "Image": [ + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 42, + "column": 8 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 23, + "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "line": 45, "column": 8 + }, + { + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 65, + "column": 6 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ConfirmPane.jsx", + "line": 21, + "column": 6 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/FinishedPane.jsx", + "line": 24, + "column": 6 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 39, + "column": 6 } ], - "MarketingModal": [ + "Locked": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 63, - "column": 4 + "filePath": "src/containers/CourseCard/components/CourseCardActions/UpgradeButton.jsx", + "line": 33, + "column": 18 } ], - "ModalDialog.Hero": [ + "Hyperlink": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 70, + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", + "line": 56, + "column": 10 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", + "line": 71, "column": 8 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 213, + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CourseBanner.jsx", + "line": 40, + "column": 14 + }, + { + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CourseBanner.jsx", + "line": 51, "column": 10 - } - ], - "ModalDialog.Title": [ + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 87, - "column": 8 - } - ], - "VerifiedBadge": [ + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/ProviderLink.jsx", + "line": 11, + "column": 4 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 97, - "column": 27 - } - ], - "Assignment": [ + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 30, + "column": 10 + }, { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 112, - "column": 27 + "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", + "line": 15, + "column": 4 } ], - "BookOpen": [ + "CheckCircle": [ { - "filePath": "src/components/pathway/PathwayModal.jsx", - "line": 127, - "column": 27 + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CertificateBanner.jsx", + "line": 68, + "column": 38 } ], - "StandardModal": [ + "Form": [ { - "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", - "line": 44, + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", + "line": 15, "column": 4 }, { - "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", - "line": 52, - "column": 4 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 61, + "column": 6 + }, + { + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 40, + "column": 6 } ], - "CheckCircle": [ + "FormControl": [ { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 82, + "filePath": "src/containers/CourseCard/components/CourseCardBanners/CreditBanner/views/components/CreditRequestForm/index.jsx", + "line": 22, "column": 8 - } - ], - "Form.Label": [ + }, { - "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", - "line": 183, - "column": 30 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 62, + "column": 14 } ], - "Collapsible.Advanced": [ + "Program": [ { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 41, + "filePath": "src/containers/CourseCard/components/CourseCardBanners/RelatedProgramsBanner/index.jsx", + "line": 21, "column": 14 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 90, - "column": 8 + "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", + "line": 28, + "column": 19 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/index.jsx", + "line": 45, + "column": 92 + }, + { + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 45, + "column": 21 } ], - "Collapsible.Trigger": [ + "Badge": [ { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 42, - "column": 16 + "filePath": "src/containers/CourseCard/components/CourseCardImage.jsx", + "line": 37, + "column": 12 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 91, - "column": 10 + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 44, + "column": 8 } ], - "Collapsible.Visible": [ + "Dropdown": [ { - "filePath": "src/components/program/ProgramCourses.jsx", + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", "line": 45, - "column": 18 + "column": 6 }, { - "filePath": "src/components/program/ProgramCourses.jsx", - "line": 49, - "column": 18 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 24, + "column": 4 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 93, - "column": 12 + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 19, + "column": 6 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 46, + "column": 8 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 97, - "column": 12 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 25, + "column": 6 + }, + { + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 20, + "column": 8 } ], - "Collapsible.Body": [ + "IconButton": [ { - "filePath": "src/components/program/ProgramCourses.jsx", + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 48, + "column": 14 + }, + { + "filePath": "src/containers/LearnerDashboardHeader/index.jsx", "line": 54, "column": 16 }, { - "filePath": "src/components/program/ProgramInstructors.jsx", - "line": 102, + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/index.jsx", + "line": 23, "column": 10 } ], - "Stack": [ + "MoreVert": [ { - "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", - "line": 7, - "column": 2 + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 49, + "column": 15 } ], - "Bubble": [ + "Icon": [ { - "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", - "line": 8, - "column": 4 + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 50, + "column": 18 }, { - "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", - "line": 13, - "column": 4 + "filePath": "src/containers/CourseCard/components/RelatedProgramsBadge/index.jsx", + "line": 28, + "column": 8 }, { - "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", - "line": 18, - "column": 4 - } - ], - "StatusAlert": [ + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 82, + "column": 18 + }, { - "filePath": "src/components/search/SearchError.jsx", - "line": 28, - "column": 4 + "filePath": "src/containers/LearnerDashboardHeader/index.jsx", + "line": 61, + "column": 26 }, { - "filePath": "src/components/search/SearchNoResults.jsx", - "line": 31, - "column": 6 + "filePath": "src/containers/LearnerDashboardHeaderVariant/CollapsedHeader/index.jsx", + "line": 27, + "column": 20 }, { - "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", - "line": 109, - "column": 10 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 44, + "column": 14 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 282, - "column": 10 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 58, + "column": 14 }, { - "filePath": "src/components/skills-quiz/SkillsCourses.jsx", - "line": 155, + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 45, "column": 10 - } - ], - "Program": [ - { - "filePath": "src/components/search/SearchProgramCard.jsx", - "line": 152, - "column": 25 }, { - "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", - "line": 243, - "column": 25 + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 14, + "column": 26 } ], - "Dropdown.Header": [ + "Dropdown.Menu": [ { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 35, + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 54, "column": 8 - } - ], - "Dropdown.Divider": [ + }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 49, - "column": 8 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 35, + "column": 6 }, { - "filePath": "src/components/site-header/AvatarDropdown.jsx", - "line": 53, + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 31, "column": 8 } ], - "Menu": [ + "Dropdown.Item": [ { - "filePath": "src/components/site-header/SiteHeader.jsx", - "line": 51, - "column": 14 - } - ], - "SelectableBox.Set": [ + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 56, + "column": 12 + }, { - "filePath": "src/components/skills-quiz/SelectJobCard.jsx", - "line": 29, - "column": 6 - } - ], - "SelectableBox": [ + "filePath": "src/containers/CourseCard/components/CourseCardMenu/index.jsx", + "line": 65, + "column": 12 + }, { - "filePath": "src/components/skills-quiz/SelectJobCard.jsx", + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", "line": 37, - "column": 10 - } - ], - "Stepper": [ - { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 205, - "column": 6 - } - ], - "ModalDialog": [ - { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 206, "column": 8 - } - ], - "ModalDialog.Body": [ + }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 221, + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 39, "column": 10 - } - ], - "Stepper.Step": [ + }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 223, - "column": 14 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 48, + "column": 8 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 327, - "column": 14 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 53, + "column": 12 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 353, - "column": 14 - } - ], - "Form.Checkbox": [ + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 56, + "column": 12 + }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 289, - "column": 30 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 61, + "column": 8 + }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 358, + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 65, "column": 10 - } - ], - "Stepper.ActionRow": [ + }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 359, - "column": 12 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 69, + "column": 8 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 370, - "column": 12 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 73, + "column": 8 }, { - "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", - "line": 377, + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 33, + "column": 10 + }, + { + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 37, "column": 12 - } - ], - "PageBanner": [ + }, { - "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", - "line": 7, - "column": 2 - } - ], - "Toast": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 42, + "column": 10 + }, { - "filePath": "src/components/Toasts/Toasts.jsx", - "line": 9, - "column": 4 - } - ] - } - }, - { - "version": "19.19.0", - "name": "frontend-app-learner-portal", - "repository": "https://github.com/edx/frontend-app-learner-portal-programs", - "folderName": "frontend-app-learner-portal-programs", - "usages": { - "Dropdown.Deprecated": [ + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 45, + "column": 10 + }, { - "filePath": "src/components/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 152, + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 49, + "column": 12 + }, + { + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 54, "column": 10 } ], - "Modal": [ + "Card": [ { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 117, + "filePath": "src/containers/CourseCard/index.jsx", + "line": 23, "column": 6 - } - ], - "Alert": [ + }, { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 122, - "column": 14 + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 25, + "column": 4 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 52, + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 20, "column": 4 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 67, + "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", + "line": 20, "column": 6 + } + ], + "Card.Body": [ + { + "filePath": "src/containers/CourseCard/index.jsx", + "line": 27, + "column": 12 }, { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 80, + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 25, "column": 6 }, { - "filePath": "src/components/programs-list/ProgramListPage.jsx", - "line": 81, - "column": 4 + "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", + "line": 26, + "column": 10 } ], - "Warning": [ + "Card.Header": [ { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 125, - "column": 22 + "filePath": "src/containers/CourseCard/index.jsx", + "line": 28, + "column": 14 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 55, - "column": 12 - }, + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 39, + "column": 6 + } + ], + "Card.Section": [ { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 82, + "filePath": "src/containers/CourseCard/index.jsx", + "line": 32, "column": 14 }, { - "filePath": "src/components/programs-list/ProgramListPage.jsx", - "line": 83, + "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", + "line": 27, "column": 12 } ], - "Input": [ + "Card.Footer": [ { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 132, + "filePath": "src/containers/CourseCard/index.jsx", + "line": 35, "column": 14 } ], - "StatefulButton": [ + "Chip": [ { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 151, - "column": 10 - } - ], - "Button": [ - { - "filePath": "src/components/course-enrollments/course-cards/UpcomingCourseCard.jsx", - "line": 10, - "column": 4 + "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", + "line": 20, + "column": 8 }, { - "filePath": "src/components/program/sidebar/Links.jsx", - "line": 65, - "column": 10 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 47, + "column": 12 } ], - "CheckCircle": [ + "CloseSmall": [ { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 69, - "column": 14 + "filePath": "src/containers/CourseFilterControls/ActiveCourseFilters.jsx", + "line": 22, + "column": 21 } ], - "breakpoints": [ - { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 113, - "column": 30 - }, - { - "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", - "line": 158, - "column": 52 - }, + "Form.Checkbox": [ { - "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", - "line": 170, - "column": 52 - }, + "filePath": "src/containers/CourseFilterControls/components/Checkbox.jsx", + "line": 12, + "column": 4 + } + ], + "Form.Group": [ { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 128, - "column": 48 + "filePath": "src/containers/CourseFilterControls/components/FilterForm.jsx", + "line": 22, + "column": 2 }, { - "filePath": "src/components/program/tab-components/JourneyTab.jsx", - "line": 16, - "column": 30 + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 45, + "column": 6 } ], - "Collapsible": [ + "Form.CheckboxSet": [ { - "filePath": "src/components/course-enrollments/CourseSection.jsx", - "line": 83, - "column": 8 + "filePath": "src/containers/CourseFilterControls/components/FilterForm.jsx", + "line": 24, + "column": 4 } ], - "Alert.Link": [ + "Form.RadioSet": [ { - "filePath": "src/components/program/ProgramPage.jsx", - "line": 91, - "column": 10 - } - ], - "Tabs": [ + "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", + "line": 19, + "column": 6 + }, { - "filePath": "src/components/program/TabularView.jsx", - "line": 37, + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 47, + "column": 8 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 26, "column": 6 } ], - "Tab": [ + "Form.Radio": [ { - "filePath": "src/components/program/TabularView.jsx", - "line": 40, - "column": 10 - } - ] - } - }, - { - "version": "19.25.3", - "name": "@edx/frontend-app-learner-record", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-app-learner-record.git" - }, - "folderName": "frontend-app-learner-record", - "usages": { - "Button": [ + "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", + "line": 24, + "column": 8 + }, { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 78, - "column": 4 + "filePath": "src/containers/CourseFilterControls/components/SortForm.jsx", + "line": 27, + "column": 8 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 127, + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 54, "column": 12 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 156, - "column": 16 + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 59, + "column": 12 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 169, - "column": 16 + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 19, + "column": 4 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 41, - "column": 14 - }, + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 32, + "column": 8 + } + ], + "Tune": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 142, - "column": 10 - }, + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 55, + "column": 20 + } + ], + "Sheet": [ { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 118, - "column": 16 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 64, + "column": 12 } ], - "ArrowBack": [ + "ModalCloseButton": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 80, - "column": 18 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 81, + "column": 16 } ], - "Hyperlink": [ + "Close": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 83, - "column": 6 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 82, + "column": 29 }, { - "filePath": "src/components/ProgramRecord/RecordsHelp.jsx", - "line": 23, - "column": 14 - }, + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 49, + "column": 25 + } + ], + "ModalPopup": [ { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 68, - "column": 18 + "filePath": "src/containers/CourseFilterControls/CourseFilterControls.jsx", + "line": 87, + "column": 12 + } + ], + "useToggle": [ + { + "filePath": "src/containers/CourseFilterControls/hooks.js", + "line": 18, + "column": 44 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 45, + "filePath": "src/containers/CourseFilterControls/hooks.test.js", + "line": 36, "column": 6 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 114, - "column": 14 + "filePath": "src/containers/CourseFilterControls/hooks.test.js", + "line": 64, + "column": 6 + } + ], + "useCheckboxSetValues": [ + { + "filePath": "src/containers/CourseList/hooks.js", + "line": 22, + "column": 32 + } + ], + "paragon": [ + { + "filePath": "src/containers/CourseList/hooks.test.js", + "line": 40, + "column": 2 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 160, - "column": 6 + "filePath": "src/containers/CourseList/hooks.test.js", + "line": 88, + "column": 8 } ], - "Alert": [ + "Pagination": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 167, + "filePath": "src/containers/CourseList/index.jsx", + "line": 52, + "column": 16 + } + ], + "Image": [ + { + "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", + "line": 20, "column": 6 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 37, - "column": 10 + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 54, + "column": 12 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 82, - "column": 10 + "filePath": "src/containers/LearnerDashboardHeader/GreetingBanner.jsx", + "line": 35, + "column": 8 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 61, - "column": 6 + "filePath": "src/containers/LearnerDashboardHeader/index.jsx", + "line": 40, + "column": 10 } ], - "Info": [ + "Search": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 168, - "column": 8 + "filePath": "src/containers/CourseList/NoCoursesView/index.jsx", + "line": 31, + "column": 20 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 39, - "column": 18 + "filePath": "src/containers/LearnerDashboardHeader/index.jsx", + "line": 60, + "column": 23 }, { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 62, - "column": 8 + "filePath": "src/containers/LearnerDashboardHeader/index.jsx", + "line": 72, + "column": 30 + }, + { + "filePath": "src/widgets/RecommendationsPanel/LoadedView.jsx", + "line": 39, + "column": 22 } ], "Container": [ { - "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", - "line": 202, + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 23, "column": 4 + }, + { + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 42, + "column": 8 } ], - "Icon": [ + "Row": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 51, - "column": 15 + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 24, + "column": 6 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 52, - "column": 15 + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 43, + "column": 10 + } + ], + "Col": [ + { + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 25, + "column": 8 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 53, - "column": 16 + "filePath": "src/containers/Dashboard/DashboardLayout.jsx", + "line": 28, + "column": 8 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 225, - "column": 24 + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 45, + "column": 14 } ], - "Download": [ + "Spinner": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 51, - "column": 26 - } - ], - "SpinnerSimple": [ + "filePath": "src/containers/Dashboard/LoadingView.jsx", + "line": 11, + "column": 6 + }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 52, - "column": 26 + "filePath": "src/widgets/RecommendationsPanel/LoadingView.jsx", + "line": 10, + "column": 6 } ], - "Check": [ + "ModalDialog": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 53, - "column": 27 - } - ], - "AccountBalance": [ + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 30, + "column": 4 + }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 130, - "column": 26 - } - ], - "OverlayTrigger": [ + "filePath": "src/containers/EnterpriseDashboardModal/index.jsx", + "line": 25, + "column": 4 + }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 140, - "column": 12 + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 24, + "column": 4 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 183, - "column": 12 + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 35, + "column": 4 + }, + { + "filePath": "src/containers/UnenrollConfirmModal/index.jsx", + "line": 29, + "column": 4 } ], - "Tooltip": [ + "Form.Switch": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 144, - "column": 16 + "filePath": "src/containers/EmailSettingsModal/index.jsx", + "line": 38, + "column": 8 } ], - "ContentCopy": [ + "AvatarButton": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 158, - "column": 30 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 26, + "column": 12 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 171, - "column": 30 - } - ], - "Popover": [ - { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 187, - "column": 16 + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 21, + "column": 14 } ], - "Popover.Title": [ + "Dropdown.Header": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 190, - "column": 18 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 36, + "column": 8 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 204, - "column": 18 + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 32, + "column": 10 } ], - "Popover.Content": [ + "Dropdown.Divider": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 197, - "column": 18 + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 47, + "column": 8 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 211, - "column": 18 - } - ], - "IconButton": [ + "filePath": "src/containers/LearnerDashboardHeader/AuthenticatedUserDropdown.jsx", + "line": 72, + "column": 8 + }, { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 221, - "column": 14 + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 41, + "column": 10 + }, + { + "filePath": "src/containers/LearnerDashboardHeaderVariant/ExpandedHeader/AuthenticatedUserDropdown.jsx", + "line": 53, + "column": 10 } ], - "Help": [ + "PageBanner": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 224, - "column": 21 + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 33, + "column": 6 } ], - "StatefulButton": [ + "MarketingModal": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 235, - "column": 12 + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 47, + "column": 6 } ], - "Toast": [ + "ModalDialog.Hero": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", - "line": 248, + "filePath": "src/containers/LearnerDashboardHeader/ConfirmEmailBanner/index.jsx", + "line": 53, "column": 10 } ], - "Badge": [ + "FormLabel": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", - "line": 52, + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 43, "column": 12 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", - "line": 58, - "column": 16 - }, - { - "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", - "line": 63, + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 57, "column": 12 - }, + } + ], + "PersonSearch": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 26, - "column": 10 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 44, + "column": 25 }, { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 31, - "column": 10 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 58, + "column": 25 } ], - "DataTable": [ + "FormGroup": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 38, - "column": 4 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 61, + "column": 12 } ], - "DataTable.Table": [ + "FormControlFeedback": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 76, - "column": 6 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 68, + "column": 16 } ], - "DataTable.EmptyTable": [ + "StatefulButton": [ { - "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", - "line": 77, - "column": 6 + "filePath": "src/containers/MasqueradeBar/index.jsx", + "line": 73, + "column": 12 } ], - "Alert.Heading": [ + "Card.ImageCap": [ { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 54, - "column": 12 + "filePath": "src/containers/RelatedProgramsModal/components/ProgramCard.jsx", + "line": 32, + "column": 6 }, { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 88, - "column": 12 - } - ], - "CheckCircle": [ - { - "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", - "line": 84, - "column": 18 - } - ], - "ModalDialog": [ + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 21, + "column": 6 + }, { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 71, - "column": 4 + "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", + "line": 22, + "column": 10 } ], "ModalDialog.Header": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 80, + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 34, "column": 6 - } - ], - "ModalDialog.Title": [ + }, { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 81, - "column": 8 + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 37, + "column": 6 } ], "ModalDialog.Body": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 92, + "filePath": "src/containers/RelatedProgramsModal/index.jsx", + "line": 40, "column": 6 } ], - "Form": [ + "Form.Label": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 104, + "filePath": "src/containers/SelectSessionModal/index.jsx", + "line": 46, "column": 8 } ], - "SelectableBox.Set": [ + "Form.Control": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 112, + "filePath": "src/containers/UnenrollConfirmModal/components/ReasonPane.jsx", + "line": 33, "column": 10 } ], - "SelectableBox": [ + "ArrowForward": [ { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 120, - "column": 14 - } - ], - "ModalDialog.Footer": [ - { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 133, - "column": 6 - } - ], - "ActionRow": [ - { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 134, - "column": 8 - } - ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", - "line": 135, - "column": 10 + "filePath": "src/widgets/LookingForChallengeWidget/index.jsx", + "line": 14, + "column": 54 } ], - "ChevronLeft": [ + "Truncate": [ { - "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", - "line": 49, - "column": 8 + "filePath": "src/widgets/RecommendationsPanel/components/CourseCard.jsx", + "line": 29, + "column": 16 } ] } }, { - "version": "19.18.3", - "name": "@edx/frontend-app-learning", + "version": "20.28.1", + "name": "frontend-app-learner-portal-enterprise", "repository": { "type": "git", - "url": "git+https://github.com/openedx/frontend-app-learning.git" + "url": "https://github.com/edx/frontend-app-learner-portal-enterprise.git" }, - "folderName": "frontend-app-learning", + "folderName": "frontend-app-learner-portal-enterprise", "usages": { "Hyperlink": [ { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", - "line": 83, - "column": 8 - }, - { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlertMMP2P.jsx", - "line": 43, + "filePath": "src/components/app/AuthenticatedPage.jsx", + "line": 40, "column": 8 }, { - "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", - "line": 13, - "column": 4 - }, - { - "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", - "line": 12, - "column": 4 - }, - { - "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", - "line": 23, - "column": 4 + "filePath": "src/components/course/CourseAssociatedPrograms.jsx", + "line": 35, + "column": 14 }, { - "filePath": "src/course-home/goal-unsubscribe/ResultPage.jsx", - "line": 16, - "column": 10 + "filePath": "src/components/course/CourseMainContent.jsx", + "line": 76, + "column": 16 }, { - "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", - "line": 49, - "column": 4 + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 73, + "column": 16 }, { - "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", - "line": 58, - "column": 4 + "filePath": "src/components/course/CourseSidebar.jsx", + "line": 97, + "column": 14 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 29, - "column": 4 + "filePath": "src/components/course/CreatedBy.jsx", + "line": 38, + "column": 14 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", - "line": 40, - "column": 4 + "filePath": "src/components/course/CreatedBy.jsx", + "line": 56, + "column": 16 }, { - "filePath": "src/course-home/progress-tab/related-links/RelatedLinks.jsx", + "filePath": "src/components/course/enrollment/components/ToCoursewarePage.jsx", "line": 35, "column": 10 }, { - "filePath": "src/course-home/progress-tab/related-links/RelatedLinks.jsx", - "line": 41, + "filePath": "src/components/course/enrollment/components/ToDataSharingConsent.jsx", + "line": 44, "column": 10 }, { - "filePath": "src/courseware/course/course-exit/CatalogSuggestion.jsx", - "line": 25, - "column": 4 - }, - { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 209, - "column": 14 - }, - { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 100, - "column": 6 - }, - { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 194, - "column": 6 + "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", + "line": 41, + "column": 8 }, { - "filePath": "src/courseware/course/course-exit/DashboardFootnote.jsx", - "line": 25, - "column": 4 + "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", + "line": 89, + "column": 12 }, { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 34, - "column": 4 + "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", + "line": 96, + "column": 12 }, { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 59, + "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", + "line": 105, "column": 16 }, { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 76, - "column": 14 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 213, + "column": 22 }, { - "filePath": "src/courseware/course/course-exit/UpgradeFootnote.jsx", - "line": 23, - "column": 4 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 239, + "column": 18 }, { - "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", - "line": 16, - "column": 4 + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 65, + "column": 18 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 91, + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 46, "column": 14 }, { - "filePath": "src/shared/links.jsx", - "line": 11, - "column": 4 + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 73, + "column": 20 }, { - "filePath": "src/shared/links.jsx", - "line": 30, - "column": 4 + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 25, + "column": 12 }, { - "filePath": "src/shared/links.jsx", - "line": 48, - "column": 4 + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 81, + "column": 14 } ], - "Alert": [ + "Container": [ { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", - "line": 96, - "column": 4 + "filePath": "src/components/app/LoginRefresh.jsx", + "line": 30, + "column": 6 }, { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlertMMP2P.jsx", - "line": 55, + "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", + "line": 109, "column": 4 }, { - "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", - "line": 26, - "column": 4 + "filePath": "src/components/course/CourseHeader.jsx", + "line": 40, + "column": 6 }, { - "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", - "line": 39, + "filePath": "src/components/course/CoursePage.jsx", + "line": 119, "column": 6 }, { - "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", - "line": 64, - "column": 4 + "filePath": "src/components/course/CoursePage.jsx", + "line": 145, + "column": 10 }, { - "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", + "filePath": "src/components/course/LicenseRequestedAlert.jsx", "line": 50, "column": 4 }, { - "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", - "line": 32, - "column": 4 + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 50, + "column": 6 }, { - "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", - "line": 166, - "column": 8 + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsContextProvider.jsx", + "line": 74, + "column": 6 }, { - "filePath": "src/course-home/outline-tab/alerts/course-end-alert/CourseEndAlert.jsx", + "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", + "line": 17, + "column": 6 + }, + { + "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", "line": 81, - "column": 4 + "column": 8 }, { - "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", - "line": 67, - "column": 4 + "filePath": "src/components/enterprise-page/EnterprisePage.jsx", + "line": 60, + "column": 6 }, { - "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", - "line": 12, - "column": 4 + "filePath": "src/components/enterprise-subsidy-requests/SubsidyRequestsContextProvider.jsx", + "line": 67, + "column": 6 }, { - "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", - "line": 30, + "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", + "line": 49, "column": 4 }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 39, - "column": 4 + "filePath": "src/components/enterprise-user-subsidy/UserSubsidy.jsx", + "line": 107, + "column": 6 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 36, - "column": 4 + "filePath": "src/components/error-page/ErrorPageContent.jsx", + "line": 14, + "column": 2 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 38, - "column": 4 + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 27, + "column": 8 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 317, - "column": 10 + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", + "line": 73, + "column": 4 }, { - "filePath": "src/courseware/course/course-exit/CourseInProgress.jsx", - "line": 41, - "column": 8 + "filePath": "src/components/license-activation/LicenseActivation.jsx", + "line": 64, + "column": 6 }, { - "filePath": "src/courseware/course/course-exit/CourseNonPassing.jsx", - "line": 41, - "column": 8 + "filePath": "src/components/license-activation/LicenseActivationErrorAlert.jsx", + "line": 10, + "column": 4 }, { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 44, + "filePath": "src/components/NotFoundPage/index.jsx", + "line": 16, "column": 4 }, { - "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", - "line": 26, - "column": 4 + "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", + "line": 32, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 37, - "column": 4 + "filePath": "src/components/pathway-progress/PathwayProgressPage.jsx", + "line": 38, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 82, - "column": 4 + "filePath": "src/components/pathway-progress/PathwayProgressPage.jsx", + "line": 50, + "column": 10 }, { - "filePath": "src/generic/user-messages/Alert.jsx", - "line": 36, - "column": 4 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 93, + "column": 6 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 180, + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 74, + "column": 6 + }, + { + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 85, "column": 10 - } - ], - "Info": [ + }, { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", - "line": 96, - "column": 32 + "filePath": "src/components/program/ProgramDataBar.jsx", + "line": 24, + "column": 8 }, { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlertMMP2P.jsx", - "line": 55, - "column": 32 + "filePath": "src/components/program/ProgramPage.jsx", + "line": 51, + "column": 6 }, { - "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", - "line": 39, - "column": 34 + "filePath": "src/components/program/ProgramPage.jsx", + "line": 75, + "column": 8 }, { - "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", - "line": 64, - "column": 32 + "filePath": "src/components/search/content-highlights/ContentHighlights.jsx", + "line": 26, + "column": 6 }, { - "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", - "line": 38, + "filePath": "src/components/search/content-highlights/ContentHighlights.jsx", + "line": 37, "column": 4 }, { - "filePath": "src/course-home/outline-tab/alerts/course-end-alert/CourseEndAlert.jsx", - "line": 81, - "column": 32 + "filePath": "src/components/search/SearchResults.jsx", + "line": 90, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 89, - "column": 23 + "filePath": "src/components/site-header/SiteHeader.jsx", + "line": 19, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", - "line": 26, - "column": 32 + "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", + "line": 22, + "column": 6 + }, + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 221, + "column": 10 } ], - "PageBanner": [ + "MailtoLink": [ { - "filePath": "src/alerts/access-expiration-alert/AccessExpirationMasqueradeBanner.jsx", - "line": 15, - "column": 4 + "filePath": "src/components/contact-admin-mailto/index.jsx", + "line": 14, + "column": 6 }, { - "filePath": "src/alerts/course-start-alert/CourseStartMasqueradeBanner.jsx", - "line": 21, - "column": 4 - } - ], - "WarningFilled": [ + "filePath": "src/components/dashboard/sidebar/SupportInformation.jsx", + "line": 24, + "column": 8 + }, { - "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", - "line": 26, - "column": 35 + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 46, + "column": 8 }, { - "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", - "line": 32, - "column": 35 + "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", + "line": 34, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 80, - "column": 92 + "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", + "line": 21, + "column": 8 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 53, - "column": 17 + "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "line": 29, + "column": 8 } ], - "Button": [ + "Alert": [ { - "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", - "line": 44, - "column": 4 + "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", + "line": 97, + "column": 52 }, { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 42, - "column": 4 + "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", + "line": 110, + "column": 6 }, { - "filePath": "src/course-home/goal-unsubscribe/ResultPage.jsx", - "line": 42, + "filePath": "src/components/course/LicenseRequestedAlert.jsx", + "line": 51, "column": 6 }, { - "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", - "line": 175, - "column": 16 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 119, + "column": 14 }, { - "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", - "line": 36, + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", + "line": 10, "column": 4 }, { - "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", - "line": 28, - "column": 12 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", + "line": 10, + "column": 4 }, { - "filePath": "src/course-home/outline-tab/OutlineTab.jsx", - "line": 175, - "column": 18 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 77, + "column": 8 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 137, - "column": 6 + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseEnrollmentsAlert.jsx", + "line": 19, + "column": 4 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 152, + "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", + "line": 30, "column": 6 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 159, - "column": 8 - }, - { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 165, - "column": 8 + "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", + "line": 50, + "column": 6 }, { - "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", - "line": 207, + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 126, "column": 12 }, { - "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", - "line": 48, - "column": 10 + "filePath": "src/components/license-activation/LicenseActivation.jsx", + "line": 56, + "column": 47 }, { - "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", - "line": 42, - "column": 8 + "filePath": "src/components/license-activation/LicenseActivationErrorAlert.jsx", + "line": 11, + "column": 6 }, { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 244, - "column": 12 + "filePath": "src/components/license-activation/LicenseActivationPage.jsx", + "line": 52, + "column": 47 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", - "line": 77, - "column": 10 + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 39, + "column": 6 }, { - "filePath": "src/course-home/progress-tab/ProgressHeader.jsx", - "line": 33, - "column": 10 + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 93, + "column": 20 }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 46, - "column": 10 + "filePath": "src/components/search/SearchError.jsx", + "line": 11, + "column": 4 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 43, - "column": 10 + "filePath": "src/components/search/SearchNoResults.jsx", + "line": 14, + "column": 6 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 45, - "column": 10 - }, - { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 35, - "column": 10 + "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", + "line": 90, + "column": 6 }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 29, - "column": 10 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 164, + "column": 6 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 109, + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 161, "column": 10 - }, + } + ], + "Error": [ { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 153, - "column": 8 + "filePath": "src/components/course/CourseEnrollmentFailedAlert.jsx", + "line": 110, + "column": 36 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 325, - "column": 20 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 119, + "column": 44 }, { - "filePath": "src/courseware/course/course-exit/CourseExit.jsx", - "line": 67, - "column": 8 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", + "line": 10, + "column": 34 }, { - "filePath": "src/courseware/course/course-exit/CourseInProgress.jsx", - "line": 45, - "column": 14 - }, + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", + "line": 10, + "column": 34 + } + ], + "Row": [ { - "filePath": "src/courseware/course/course-exit/CourseNonPassing.jsx", - "line": 45, - "column": 14 + "filePath": "src/components/course/CourseHeader.jsx", + "line": 41, + "column": 8 }, { - "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", - "line": 67, - "column": 14 + "filePath": "src/components/course/CoursePage.jsx", + "line": 146, + "column": 12 }, { - "filePath": "src/courseware/course/sequence/content-lock/ContentLock.jsx", - "line": 32, - "column": 8 + "filePath": "src/components/course/CourseSidebarListItem.jsx", + "line": 11, + "column": 2 }, { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 57, - "column": 8 + "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", + "line": 39, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 60, + "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", + "line": 63, "column": 8 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 77, - "column": 6 - }, - { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 87, + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", + "line": 27, "column": 6 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/UnitButton.jsx", - "line": 28, - "column": 4 + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", + "line": 95, + "column": 12 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/UnitNavigation.jsx", - "line": 35, - "column": 6 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 138, + "column": 12 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/UnitNavigation.jsx", - "line": 52, - "column": 6 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 177, + "column": 12 }, { - "filePath": "src/experiments/mm-p2p/BlockModalContent.jsx", - "line": 64, - "column": 8 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 199, + "column": 12 }, { - "filePath": "src/generic/upgrade-button/UpgradeButton.jsx", - "line": 22, - "column": 4 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 235, + "column": 12 }, { - "filePath": "src/generic/upgrade-button/UpgradeNowButton.jsx", - "line": 22, - "column": 4 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 246, + "column": 12 }, { - "filePath": "src/generic/upgrade-notification/UpgradeNotification.jsx", - "line": 454, + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 48, "column": 6 }, { - "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", - "line": 45, - "column": 8 - }, - { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 46, + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 42, "column": 10 }, { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "filePath": "src/components/my-career/VisualizeCareer.jsx", "line": 52, "column": 10 - } - ], - "Icon": [ - { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 55, - "column": 6 }, { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 105, - "column": 10 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 60, + "column": 14 }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 136, - "column": 14 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 70, + "column": 12 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 76, - "column": 84 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 95, + "column": 12 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 80, - "column": 81 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 20, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 83, - "column": 72 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 94, + "column": 8 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 86, - "column": 71 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 143, + "column": 10 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 52, - "column": 27 + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 79, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 53, + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 90, "column": 6 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", - "line": 58, + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 87, "column": 12 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 69, - "column": 16 + "filePath": "src/components/program/ProgramPage.jsx", + "line": 76, + "column": 10 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", - "line": 56, + "filePath": "src/components/program/ProgramPage.jsx", + "line": 88, "column": 10 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 53, - "column": 42 + "filePath": "src/components/program/ProgramSidebarListItem.jsx", + "line": 11, + "column": 2 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 54, - "column": 40 - }, + "filePath": "src/components/skills-quiz/SkillsQuiz.jsx", + "line": 23, + "column": 8 + } + ], + "Col": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 59, - "column": 14 + "filePath": "src/components/course/CourseHeader.jsx", + "line": 42, + "column": 10 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 88, - "column": 16 + "filePath": "src/components/course/CourseHeader.jsx", + "line": 104, + "column": 12 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/AssignmentTypeCell.jsx", - "line": 21, - "column": 30 + "filePath": "src/components/course/CourseSidebarListItem.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 43, - "column": 18 + "filePath": "src/components/course/CourseSidebarListItem.jsx", + "line": 16, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 51, + "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", + "line": 64, "column": 10 }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 55, - "column": 10 + "filePath": "src/components/error-page/ErrorPage.jsx", + "line": 29, + "column": 8 }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 53, - "column": 10 + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", + "line": 28, + "column": 8 }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 70, - "column": 28 + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", + "line": 96, + "column": 14 }, { - "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", - "line": 40, - "column": 6 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 139, + "column": 14 }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", - "line": 17, - "column": 6 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 158, + "column": 14 }, { - "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", - "line": 47, - "column": 12 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 178, + "column": 14 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 173, - "column": 12 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 200, + "column": 14 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 182, + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 236, "column": 14 - } - ], - "ArrowForward": [ - { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 55, - "column": 17 - } - ], - "Spinner": [ - { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 92, - "column": 10 }, { - "filePath": "src/generic/PageLoading.jsx", - "line": 28, - "column": 10 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 247, + "column": 14 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 169, - "column": 10 - } - ], - "Check": [ + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 21, + "column": 6 + }, { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 106, - "column": 17 - } - ], - "AlertModal": [ + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 30, + "column": 6 + }, { - "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", - "line": 117, - "column": 4 - } - ], - "Badge": [ + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 43, + "column": 6 + }, { - "filePath": "src/course-home/dates-tab/timeline/badgelist.jsx", - "line": 99, + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 95, "column": 10 - } - ], - "OverlayTrigger": [ - { - "filePath": "src/course-home/dates-tab/timeline/Day.jsx", - "line": 100, - "column": 18 }, { - "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", - "line": 32, - "column": 6 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 110, + "column": 10 }, { - "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", - "line": 36, - "column": 6 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 125, + "column": 10 }, { - "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", - "line": 35, + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 80, "column": 6 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", - "line": 38, - "column": 6 + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 91, + "column": 8 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 33, - "column": 4 + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 182, + "column": 61 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", - "line": 22, - "column": 6 + "filePath": "src/components/program/ProgramSidebarListItem.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 26, - "column": 6 - } - ], - "Tooltip": [ - { - "filePath": "src/course-home/dates-tab/timeline/Day.jsx", - "line": 103, - "column": 22 + "filePath": "src/components/program/ProgramSidebarListItem.jsx", + "line": 16, + "column": 4 } ], - "Alert.Heading": [ + "Breadcrumb": [ { - "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", - "line": 170, - "column": 14 + "filePath": "src/components/course/CourseHeader.jsx", + "line": 45, + "column": 16 }, { - "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", - "line": 15, + "filePath": "src/components/pathway-progress/PathwayProgressHeader.jsx", + "line": 19, "column": 10 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 39, - "column": 10 + "filePath": "src/components/program/ProgramHeader.jsx", + "line": 83, + "column": 12 } ], - "Collapsible": [ + "MediaQuery": [ { - "filePath": "src/course-home/outline-tab/Section.jsx", - "line": 75, + "filePath": "src/components/course/CourseMainContent.jsx", + "line": 38, "column": 6 - } - ], - "IconButton": [ + }, { - "filePath": "src/course-home/outline-tab/Section.jsx", - "line": 82, - "column": 10 + "filePath": "src/components/course/CoursePage.jsx", + "line": 150, + "column": 14 }, { - "filePath": "src/course-home/outline-tab/Section.jsx", - "line": 90, + "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", + "line": 45, "column": 10 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 63, + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 25, "column": 6 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 38, - "column": 8 + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 57, + "column": 6 }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 67, - "column": 18 - } - ], - "Card": [ + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 84, + "column": 10 + }, { - "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", - "line": 44, - "column": 4 + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 111, + "column": 14 }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 90, - "column": 4 + "filePath": "src/components/program/ProgramEndorsements.jsx", + "line": 17, + "column": 8 }, { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 237, + "filePath": "src/components/program/ProgramPage.jsx", + "line": 80, + "column": 12 + }, + { + "filePath": "src/components/site-header/SiteHeader.jsx", + "line": 79, "column": 6 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 105, - "column": 8 + "filePath": "src/components/site-header/SiteHeader.jsx", + "line": 82, + "column": 6 } ], - "Card.Header": [ + "breakpoints": [ { - "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", - "line": 45, - "column": 6 + "filePath": "src/components/course/CourseMainContent.jsx", + "line": 38, + "column": 28 }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 95, - "column": 6 + "filePath": "src/components/course/CoursePage.jsx", + "line": 150, + "column": 36 }, { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 238, - "column": 8 + "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", + "line": 45, + "column": 32 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 107, - "column": 10 - } - ], - "Card.Footer": [ - { - "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", - "line": 59, - "column": 6 + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 25, + "column": 28 }, { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 242, - "column": 8 + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 57, + "column": 28 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 110, - "column": 10 - } - ], - "Card.Section": [ - { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 100, - "column": 6 + "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", + "line": 107, + "column": 9 }, { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 133, - "column": 8 + "filePath": "src/components/dashboard/tests/DashboardPage.test.jsx", + "line": 215, + "column": 62 }, { - "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", - "line": 239, - "column": 8 + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 84, + "column": 32 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 109, - "column": 10 - } - ], - "Form.Switch": [ - { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 123, - "column": 10 - } - ], - "Email": [ - { - "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", - "line": 138, - "column": 21 - } - ], - "TransitionReplace": [ + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 37, + "column": 23 + }, { - "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", - "line": 51, - "column": 6 - } - ], - "Popover": [ + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 39, + "column": 30 + }, { - "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", - "line": 36, - "column": 10 + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 41, + "column": 30 }, { - "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", - "line": 40, - "column": 10 + "filePath": "src/components/program-progress/ProgramProgressPage.jsx", + "line": 111, + "column": 36 }, { - "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", - "line": 39, - "column": 10 + "filePath": "src/components/program/ProgramEndorsements.jsx", + "line": 17, + "column": 30 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", - "line": 42, - "column": 10 + "filePath": "src/components/program/ProgramHeader.jsx", + "line": 25, + "column": 67 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 38, - "column": 8 + "filePath": "src/components/program/ProgramPage.jsx", + "line": 80, + "column": 34 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", - "line": 26, - "column": 10 + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 34, + "column": 26 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 31, - "column": 10 + "filePath": "src/components/site-header/tests/SiteHeader.test.jsx", + "line": 41, + "column": 9 } ], - "Popover.Content": [ + "Card": [ { - "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", - "line": 37, - "column": 12 + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 45, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", - "line": 41, - "column": 12 + "filePath": "src/components/course/CourseRunCard.jsx", + "line": 235, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", - "line": 40, - "column": 12 + "filePath": "src/components/dashboard/sidebar/DashboardSidebar.jsx", + "line": 10, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", - "line": 43, - "column": 12 + "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", + "line": 11, + "column": 2 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 39, - "column": 10 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 87, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", - "line": 27, - "column": 12 + "filePath": "src/components/pathway-progress/PathwayNode.jsx", + "line": 35, + "column": 8 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 32, - "column": 12 - } - ], - "CheckCircle": [ - { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 76, - "column": 95 + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 18, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 83, - "column": 83 + "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", + "line": 26, + "column": 6 }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 52, - "column": 38 + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 100, + "column": 4 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 317, - "column": 41 - } - ], - "WatchFilled": [ - { - "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", - "line": 86, - "column": 82 - } - ], - "useWindowSize": [ - { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 28, - "column": 21 + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 58, + "column": 4 }, { - "filePath": "src/course-home/progress-tab/ProgressTab.jsx", - "line": 26, - "column": 22 + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 56, + "column": 4 }, { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 23, - "column": 21 + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 96, + "column": 4 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 40, - "column": 21 + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 98, + "column": 4 }, { - "filePath": "src/courseware/course/Course.jsx", - "line": 148, - "column": 22 + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 10, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 40, - "column": 52 + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 42, + "column": 4 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 41, - "column": 45 + "filePath": "src/components/skills-quiz/JobCardComponent.jsx", + "line": 17, + "column": 8 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 43, - "column": 46 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 183, + "column": 12 + } + ], + "Card.ImageCap": [ + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 59, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 45, - "column": 50 + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 23, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 47, - "column": 33 + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 108, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 46, - "column": 53 + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 63, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/Sequence.jsx", - "line": 52, - "column": 53 + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 63, + "column": 6 }, { - "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 17, - "column": 34 + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 105, + "column": 6 }, { - "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 18, - "column": 35 + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 106, + "column": 6 }, { - "filePath": "src/generic/tabs/useIndexOfLastVisibleChild.js", - "line": 37, - "column": 21 + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 11, + "column": 8 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 71, - "column": 21 + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 48, + "column": 6 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 191, + "column": 14 } ], - "breakpoints": [ + "Card.Header": [ { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", - "line": 28, - "column": 46 + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 65, + "column": 6 }, { - "filePath": "src/course-home/progress-tab/ProgressTab.jsx", - "line": 34, - "column": 36 + "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", + "line": 12, + "column": 14 }, { - "filePath": "src/course-home/progress-tab/ProgressTab.test.jsx", - "line": 803, - "column": 26 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 88, + "column": 6 }, { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 23, - "column": 46 + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 29, + "column": 6 }, { - "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", - "line": 40, - "column": 46 + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 112, + "column": 6 }, { - "filePath": "src/courseware/course/Course.jsx", - "line": 58, - "column": 47 + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 71, + "column": 6 }, { - "filePath": "src/courseware/course/Course.jsx", - "line": 62, - "column": 64 + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 70, + "column": 6 }, { - "filePath": "src/courseware/course/Course.test.jsx", - "line": 37, - "column": 24 + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 111, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 40, - "column": 77 + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 112, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 41, - "column": 70 + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 12, + "column": 8 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 43, - "column": 70 + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 54, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 45, - "column": 75 + "filePath": "src/components/skills-quiz/JobCardComponent.jsx", + "line": 18, + "column": 10 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", - "line": 47, - "column": 57 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 197, + "column": 14 + } + ], + "Card.Section": [ + { + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 81, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", - "line": 46, - "column": 77 + "filePath": "src/components/course/CourseRunCard.jsx", + "line": 236, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/Sequence.jsx", - "line": 52, - "column": 77 + "filePath": "src/components/dashboard/sidebar/DashboardSidebar.jsx", + "line": 11, + "column": 6 }, { - "filePath": "src/courseware/course/sequence/Sequence.test.jsx", - "line": 39, - "column": 24 + "filePath": "src/components/dashboard/sidebar/SidebarCard.jsx", + "line": 13, + "column": 4 }, { - "filePath": "src/courseware/course/sequence/Sequence.test.jsx", - "line": 415, - "column": 26 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 89, + "column": 6 }, { - "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 17, - "column": 58 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 97, + "column": 8 }, { - "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", - "line": 18, - "column": 59 + "filePath": "src/components/pathway-progress/PathwayNode.jsx", + "line": 36, + "column": 10 }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", - "line": 45, - "column": 24 + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 36, + "column": 6 }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", - "line": 53, - "column": 24 + "filePath": "src/components/pathway-progress/PathwayProgressCard.jsx", + "line": 37, + "column": 6 }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", - "line": 138, - "column": 24 + "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", + "line": 27, + "column": 8 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 71, - "column": 46 + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 119, + "column": 6 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.test.jsx", - "line": 61, - "column": 24 + "filePath": "src/components/program-progress/ProgramListingCard.jsx", + "line": 83, + "column": 6 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.test.jsx", + "filePath": "src/components/program-progress/ProgramListingCard.jsx", "line": 94, - "column": 24 - } - ], - "Locked": [ - { - "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", - "line": 58, - "column": 23 + "column": 6 }, { - "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", "line": 82, - "column": 49 - } - ], - "InfoOutline": [ + "column": 6 + }, { - "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", - "line": 68, - "column": 13 + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 123, + "column": 6 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 42, - "column": 15 - } - ], - "Blocked": [ + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 126, + "column": 6 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", - "line": 56, - "column": 99 + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 13, + "column": 8 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 64, - "column": 21 + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 71, + "column": 6 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/AssignmentTypeCell.jsx", - "line": 21, - "column": 256 + "filePath": "src/components/skills-quiz/JobCardComponent.jsx", + "line": 19, + "column": 10 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", - "line": 51, - "column": 99 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 209, + "column": 14 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 219, + "column": 14 } ], - "DataTable": [ + "Card.Footer": [ { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGradesTable.jsx", - "line": 43, - "column": 10 + "filePath": "src/components/course/CourseRecommendationCard.jsx", + "line": 82, + "column": 6 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTable.jsx", - "line": 85, + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 109, + "column": 8 + }, + { + "filePath": "src/components/search/content-highlights/HighlightedContentCard.jsx", + "line": 83, "column": 6 }, { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 181, - "column": 8 - } - ], - "DataTable.Table": [ + "filePath": "src/components/search/SearchCourseCard.jsx", + "line": 124, + "column": 6 + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGradesTable.jsx", - "line": 61, - "column": 12 + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 138, + "column": 6 }, { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTable.jsx", - "line": 135, - "column": 8 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 231, + "column": 14 } ], - "Collapsible.Advanced": [ - { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 46, - "column": 4 - }, + "CardGrid": [ { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 42, - "column": 6 + "filePath": "src/components/course/CourseRecommendations.jsx", + "line": 16, + "column": 10 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 82, + "filePath": "src/components/course/CourseRecommendations.jsx", + "line": 26, "column": 10 - } - ], - "Row": [ + }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 47, - "column": 6 + "filePath": "src/components/course/CourseRunCards.jsx", + "line": 24, + "column": 4 }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 40, - "column": 6 + "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", + "line": 41, + "column": 8 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "filePath": "src/components/program-progress/ProgramListingPage.jsx", "line": 37, - "column": 6 + "column": 8 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 39, - "column": 6 - } - ], - "Collapsible.Trigger": [ - { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 48, + "filePath": "src/components/search/popular-results/PopularResults.jsx", + "line": 34, "column": 8 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 44, + "filePath": "src/components/search/popular-results/PopularResults.jsx", + "line": 41, "column": 10 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 84, - "column": 14 - } - ], - "Collapsible.Visible": [ - { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 53, + "filePath": "src/components/search/SearchResults.jsx", + "line": 117, "column": 10 }, { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 54, + "filePath": "src/components/search/SearchResults.jsx", + "line": 124, "column": 10 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 45, - "column": 12 + "filePath": "src/components/skills-quiz/CardLoadingSkeleton.jsx", + "line": 8, + "column": 2 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 48, - "column": 12 + "filePath": "src/components/skills-quiz/JobCardComponent.jsx", + "line": 15, + "column": 4 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 85, - "column": 16 + "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", + "line": 105, + "column": 6 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 88, - "column": 16 - } - ], - "ArrowDropDown": [ - { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 53, - "column": 53 - } - ], - "ArrowDropUp": [ - { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 54, - "column": 51 - } - ], - "Collapsible.Body": [ - { - "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", - "line": 83, + "filePath": "src/components/skills-quiz/SearchPathways.jsx", + "line": 87, "column": 6 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 54, - "column": 8 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 179, + "column": 6 }, { - "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", - "line": 97, - "column": 12 + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 147, + "column": 10 } ], - "DataTable.TableFooter": [ + "Skeleton": [ { - "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTableFooter.jsx", - "line": 30, - "column": 4 - } - ], - "Col": [ + "filePath": "src/components/course/CourseSidebarPrice.jsx", + "line": 38, + "column": 11 + }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 41, - "column": 8 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 390, + "column": 12 }, { - "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", - "line": 45, - "column": 8 + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", + "line": 87, + "column": 14 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 38, - "column": 8 + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UPage.jsx", + "line": 92, + "column": 14 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", - "line": 42, - "column": 8 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 70, + "column": 28 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 40, + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 82, "column": 8 }, { - "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", - "line": 44, - "column": 8 - } - ], - "StatefulButton": [ + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 96, + "column": 25 + }, { - "filePath": "src/courseware/course/bookmark/BookmarkButton.jsx", - "line": 42, - "column": 4 - } - ], - "StandardModal": [ + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 111, + "column": 25 + }, { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 32, - "column": 4 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 126, + "column": 25 }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 26, - "column": 4 - } - ], - "ActionRow": [ + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 142, + "column": 21 + }, { - "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", - "line": 34, - "column": 8 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 150, + "column": 10 }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 28, - "column": 8 + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 84, + "column": 27 }, { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 55, - "column": 6 + "filePath": "src/components/search/popular-results/PopularResults.jsx", + "line": 30, + "column": 10 }, { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 45, - "column": 8 - } - ], - "Lightbulb": [ + "filePath": "src/components/search/SearchResults.jsx", + "line": 94, + "column": 12 + }, { - "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", - "line": 56, - "column": 17 + "filePath": "src/components/search/SearchResults.jsx", + "line": 116, + "column": 10 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 173, - "column": 50 + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 118, + "column": 12 } ], - "Card.ImageCap": [ + "OverlayTrigger": [ { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 106, - "column": 10 - } - ], - "CardView": [ - { - "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", - "line": 191, + "filePath": "src/components/course/CourseSkills.jsx", + "line": 27, "column": 10 } ], - "SelectMenu": [ + "Popover": [ { - "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", - "line": 43, - "column": 12 + "filePath": "src/components/course/CourseSkills.jsx", + "line": 32, + "column": 14 } ], - "MenuItem": [ + "Popover.Title": [ { - "filePath": "src/courseware/course/JumpNavMenuItem.jsx", - "line": 44, - "column": 4 + "filePath": "src/components/course/CourseSkills.jsx", + "line": 33, + "column": 16 } ], - "ActionRow.Spacer": [ + "Popover.Content": [ { - "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", - "line": 56, - "column": 8 + "filePath": "src/components/course/CourseSkills.jsx", + "line": 34, + "column": 16 } ], - "Dropdown": [ + "Badge": [ { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", - "line": 15, - "column": 4 + "filePath": "src/components/course/CourseSkills.jsx", + "line": 45, + "column": 12 }, { - "filePath": "src/generic/tabs/Tabs.jsx", - "line": 39, - "column": 8 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 404, + "column": 24 }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", - "line": 124, - "column": 10 - } - ], - "Dropdown.Toggle": [ + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 87, + "column": 14 + }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", - "line": 16, - "column": 6 + "filePath": "src/components/dashboard/sidebar/EnterpriseOffersSummaryCard.jsx", + "line": 31, + "column": 12 }, { - "filePath": "src/generic/tabs/Tabs.jsx", - "line": 40, - "column": 10 + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 92, + "column": 16 }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", "line": 125, "column": 12 - } - ], - "Dropdown.Menu": [ + }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", - "line": 27, - "column": 6 + "filePath": "src/components/pathway-progress/PathwayNode.jsx", + "line": 44, + "column": 50 }, { - "filePath": "src/generic/tabs/Tabs.jsx", - "line": 47, - "column": 10 + "filePath": "src/components/pathway-progress/SubscriptionStatusCard.jsx", + "line": 32, + "column": 12 }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", - "line": 128, + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 123, + "column": 14 + }, + { + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 127, + "column": 8 + }, + { + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 78, "column": 12 - } - ], - "Dropdown.Item": [ + }, { - "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", - "line": 29, + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 213, + "column": 22 + }, + { + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 220, + "column": 16 + }, + { + "filePath": "src/components/skills-quiz/SelectedJobSkills.jsx", + "line": 23, "column": 10 }, { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidgetOption.jsx", - "line": 70, - "column": 6 + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 121, + "column": 10 } ], "Modal": [ { - "filePath": "src/courseware/course/sequence/Unit.jsx", - "line": 191, - "column": 8 - } - ], - "ArrowBackIos": [ + "filePath": "src/components/course/EnrollModal.jsx", + "line": 85, + "column": 4 + }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 53, - "column": 21 - } - ], - "Close": [ + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 114, + "column": 6 + }, { - "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", - "line": 68, - "column": 25 - } - ], - "QuestionAnswer": [ + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 76, + "column": 6 + }, { - "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", - "line": 40, - "column": 17 - } - ], - "WatchOutline": [ + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", + "line": 70, + "column": 6 + }, { - "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", - "line": 17, - "column": 17 - } - ], - "ModalLayer": [ + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 104, + "column": 6 + }, { - "filePath": "src/experiments/mm-p2p/BlockModal.jsx", - "line": 10, - "column": 2 + "filePath": "src/components/dashboard/SubscriptionExpirationModal.jsx", + "line": 139, + "column": 4 }, { - "filePath": "src/experiments/mm-p2p/BlockModalContent.jsx", - "line": 35, - "column": 2 + "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", + "line": 29, + "column": 6 } ], - "Input": [ + "Alert.Heading": [ { - "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeUserNameInput.jsx", - "line": 49, + "filePath": "src/components/course/LicenseRequestedAlert.jsx", + "line": 52, + "column": 8 + }, + { + "filePath": "src/components/enterprise-user-subsidy/enterprise-offers/EnterpriseOffersBalanceAlert.jsx", + "line": 56, + "column": 8 + }, + { + "filePath": "src/components/search/SearchError.jsx", + "line": 17, "column": 6 - } - ], - "Compass": [ + }, { - "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", - "line": 48, - "column": 19 + "filePath": "src/components/search/SearchNoResults.jsx", + "line": 21, + "column": 8 } ], - "MarketingModal": [ + "StatefulButton": [ { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 19, + "filePath": "src/components/course/SubsidyRequestButton.jsx", + "line": 119, "column": 4 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 141, + "column": 10 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 80, + "column": 10 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/MoveToInProgressModal.jsx", + "line": 74, + "column": 10 + }, + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 65, + "column": 10 + }, + { + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 248, + "column": 16 } ], - "ModalDialog.Hero": [ + "Tabs": [ { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 26, + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 54, "column": 8 } ], - "ModalDialog.Title": [ + "Tab": [ { - "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", - "line": 31, - "column": 12 + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 55, + "column": 10 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 158, - "column": 8 - } - ], - "ProductTour": [ + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 58, + "column": 10 + }, { - "filePath": "src/product-tours/ProductTours.jsx", - "line": 144, - "column": 6 - } - ], - "ModalDialog": [ + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 66, + "column": 12 + }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 146, - "column": 4 + "filePath": "src/components/dashboard/DashboardPage.jsx", + "line": 75, + "column": 12 } ], - "ModalDialog.Header": [ + "Dropdown": [ { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 157, - "column": 6 - } - ], - "ModalDialog.Body": [ + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 248, + "column": 10 + }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 162, - "column": 6 - } - ], - "MoneyFilled": [ + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 41, + "column": 14 + }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 182, - "column": 69 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 106, + "column": 8 + }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 200, - "column": 6 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 27, + "column": 4 + }, + { + "filePath": "src/components/skills-quiz/GoalDropdown.jsx", + "line": 20, + "column": 4 } ], - "ModalDialog.CloseButton": [ + "Dropdown.Toggle": [ { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 212, - "column": 16 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 249, + "column": 12 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 225, + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 42, "column": 16 }, { - "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", - "line": 233, + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 107, "column": 10 + }, + { + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 28, + "column": 6 + }, + { + "filePath": "src/components/skills-quiz/GoalDropdown.jsx", + "line": 21, + "column": 6 } ], - "useToggle": [ + "IconButton": [ { - "filePath": "src/tab-page/LoadedTabPage.jsx", - "line": 43, - "column": 61 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 250, + "column": 18 } ], - "Toast": [ + "MoreVert": [ { - "filePath": "src/tab-page/TabPage.jsx", - "line": 65, - "column": 8 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 251, + "column": 19 } - ] - } - }, - { - "version": "20.17.0", - "name": "@edx/frontend-app-library-authoring", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-library-authoring.git" - }, - "folderName": "frontend-app-library-authoring", - "usages": { - "Col": [ + ], + "Icon": [ { - "filePath": "src/generic/LoadingPage.jsx", - "line": 6, - "column": 2 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 252, + "column": 22 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 427, - "column": 6 + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 66, + "column": 20 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 484, + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 47, "column": 16 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 496, - "column": 12 - }, - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 510, - "column": 18 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 98, + "column": 16 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 513, - "column": 18 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 113, + "column": 16 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 547, - "column": 6 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 128, + "column": 16 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 550, + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 133, "column": 12 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 557, - "column": 12 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 226, + "column": 20 }, { - "filePath": "src/library-authoring/common/ErrorAlert.jsx", - "line": 11, + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 8, "column": 4 - }, + } + ], + "Dropdown.Menu": [ { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 40, - "column": 6 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 255, + "column": 12 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", + "filePath": "src/components/error-page/ErrorPageHeader.jsx", "line": 45, - "column": 6 + "column": 16 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 62, + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 110, "column": 10 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 71, - "column": 10 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 36, + "column": 6 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 76, - "column": 10 + "filePath": "src/components/skills-quiz/GoalDropdown.jsx", + "line": 24, + "column": 6 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 257, + "column": 16 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 81, - "column": 10 + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 49, + "column": 18 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 90, - "column": 10 + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 113, + "column": 16 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 95, - "column": 10 + "filePath": "src/components/program/ProgramCTA.jsx", + "line": 133, + "column": 16 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 100, - "column": 10 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 41, + "column": 8 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 109, - "column": 10 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 43, + "column": 8 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 114, - "column": 10 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 55, + "column": 8 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 119, - "column": 10 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 56, + "column": 8 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 128, - "column": 10 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 57, + "column": 8 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 133, - "column": 10 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 59, + "column": 8 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 140, - "column": 6 - }, + "filePath": "src/components/skills-quiz/GoalDropdown.jsx", + "line": 26, + "column": 10 + } + ], + "Input": [ { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 144, - "column": 6 - }, + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 124, + "column": 14 + } + ], + "Alert.Link": [ { - "filePath": "src/library-authoring/common/SuccessAlert.jsx", - "line": 10, - "column": 4 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", + "line": 11, + "column": 21 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 194, - "column": 12 - }, + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/move-to-in-progress-modal/ModalError.jsx", + "line": 11, + "column": 42 + } + ], + "AlertModal": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 329, - "column": 12 - }, + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 53, + "column": 4 + } + ], + "ActionRow": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 385, - "column": 12 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 58, + "column": 8 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 422, + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 43, "column": 12 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 219, + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 53, "column": 12 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 305, - "column": 12 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 61, + "column": 16 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 69, - "column": 8 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 71, + "column": 14 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 97, - "column": 14 + "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", + "line": 50, + "column": 8 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 103, + "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "line": 58, "column": 8 } ], - "Card": [ + "Button": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 85, - "column": 2 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/unenroll/UnenrollModal.jsx", + "line": 59, + "column": 10 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 133, - "column": 6 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpcomingCourseCard.jsx", + "line": 10, + "column": 4 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 428, - "column": 8 + "filePath": "src/components/dashboard/main-content/course-enrollments/course-cards/UpgradeCourseButton.jsx", + "line": 46, + "column": 6 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 558, - "column": 14 + "filePath": "src/components/dashboard/main-content/CourseRecommendations.jsx", + "line": 24, + "column": 10 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 206, - "column": 16 + "filePath": "src/components/dashboard/main-content/DashboardMainContent.jsx", + "line": 43, + "column": 12 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 47, - "column": 4 + "filePath": "src/components/dashboard/sidebar/SubsidiesSummary.jsx", + "line": 67, + "column": 6 }, { - "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 30, - "column": 4 + "filePath": "src/components/enterprise-banner/EnterpriseBanner.jsx", + "line": 24, + "column": 12 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 231, - "column": 16 + "filePath": "src/components/enterprise-invite/EnterpriseInvitePage.jsx", + "line": 104, + "column": 10 }, { - "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", - "line": 10, - "column": 2 + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", + "line": 37, + "column": 12 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 28, - "column": 6 + "filePath": "src/components/integration-warning-modal/IntegrationWarningModal.jsx", + "line": 38, + "column": 10 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 68, - "column": 6 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 110, + "column": 10 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 27, - "column": 2 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 72, + "column": 16 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 135, - "column": 22 - } - ], - "Card.Header": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 86, - "column": 4 + "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", + "line": 54, + "column": 14 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 559, - "column": 16 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 44, + "column": 8 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 48, + "filePath": "src/components/preview-expand/PreviewExpand.jsx", + "line": 21, "column": 6 }, { - "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 31, - "column": 6 + "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", + "line": 51, + "column": 10 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 29, - "column": 8 + "filePath": "src/components/program-progress/ProgramListingPage.jsx", + "line": 45, + "column": 14 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 141, - "column": 24 - } - ], - "ActionRow": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 90, - "column": 8 + "filePath": "src/components/program-progress/ProgramPathwayOpportunity.jsx", + "line": 16, + "column": 16 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 122, - "column": 8 + "filePath": "src/components/program-progress/ProgramProgressSidebar.jsx", + "line": 76, + "column": 14 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 410, - "column": 6 + "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "line": 59, + "column": 10 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 430, + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", + "line": 138, "column": 12 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 53, - "column": 10 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 330, + "column": 16 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 49, - "column": 8 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 342, + "column": 12 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 357, + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 346, "column": 12 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 327, - "column": 20 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 354, + "column": 12 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 50, - "column": 8 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 358, + "column": 12 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 32, - "column": 4 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 66, - "column": 14 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 123, - "column": 14 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 361, + "column": 12 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 115, - "column": 14 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 365, + "column": 12 } ], - "Button": [ + "Collapsible": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 91, - "column": 10 + "filePath": "src/components/dashboard/main-content/course-enrollments/CourseSection.jsx", + "line": 127, + "column": 8 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 99, - "column": 10 + "filePath": "src/components/pathway-progress/PathwayStep.jsx", + "line": 14, + "column": 4 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 126, + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 156, "column": 10 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 284, - "column": 4 - }, - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 498, - "column": 14 - }, + "filePath": "src/components/program/ProgramFAQ.jsx", + "line": 19, + "column": 10 + } + ], + "useToggle": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 531, - "column": 20 + "filePath": "src/components/dashboard/main-content/CoursesTabComponent.jsx", + "line": 26, + "column": 58 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 534, - "column": 20 + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 26, + "column": 6 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 537, - "column": 20 + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 32, + "column": 6 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 563, - "column": 18 + "filePath": "src/components/my-career/AddJobRole.jsx", + "line": 23, + "column": 58 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 566, - "column": 18 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 18, + "column": 60 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 41, - "column": 8 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 19, + "column": 64 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 46, - "column": 8 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 20, + "column": 55 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 316, - "column": 24 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 20, + "column": 57 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 52, - "column": 10 - }, + "filePath": "src/components/search/Search.jsx", + "line": 44, + "column": 72 + } + ], + "WarningFilled": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 220, + "filePath": "src/components/dashboard/sidebar/CouponCodesSummaryCard.jsx", + "line": 63, "column": 16 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 323, - "column": 18 - }, - { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 358, - "column": 14 + "filePath": "src/components/dashboard/sidebar/SubscriptionSummaryCard.jsx", + "line": 99, + "column": 90 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 361, - "column": 14 + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 93, + "column": 51 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockAssets.jsx", - "line": 30, + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 8, "column": 15 - }, + } + ], + "Navbar": [ { - "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", - "line": 56, - "column": 10 - }, + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 26, + "column": 6 + } + ], + "Navbar.Brand": [ { - "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", - "line": 57, + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 28, "column": 10 - }, - { - "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", - "line": 64, - "column": 8 - }, + } + ], + "AvatarButton": [ { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 328, - "column": 22 + "filePath": "src/components/error-page/ErrorPageHeader.jsx", + "line": 42, + "column": 47 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 337, - "column": 22 - }, + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 30, + "column": 12 + } + ], + "ArrowBack": [ { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 346, - "column": 22 - }, + "filePath": "src/components/executive-education-2u/ExecutiveEducation2UError.jsx", + "line": 39, + "column": 26 + } + ], + "Form.Group": [ { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 86, - "column": 10 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 140, + "column": 16 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 56, - "column": 12 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 159, + "column": 16 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 47, - "column": 10 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 179, + "column": 16 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 70, + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 201, "column": 16 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 81, - "column": 8 - }, + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 182, + "column": 28 + } + ], + "Form.Control": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 87, - "column": 10 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 144, + "column": 18 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 90, - "column": 10 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 162, + "column": 18 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 97, - "column": 10 + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 182, + "column": 18 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 118, - "column": 16 - }, + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 184, + "column": 30 + } + ], + "CheckboxControl": [ { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 154, + "filePath": "src/components/executive-education-2u/UserEnrollmentForm.jsx", + "line": 203, "column": 20 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 56, - "column": 6 } ], - "ModalDialog": [ + "Chip": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 109, - "column": 4 + "filePath": "src/components/my-career/CategoryCard.jsx", + "line": 91, + "column": 10 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 50, - "column": 10 - }, - { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 107, - "column": 10 - } - ], - "ModalDialog.Header": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 113, - "column": 6 + "filePath": "src/components/my-career/LevelBars.jsx", + "line": 18, + "column": 23 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 54, - "column": 12 + "filePath": "src/components/my-career/LevelBars.jsx", + "line": 20, + "column": 23 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 111, - "column": 12 + "filePath": "src/components/TagCloud/index.jsx", + "line": 9, + "column": 6 } ], - "ModalDialog.Title": [ + "ActionRow.Spacer": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 114, - "column": 8 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 45, + "column": 14 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "filePath": "src/components/my-career/VisualizeCareer.jsx", "line": 55, "column": 14 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 112, - "column": 14 + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 63, + "column": 18 + }, + { + "filePath": "src/components/my-career/VisualizeCareer.jsx", + "line": 80, + "column": 16 } ], - "ModalDialog.Body": [ + "Search": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 118, - "column": 6 + "filePath": "src/components/pathway-progress/PathwayProgressListingPage.jsx", + "line": 54, + "column": 52 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 59, - "column": 12 - }, + "filePath": "src/components/program-progress/ProgramListingPage.jsx", + "line": 45, + "column": 52 + } + ], + "Image": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 116, - "column": 12 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 22, + "column": 8 } ], - "ModalDialog.Footer": [ + "MarketingModal": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 121, - "column": 6 - }, + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 64, + "column": 4 + } + ], + "ModalDialog.Hero": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 65, - "column": 12 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 71, + "column": 8 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 122, - "column": 12 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 212, + "column": 8 } ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 123, - "column": 10 - }, + "ModalDialog.Title": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 67, - "column": 16 - }, + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 88, + "column": 8 + } + ], + "VerifiedBadge": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 124, - "column": 16 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 98, + "column": 27 } ], - "Card.Body": [ + "Assignment": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 134, - "column": 8 - }, + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 113, + "column": 27 + } + ], + "BookOpen": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 429, - "column": 10 + "filePath": "src/components/pathway/PathwayModal.jsx", + "line": 128, + "column": 27 } ], - "Form.Control": [ + "Stack": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 354, + "filePath": "src/components/pathway/SearchPathwayCard.jsx", + "line": 121, "column": 10 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 441, - "column": 16 + "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", + "line": 7, + "column": 2 }, { - "filePath": "src/library-authoring/common/FormGroup.jsx", - "line": 19, + "filePath": "src/components/search/content-highlights/ContentHighlights.jsx", + "line": 38, "column": 6 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 219, - "column": 28 + "filePath": "src/components/search/Search.jsx", + "line": 135, + "column": 10 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 248, - "column": 28 + "filePath": "src/components/skills-quiz/CourseCard.jsx", + "line": 72, + "column": 8 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 215, + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 210, "column": 16 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 235, - "column": 14 - }, - { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 45, + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 321, "column": 20 } ], - "IconButton": [ + "StandardModal": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 370, - "column": 12 + "filePath": "src/components/program-progress/CouponCodesWarningModal.jsx", + "line": 44, + "column": 4 }, { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 153, - "column": 6 - }, + "filePath": "src/components/program-progress/SubscriptionExpiringWarningModal.jsx", + "line": 52, + "column": 4 + } + ], + "CheckCircle": [ { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 167, - "column": 6 + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 82, + "column": 8 } ], - "Edit": [ + "Form.Label": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 373, - "column": 22 + "filePath": "src/components/program-progress/ProgramProgressCourses.jsx", + "line": 183, + "column": 30 } ], - "Container": [ + "Collapsible.Advanced": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 407, - "column": 2 + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 41, + "column": 14 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 217, + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 90, "column": 8 } ], - "ActionRow.Spacer": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 414, - "column": 8 - }, + "Collapsible.Trigger": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 440, + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 42, "column": 16 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 51, + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 91, "column": 10 - }, + } + ], + "Collapsible.Visible": [ { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 54, - "column": 10 + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 45, + "column": 18 }, { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 39, - "column": 6 + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 49, + "column": 18 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 117, - "column": 16 + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 93, + "column": 12 }, { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 55, - "column": 6 + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 97, + "column": 12 } ], - "Row": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 424, - "column": 4 - }, + "Collapsible.Body": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 509, + "filePath": "src/components/program/ProgramCourses.jsx", + "line": 54, "column": 16 }, { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 549, + "filePath": "src/components/program/ProgramInstructors.jsx", + "line": 102, "column": 10 - }, + } + ], + "Bubble": [ { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 39, + "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", + "line": 8, "column": 4 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 61, - "column": 8 - }, - { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 80, - "column": 8 - }, - { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 99, - "column": 8 - }, - { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 118, - "column": 8 - }, - { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 139, + "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", + "line": 13, "column": 4 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 193, - "column": 10 - }, - { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 384, - "column": 10 - }, + "filePath": "src/components/progress-category-bubbles/ProgressCategoryBubbles.jsx", + "line": 18, + "column": 4 + } + ], + "useMediaQuery": [ { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 218, - "column": 10 - }, + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 33, + "column": 29 + } + ], + "CardCarousel": [ { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 26, - "column": 2 - }, + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 47, + "column": 6 + } + ], + "CardDeck": [ { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 68, + "filePath": "src/components/search/content-highlights/ContentHighlightSet.jsx", + "line": 85, "column": 6 } ], - "SearchField": [ + "Warning": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 433, - "column": 16 + "filePath": "src/components/search/SearchError.jsx", + "line": 14, + "column": 12 } ], - "Pagination": [ + "ZoomOut": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 485, - "column": 18 + "filePath": "src/components/search/SearchNoResults.jsx", + "line": 18, + "column": 14 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 119, - "column": 12 + "filePath": "src/components/skills-quiz/SearchCourseCard.jsx", + "line": 94, + "column": 14 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 300, - "column": 12 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 168, + "column": 14 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "filePath": "src/components/skills-quiz/SkillsCourses.jsx", "line": 165, "column": 18 } ], - "Dropdown": [ + "Program": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 515, - "column": 22 + "filePath": "src/components/search/SearchProgramCard.jsx", + "line": 133, + "column": 23 }, { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 43, - "column": 10 + "filePath": "src/components/skills-quiz/SearchProgramCard.jsx", + "line": 226, + "column": 31 } ], - "Dropdown.Toggle": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 516, - "column": 24 - }, + "Dropdown.Header": [ { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 44, - "column": 12 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 40, + "column": 8 } ], - "Dropdown.Menu": [ + "Dropdown.Divider": [ { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 519, - "column": 24 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 54, + "column": 8 }, { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 47, - "column": 12 + "filePath": "src/components/site-header/AvatarDropdown.jsx", + "line": 58, + "column": 8 } ], - "Dropdown.Item": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 521, - "column": 28 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 48, - "column": 14 - }, - { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 49, - "column": 14 - }, + "Menu": [ { - "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", - "line": 50, + "filePath": "src/components/site-header/SiteHeader.jsx", + "line": 51, "column": 14 } ], - "Card.Footer": [ - { - "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", - "line": 562, - "column": 16 - }, + "SelectableBox.Set": [ { - "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", - "line": 15, - "column": 4 + "filePath": "src/components/skills-quiz/SelectJobCard.jsx", + "line": 29, + "column": 6 } ], - "Hyperlink": [ + "SelectableBox": [ { - "filePath": "src/library-authoring/common/AboutLibrariesHyperlink.jsx", - "line": 8, - "column": 2 + "filePath": "src/components/skills-quiz/SelectJobCard.jsx", + "line": 37, + "column": 10 } ], - "Alert": [ + "Stepper": [ { - "filePath": "src/library-authoring/common/ErrorAlert.jsx", - "line": 12, - "column": 6 - }, + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 204, + "column": 4 + } + ], + "ModalDialog": [ { - "filePath": "src/library-authoring/common/SuccessAlert.jsx", - "line": 11, + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 205, "column": 6 - }, + } + ], + "ModalDialog.Body": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 198, - "column": 16 - }, + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 220, + "column": 8 + } + ], + "Stepper.Step": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 388, - "column": 18 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 222, + "column": 12 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 247, + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 310, "column": 12 }, { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 223, - "column": 16 - }, + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 335, + "column": 12 + } + ], + "Form.Checkbox": [ { - "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", - "line": 73, - "column": 16 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 275, + "column": 24 } ], - "Form.Group": [ + "ModalDialog.Footer": [ { - "filePath": "src/library-authoring/common/FormGroup.jsx", - "line": 18, - "column": 4 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 340, + "column": 8 + } + ], + "Stepper.ActionRow": [ + { + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 341, + "column": 10 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 211, - "column": 26 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 353, + "column": 10 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 240, - "column": 26 + "filePath": "src/components/skills-quiz/SkillsQuizStepper.jsx", + "line": 360, + "column": 10 + } + ], + "PageBanner": [ + { + "filePath": "src/components/system-wide-banner/SystemWideWarningBanner.jsx", + "line": 7, + "column": 2 + } + ], + "Close": [ + { + "filePath": "src/components/TagCloud/index.jsx", + "line": 12, + "column": 19 + } + ], + "Toast": [ + { + "filePath": "src/components/Toasts/Toasts.jsx", + "line": 9, + "column": 4 + } + ] + } + }, + { + "version": "19.19.0", + "name": "frontend-app-learner-portal", + "repository": "https://github.com/edx/frontend-app-learner-portal-programs", + "folderName": "frontend-app-learner-portal-programs", + "usages": { + "Dropdown.Deprecated": [ + { + "filePath": "src/components/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 152, + "column": 10 + } + ], + "Modal": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 117, + "column": 6 + } + ], + "Alert": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 122, + "column": 14 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 269, - "column": 24 + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 52, + "column": 4 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 210, - "column": 12 + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 67, + "column": 6 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 231, - "column": 12 + "filePath": "src/components/program/ProgramPage.jsx", + "line": 80, + "column": 6 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 37, - "column": 18 + "filePath": "src/components/programs-list/ProgramListPage.jsx", + "line": 81, + "column": 4 } ], - "Form.Checkbox": [ + "Warning": [ { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 63, - "column": 12 + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 125, + "column": 22 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 82, + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 55, "column": 12 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 101, - "column": 12 + "filePath": "src/components/program/ProgramPage.jsx", + "line": 82, + "column": 14 }, { - "filePath": "src/library-authoring/common/LicenseField.jsx", - "line": 120, + "filePath": "src/components/programs-list/ProgramListPage.jsx", + "line": 83, "column": 12 } ], - "ExpandMore": [ + "Input": [ { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 155, - "column": 13 + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 132, + "column": 14 } ], - "Icon": [ + "StatefulButton": [ { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 156, - "column": 16 + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 151, + "column": 10 + } + ], + "Button": [ + { + "filePath": "src/components/course-enrollments/course-cards/UpcomingCourseCard.jsx", + "line": 10, + "column": 4 }, { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 170, - "column": 16 + "filePath": "src/components/program/sidebar/Links.jsx", + "line": 65, + "column": 10 + } + ], + "CheckCircle": [ + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 69, + "column": 14 + } + ], + "breakpoints": [ + { + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 113, + "column": 30 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 311, - "column": 37 + "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", + "line": 158, + "column": 52 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 339, - "column": 31 + "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", + "line": 170, + "column": 52 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 81, - "column": 23 + "filePath": "src/components/program/ProgramPage.jsx", + "line": 128, + "column": 48 }, { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 158, - "column": 22 + "filePath": "src/components/program/tab-components/JourneyTab.jsx", + "line": 16, + "column": 30 } ], - "ExpandLess": [ + "Collapsible": [ { - "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", - "line": 169, - "column": 13 + "filePath": "src/components/course-enrollments/CourseSection.jsx", + "line": 83, + "column": 8 } ], - "Form": [ + "Alert.Link": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 207, - "column": 18 - }, + "filePath": "src/components/program/ProgramPage.jsx", + "line": 91, + "column": 10 + } + ], + "Tabs": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 208, - "column": 8 + "filePath": "src/components/program/TabularView.jsx", + "line": 37, + "column": 6 } ], - "Card.Section": [ + "Tab": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 210, - "column": 24 + "filePath": "src/components/program/TabularView.jsx", + "line": 40, + "column": 10 + } + ] + } + }, + { + "version": "19.25.3", + "name": "@edx/frontend-app-learner-record", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-app-learner-record.git" + }, + "folderName": "frontend-app-learner-record", + "usages": { + "Button": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 78, + "column": 4 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 239, - "column": 24 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 127, + "column": 12 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 268, - "column": 22 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 156, + "column": 16 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 291, - "column": 24 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 169, + "column": 16 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 300, - "column": 22 + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 41, + "column": 14 }, { - "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", - "line": 11, - "column": 4 + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 142, + "column": 10 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 32, - "column": 8 - }, + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 118, + "column": 16 + } + ], + "ArrowBack": [ { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 69, - "column": 8 + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 80, + "column": 18 } ], - "Form.Label": [ + "Hyperlink": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 216, - "column": 28 + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 83, + "column": 6 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 211, + "filePath": "src/components/ProgramRecord/RecordsHelp.jsx", + "line": 23, "column": 14 }, { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 232, + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 68, + "column": 18 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 45, + "column": 6 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 114, "column": 14 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 42, - "column": 20 + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 160, + "column": 6 } ], - "Form.Text": [ + "Alert": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 227, - "column": 28 + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 167, + "column": 6 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 257, - "column": 28 + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 37, + "column": 10 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 53, - "column": 20 + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 82, + "column": 10 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 61, + "column": 6 } ], - "Form.Check": [ + "Info": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 270, - "column": 26 + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 168, + "column": 8 }, { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 279, - "column": 26 + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 39, + "column": 18 + }, + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 62, + "column": 8 } ], - "StatefulButton": [ + "Container": [ { - "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", - "line": 301, - "column": 24 + "filePath": "src/components/ProgramRecord/ProgramRecord.jsx", + "line": 202, + "column": 4 + } + ], + "Icon": [ + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 51, + "column": 15 }, { - "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", - "line": 54, - "column": 12 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 52, + "column": 15 }, { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 331, - "column": 18 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 53, + "column": 16 }, { - "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", - "line": 70, - "column": 10 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 225, + "column": 24 } ], - "Form.Row": [ - { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 209, - "column": 10 - }, + "Download": [ { - "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", - "line": 230, - "column": 10 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 51, + "column": 26 } ], - "Badge": [ - { - "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", - "line": 36, - "column": 12 - }, + "SpinnerSimple": [ { - "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", - "line": 28, - "column": 4 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 52, + "column": 26 } ], - "Info": [ + "Check": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 248, - "column": 20 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 53, + "column": 27 } ], - "Alert.Heading": [ + "AccountBalance": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 252, - "column": 29 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 130, + "column": 26 } ], - "Breadcrumb": [ + "OverlayTrigger": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 256, - "column": 10 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 140, + "column": 12 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 183, + "column": 12 } ], - "AlertModal": [ + "Tooltip": [ { - "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", - "line": 353, - "column": 8 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 144, + "column": 16 } ], - "Spinner": [ + "ContentCopy": [ { - "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", - "line": 260, - "column": 24 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 158, + "column": 30 + }, + { + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 171, + "column": 30 } ], - "Add": [ + "Popover": [ { - "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", - "line": 158, - "column": 33 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 187, + "column": 16 } - ] - } - }, - { - "version": "19.9.0", - "name": "@edx/frontend-app-ora-grading", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-app-ora-grading.git" - }, - "folderName": "frontend-app-ora-grading", - "usages": { - "AlertModal": [ + ], + "Popover.Title": [ { - "filePath": "src/components/ConfirmModal.jsx", - "line": 16, - "column": 2 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 190, + "column": 18 }, { - "filePath": "src/components/DemoAlert/index.jsx", - "line": 18, - "column": 2 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 204, + "column": 18 } ], - "ActionRow": [ + "Popover.Content": [ { - "filePath": "src/components/ConfirmModal.jsx", - "line": 22, - "column": 6 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 197, + "column": 18 }, { - "filePath": "src/components/DemoAlert/index.jsx", - "line": 23, - "column": 6 - }, - { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 51, - "column": 6 - }, - { - "filePath": "src/containers/ReviewActions/index.jsx", - "line": 27, - "column": 4 + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 211, + "column": 18 } ], - "Button": [ - { - "filePath": "src/components/ConfirmModal.jsx", - "line": 23, - "column": 8 - }, - { - "filePath": "src/components/ConfirmModal.jsx", - "line": 29, - "column": 8 - }, - { - "filePath": "src/components/DemoAlert/index.jsx", - "line": 24, - "column": 8 - }, - { - "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", - "line": 15, - "column": 4 - }, - { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 28, - "column": 4 - }, - { - "filePath": "src/containers/ListView/EmptySubmission.jsx", - "line": 21, - "column": 6 - }, + "IconButton": [ { - "filePath": "src/containers/ListView/FilterStatusComponent.jsx", - "line": 37, - "column": 6 - }, + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 221, + "column": 14 + } + ], + "Help": [ { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 27, - "column": 6 - }, + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 224, + "column": 21 + } + ], + "StatefulButton": [ { - "filePath": "src/containers/ListView/SelectedBulkAction.jsx", - "line": 10, - "column": 2 - }, + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 235, + "column": 12 + } + ], + "Toast": [ { - "filePath": "src/containers/ListView/TableAction.jsx", - "line": 10, - "column": 2 - }, + "filePath": "src/components/ProgramRecord/ProgramRecordActions.jsx", + "line": 248, + "column": 10 + } + ], + "Badge": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 90, - "column": 20 + "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", + "line": 52, + "column": 12 }, { - "filePath": "src/containers/ReviewActions/components/StartGradingButton/index.jsx", - "line": 27, - "column": 6 + "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", + "line": 58, + "column": 16 }, { - "filePath": "src/containers/ReviewActions/index.jsx", - "line": 45, + "filePath": "src/components/ProgramRecord/ProgramRecordHeader.jsx", + "line": 63, "column": 12 }, { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", "line": 26, - "column": 6 - }, - { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 33, - "column": 6 - }, - { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.test.jsx", - "line": 34, - "column": 2 + "column": 10 }, { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.test.jsx", - "line": 40, - "column": 2 + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 31, + "column": 10 } ], - "Alert": [ - { - "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", - "line": 20, - "column": 4 - }, - { - "filePath": "src/components/FilePreview/Banners/LoadingBanner.jsx", - "line": 6, - "column": 2 - }, + "DataTable": [ { - "filePath": "src/containers/DemoWarning/index.jsx", - "line": 18, + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 38, "column": 4 - }, - { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 23, - "column": 2 - }, + } + ], + "DataTable.Table": [ { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 39, - "column": 4 + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 76, + "column": 6 } ], - "Info": [ + "DataTable.EmptyTable": [ { - "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", - "line": 20, - "column": 34 - }, + "filePath": "src/components/ProgramRecord/ProgramRecordTable.jsx", + "line": 77, + "column": 6 + } + ], + "Alert.Heading": [ { - "filePath": "src/containers/DemoWarning/index.jsx", - "line": 21, + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 54, "column": 12 }, { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 25, - "column": 10 - }, - { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 41, + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 88, "column": 12 } ], - "Alert.Heading": [ - { - "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", - "line": 21, - "column": 6 - }, + "CheckCircle": [ { - "filePath": "src/containers/DemoWarning/index.jsx", - "line": 23, - "column": 6 - }, + "filePath": "src/components/ProgramRecordAlert/ProgramRecordAlert.jsx", + "line": 84, + "column": 18 + } + ], + "ModalDialog": [ { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 32, + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 71, "column": 4 - }, + } + ], + "ModalDialog.Header": [ { - "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", - "line": 45, + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 80, "column": 6 } ], - "Spinner": [ - { - "filePath": "src/components/FilePreview/Banners/LoadingBanner.jsx", - "line": 7, - "column": 4 - }, - { - "filePath": "src/components/LoadingMessage.jsx", - "line": 12, - "column": 4 - }, + "ModalDialog.Title": [ { - "filePath": "src/containers/ListView/index.jsx", - "line": 47, - "column": 12 + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 81, + "column": 8 } ], - "IconButton": [ + "ModalDialog.Body": [ { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 52, - "column": 8 - }, + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 92, + "column": 6 + } + ], + "Form": [ { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 71, + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 104, "column": 8 - }, + } + ], + "SelectableBox.Set": [ { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 31, - "column": 4 - }, + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 112, + "column": 10 + } + ], + "SelectableBox": [ { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 26, - "column": 4 - }, + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 120, + "column": 14 + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 41, - "column": 4 + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 133, + "column": 6 } ], - "Icon": [ + "ActionRow": [ { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 55, - "column": 18 + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 134, + "column": 8 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/components/ProgramRecordSendModal/SendLearnerRecordModal.jsx", + "line": 135, + "column": 10 + } + ], + "ChevronLeft": [ + { + "filePath": "src/components/ProgramRecordsList/ProgramRecordsList.jsx", + "line": 49, + "column": 8 + } + ] + } + }, + { + "version": "20.24.0", + "name": "@edx/frontend-app-learning", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-learning.git" + }, + "folderName": "frontend-app-learning", + "usages": { + "Hyperlink": [ + { + "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", + "line": 65, + "column": 8 }, { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 74, - "column": 18 + "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", + "line": 13, + "column": 4 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 35, - "column": 14 + "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 20, - "column": 6 + "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "line": 23, + "column": 4 }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 26, - "column": 8 + "filePath": "src/course-home/goal-unsubscribe/ResultPage.jsx", + "line": 16, + "column": 10 }, { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 29, - "column": 15 + "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", + "line": 49, + "column": 4 }, { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 30, - "column": 15 + "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", + "line": 58, + "column": 4 }, { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 31, - "column": 16 + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 29, + "column": 4 }, { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 32, - "column": 14 + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", + "line": 44, + "column": 4 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 47, - "column": 18 + "filePath": "src/course-home/progress-tab/related-links/RelatedLinks.jsx", + "line": 42, + "column": 10 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "filePath": "src/course-home/progress-tab/related-links/RelatedLinks.jsx", "line": 50, - "column": 18 + "column": 10 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 88, - "column": 20 + "filePath": "src/courseware/course/course-exit/CatalogSuggestion.jsx", + "line": 25, + "column": 4 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 32, + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 209, "column": 14 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 47, - "column": 14 - } - ], - "ChevronLeft": [ + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 101, + "column": 6 + }, { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 56, - "column": 15 + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 196, + "column": 6 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 31, - "column": 11 - } - ], - "Form.Group": [ + "filePath": "src/courseware/course/course-exit/DashboardFootnote.jsx", + "line": 25, + "column": 4 + }, { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 60, - "column": 8 + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 34, + "column": 4 }, { - "filePath": "src/containers/CriterionContainer/CriterionFeedback.jsx", - "line": 50, - "column": 6 + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 59, + "column": 16 }, { - "filePath": "src/containers/CriterionContainer/index.jsx", + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 76, + "column": 14 + }, + { + "filePath": "src/courseware/course/course-exit/UpgradeFootnote.jsx", "line": 23, "column": 4 }, { - "filePath": "src/containers/Rubric/RubricFeedback.jsx", - "line": 46, - "column": 6 - } - ], - "Form.Label": [ - { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 61, - "column": 10 + "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", + "line": 16, + "column": 4 }, { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 69, - "column": 10 + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 91, + "column": 14 }, { - "filePath": "src/containers/CriterionContainer/index.jsx", - "line": 24, - "column": 6 + "filePath": "src/shared/links.jsx", + "line": 10, + "column": 2 }, { - "filePath": "src/containers/CriterionContainer/ReviewCriterion.jsx", - "line": 19, - "column": 10 + "filePath": "src/shared/links.jsx", + "line": 28, + "column": 4 }, { - "filePath": "src/containers/Rubric/RubricFeedback.jsx", - "line": 47, - "column": 8 + "filePath": "src/shared/links.jsx", + "line": 46, + "column": 4 } ], - "Form.Control": [ + "Alert": [ { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 62, - "column": 10 + "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", + "line": 78, + "column": 4 }, { - "filePath": "src/containers/CriterionContainer/CriterionFeedback.jsx", - "line": 51, - "column": 8 + "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", + "line": 26, + "column": 4 }, { - "filePath": "src/containers/Rubric/RubricFeedback.jsx", - "line": 55, - "column": 8 - } - ], - "ChevronRight": [ - { - "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", - "line": 75, - "column": 15 + "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", + "line": 43, + "column": 6 }, { - "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", - "line": 46, - "column": 11 - } - ], - "Card": [ - { - "filePath": "src/components/FilePreview/FileCard.jsx", - "line": 14, - "column": 2 + "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", + "line": 68, + "column": 4 }, { - "filePath": "src/containers/ResponseDisplay/index.jsx", + "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", "line": 50, - "column": 12 + "column": 4 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 40, - "column": 6 + "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "line": 32, + "column": 4 }, { - "filePath": "src/containers/Rubric/index.jsx", - "line": 31, - "column": 6 - } - ], - "Collapsible": [ + "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", + "line": 166, + "column": 8 + }, { - "filePath": "src/components/FilePreview/FileCard.jsx", - "line": 15, + "filePath": "src/course-home/outline-tab/alerts/course-end-alert/CourseEndAlert.jsx", + "line": 86, "column": 4 - } - ], - "OverlayTrigger": [ + }, { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 18, - "column": 2 + "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", + "line": 67, + "column": 4 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 21, - "column": 2 - } - ], - "Popover": [ + "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", + "line": 12, + "column": 4 + }, { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 23, - "column": 6 + "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", + "line": 31, + "column": 4 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 26, - "column": 6 - } - ], - "Popover.Content": [ + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 39, + "column": 4 + }, { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 24, - "column": 8 + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 36, + "column": 4 }, { - "filePath": "src/components/FilePreview/FileInfo.test.jsx", - "line": 22, - "column": 45 + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 38, + "column": 4 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 27, + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 317, + "column": 10 + }, + { + "filePath": "src/courseware/course/course-exit/CourseInProgress.jsx", + "line": 41, "column": 8 - } - ], - "InfoOutline": [ + }, { - "filePath": "src/components/FilePreview/FileInfo.jsx", - "line": 32, - "column": 17 + "filePath": "src/courseware/course/course-exit/CourseNonPassing.jsx", + "line": 41, + "column": 8 }, { - "filePath": "src/components/InfoPopover/index.jsx", - "line": 33, - "column": 11 - } - ], - "Badge": [ + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 44, + "column": 4 + }, { - "filePath": "src/components/StatusBadge.jsx", - "line": 33, + "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", + "line": 26, "column": 4 - } - ], - "Form.RadioSet": [ + }, { - "filePath": "src/containers/CriterionContainer/RadioCriterion.jsx", + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", "line": 37, - "column": 8 - } - ], - "Form.Radio": [ - { - "filePath": "src/containers/CriterionContainer/RadioCriterion.jsx", - "line": 39, - "column": 12 - } - ], - "FormControlFeedback": [ + "column": 4 + }, { - "filePath": "src/containers/CriterionContainer/ReviewCriterion.jsx", - "line": 20, - "column": 10 - } - ], - "PageBanner": [ + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 82, + "column": 4 + }, { - "filePath": "src/containers/CTA/index.jsx", - "line": 12, + "filePath": "src/generic/user-messages/Alert.jsx", + "line": 35, "column": 2 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 181, + "column": 10 } ], - "Hyperlink": [ + "Info": [ { - "filePath": "src/containers/CTA/index.jsx", - "line": 15, - "column": 6 + "filePath": "src/alerts/access-expiration-alert/AccessExpirationAlert.jsx", + "line": 78, + "column": 32 }, { - "filePath": "src/containers/ListView/EmptySubmission.jsx", - "line": 20, - "column": 4 + "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", + "line": 43, + "column": 34 }, { - "filePath": "src/containers/ListView/ListError.jsx", - "line": 40, - "column": 12 + "filePath": "src/alerts/course-start-alert/CourseStartAlert.jsx", + "line": 68, + "column": 32 }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 19, + "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", + "line": 38, "column": 4 }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 25, - "column": 6 - } - ], - "Container": [ - { - "filePath": "src/containers/ListView/index.jsx", - "line": 34, - "column": 6 - } - ], - "ArrowBack": [ + "filePath": "src/course-home/outline-tab/alerts/course-end-alert/CourseEndAlert.jsx", + "line": 86, + "column": 32 + }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", - "line": 20, - "column": 17 - } - ], - "Launch": [ + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 89, + "column": 23 + }, { - "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "filePath": "src/courseware/course/sequence/hidden-after-due/HiddenAfterDue.jsx", "line": 26, - "column": 19 + "column": 32 } ], - "DataTable": [ + "PageBanner": [ { - "filePath": "src/containers/ListView/SubmissionsTable.jsx", - "line": 76, - "column": 8 + "filePath": "src/alerts/access-expiration-alert/AccessExpirationMasqueradeBanner.jsx", + "line": 15, + "column": 4 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 55, - "column": 18 + "filePath": "src/alerts/course-start-alert/CourseStartMasqueradeBanner.jsx", + "line": 21, + "column": 4 } ], - "DataTable.TableControlBar": [ + "WarningFilled": [ { - "filePath": "src/containers/ListView/SubmissionsTable.jsx", - "line": 120, - "column": 10 - } - ], - "DataTable.Table": [ + "filePath": "src/alerts/active-enteprise-alert/ActiveEnterpriseAlert.jsx", + "line": 26, + "column": 35 + }, { - "filePath": "src/containers/ListView/SubmissionsTable.jsx", - "line": 121, - "column": 10 + "filePath": "src/alerts/logistration-alert/LogistrationAlert.jsx", + "line": 32, + "column": 35 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 79, - "column": 20 - } - ], - "DataTable.TableFooter": [ + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 80, + "column": 92 + }, { - "filePath": "src/containers/ListView/SubmissionsTable.jsx", - "line": 122, - "column": 10 + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 53, + "column": 17 } ], - "StatefulButton": [ + "Button": [ { - "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", - "line": 25, - "column": 2 + "filePath": "src/alerts/enrollment-alert/EnrollmentAlert.jsx", + "line": 44, + "column": 4 }, { - "filePath": "src/containers/Rubric/index.jsx", - "line": 41, - "column": 12 - } - ], - "Card.Section": [ - { - "filePath": "src/containers/ResponseDisplay/index.jsx", - "line": 51, - "column": 14 + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 42, + "column": 4 + }, + { + "filePath": "src/course-home/goal-unsubscribe/ResultPage.jsx", + "line": 42, + "column": 6 + }, + { + "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", + "line": 175, + "column": 16 + }, + { + "filePath": "src/course-home/outline-tab/alerts/private-course-alert/PrivateCourseAlert.jsx", + "line": 36, + "column": 4 + }, + { + "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", + "line": 28, + "column": 12 + }, + { + "filePath": "src/course-home/outline-tab/OutlineTab.jsx", + "line": 164, + "column": 18 + }, + { + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 138, + "column": 6 + }, + { + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 153, + "column": 6 + }, + { + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 160, + "column": 8 + }, + { + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 166, + "column": 8 + }, + { + "filePath": "src/course-home/outline-tab/widgets/ProctoringInfoPanel.jsx", + "line": 209, + "column": 12 + }, + { + "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", + "line": 48, + "column": 10 + }, + { + "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", + "line": 43, + "column": 8 + }, + { + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 245, + "column": 12 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", + "line": 77, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/ProgressHeader.jsx", + "line": 32, + "column": 6 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 46, + "column": 10 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 43, + "column": 10 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 45, + "column": 10 + }, + { + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 38, + "column": 10 + }, + { + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 30, + "column": 10 + }, + { + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 109, + "column": 10 + }, + { + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 153, + "column": 8 + }, + { + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 325, + "column": 20 + }, + { + "filePath": "src/courseware/course/course-exit/CourseExit.jsx", + "line": 67, + "column": 8 + }, + { + "filePath": "src/courseware/course/course-exit/CourseInProgress.jsx", + "line": 45, + "column": 14 + }, + { + "filePath": "src/courseware/course/course-exit/CourseNonPassing.jsx", + "line": 45, + "column": 14 + }, + { + "filePath": "src/courseware/course/course-exit/ProgramCompletion.jsx", + "line": 67, + "column": 14 + }, + { + "filePath": "src/courseware/course/sequence/content-lock/ContentLock.jsx", + "line": 32, + "column": 8 + }, + { + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 57, + "column": 8 + }, + { + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 60, + "column": 8 + }, + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 74, + "column": 6 + }, + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 84, + "column": 6 + }, + { + "filePath": "src/courseware/course/sequence/sequence-navigation/UnitButton.jsx", + "line": 28, + "column": 4 + }, + { + "filePath": "src/courseware/course/sequence/sequence-navigation/UnitNavigation.jsx", + "line": 35, + "column": 6 + }, + { + "filePath": "src/courseware/course/sequence/sequence-navigation/UnitNavigation.jsx", + "line": 52, + "column": 6 + }, + { + "filePath": "src/generic/upgrade-button/UpgradeButton.jsx", + "line": 22, + "column": 4 + }, + { + "filePath": "src/generic/upgrade-button/UpgradeNowButton.jsx", + "line": 22, + "column": 4 + }, + { + "filePath": "src/generic/upgrade-notification/UpgradeNotification.jsx", + "line": 449, + "column": 6 + }, + { + "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", + "line": 46, + "column": 8 + }, + { + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 45, + "column": 8 + }, + { + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 51, + "column": 8 + } + ], + "Icon": [ + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 55, + "column": 6 + }, + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 105, + "column": 10 + }, + { + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 137, + "column": 14 + }, + { + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 76, + "column": 84 + }, + { + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 80, + "column": 81 + }, + { + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 83, + "column": 72 + }, + { + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 86, + "column": 71 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 52, + "column": 27 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 53, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", + "line": 58, + "column": 12 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 69, + "column": 16 + }, + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", + "line": 60, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 53, + "column": 42 + }, + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 54, + "column": 40 + }, + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 59, + "column": 14 + }, + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 88, + "column": 16 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/AssignmentTypeCell.jsx", + "line": 21, + "column": 30 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 43, + "column": 18 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 51, + "column": 10 + }, + { + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 56, + "column": 10 + }, + { + "filePath": "src/courseware/course/share/ShareButton.jsx", + "line": 39, + "column": 6 + }, + { + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 55, + "column": 10 + }, + { + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 72, + "column": 28 + }, + { + "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", + "line": 43, + "column": 6 + }, + { + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", + "line": 16, + "column": 4 + }, + { + "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", + "line": 48, + "column": 12 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 174, + "column": 12 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 183, + "column": 14 + } + ], + "ArrowForward": [ + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 55, + "column": 17 + } + ], + "Spinner": [ + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 92, + "column": 10 + }, + { + "filePath": "src/generic/PageLoading.jsx", + "line": 28, + "column": 10 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 170, + "column": 10 + } + ], + "Check": [ + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 106, + "column": 17 + } + ], + "AlertModal": [ + { + "filePath": "src/alerts/logistration-alert/AccountActivationAlert.jsx", + "line": 117, + "column": 4 + } + ], + "Badge": [ + { + "filePath": "src/course-home/dates-tab/timeline/badgelist.jsx", + "line": 99, + "column": 10 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/course-home/dates-tab/timeline/Day.jsx", + "line": 89, + "column": 18 + }, + { + "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", + "line": 32, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", + "line": 36, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", + "line": 35, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", + "line": 38, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 33, + "column": 4 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", + "line": 22, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 26, + "column": 6 + } + ], + "Tooltip": [ + { + "filePath": "src/course-home/dates-tab/timeline/Day.jsx", + "line": 92, + "column": 22 + } + ], + "Alert.Heading": [ + { + "filePath": "src/course-home/outline-tab/alerts/certificate-status-alert/CertificateStatusAlert.jsx", + "line": 170, + "column": 14 + }, + { + "filePath": "src/course-home/outline-tab/alerts/scheduled-content-alert/ScheduledCotentAlert.jsx", + "line": 15, + "column": 10 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 39, + "column": 10 + } + ], + "Collapsible": [ + { + "filePath": "src/course-home/outline-tab/Section.jsx", + "line": 76, + "column": 6 + } + ], + "IconButton": [ + { + "filePath": "src/course-home/outline-tab/Section.jsx", + "line": 83, + "column": 10 + }, + { + "filePath": "src/course-home/outline-tab/Section.jsx", + "line": 91, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 63, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 38, + "column": 8 + }, + { + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 69, + "column": 18 + } + ], + "Card": [ + { + "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", + "line": 44, + "column": 4 + }, + { + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 91, + "column": 4 + }, + { + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 238, + "column": 6 + }, + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 106, + "column": 8 + } + ], + "Card.Header": [ + { + "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", + "line": 45, + "column": 6 + }, + { + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 96, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 239, + "column": 8 + }, + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 108, + "column": 10 + } + ], + "Card.Footer": [ + { + "filePath": "src/course-home/outline-tab/widgets/StartOrResumeCourseCard.jsx", + "line": 60, + "column": 6 + }, + { + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 243, + "column": 8 + }, + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 111, + "column": 10 + } + ], + "Card.Section": [ + { + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 101, + "column": 6 + }, + { + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 134, + "column": 8 + }, + { + "filePath": "src/course-home/progress-tab/certificate-status/CertificateStatus.jsx", + "line": 240, + "column": 8 + }, + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 110, + "column": 10 + } + ], + "Form.Switch": [ + { + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 124, + "column": 10 + } + ], + "Email": [ + { + "filePath": "src/course-home/outline-tab/widgets/WeeklyLearningGoalCard.jsx", + "line": 139, + "column": 21 + } + ], + "TransitionReplace": [ + { + "filePath": "src/course-home/outline-tab/widgets/WelcomeMessage.jsx", + "line": 52, + "column": 6 + } + ], + "Popover": [ + { + "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", + "line": 36, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", + "line": 40, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", + "line": 39, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", + "line": 42, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 38, + "column": 8 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", + "line": 26, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 31, + "column": 10 + } + ], + "Popover.Content": [ + { + "filePath": "src/course-home/progress-tab/course-completion/CompleteDonutSegment.jsx", + "line": 37, + "column": 12 + }, + { + "filePath": "src/course-home/progress-tab/course-completion/IncompleteDonutSegment.jsx", + "line": 41, + "column": 12 + }, + { + "filePath": "src/course-home/progress-tab/course-completion/LockedDonutSegment.jsx", + "line": 40, + "column": 12 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CurrentGradeTooltip.jsx", + "line": 43, + "column": 12 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 39, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/PassingGradeTooltip.jsx", + "line": 27, + "column": 12 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 32, + "column": 12 + } + ], + "CheckCircle": [ + { + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 76, + "column": 95 + }, + { + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 83, + "column": 83 + }, + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 52, + "column": 38 + }, + { + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 317, + "column": 41 + } + ], + "WatchFilled": [ + { + "filePath": "src/course-home/progress-tab/credit-information/CreditInformation.jsx", + "line": 86, + "column": 82 + } + ], + "useWindowSize": [ + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 28, + "column": 21 + }, + { + "filePath": "src/course-home/progress-tab/ProgressTab.jsx", + "line": 26, + "column": 22 + }, + { + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 25, + "column": 21 + }, + { + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 40, + "column": 21 + }, + { + "filePath": "src/courseware/course/Course.jsx", + "line": 145, + "column": 22 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 40, + "column": 52 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 41, + "column": 45 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 43, + "column": 46 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 45, + "column": 50 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 47, + "column": 33 + }, + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 43, + "column": 53 + }, + { + "filePath": "src/courseware/course/sequence/Sequence.jsx", + "line": 47, + "column": 53 + }, + { + "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "line": 19, + "column": 34 + }, + { + "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "line": 20, + "column": 35 + }, + { + "filePath": "src/generic/tabs/useIndexOfLastVisibleChild.js", + "line": 37, + "column": 21 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 76, + "column": 21 + } + ], + "breakpoints": [ + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeFooter.jsx", + "line": 28, + "column": 46 + }, + { + "filePath": "src/course-home/progress-tab/ProgressTab.jsx", + "line": 34, + "column": 36 + }, + { + "filePath": "src/course-home/progress-tab/ProgressTab.test.jsx", + "line": 803, + "column": 26 + }, + { + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 25, + "column": 46 + }, + { + "filePath": "src/courseware/course/course-exit/CourseCelebration.jsx", + "line": 40, + "column": 46 + }, + { + "filePath": "src/courseware/course/Course.jsx", + "line": 53, + "column": 47 + }, + { + "filePath": "src/courseware/course/Course.jsx", + "line": 57, + "column": 64 + }, + { + "filePath": "src/courseware/course/Course.test.jsx", + "line": 38, + "column": 24 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 40, + "column": 77 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 41, + "column": 70 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 43, + "column": 70 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 45, + "column": 75 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 47, + "column": 57 + }, + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigation.jsx", + "line": 43, + "column": 77 + }, + { + "filePath": "src/courseware/course/sequence/Sequence.jsx", + "line": 47, + "column": 77 + }, + { + "filePath": "src/courseware/course/sequence/Sequence.test.jsx", + "line": 40, + "column": 24 + }, + { + "filePath": "src/courseware/course/sequence/Sequence.test.jsx", + "line": 410, + "column": 26 + }, + { + "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "line": 19, + "column": 58 + }, + { + "filePath": "src/courseware/course/sidebar/SidebarContextProvider.jsx", + "line": 20, + "column": 59 + }, + { + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", + "line": 46, + "column": 24 + }, + { + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", + "line": 54, + "column": 24 + }, + { + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationTray.test.jsx", + "line": 139, + "column": 24 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 76, + "column": 46 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.test.jsx", + "line": 61, + "column": 24 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.test.jsx", + "line": 94, + "column": 24 + } + ], + "Locked": [ + { + "filePath": "src/course-home/progress-tab/grades/course-grade/CourseGradeHeader.jsx", + "line": 58, + "column": 23 + }, + { + "filePath": "src/courseware/course/sequence/lock-paywall/LockPaywall.jsx", + "line": 82, + "column": 49 + } + ], + "InfoOutline": [ + { + "filePath": "src/course-home/progress-tab/grades/course-grade/GradeRangeTooltip.jsx", + "line": 68, + "column": 13 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 42, + "column": 15 + } + ], + "Blocked": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGrades.jsx", + "line": 60, + "column": 99 + }, + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 64, + "column": 21 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/AssignmentTypeCell.jsx", + "line": 21, + "column": 256 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryHeader.jsx", + "line": 51, + "column": 99 + } + ], + "DataTable": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGradesTable.jsx", + "line": 43, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTable.jsx", + "line": 95, + "column": 6 + }, + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 183, + "column": 8 + } + ], + "DataTable.Table": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/DetailedGradesTable.jsx", + "line": 61, + "column": 12 + }, + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTable.jsx", + "line": 128, + "column": 8 + } + ], + "Collapsible.Advanced": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 46, + "column": 4 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 42, + "column": 6 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 82, + "column": 10 + } + ], + "Row": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 47, + "column": 6 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 40, + "column": 6 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 37, + "column": 6 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 39, + "column": 6 + } + ], + "Collapsible.Trigger": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 48, + "column": 8 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 44, + "column": 10 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 84, + "column": 14 + } + ], + "Collapsible.Visible": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 53, + "column": 10 + }, + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 54, + "column": 10 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 45, + "column": 12 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 48, + "column": 12 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 85, + "column": 16 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 88, + "column": 16 + } + ], + "ArrowDropDown": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 53, + "column": 53 + } + ], + "ArrowDropUp": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 54, + "column": 51 + } + ], + "Collapsible.Body": [ + { + "filePath": "src/course-home/progress-tab/grades/detailed-grades/SubsectionTitleCell.jsx", + "line": 83, + "column": 6 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 54, + "column": 8 + }, + { + "filePath": "src/courseware/course/content-tools/calculator/Calculator.jsx", + "line": 97, + "column": 12 + } + ], + "DataTable.TableFooter": [ + { + "filePath": "src/course-home/progress-tab/grades/grade-summary/GradeSummaryTableFooter.jsx", + "line": 30, + "column": 4 + } + ], + "Col": [ + { + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 41, + "column": 8 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/ShiftDatesAlert.jsx", + "line": 45, + "column": 8 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 38, + "column": 8 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToCompleteAlert.jsx", + "line": 42, + "column": 8 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 40, + "column": 8 + }, + { + "filePath": "src/course-home/suggested-schedule-messaging/UpgradeToShiftDatesAlert.jsx", + "line": 44, + "column": 8 + } + ], + "StatefulButton": [ + { + "filePath": "src/courseware/course/bookmark/BookmarkButton.jsx", + "line": 43, + "column": 4 + } + ], + "StandardModal": [ + { + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 35, + "column": 4 + }, + { + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 27, + "column": 4 + } + ], + "ActionRow": [ + { + "filePath": "src/courseware/course/celebration/CelebrationModal.jsx", + "line": 37, + "column": 8 + }, + { + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 29, + "column": 8 + }, + { + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 55, + "column": 6 + }, + { + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 44, + "column": 6 + } + ], + "Lightbulb": [ + { + "filePath": "src/courseware/course/celebration/WeeklyGoalCelebrationModal.jsx", + "line": 57, + "column": 17 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 174, + "column": 50 + } + ], + "Card.ImageCap": [ + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 107, + "column": 10 + } + ], + "CardView": [ + { + "filePath": "src/courseware/course/course-exit/CourseRecommendations.jsx", + "line": 193, + "column": 10 + } + ], + "SelectMenu": [ + { + "filePath": "src/courseware/course/CourseBreadcrumbs.jsx", + "line": 41, + "column": 12 + } + ], + "MenuItem": [ + { + "filePath": "src/courseware/course/JumpNavMenuItem.jsx", + "line": 44, + "column": 4 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/courseware/course/sequence/honor-code/HonorCode.jsx", + "line": 56, + "column": 8 + } + ], + "Dropdown": [ + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 14, + "column": 2 + }, + { + "filePath": "src/generic/tabs/Tabs.jsx", + "line": 41, + "column": 10 + }, + { + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", + "line": 124, + "column": 10 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 15, + "column": 4 + }, + { + "filePath": "src/generic/tabs/Tabs.jsx", + "line": 42, + "column": 12 + }, + { + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", + "line": 125, + "column": 12 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 26, + "column": 4 + }, + { + "filePath": "src/generic/tabs/Tabs.jsx", + "line": 49, + "column": 12 + }, + { + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidget.jsx", + "line": 128, + "column": 12 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/courseware/course/sequence/sequence-navigation/SequenceNavigationDropdown.jsx", + "line": 28, + "column": 8 + }, + { + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeWidgetOption.jsx", + "line": 70, + "column": 6 + } + ], + "Modal": [ + { + "filePath": "src/courseware/course/sequence/Unit.jsx", + "line": 187, + "column": 8 + } + ], + "ArrowBackIos": [ + { + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 55, + "column": 21 + } + ], + "Close": [ + { + "filePath": "src/courseware/course/sidebar/common/SidebarBase.jsx", + "line": 70, + "column": 25 + } + ], + "QuestionAnswer": [ + { + "filePath": "src/courseware/course/sidebar/sidebars/discussions/DiscussionsTrigger.jsx", + "line": 43, + "column": 17 + } + ], + "WatchOutline": [ + { + "filePath": "src/courseware/course/sidebar/sidebars/notifications/NotificationIcon.jsx", + "line": 16, + "column": 15 + } + ], + "Input": [ + { + "filePath": "src/instructor-toolbar/masquerade-widget/MasqueradeUserNameInput.jsx", + "line": 49, + "column": 6 + } + ], + "Compass": [ + { + "filePath": "src/product-tours/newUserCourseHomeTour/LaunchCourseHomeTourButton.jsx", + "line": 49, + "column": 19 + } + ], + "MarketingModal": [ + { + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 18, + "column": 2 + } + ], + "ModalDialog.Hero": [ + { + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 25, + "column": 6 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/product-tours/newUserCourseHomeTour/NewUserCourseHomeTourModal.jsx", + "line": 30, + "column": 10 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 159, + "column": 8 + } + ], + "ProductTour": [ + { + "filePath": "src/product-tours/ProductTours.jsx", + "line": 145, + "column": 6 + } + ], + "ModalDialog": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 147, + "column": 4 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 158, + "column": 6 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 163, + "column": 6 + } + ], + "MoneyFilled": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 183, + "column": 69 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 201, + "column": 6 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 213, + "column": 16 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 226, + "column": 16 + }, + { + "filePath": "src/shared/streak-celebration/StreakCelebrationModal.jsx", + "line": 234, + "column": 10 + } + ], + "useToggle": [ + { + "filePath": "src/tab-page/LoadedTabPage.jsx", + "line": 43, + "column": 61 + } + ], + "Toast": [ + { + "filePath": "src/tab-page/TabPage.jsx", + "line": 65, + "column": 8 + } + ] + } + }, + { + "version": "20.17.0", + "name": "@edx/frontend-app-library-authoring", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-library-authoring.git" + }, + "folderName": "frontend-app-library-authoring", + "usages": { + "Col": [ + { + "filePath": "src/generic/LoadingPage.jsx", + "line": 6, + "column": 2 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 427, + "column": 6 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 484, + "column": 16 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 496, + "column": 12 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 510, + "column": 18 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 513, + "column": 18 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 547, + "column": 6 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 550, + "column": 12 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 557, + "column": 12 + }, + { + "filePath": "src/library-authoring/common/ErrorAlert.jsx", + "line": 11, + "column": 4 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 40, + "column": 6 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 45, + "column": 6 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 62, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 71, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 76, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 81, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 90, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 95, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 100, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 109, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 114, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 119, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 128, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 133, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 140, + "column": 6 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 144, + "column": 6 + }, + { + "filePath": "src/library-authoring/common/SuccessAlert.jsx", + "line": 10, + "column": 4 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 194, + "column": 12 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 329, + "column": 12 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 385, + "column": 12 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 422, + "column": 12 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 219, + "column": 12 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 305, + "column": 12 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 69, + "column": 8 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 97, + "column": 14 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 103, + "column": 8 + } + ], + "Card": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 85, + "column": 2 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 133, + "column": 6 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 428, + "column": 8 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 558, + "column": 14 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 206, + "column": 16 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 47, + "column": 4 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", + "line": 30, + "column": 4 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 231, + "column": 16 + }, + { + "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", + "line": 10, + "column": 2 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 28, + "column": 6 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 68, + "column": 6 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 27, + "column": 2 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 135, + "column": 22 + } + ], + "Card.Header": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 86, + "column": 4 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 559, + "column": 16 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 48, + "column": 6 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", + "line": 31, + "column": 6 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 29, + "column": 8 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 141, + "column": 24 + } + ], + "ActionRow": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 90, + "column": 8 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 122, + "column": 8 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 410, + "column": 6 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 430, + "column": 12 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 53, + "column": 10 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 49, + "column": 8 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 357, + "column": 12 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 327, + "column": 20 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 50, + "column": 8 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 32, + "column": 4 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 66, + "column": 14 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 123, + "column": 14 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 115, + "column": 14 + } + ], + "Button": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 91, + "column": 10 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 99, + "column": 10 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 126, + "column": 10 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 284, + "column": 4 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 498, + "column": 14 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 531, + "column": 20 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 534, + "column": 20 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 537, + "column": 20 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 563, + "column": 18 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 566, + "column": 18 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 41, + "column": 8 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 46, + "column": 8 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 316, + "column": 24 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 52, + "column": 10 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 220, + "column": 16 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 323, + "column": 18 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 358, + "column": 14 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 361, + "column": 14 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockAssets.jsx", + "line": 30, + "column": 15 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", + "line": 56, + "column": 10 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", + "line": 57, + "column": 10 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockOlx.jsx", + "line": 64, + "column": 8 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 328, + "column": 22 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 337, + "column": 22 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 346, + "column": 22 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 86, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 56, + "column": 12 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 47, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 70, + "column": 16 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 81, + "column": 8 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 87, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 90, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 97, + "column": 10 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 118, + "column": 16 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 154, + "column": 20 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 56, + "column": 6 + } + ], + "ModalDialog": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 109, + "column": 4 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 50, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 107, + "column": 10 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 113, + "column": 6 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 54, + "column": 12 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 111, + "column": 12 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 114, + "column": 8 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 55, + "column": 14 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 112, + "column": 14 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 118, + "column": 6 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 59, + "column": 12 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 116, + "column": 12 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 121, + "column": 6 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 65, + "column": 12 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 122, + "column": 12 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 123, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 67, + "column": 16 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 124, + "column": 16 + } + ], + "Card.Body": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 134, + "column": 8 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 429, + "column": 10 + } + ], + "Form.Control": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 354, + "column": 10 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 441, + "column": 16 + }, + { + "filePath": "src/library-authoring/common/FormGroup.jsx", + "line": 19, + "column": 6 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 219, + "column": 28 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 248, + "column": 28 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 215, + "column": 16 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 235, + "column": 14 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 45, + "column": 20 + } + ], + "IconButton": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 370, + "column": 12 + }, + { + "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", + "line": 153, + "column": 6 + }, + { + "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", + "line": 167, + "column": 6 + } + ], + "Edit": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 373, + "column": 22 + } + ], + "Container": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 407, + "column": 2 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 217, + "column": 8 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 414, + "column": 8 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 440, + "column": 16 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 51, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 54, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 39, + "column": 6 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 117, + "column": 16 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 55, + "column": 6 + } + ], + "Row": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 424, + "column": 4 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 509, + "column": 16 + }, + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 549, + "column": 10 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 39, + "column": 4 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 61, + "column": 8 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 80, + "column": 8 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 99, + "column": 8 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 118, + "column": 8 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 139, + "column": 4 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 193, + "column": 10 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 384, + "column": 10 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 218, + "column": 10 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 26, + "column": 2 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 68, + "column": 6 + } + ], + "SearchField": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 433, + "column": 16 + } + ], + "Pagination": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 485, + "column": 18 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 119, + "column": 12 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 300, + "column": 12 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 165, + "column": 18 + } + ], + "Dropdown": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 515, + "column": 22 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 43, + "column": 10 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 516, + "column": 24 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 44, + "column": 12 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 519, + "column": 24 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 47, + "column": 12 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 521, + "column": 28 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 48, + "column": 14 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 49, + "column": 14 + }, + { + "filePath": "src/library-authoring/studio-header-wrapper/StudioHeaderWrapper.jsx", + "line": 50, + "column": 14 + } + ], + "Card.Footer": [ + { + "filePath": "src/library-authoring/author-library/LibraryAuthoringPage.jsx", + "line": 562, + "column": 16 + }, + { + "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", + "line": 15, + "column": 4 + } + ], + "Hyperlink": [ + { + "filePath": "src/library-authoring/common/AboutLibrariesHyperlink.jsx", + "line": 8, + "column": 2 + } + ], + "Alert": [ + { + "filePath": "src/library-authoring/common/ErrorAlert.jsx", + "line": 12, + "column": 6 + }, + { + "filePath": "src/library-authoring/common/SuccessAlert.jsx", + "line": 11, + "column": 6 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 198, + "column": 16 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 388, + "column": 18 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 247, + "column": 12 + }, + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 223, + "column": 16 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessPage.jsx", + "line": 73, + "column": 16 + } + ], + "Form.Group": [ + { + "filePath": "src/library-authoring/common/FormGroup.jsx", + "line": 18, + "column": 4 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 211, + "column": 26 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 240, + "column": 26 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 269, + "column": 24 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 210, + "column": 12 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 231, + "column": 12 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 37, + "column": 18 + } + ], + "Form.Checkbox": [ + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 63, + "column": 12 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 82, + "column": 12 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 101, + "column": 12 + }, + { + "filePath": "src/library-authoring/common/LicenseField.jsx", + "line": 120, + "column": 12 + } + ], + "ExpandMore": [ + { + "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", + "line": 155, + "column": 13 + } + ], + "Icon": [ + { + "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", + "line": 156, + "column": 16 + }, + { + "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", + "line": 170, + "column": 16 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 311, + "column": 37 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 339, + "column": 31 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 81, + "column": 23 + }, + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 158, + "column": 22 + } + ], + "ExpandLess": [ + { + "filePath": "src/library-authoring/common/OrganizationDropdown.jsx", + "line": 169, + "column": 13 + } + ], + "Form": [ + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 207, + "column": 18 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 208, + "column": 8 + } + ], + "Card.Section": [ + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 210, + "column": 24 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 239, + "column": 24 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 268, + "column": 22 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 291, + "column": 24 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 300, + "column": 22 + }, + { + "filePath": "src/library-authoring/empty-page/EmptyPage.jsx", + "line": 11, + "column": 4 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 32, + "column": 8 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 69, + "column": 8 + } + ], + "Form.Label": [ + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 216, + "column": 28 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 211, + "column": 14 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 232, + "column": 14 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 42, + "column": 20 + } + ], + "Form.Text": [ + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 227, + "column": 28 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 257, + "column": 28 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 53, + "column": 20 + } + ], + "Form.Check": [ + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 270, + "column": 26 + }, + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 279, + "column": 26 + } + ], + "StatefulButton": [ + { + "filePath": "src/library-authoring/configure-library/LibraryConfigurePage.jsx", + "line": 301, + "column": 24 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportListItem.jsx", + "line": 54, + "column": 12 + }, + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 331, + "column": 18 + }, + { + "filePath": "src/library-authoring/library-access/LibraryAccessForm.jsx", + "line": 70, + "column": 10 + } + ], + "Form.Row": [ + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 209, + "column": 10 + }, + { + "filePath": "src/library-authoring/course-import/CourseImportPage.jsx", + "line": 230, + "column": 10 + } + ], + "Badge": [ + { + "filePath": "src/library-authoring/course-import/CourseImportTaskListItem.jsx", + "line": 36, + "column": 12 + }, + { + "filePath": "src/library-authoring/library-access/UserAccessWidget.jsx", + "line": 28, + "column": 4 + } + ], + "Info": [ + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 248, + "column": 20 + } + ], + "Alert.Heading": [ + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 252, + "column": 29 + } + ], + "Breadcrumb": [ + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 256, + "column": 10 + } + ], + "AlertModal": [ + { + "filePath": "src/library-authoring/create-library/LibraryCreatePage.jsx", + "line": 353, + "column": 8 + } + ], + "Spinner": [ + { + "filePath": "src/library-authoring/edit-block/LibraryBlockPage.jsx", + "line": 260, + "column": 24 + } + ], + "Add": [ + { + "filePath": "src/library-authoring/list-libraries/LibraryListPage.jsx", + "line": 158, + "column": 33 + } + ] + } + }, + { + "version": "19.9.0", + "name": "@edx/frontend-app-ora-grading", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-app-ora-grading.git" + }, + "folderName": "frontend-app-ora-grading", + "usages": { + "AlertModal": [ + { + "filePath": "src/components/ConfirmModal.jsx", + "line": 16, + "column": 2 + }, + { + "filePath": "src/components/DemoAlert/index.jsx", + "line": 18, + "column": 2 + } + ], + "ActionRow": [ + { + "filePath": "src/components/ConfirmModal.jsx", + "line": 22, + "column": 6 + }, + { + "filePath": "src/components/DemoAlert/index.jsx", + "line": 23, + "column": 6 + }, + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 51, + "column": 6 + }, + { + "filePath": "src/containers/ReviewActions/index.jsx", + "line": 27, + "column": 4 + } + ], + "Button": [ + { + "filePath": "src/components/ConfirmModal.jsx", + "line": 23, + "column": 8 + }, + { + "filePath": "src/components/ConfirmModal.jsx", + "line": 29, + "column": 8 + }, + { + "filePath": "src/components/DemoAlert/index.jsx", + "line": 24, + "column": 8 + }, + { + "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", + "line": 15, + "column": 4 + }, + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 28, + "column": 4 + }, + { + "filePath": "src/containers/ListView/EmptySubmission.jsx", + "line": 21, + "column": 6 + }, + { + "filePath": "src/containers/ListView/FilterStatusComponent.jsx", + "line": 37, + "column": 6 + }, + { + "filePath": "src/containers/ListView/ListError.jsx", + "line": 27, + "column": 6 + }, + { + "filePath": "src/containers/ListView/SelectedBulkAction.jsx", + "line": 10, + "column": 2 + }, + { + "filePath": "src/containers/ListView/TableAction.jsx", + "line": 10, + "column": 2 + }, + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 90, + "column": 20 + }, + { + "filePath": "src/containers/ReviewActions/components/StartGradingButton/index.jsx", + "line": 27, + "column": 6 + }, + { + "filePath": "src/containers/ReviewActions/index.jsx", + "line": 45, + "column": 12 + }, + { + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 26, + "column": 6 + }, + { + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 33, + "column": 6 + }, + { + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.test.jsx", + "line": 34, + "column": 2 + }, + { + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.test.jsx", + "line": 40, + "column": 2 + } + ], + "Alert": [ + { + "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", + "line": 20, + "column": 4 + }, + { + "filePath": "src/components/FilePreview/Banners/LoadingBanner.jsx", + "line": 6, + "column": 2 + }, + { + "filePath": "src/containers/DemoWarning/index.jsx", + "line": 18, + "column": 4 + }, + { + "filePath": "src/containers/ListView/ListError.jsx", + "line": 23, + "column": 2 + }, + { + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 39, + "column": 4 + } + ], + "Info": [ + { + "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", + "line": 20, + "column": 34 + }, + { + "filePath": "src/containers/DemoWarning/index.jsx", + "line": 21, + "column": 12 + }, + { + "filePath": "src/containers/ListView/ListError.jsx", + "line": 25, + "column": 10 + }, + { + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 41, + "column": 12 + } + ], + "Alert.Heading": [ + { + "filePath": "src/components/FilePreview/Banners/ErrorBanner.jsx", + "line": 21, + "column": 6 + }, + { + "filePath": "src/containers/DemoWarning/index.jsx", + "line": 23, + "column": 6 + }, + { + "filePath": "src/containers/ListView/ListError.jsx", + "line": 32, + "column": 4 + }, + { + "filePath": "src/containers/ReviewModal/ReviewErrors/ReviewError.jsx", + "line": 45, + "column": 6 + } + ], + "Spinner": [ + { + "filePath": "src/components/FilePreview/Banners/LoadingBanner.jsx", + "line": 7, + "column": 4 + }, + { + "filePath": "src/components/LoadingMessage.jsx", + "line": 12, + "column": 4 + }, + { + "filePath": "src/containers/ListView/index.jsx", + "line": 47, + "column": 12 + } + ], + "IconButton": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 52, + "column": 8 + }, + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 71, + "column": 8 + }, + { + "filePath": "src/components/InfoPopover/index.jsx", + "line": 31, + "column": 4 + }, + { + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 26, + "column": 4 + }, + { + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 41, + "column": 4 + } + ], + "Icon": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 55, + "column": 18 + }, + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 74, + "column": 18 + }, + { + "filePath": "src/components/InfoPopover/index.jsx", + "line": 35, + "column": 14 + }, + { + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 20, + "column": 6 + }, + { + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 26, + "column": 8 + }, + { + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 29, + "column": 15 + }, + { + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 30, + "column": 15 + }, + { + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 31, + "column": 16 + }, + { + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 32, + "column": 14 + }, + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 47, + "column": 18 + }, + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 50, + "column": 18 + }, + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 88, + "column": 20 + }, + { + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 32, + "column": 14 + }, + { + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 47, + "column": 14 + } + ], + "ChevronLeft": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 56, + "column": 15 + }, + { + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 31, + "column": 11 + } + ], + "Form.Group": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 60, + "column": 8 + }, + { + "filePath": "src/containers/CriterionContainer/CriterionFeedback.jsx", + "line": 50, + "column": 6 + }, + { + "filePath": "src/containers/CriterionContainer/index.jsx", + "line": 23, + "column": 4 + }, + { + "filePath": "src/containers/Rubric/RubricFeedback.jsx", + "line": 46, + "column": 6 + } + ], + "Form.Label": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 61, + "column": 10 + }, + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 69, + "column": 10 + }, + { + "filePath": "src/containers/CriterionContainer/index.jsx", + "line": 24, + "column": 6 + }, + { + "filePath": "src/containers/CriterionContainer/ReviewCriterion.jsx", + "line": 19, + "column": 10 + }, + { + "filePath": "src/containers/Rubric/RubricFeedback.jsx", + "line": 47, + "column": 8 + } + ], + "Form.Control": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 62, + "column": 10 + }, + { + "filePath": "src/containers/CriterionContainer/CriterionFeedback.jsx", + "line": 51, + "column": 8 + }, + { + "filePath": "src/containers/Rubric/RubricFeedback.jsx", + "line": 55, + "column": 8 + } + ], + "ChevronRight": [ + { + "filePath": "src/components/FilePreview/BaseRenderers/PDFRenderer.jsx", + "line": 75, + "column": 15 + }, + { + "filePath": "src/containers/ReviewActions/components/SubmissionNavigation.jsx", + "line": 46, + "column": 11 + } + ], + "Card": [ + { + "filePath": "src/components/FilePreview/FileCard.jsx", + "line": 14, + "column": 2 + }, + { + "filePath": "src/containers/ResponseDisplay/index.jsx", + "line": 50, + "column": 12 + }, + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 40, + "column": 6 + }, + { + "filePath": "src/containers/Rubric/index.jsx", + "line": 31, + "column": 6 + } + ], + "Collapsible": [ + { + "filePath": "src/components/FilePreview/FileCard.jsx", + "line": 15, + "column": 4 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 18, + "column": 2 + }, + { + "filePath": "src/components/InfoPopover/index.jsx", + "line": 21, + "column": 2 + } + ], + "Popover": [ + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 23, + "column": 6 + }, + { + "filePath": "src/components/InfoPopover/index.jsx", + "line": 26, + "column": 6 + } + ], + "Popover.Content": [ + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 24, + "column": 8 + }, + { + "filePath": "src/components/FilePreview/FileInfo.test.jsx", + "line": 22, + "column": 45 + }, + { + "filePath": "src/components/InfoPopover/index.jsx", + "line": 27, + "column": 8 + } + ], + "InfoOutline": [ + { + "filePath": "src/components/FilePreview/FileInfo.jsx", + "line": 32, + "column": 17 + }, + { + "filePath": "src/components/InfoPopover/index.jsx", + "line": 33, + "column": 11 + } + ], + "Badge": [ + { + "filePath": "src/components/StatusBadge.jsx", + "line": 33, + "column": 4 + } + ], + "Form.RadioSet": [ + { + "filePath": "src/containers/CriterionContainer/RadioCriterion.jsx", + "line": 37, + "column": 8 + } + ], + "Form.Radio": [ + { + "filePath": "src/containers/CriterionContainer/RadioCriterion.jsx", + "line": 39, + "column": 12 + } + ], + "FormControlFeedback": [ + { + "filePath": "src/containers/CriterionContainer/ReviewCriterion.jsx", + "line": 20, + "column": 10 + } + ], + "PageBanner": [ + { + "filePath": "src/containers/CTA/index.jsx", + "line": 12, + "column": 2 + } + ], + "Hyperlink": [ + { + "filePath": "src/containers/CTA/index.jsx", + "line": 15, + "column": 6 + }, + { + "filePath": "src/containers/ListView/EmptySubmission.jsx", + "line": 20, + "column": 4 + }, + { + "filePath": "src/containers/ListView/ListError.jsx", + "line": 40, + "column": 12 + }, + { + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 19, + "column": 4 + }, + { + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 25, + "column": 6 + } + ], + "Container": [ + { + "filePath": "src/containers/ListView/index.jsx", + "line": 34, + "column": 6 + } + ], + "ArrowBack": [ + { + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 20, + "column": 17 + } + ], + "Launch": [ + { + "filePath": "src/containers/ListView/ListViewBreadcrumb.jsx", + "line": 26, + "column": 19 + } + ], + "DataTable": [ + { + "filePath": "src/containers/ListView/SubmissionsTable.jsx", + "line": 76, + "column": 8 + }, + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 55, + "column": 18 + } + ], + "DataTable.TableControlBar": [ + { + "filePath": "src/containers/ListView/SubmissionsTable.jsx", + "line": 120, + "column": 10 + } + ], + "DataTable.Table": [ + { + "filePath": "src/containers/ListView/SubmissionsTable.jsx", + "line": 121, + "column": 10 + }, + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 79, + "column": 20 + } + ], + "DataTable.TableFooter": [ + { + "filePath": "src/containers/ListView/SubmissionsTable.jsx", + "line": 122, + "column": 10 + } + ], + "StatefulButton": [ + { + "filePath": "src/containers/ResponseDisplay/FileDownload.jsx", + "line": 25, + "column": 2 + }, + { + "filePath": "src/containers/Rubric/index.jsx", + "line": 41, + "column": 12 + } + ], + "Card.Section": [ + { + "filePath": "src/containers/ResponseDisplay/index.jsx", + "line": 51, + "column": 14 }, { "filePath": "src/containers/Rubric/index.jsx", @@ -18540,3101 +21186,4416 @@ "column": 8 } ], - "Collapsible.Advanced": [ + "Collapsible.Advanced": [ + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 43, + "column": 12 + } + ], + "Collapsible.Trigger": [ + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 44, + "column": 14 + } + ], + "Collapsible.Visible": [ + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 46, + "column": 16 + }, + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 49, + "column": 16 + } + ], + "ArrowDropDown": [ + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 47, + "column": 29 + } + ], + "ArrowDropUp": [ + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 50, + "column": 29 + } + ], + "Collapsible.Body": [ + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 53, + "column": 14 + } + ], + "Card.Footer": [ + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 84, + "column": 12 + } + ], + "WarningFilled": [ + { + "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "line": 88, + "column": 71 + } + ], + "FullscreenModal": [ + { + "filePath": "src/containers/ReviewModal/index.jsx", + "line": 31, + "column": 4 + } + ], + "Row": [ + { + "filePath": "src/containers/ReviewModal/ReviewContent.jsx", + "line": 22, + "column": 4 + } + ], + "Col": [ + { + "filePath": "src/containers/ReviewModal/ReviewContent.jsx", + "line": 23, + "column": 6 + } + ] + } + }, + { + "version": "20.18.2", + "name": "@edx/frontend-app-payment", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-payment.git" + }, + "folderName": "frontend-app-payment", + "usages": { + "Alert": [ + { + "filePath": "src/feedback/AlertMessage.jsx", + "line": 46, + "column": 4 + } + ], + "Hyperlink": [ + { + "filePath": "src/feedback/FallbackErrorMessage.jsx", + "line": 13, + "column": 8 + }, + { + "filePath": "src/payment/AlertCodeMessages.jsx", + "line": 22, + "column": 10 + }, + { + "filePath": "src/payment/checkout/FreeCheckoutOrderButton.jsx", + "line": 8, + "column": 2 + }, + { + "filePath": "src/payment/EmptyCartMessage.jsx", + "line": 23, + "column": 14 + }, + { + "filePath": "src/payment/EmptyCartMessage.jsx", + "line": 32, + "column": 14 + } + ], + "Collapsible": [ + { + "filePath": "src/payment/cart/Cart.jsx", + "line": 102, + "column": 12 + } + ], + "Form.Group": [ + { + "filePath": "src/payment/cart/CouponForm.jsx", + "line": 47, + "column": 8 + } + ], + "Form.Control": [ + { + "filePath": "src/payment/cart/CouponForm.jsx", + "line": 55, + "column": 10 + }, + { + "filePath": "src/payment/cart/UpdateQuantityForm.jsx", + "line": 37, + "column": 10 + } + ], + "Button": [ + { + "filePath": "src/payment/cart/CouponForm.jsx", + "line": 57, + "column": 8 + }, + { + "filePath": "src/payment/cart/CouponForm.jsx", + "line": 124, + "column": 8 + } + ], + "StatefulButton": [ + { + "filePath": "src/payment/cart/UpdateQuantityForm.jsx", + "line": 66, + "column": 6 + }, + { + "filePath": "src/payment/checkout/payment-form/PlaceOrderButton.jsx", + "line": 22, + "column": 10 + } + ] + } + }, + { + "version": "20.27.0", + "name": "@edx/frontend-app-profile", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-profile.git" + }, + "folderName": "frontend-app-profile", + "usages": { + "Alert": [ + { + "filePath": "src/profile/AgeMessage.jsx", + "line": 8, + "column": 2 + }, + { + "filePath": "src/profile/forms/SocialLinks.jsx", + "line": 170, + "column": 22 + }, + { + "filePath": "src/profile/ProfilePage.jsx", + "line": 145, + "column": 10 + } + ], + "Alert.Heading": [ + { + "filePath": "src/profile/AgeMessage.jsx", + "line": 13, + "column": 4 + } + ], + "Alert.Link": [ + { + "filePath": "src/profile/AgeMessage.jsx", + "line": 25, + "column": 4 + } + ], + "Form.Group": [ + { + "filePath": "src/profile/forms/Bio.jsx", + "line": 59, + "column": 16 + }, + { + "filePath": "src/profile/forms/Country.jsx", + "line": 70, + "column": 16 + }, + { + "filePath": "src/profile/forms/Education.jsx", + "line": 66, + "column": 16 + }, + { + "filePath": "src/profile/forms/PreferredLanguage.jsx", + "line": 80, + "column": 16 + }, + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 47, + "column": 10 + } + ], + "Hyperlink": [ + { + "filePath": "src/profile/forms/Certificates.jsx", + "line": 106, + "column": 14 + }, + { + "filePath": "src/profile/ProfilePage.jsx", + "line": 115, + "column": 6 + } + ], + "Button": [ + { + "filePath": "src/profile/forms/elements/EditButton.jsx", + "line": 13, + "column": 2 + }, + { + "filePath": "src/profile/forms/elements/FormControls.jsx", + "line": 54, + "column": 8 + }, + { + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 59, + "column": 8 + }, + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 55, + "column": 10 + }, + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 62, + "column": 10 + }, + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 66, + "column": 10 + } + ], + "StatefulButton": [ + { + "filePath": "src/profile/forms/elements/FormControls.jsx", + "line": 32, + "column": 8 + } + ], + "TransitionReplace": [ + { + "filePath": "src/profile/forms/elements/SwitchContent.jsx", + "line": 44, + "column": 4 + } + ], + "Dropdown": [ + { + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 75, + "column": 6 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 76, + "column": 8 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 79, + "column": 8 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 80, + "column": 10 + }, + { + "filePath": "src/profile/forms/ProfileAvatar.jsx", + "line": 87, + "column": 10 + } + ], + "Icon": [ + { + "filePath": "src/profile/UsernameDescription.jsx", + "line": 9, + "column": 4 + } + ], + "VisibilityOff": [ + { + "filePath": "src/profile/UsernameDescription.jsx", + "line": 9, + "column": 15 + } + ], + "ModalDialog": [ + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 28, + "column": 4 + } + ], + "ModalDialog.Hero": [ + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 35, + "column": 6 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 43, + "column": 6 + } + ], + "Container": [ + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 44, + "column": 8 + } + ], + "Form.Control": [ + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 48, + "column": 12 + } + ], + "ModalDialog.Footer": [ + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 60, + "column": 6 + } + ], + "ActionRow": [ + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 61, + "column": 8 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/skills-builder/skills-builder-modal/SkillsBuilderModal.jsx", + "line": 65, + "column": 10 + } + ] + } + }, + { + "version": "19.9.0", + "name": "@edx/frontend-app-program-console", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-program-console.git" + }, + "folderName": "frontend-app-program-console", + "usages": { + "Collapsible": [ + { + "filePath": "src/console/ConsolePage.jsx", + "line": 64, + "column": 6 + }, + { + "filePath": "src/report/reportSection.jsx", + "line": 36, + "column": 8 + } + ], + "Alert": [ + { + "filePath": "src/console/ConsolePage.jsx", + "line": 116, + "column": 8 + }, + { + "filePath": "src/console/ConsolePage.jsx", + "line": 131, + "column": 8 + }, + { + "filePath": "src/console/ConsolePage.jsx", + "line": 149, + "column": 12 + }, + { + "filePath": "src/console/ConsolePage.jsx", + "line": 171, + "column": 20 + }, + { + "filePath": "src/report/reportSection.jsx", + "line": 22, + "column": 4 + } + ], + "SearchField": [ + { + "filePath": "src/console/ConsolePage.jsx", + "line": 143, + "column": 12 + } + ], + "Pagination": [ + { + "filePath": "src/console/ConsolePage.jsx", + "line": 158, + "column": 12 + }, + { + "filePath": "src/console/ConsolePage.jsx", + "line": 194, + "column": 12 + } + ] + } + }, + { + "version": "20.25.0", + "name": "edx-frontend-app-publisher", + "repository": "https://github.com/openedx/frontend-app-publisher", + "folderName": "frontend-app-publisher", + "usages": { + "StatefulButton": [ + { + "filePath": "src/components/ActionButton/index.jsx", + "line": 8, + "column": 2 + } + ], + "Icon": [ + { + "filePath": "src/components/Collaborator/index.jsx", + "line": 32, + "column": 8 + }, + { + "filePath": "src/components/Collaborator/index.jsx", + "line": 53, + "column": 12 + }, + { + "filePath": "src/components/SidePanes/CommentsPane.jsx", + "line": 100, + "column": 24 + }, + { + "filePath": "src/components/SidePanes/UsersPane.jsx", + "line": 125, + "column": 13 + } + ], + "Alert": [ + { + "filePath": "src/components/CollaboratorPage/index.jsx", + "line": 54, + "column": 8 + }, + { + "filePath": "src/components/CollaboratorPage/index.jsx", + "line": 91, + "column": 12 + }, + { + "filePath": "src/components/CollaboratorPage/index.jsx", + "line": 115, + "column": 14 + }, + { + "filePath": "src/components/CreateCoursePage/index.jsx", + "line": 97, + "column": 8 + }, + { + "filePath": "src/components/CreateCoursePage/index.jsx", + "line": 178, + "column": 16 + }, + { + "filePath": "src/components/CreateCourseRunPage/index.jsx", + "line": 155, + "column": 12 + }, + { + "filePath": "src/components/CreateCourseRunPage/index.jsx", + "line": 180, + "column": 16 + }, + { + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 678, + "column": 8 + }, + { + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 794, + "column": 10 + }, + { + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 804, + "column": 10 + }, + { + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 854, + "column": 10 + }, + { + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 891, + "column": 12 + }, + { + "filePath": "src/components/EditCoursePage/TranscriptLanguage.jsx", + "line": 36, + "column": 10 + }, + { + "filePath": "src/components/ImageUpload/index.jsx", + "line": 95, + "column": 12 + }, + { + "filePath": "src/components/ImageUpload/index.jsx", + "line": 101, + "column": 12 + }, + { + "filePath": "src/components/ListField/index.jsx", + "line": 190, + "column": 10 + }, + { + "filePath": "src/components/ReduxFormCreatableSelect/index.jsx", + "line": 41, + "column": 12 + }, + { + "filePath": "src/components/RichEditor/index.jsx", + "line": 76, + "column": 10 + }, + { + "filePath": "src/components/SidePanes/CommentsPane.jsx", + "line": 107, + "column": 10 + }, + { + "filePath": "src/components/SidePanes/CommentsPane.jsx", + "line": 146, + "column": 12 + }, + { + "filePath": "src/components/SidePanes/UsersPane.jsx", + "line": 141, + "column": 13 + }, + { + "filePath": "src/components/StafferPage/index.jsx", + "line": 112, + "column": 8 + }, + { + "filePath": "src/components/StafferPage/index.jsx", + "line": 162, + "column": 12 + }, + { + "filePath": "src/components/StafferPage/index.jsx", + "line": 191, + "column": 16 + }, + { + "filePath": "src/components/TableComponent/index.jsx", + "line": 128, + "column": 6 + } + ], + "Alert.Heading": [ + { + "filePath": "src/components/CollaboratorPage/index.jsx", + "line": 58, + "column": 10 + }, + { + "filePath": "src/components/CreateCoursePage/index.jsx", + "line": 101, + "column": 10 + }, + { + "filePath": "src/components/EditCoursePage/index.jsx", + "line": 684, + "column": 10 + }, + { + "filePath": "src/components/StafferPage/index.jsx", + "line": 118, + "column": 10 + } + ], + "Collapsible": [ + { + "filePath": "src/components/Collapsible/index.jsx", + "line": 8, + "column": 32 + } + ], + "Collapsible.Advanced": [ + { + "filePath": "src/components/Collapsible/index.jsx", + "line": 32, + "column": 2 + } + ], + "Collapsible.Trigger": [ + { + "filePath": "src/components/Collapsible/index.jsx", + "line": 33, + "column": 4 + } + ], + "Collapsible.Visible": [ + { + "filePath": "src/components/Collapsible/index.jsx", + "line": 35, + "column": 6 + }, + { + "filePath": "src/components/Collapsible/index.jsx", + "line": 38, + "column": 6 + } + ], + "Modal": [ + { + "filePath": "src/components/ConfirmationModal/index.jsx", + "line": 13, + "column": 2 + } + ], + "SearchField": [ + { + "filePath": "src/components/CourseTable/index.jsx", + "line": 164, + "column": 10 + } + ], + "Form.Group": [ + { + "filePath": "src/components/DateTimeField/index.jsx", + "line": 87, + "column": 10 + }, + { + "filePath": "src/components/DateTimeField/index.jsx", + "line": 113, + "column": 10 + }, + { + "filePath": "src/components/RenderInputTextField/index.jsx", + "line": 18, + "column": 2 + }, + { + "filePath": "src/components/RenderSelectField/index.jsx", + "line": 15, + "column": 2 + }, + { + "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", + "line": 22, + "column": 2 + } + ], + "Form.Label": [ + { + "filePath": "src/components/DateTimeField/index.jsx", + "line": 88, + "column": 12 + }, + { + "filePath": "src/components/DateTimeField/index.jsx", + "line": 114, + "column": 12 + }, + { + "filePath": "src/components/RenderInputTextField/index.jsx", + "line": 19, + "column": 4 + }, + { + "filePath": "src/components/RenderSelectField/index.jsx", + "line": 16, + "column": 4 + }, + { + "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", + "line": 23, + "column": 4 + } + ], + "Form.Control": [ + { + "filePath": "src/components/DateTimeField/index.jsx", + "line": 96, + "column": 12 + }, + { + "filePath": "src/components/DateTimeField/index.jsx", + "line": 121, + "column": 12 + }, + { + "filePath": "src/components/RenderInputTextField/index.jsx", + "line": 22, + "column": 4 + }, + { + "filePath": "src/components/RenderSelectField/index.jsx", + "line": 19, + "column": 4 + }, + { + "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", + "line": 26, + "column": 4 + } + ], + "Hyperlink": [ + { + "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", + "line": 80, + "column": 12 + }, + { + "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", + "line": 141, + "column": 10 + }, + { + "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", + "line": 155, + "column": 10 + }, + { + "filePath": "src/components/Header/index.jsx", + "line": 36, + "column": 12 + } + ], + "OverlayTrigger": [ + { + "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", + "line": 87, + "column": 12 + }, + { + "filePath": "src/components/SidePanes/Pane.jsx", + "line": 11, + "column": 6 + } + ], + "Tooltip": [ + { + "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", + "line": 89, + "column": 23 + }, + { + "filePath": "src/components/SidePanes/Pane.jsx", + "line": 15, + "column": 10 + } + ], + "Badge": [ + { + "filePath": "src/components/EditCoursePage/CourseSkills.jsx", + "line": 29, + "column": 10 + } + ], + "Add": [ + { + "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", + "line": 118, + "column": 8 + }, + { + "filePath": "src/components/SidePanes/UsersPane.jsx", + "line": 160, + "column": 16 + } + ], + "InfoOutline": [ + { + "filePath": "src/components/FieldHelp/index.jsx", + "line": 57, + "column": 10 + }, + { + "filePath": "src/components/SidePanes/Pane.jsx", + "line": 20, + "column": 8 + } + ], + "Dropdown": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 59, + "column": 12 + } + ], + "Dropdown.Toggle": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 60, + "column": 14 + } + ], + "AvatarButton": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 60, + "column": 35 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 64, + "column": 14 + } + ], + "Dropdown.Item": [ + { + "filePath": "src/components/Header/index.jsx", + "line": 65, + "column": 16 + } + ], + "Spinner": [ + { + "filePath": "src/components/LoadingSpinner/index.jsx", + "line": 10, + "column": 4 + }, + { + "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", + "line": 71, + "column": 10 + } + ], + "Close": [ + { + "filePath": "src/components/RemoveButton/index.jsx", + "line": 20, + "column": 4 + } + ], + "Form": [ + { + "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", + "line": 60, + "column": 6 + } + ], + "Form.Switch": [ + { + "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", + "line": 61, + "column": 8 + } + ], + "TextArea": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", + "filePath": "src/components/SidePanes/CommentsPane.jsx", + "line": 123, + "column": 14 + } + ], + "Delete": [ + { + "filePath": "src/components/Staffer/index.jsx", + "line": 30, + "column": 8 + } + ], + "Edit": [ + { + "filePath": "src/components/Staffer/index.jsx", + "line": 44, + "column": 10 + } + ], + "DataTable": [ + { + "filePath": "src/components/TableComponent/index.jsx", + "line": 93, + "column": 10 + } + ], + "Pagination": [ + { + "filePath": "src/components/TableComponent/index.jsx", + "line": 106, + "column": 12 + } + ], + "ErrorIcon": [ + { + "filePath": "src/components/TableComponent/index.jsx", + "line": 130, + "column": 14 + } + ] + } + }, + { + "version": "20.26.0", + "name": "@edx/frontend-app-support", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-app-support.git" + }, + "folderName": "frontend-app-support-tools", + "usages": { + "Row": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", + "line": 45, + "column": 16 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 166, + "column": 14 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 176, + "column": 14 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 65, + "column": 10 + }, + { + "filePath": "src/users/licenses/Licenses.jsx", + "line": 34, + "column": 10 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 104, + "column": 10 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 113, + "column": 10 + }, + { + "filePath": "src/users/SingleSignOnRecords.jsx", "line": 43, + "column": 10 + } + ], + "Col": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", + "line": 46, + "column": 18 + }, + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", + "line": 49, + "column": 18 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 167, + "column": 16 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 170, + "column": 16 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 177, + "column": 16 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 180, + "column": 16 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 66, + "column": 12 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 70, + "column": 12 + }, + { + "filePath": "src/users/licenses/Licenses.jsx", + "line": 36, + "column": 14 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 105, + "column": 12 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 108, "column": 12 + }, + { + "filePath": "src/users/SingleSignOnRecords.jsx", + "line": 45, + "column": 14 + } + ], + "Card": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 10, + "column": 4 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 56, + "column": 6 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 95, + "column": 6 + } + ], + "Card.Header": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 11, + "column": 6 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 57, + "column": 8 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 75, + "column": 8 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 96, + "column": 8 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 126, + "column": 8 } ], - "Collapsible.Trigger": [ + "Badge": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 44, + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 16, + "column": 40 + }, + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 16, + "column": 83 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 67, "column": 14 } ], - "Collapsible.Visible": [ + "Card.Section": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 46, - "column": 16 + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 21, + "column": 6 }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 49, - "column": 16 + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 64, + "column": 8 + }, + { + "filePath": "src/users/licenses/LicenseCard.jsx", + "line": 83, + "column": 8 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 103, + "column": 8 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 134, + "column": 8 } ], - "ArrowDropDown": [ + "Card.Footer": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 47, - "column": 29 + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", + "line": 39, + "column": 6 } ], - "ArrowDropUp": [ + "Input": [ { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 50, - "column": 29 + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", + "line": 99, + "column": 10 + }, + { + "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "line": 51, + "column": 12 + }, + { + "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "line": 66, + "column": 12 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 120, + "column": 14 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 133, + "column": 14 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 144, + "column": 14 + }, + { + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 55, + "column": 12 + }, + { + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 122, + "column": 8 + }, + { + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 58, + "column": 8 + }, + { + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 84, + "column": 8 + }, + { + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 63, + "column": 6 + }, + { + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 73, + "column": 6 + }, + { + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 87, + "column": 6 + }, + { + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 80, + "column": 6 + }, + { + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 78, + "column": 6 + }, + { + "filePath": "src/users/EntitlementsAndEnrollmentsContainer.jsx", + "line": 15, + "column": 8 + }, + { + "filePath": "src/users/UserSearch.jsx", + "line": 21, + "column": 8 } ], - "Collapsible.Body": [ + "Button": [ + { + "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", + "line": 100, + "column": 10 + }, + { + "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "line": 76, + "column": 10 + }, + { + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 156, + "column": 10 + }, + { + "filePath": "src/userMessages/Alert.jsx", + "line": 49, + "column": 22 + }, + { + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 48, + "column": 6 + }, + { + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 80, + "column": 18 + }, + { + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 48, + "column": 8 + }, + { + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 51, + "column": 6 + }, + { + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 82, + "column": 16 + }, + { + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 28, + "column": 6 + }, + { + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 70, + "column": 12 + }, + { + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 159, + "column": 24 + }, + { + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 169, + "column": 24 + }, + { + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 166, + "column": 14 + }, + { + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 126, + "column": 14 + }, + { + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 272, + "column": 8 + }, + { + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 128, + "column": 14 + }, + { + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 250, + "column": 8 + }, + { + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 123, + "column": 14 + }, + { + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 121, + "column": 14 + }, + { + "filePath": "src/users/LearnerCredentials.jsx", + "line": 26, + "column": 10 + }, + { + "filePath": "src/users/LearnerCredentials.jsx", + "line": 52, + "column": 8 + }, + { + "filePath": "src/users/LearnerRecords.jsx", + "line": 73, + "column": 18 + }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 53, + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 115, "column": 14 - } - ], - "Card.Footer": [ + }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 84, - "column": 12 - } - ], - "WarningFilled": [ + "filePath": "src/users/UserSearch.jsx", + "line": 22, + "column": 8 + }, { - "filePath": "src/containers/ResponseDisplay/SubmissionFiles.jsx", - "line": 88, - "column": 71 + "filePath": "src/users/VerifiedName.jsx", + "line": 55, + "column": 10 } ], - "FullscreenModal": [ + "Tabs": [ { - "filePath": "src/containers/ReviewModal/index.jsx", - "line": 31, + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 19, "column": 4 - } - ], - "Row": [ + }, { - "filePath": "src/containers/ReviewModal/ReviewContent.jsx", - "line": 22, - "column": 4 + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 45, + "column": 8 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 17, + "column": 6 } ], - "Col": [ + "Tab": [ { - "filePath": "src/containers/ReviewModal/ReviewContent.jsx", - "line": 23, + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 20, "column": 6 - } - ] - } - }, - { - "version": "20.18.2", - "name": "@edx/frontend-app-payment", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-payment.git" - }, - "folderName": "frontend-app-payment", - "usages": { - "StatusAlert": [ + }, { - "filePath": "src/feedback/AlertMessage.jsx", - "line": 45, - "column": 9 - } - ], - "Hyperlink": [ + "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", + "line": 24, + "column": 6 + }, { - "filePath": "src/feedback/FallbackErrorMessage.jsx", - "line": 14, + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 55, "column": 10 }, { - "filePath": "src/payment/AlertCodeMessages.jsx", - "line": 23, - "column": 12 + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 60, + "column": 10 }, { - "filePath": "src/payment/checkout/FreeCheckoutOrderButton.jsx", - "line": 9, - "column": 4 + "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", + "line": 67, + "column": 10 }, { - "filePath": "src/payment/EmptyCartMessage.jsx", - "line": 24, - "column": 16 + "filePath": "src/users/LearnerInformation.jsx", + "line": 21, + "column": 8 }, { - "filePath": "src/payment/EmptyCartMessage.jsx", - "line": 33, - "column": 16 - } - ], - "Collapsible": [ + "filePath": "src/users/LearnerInformation.jsx", + "line": 29, + "column": 8 + }, { - "filePath": "src/payment/cart/Cart.jsx", - "line": 102, - "column": 12 - } - ], - "ValidationFormGroup": [ + "filePath": "src/users/LearnerInformation.jsx", + "line": 34, + "column": 8 + }, { - "filePath": "src/payment/cart/CouponForm.jsx", - "line": 47, + "filePath": "src/users/LearnerInformation.jsx", + "line": 45, + "column": 8 + }, + { + "filePath": "src/users/LearnerInformation.jsx", + "line": 50, "column": 8 } ], - "Input": [ + "Hyperlink": [ { - "filePath": "src/payment/cart/CouponForm.jsx", - "line": 55, - "column": 10 + "filePath": "src/ProgramEnrollments/ProgramInspector/EnrollmentDetails.jsx", + "line": 38, + "column": 18 }, { - "filePath": "src/payment/cart/UpdateQuantityForm.jsx", - "line": 37, - "column": 10 - } - ], - "Button": [ + "filePath": "src/users/CopyShowHyperLinks.jsx", + "line": 10, + "column": 6 + }, { - "filePath": "src/payment/cart/CouponForm.jsx", - "line": 57, - "column": 8 + "filePath": "src/users/CopyShowHyperLinks.jsx", + "line": 24, + "column": 6 }, { - "filePath": "src/payment/cart/CouponForm.jsx", - "line": 124, + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 67, "column": 8 - } - ], - "StatefulButton": [ + }, { - "filePath": "src/payment/cart/UpdateQuantityForm.jsx", - "line": 66, - "column": 6 + "filePath": "src/users/LearnerCredentials.jsx", + "line": 113, + "column": 14 }, { - "filePath": "src/payment/checkout/payment-form/PlaceOrderButton.jsx", - "line": 22, - "column": 10 + "filePath": "src/users/VerifiedName.jsx", + "line": 135, + "column": 6 } - ] - } - }, - { - "version": "19.25.3", - "name": "@edx/frontend-app-profile", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-profile.git" - }, - "folderName": "frontend-app-profile", - "usages": { + ], "Alert": [ { - "filePath": "src/profile/AgeMessage.jsx", - "line": 9, - "column": 4 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 112, + "column": 8 }, { - "filePath": "src/profile/forms/SocialLinks.jsx", - "line": 170, - "column": 22 + "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", + "line": 201, + "column": 16 }, { - "filePath": "src/profile/ProfilePage.jsx", - "line": 157, + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 31, + "column": 19 + }, + { + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 34, "column": 10 - } - ], - "Alert.Heading": [ + }, { - "filePath": "src/profile/AgeMessage.jsx", - "line": 14, - "column": 6 - } - ], - "Alert.Link": [ + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 31, + "column": 19 + }, { - "filePath": "src/profile/AgeMessage.jsx", - "line": 26, - "column": 6 - } - ], - "Form.Group": [ + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 34, + "column": 10 + }, { - "filePath": "src/profile/forms/Bio.jsx", - "line": 59, - "column": 16 + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 49, + "column": 12 }, { - "filePath": "src/profile/forms/Country.jsx", - "line": 70, - "column": 16 + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 119, + "column": 20 }, { - "filePath": "src/profile/forms/Education.jsx", - "line": 66, + "filePath": "src/users/EnterpriseAssociations.jsx", + "line": 40, "column": 16 }, { - "filePath": "src/profile/forms/PreferredLanguage.jsx", + "filePath": "src/users/LearnerCredentials.jsx", + "line": 16, + "column": 6 + }, + { + "filePath": "src/users/LearnerRecords.jsx", + "line": 53, + "column": 6 + }, + { + "filePath": "src/users/LearnerRecords.jsx", "line": 80, - "column": 16 + "column": 18 } ], - "Hyperlink": [ + "Dropdown": [ { - "filePath": "src/profile/forms/Certificates.jsx", - "line": 106, - "column": 14 + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 54, + "column": 6 }, { - "filePath": "src/profile/ProfilePage.jsx", - "line": 127, + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 56, "column": 6 - } - ], - "Button": [ - { - "filePath": "src/profile/forms/elements/EditButton.jsx", - "line": 14, - "column": 4 }, { - "filePath": "src/profile/forms/elements/FormControls.jsx", - "line": 54, + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 89, "column": 8 }, { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 59, + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 104, "column": 8 } ], - "StatefulButton": [ + "Dropdown.Toggle": [ { - "filePath": "src/profile/forms/elements/FormControls.jsx", - "line": 32, + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 55, "column": 8 - } - ], - "TransitionReplace": [ + }, { - "filePath": "src/profile/forms/elements/SwitchContent.jsx", - "line": 44, - "column": 4 - } - ], - "Dropdown": [ + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 57, + "column": 8 + }, { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 75, - "column": 6 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 90, + "column": 10 + }, + { + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 105, + "column": 10 } ], - "Dropdown.Toggle": [ + "AvatarButton": [ { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 76, - "column": 8 + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 55, + "column": 29 + }, + { + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 57, + "column": 57 } ], "Dropdown.Menu": [ { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 79, + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 59, "column": 8 - } - ], - "Dropdown.Item": [ + }, { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 80, + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 61, + "column": 8 + }, + { + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 93, "column": 10 }, { - "filePath": "src/profile/forms/ProfileAvatar.jsx", - "line": 87, + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 108, "column": 10 } ], - "Icon": [ + "Dropdown.Item": [ { - "filePath": "src/profile/UsernameDescription.jsx", - "line": 10, + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 70, "column": 6 - } - ], - "VisibilityOff": [ - { - "filePath": "src/profile/UsernameDescription.jsx", - "line": 10, - "column": 17 - } - ] - } - }, - { - "version": "19.9.0", - "name": "@edx/frontend-app-program-console", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-program-console.git" - }, - "folderName": "frontend-app-program-console", - "usages": { - "Collapsible": [ + }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 64, + "filePath": "src/supportHeader/DesktopHeader.jsx", + "line": 78, "column": 6 }, { - "filePath": "src/report/reportSection.jsx", - "line": 36, - "column": 8 - } - ], - "Alert": [ - { - "filePath": "src/console/ConsolePage.jsx", - "line": 116, - "column": 8 + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 72, + "column": 6 }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 131, - "column": 8 + "filePath": "src/supportHeader/MobileHeader.jsx", + "line": 80, + "column": 6 }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 149, + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 94, "column": 12 }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 171, - "column": 20 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 103, + "column": 12 }, { - "filePath": "src/report/reportSection.jsx", - "line": 22, - "column": 4 - } - ], - "SearchField": [ + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 109, + "column": 12 + }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 143, + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 121, "column": 12 } ], - "Pagination": [ + "ModalDialog": [ { - "filePath": "src/console/ConsolePage.jsx", - "line": 158, - "column": 12 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 55, + "column": 6 }, { - "filePath": "src/console/ConsolePage.jsx", - "line": 194, - "column": 12 - } - ] - } - }, - { - "version": "19.14.0", - "name": "edx-frontend-app-publisher", - "repository": "https://github.com/openedx/frontend-app-publisher", - "folderName": "frontend-app-publisher", - "usages": { - "StatefulButton": [ + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 58, + "column": 6 + }, { - "filePath": "src/components/ActionButton/index.jsx", - "line": 8, - "column": 2 - } - ], - "Icon": [ + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 58, + "column": 6 + }, { - "filePath": "src/components/Collaborator/index.jsx", - "line": 32, - "column": 8 + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 36, + "column": 6 }, { - "filePath": "src/components/Collaborator/index.jsx", - "line": 53, - "column": 10 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 146, + "column": 4 }, { - "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 117, - "column": 8 + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 191, + "column": 4 }, { - "filePath": "src/components/RemoveButton/index.jsx", - "line": 20, + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 137, "column": 4 }, { - "filePath": "src/components/SidePanes/CommentsPane.jsx", - "line": 100, - "column": 24 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 97, + "column": 4 }, { - "filePath": "src/components/SidePanes/UsersPane.jsx", - "line": 107, - "column": 13 + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 99, + "column": 4 }, { - "filePath": "src/components/SidePanes/UsersPane.jsx", - "line": 140, - "column": 16 + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 94, + "column": 4 }, { - "filePath": "src/components/Staffer/index.jsx", - "line": 29, - "column": 8 + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 92, + "column": 4 + }, + { + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 66, + "column": 6 }, { - "filePath": "src/components/Staffer/index.jsx", - "line": 43, - "column": 10 + "filePath": "src/users/VerifiedName.jsx", + "line": 148, + "column": 6 } ], - "Alert": [ + "ModalDialog.Header": [ { - "filePath": "src/components/CollaboratorPage/index.jsx", - "line": 54, + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 62, "column": 8 }, { - "filePath": "src/components/CollaboratorPage/index.jsx", - "line": 91, - "column": 12 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 65, + "column": 8 }, { - "filePath": "src/components/CollaboratorPage/index.jsx", - "line": 115, - "column": 14 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 65, + "column": 8 }, { - "filePath": "src/components/CreateCoursePage/index.jsx", - "line": 97, + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 42, "column": 8 }, { - "filePath": "src/components/CreateCoursePage/index.jsx", - "line": 178, - "column": 16 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 156, + "column": 6 }, { - "filePath": "src/components/CreateCourseRunPage/index.jsx", - "line": 155, - "column": 12 + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 201, + "column": 6 }, { - "filePath": "src/components/CreateCourseRunPage/index.jsx", - "line": 180, - "column": 16 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 148, + "column": 6 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 649, - "column": 8 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 108, + "column": 6 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 765, - "column": 10 + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 110, + "column": 6 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 775, - "column": 10 + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 105, + "column": 6 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 825, - "column": 10 + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 103, + "column": 6 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 862, - "column": 12 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 72, + "column": 8 }, { - "filePath": "src/components/EditCoursePage/TranscriptLanguage.jsx", - "line": 36, + "filePath": "src/users/VerifiedName.jsx", + "line": 157, + "column": 8 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 63, "column": 10 }, { - "filePath": "src/components/ImageUpload/index.jsx", - "line": 95, - "column": 12 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 66, + "column": 10 }, { - "filePath": "src/components/ImageUpload/index.jsx", - "line": 101, - "column": 12 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 66, + "column": 10 }, { - "filePath": "src/components/ListField/index.jsx", - "line": 191, + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 43, "column": 10 }, { - "filePath": "src/components/RichEditor/index.jsx", - "line": 76, - "column": 10 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 157, + "column": 8 }, { - "filePath": "src/components/SidePanes/CommentsPane.jsx", - "line": 107, - "column": 10 + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 202, + "column": 8 }, { - "filePath": "src/components/SidePanes/CommentsPane.jsx", - "line": 146, - "column": 12 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 149, + "column": 8 }, { - "filePath": "src/components/SidePanes/UsersPane.jsx", - "line": 122, - "column": 13 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 109, + "column": 8 }, { - "filePath": "src/components/StafferPage/index.jsx", - "line": 110, + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 111, "column": 8 }, { - "filePath": "src/components/StafferPage/index.jsx", - "line": 156, - "column": 12 + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 106, + "column": 8 }, { - "filePath": "src/components/StafferPage/index.jsx", - "line": 179, - "column": 16 + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 104, + "column": 8 }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 128, - "column": 6 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 73, + "column": 10 }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 139, - "column": 6 + "filePath": "src/users/VerifiedName.jsx", + "line": 158, + "column": 10 } ], - "Alert.Heading": [ + "ModalDialog.Body": [ { - "filePath": "src/components/CollaboratorPage/index.jsx", - "line": 58, - "column": 10 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 67, + "column": 8 }, { - "filePath": "src/components/CreateCoursePage/index.jsx", - "line": 101, - "column": 10 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 70, + "column": 8 }, { - "filePath": "src/components/EditCoursePage/index.jsx", - "line": 655, - "column": 10 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 70, + "column": 8 }, { - "filePath": "src/components/StafferPage/index.jsx", - "line": 116, - "column": 10 - } - ], - "Collapsible": [ - { - "filePath": "src/components/Collapsible/index.jsx", - "line": 8, - "column": 32 - } - ], - "Collapsible.Advanced": [ + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 47, + "column": 8 + }, { - "filePath": "src/components/Collapsible/index.jsx", - "line": 32, - "column": 2 - } - ], - "Collapsible.Trigger": [ + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 165, + "column": 6 + }, { - "filePath": "src/components/Collapsible/index.jsx", - "line": 33, - "column": 4 - } - ], - "Collapsible.Visible": [ + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 206, + "column": 6 + }, { - "filePath": "src/components/Collapsible/index.jsx", - "line": 35, + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 153, "column": 6 }, { - "filePath": "src/components/Collapsible/index.jsx", - "line": 38, + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 113, "column": 6 - } - ], - "Modal": [ + }, { - "filePath": "src/components/ConfirmationModal/index.jsx", - "line": 13, - "column": 2 - } - ], - "SearchField": [ + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 115, + "column": 6 + }, { - "filePath": "src/components/CourseTable/index.jsx", - "line": 170, - "column": 12 - } - ], - "InputText": [ + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 110, + "column": 6 + }, { - "filePath": "src/components/DateTimeField/index.jsx", - "line": 87, - "column": 10 + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 108, + "column": 6 }, { - "filePath": "src/components/DateTimeField/index.jsx", - "line": 110, - "column": 10 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 77, + "column": 8 }, { - "filePath": "src/components/RenderInputTextField/index.jsx", - "line": 18, - "column": 2 + "filePath": "src/users/VerifiedName.jsx", + "line": 162, + "column": 8 } ], - "Hyperlink": [ + "ModalDialog.Footer": [ { - "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", - "line": 79, - "column": 12 + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 70, + "column": 8 }, { - "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 140, - "column": 10 + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 77, + "column": 8 }, { - "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 154, - "column": 10 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 73, + "column": 8 }, { - "filePath": "src/components/Header/index.jsx", - "line": 36, - "column": 12 - } - ], - "OverlayTrigger": [ - { - "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", - "line": 85, - "column": 12 + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 63, + "column": 8 }, { - "filePath": "src/components/SidePanes/Pane.jsx", - "line": 12, - "column": 10 - } - ], - "Tooltip": [ + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 168, + "column": 6 + }, { - "filePath": "src/components/EditCoursePage/CollapsibleCourseRun.jsx", - "line": 87, - "column": 23 + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 209, + "column": 6 }, { - "filePath": "src/components/SidePanes/Pane.jsx", - "line": 16, - "column": 14 - } - ], - "Badge": [ + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 156, + "column": 6 + }, { - "filePath": "src/components/EditCoursePage/CourseSkills.jsx", - "line": 29, - "column": 10 - } - ], - "Chip": [ + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 116, + "column": 6 + }, { - "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 185, - "column": 8 - } - ], - "CloseSmall": [ + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 118, + "column": 6 + }, { - "filePath": "src/components/EditCoursePage/EditCourseForm.jsx", - "line": 187, - "column": 21 - } - ], - "Dropdown": [ + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 113, + "column": 6 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 60, - "column": 14 - } - ], - "Dropdown.Toggle": [ + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 111, + "column": 6 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 61, - "column": 16 - } - ], - "AvatarButton": [ + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 85, + "column": 8 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 61, - "column": 37 + "filePath": "src/users/VerifiedName.jsx", + "line": 169, + "column": 8 } ], - "Dropdown.Menu": [ + "ActionRow": [ { - "filePath": "src/components/Header/index.jsx", - "line": 65, - "column": 16 - } - ], - "Dropdown.Item": [ + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 71, + "column": 10 + }, { - "filePath": "src/components/Header/index.jsx", - "line": 66, - "column": 18 - } - ], - "Spinner": [ + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 78, + "column": 10 + }, { - "filePath": "src/components/LoadingSpinner/index.jsx", - "line": 10, - "column": 4 + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 74, + "column": 10 }, { - "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", - "line": 71, + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 64, "column": 10 - } - ], - "InputSelect": [ + }, { - "filePath": "src/components/RenderSelectField/index.jsx", - "line": 15, - "column": 2 + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 169, + "column": 8 }, { - "filePath": "src/components/SidePanes/UsersPane.jsx", - "line": 147, - "column": 16 - } - ], - "Form.Group": [ + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 210, + "column": 8 + }, { - "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", - "line": 22, - "column": 2 - } - ], - "Form.Label": [ + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 157, + "column": 8 + }, { - "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", - "line": 23, - "column": 4 - } - ], - "Form.Control": [ + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 117, + "column": 8 + }, { - "filePath": "src/components/RenderSelectField/updated-paragon-component.jsx", - "line": 26, - "column": 4 - } - ], - "Form": [ + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 119, + "column": 8 + }, { - "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", - "line": 60, - "column": 6 - } - ], - "Form.Switch": [ + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 114, + "column": 8 + }, { - "filePath": "src/components/SidePanes/CatalogInclusionPane.jsx", - "line": 61, + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 112, "column": 8 - } - ], - "TextArea": [ + }, { - "filePath": "src/components/SidePanes/CommentsPane.jsx", - "line": 123, - "column": 14 + "filePath": "src/users/SingleSignOnRecordCard.jsx", + "line": 86, + "column": 10 + }, + { + "filePath": "src/users/VerifiedName.jsx", + "line": 170, + "column": 10 } ], - "InfoOutline": [ + "ModalDialog.CloseButton": [ { - "filePath": "src/components/SidePanes/Pane.jsx", - "line": 21, + "filePath": "src/users/account-actions/CancelRetirement.jsx", + "line": 72, "column": 12 - } - ], - "DataTable": [ + }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 93, - "column": 10 - } - ], - "Pagination": [ + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 79, + "column": 12 + }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 106, + "filePath": "src/users/account-actions/ResetPassword.jsx", + "line": 75, "column": 12 - } - ], - "ErrorIcon": [ + }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 130, - "column": 14 - } - ], - "WarningFilled": [ + "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", + "line": 65, + "column": 12 + }, { - "filePath": "src/components/TableComponent/index.jsx", - "line": 141, - "column": 14 - } - ] - } - }, - { - "version": "12.8.0", - "name": "@edx/frontend-app-support", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-app-support.git" - }, - "folderName": "frontend-app-support-tools", - "usages": { - "Row": [ + "filePath": "src/users/courseSummary/CourseSummary.jsx", + "line": 170, + "column": 10 + }, { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", - "line": 45, - "column": 16 + "filePath": "src/users/enrollments/Certificates.jsx", + "line": 211, + "column": 10 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 166, - "column": 14 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 158, + "column": 10 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 176, - "column": 14 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 118, + "column": 10 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 61, + "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", + "line": 120, "column": 10 }, { - "filePath": "src/users/licenses/Licenses.jsx", - "line": 34, + "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", + "line": 115, "column": 10 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 85, + "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", + "line": 113, "column": 10 }, { "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 98, - "column": 10 + "line": 87, + "column": 12 }, { - "filePath": "src/users/SingleSignOnRecords.jsx", - "line": 43, + "filePath": "src/users/VerifiedName.jsx", + "line": 171, + "column": 12 + } + ], + "DataTable": [ + { + "filePath": "src/users/account-actions/PasswordHistory.jsx", + "line": 71, "column": 10 } ], - "Col": [ + "InputSelect": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", - "line": 46, - "column": 18 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 102, + "column": 8 }, { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollment.jsx", - "line": 49, - "column": 18 + "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", + "line": 112, + "column": 8 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 167, - "column": 16 + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 66, + "column": 8 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 170, - "column": 16 - }, + "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", + "line": 75, + "column": 8 + } + ], + "TransitionReplace": [ { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 177, - "column": 16 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 298, + "column": 6 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 180, - "column": 16 + "filePath": "src/users/enrollments/Enrollments.jsx", + "line": 312, + "column": 6 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 62, - "column": 12 + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 277, + "column": 6 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 67, - "column": 12 + "filePath": "src/users/entitlements/Entitlements.jsx", + "line": 291, + "column": 6 }, { - "filePath": "src/users/licenses/Licenses.jsx", - "line": 36, - "column": 14 - }, + "filePath": "src/users/LearnerCredentials.jsx", + "line": 23, + "column": 4 + } + ], + "OverlayTrigger": [ { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 86, - "column": 12 - }, + "filePath": "src/users/VerifiedName.jsx", + "line": 43, + "column": 8 + } + ], + "Popover": [ { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 91, + "filePath": "src/users/VerifiedName.jsx", + "line": 47, "column": 12 - }, + } + ], + "Popover.Title": [ { - "filePath": "src/users/SingleSignOnRecords.jsx", - "line": 45, + "filePath": "src/users/VerifiedName.jsx", + "line": 48, "column": 14 } ], - "Card": [ + "Popover.Content": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 10, - "column": 4 - }, + "filePath": "src/users/VerifiedName.jsx", + "line": 49, + "column": 14 + } + ] + } + }, + { + "version": "12.0.5", + "name": "@edx/frontend-component-cookie-policy-banner", + "repository": { + "type": "git", + "url": "https://github.com/openedx/frontend-component-cookie-policy-banner" + }, + "folderName": "frontend-component-cookie-policy-banner", + "usages": { + "StatusAlert": [ { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 56, + "filePath": "src/CookiePolicyBanner/index.jsx", + "line": 68, + "column": 10 + } + ] + } + }, + { + "version": "20.27.0", + "name": "@edx/frontend-component-header-edx", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-component-header-edx.git" + }, + "folderName": "frontend-component-header-edx", + "usages": { + "Dropdown": [ + { + "filePath": "src/DesktopHeader.jsx", + "line": 66, "column": 6 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 80, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 31, "column": 6 } ], - "Card.Body": [ + "Dropdown.Toggle": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 11, - "column": 6 + "filePath": "src/DesktopHeader.jsx", + "line": 67, + "column": 8 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 57, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 32, + "column": 8 + } + ], + "AvatarButton": [ + { + "filePath": "src/DesktopHeader.jsx", + "line": 69, + "column": 14 + }, + { + "filePath": "src/MobileHeader.jsx", + "line": 136, + "column": 21 + } + ], + "Dropdown.Menu": [ + { + "filePath": "src/DesktopHeader.jsx", + "line": 78, "column": 8 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 81, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 38, "column": 8 } ], - "Card.Title": [ + "Dropdown.Item": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 12, - "column": 8 + "filePath": "src/DesktopHeader.jsx", + "line": 80, + "column": 12 + }, + { + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 15, + "column": 4 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 58, - "column": 10 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 21, + "column": 6 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 74, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 40, "column": 10 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 82, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 43, "column": 10 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 110, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 51, + "column": 12 + }, + { + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 55, "column": 10 } ], - "Badge": [ + "Button": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 13, - "column": 38 + "filePath": "src/learning-header/AnonymousUserMenu.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentCard.jsx", - "line": 13, - "column": 81 + "filePath": "src/learning-header/AnonymousUserMenu.jsx", + "line": 19, + "column": 4 + } + ] + } + }, + { + "version": "20.27.0", + "name": "@edx/frontend-component-header", + "repository": { + "type": "git", + "url": "git+https://github.com/openedx/frontend-component-header.git" + }, + "folderName": "frontend-component-header", + "usages": { + "Button": [ + { + "filePath": "src/learning-header/AnonymousUserMenu.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 64, - "column": 16 + "filePath": "src/learning-header/AnonymousUserMenu.jsx", + "line": 19, + "column": 4 + }, + { + "filePath": "src/StudioHeader.test.jsx", + "line": 91, + "column": 8 } ], - "Input": [ + "Dropdown.Item": [ { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", - "line": 99, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 15, + "column": 4 + }, + { + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 32, "column": 10 }, { - "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", - "line": 51, - "column": 12 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 35, + "column": 10 }, { - "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", - "line": 66, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 39, "column": 12 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 120, - "column": 14 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 43, + "column": 10 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 133, - "column": 14 + "filePath": "src/StudioHeader.test.jsx", + "line": 85, + "column": 12 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 144, - "column": 14 + "filePath": "src/StudioHeader.test.jsx", + "line": 86, + "column": 12 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 58, + "filePath": "src/StudioHeader.test.jsx", + "line": 87, "column": 12 - }, + } + ], + "Dropdown": [ { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 121, - "column": 8 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 23, + "column": 6 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 57, + "filePath": "src/StudioHeader.test.jsx", + "line": 80, "column": 8 - }, + } + ], + "Dropdown.Toggle": [ { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 83, + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 24, "column": 8 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 62, - "column": 6 - }, + "filePath": "src/StudioHeader.test.jsx", + "line": 81, + "column": 10 + } + ], + "Dropdown.Menu": [ { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 72, - "column": 6 + "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", + "line": 30, + "column": 8 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 86, - "column": 6 - }, + "filePath": "src/StudioHeader.test.jsx", + "line": 84, + "column": 10 + } + ], + "ActionRow": [ { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 79, - "column": 6 - }, + "filePath": "src/StudioHeader.jsx", + "line": 101, + "column": 12 + } + ], + "ActionRow.Spacer": [ { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 77, + "filePath": "src/StudioHeader.test.jsx", + "line": 90, + "column": 8 + } + ] + } + }, + { + "version": "19.25.1", + "name": "@edx/frontend-enterprise-catalog-search", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-enterprise.git" + }, + "folderName": "catalog-search", + "usages": { + "Button": [ + { + "filePath": "src/ClearCurrentRefinements.jsx", + "line": 25, "column": 6 }, { - "filePath": "src/users/EntitlementsAndEnrollmentsContainer.jsx", - "line": 15, - "column": 8 + "filePath": "src/CurrentRefinements.jsx", + "line": 108, + "column": 10 }, { - "filePath": "src/users/UserSearch.jsx", + "filePath": "src/MobileFilterMenu.jsx", "line": 21, "column": 8 - } - ], - "Button": [ + }, { - "filePath": "src/FeatureBasedEnrollments/FeatureBasedEnrollmentIndexPage.jsx", - "line": 100, - "column": 10 + "filePath": "src/MobileFilterMenu.jsx", + "line": 56, + "column": 14 }, { - "filePath": "src/ProgramEnrollments/LinkProgramEnrollments.jsx", + "filePath": "src/MobileFilterMenu.jsx", "line": 76, - "column": 10 - }, + "column": 16 + } + ], + "Badge": [ { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 156, + "filePath": "src/CurrentRefinements.jsx", + "line": 82, "column": 10 }, { - "filePath": "src/userMessages/Alert.jsx", - "line": 49, - "column": 22 + "filePath": "src/CurrentRefinements.jsx", + "line": 96, + "column": 10 }, { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 46, + "filePath": "src/FacetItem.jsx", + "line": 22, "column": 6 - }, - { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 59, - "column": 12 - }, + } + ], + "Dropdown": [ { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 46, - "column": 6 + "filePath": "src/FacetDropdown.jsx", + "line": 16, + "column": 4 }, { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 49, + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 29, "column": 6 - }, - { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 62, - "column": 12 - }, + } + ], + "Dropdown.Toggle": [ { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 28, + "filePath": "src/FacetDropdown.jsx", + "line": 17, "column": 6 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 41, - "column": 10 - }, + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 30, + "column": 8 + } + ], + "Dropdown.Menu": [ { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 157, - "column": 24 + "filePath": "src/FacetDropdown.jsx", + "line": 27, + "column": 6 }, { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 167, - "column": 24 - }, + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 37, + "column": 8 + } + ], + "Dropdown.Item": [ { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 153, - "column": 12 + "filePath": "src/FacetItem.jsx", + "line": 11, + "column": 2 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 113, - "column": 12 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 38, + "column": 10 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 270, - "column": 8 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 50, + "column": 10 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 115, - "column": 12 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 62, + "column": 10 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 249, - "column": 8 - }, + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 76, + "column": 14 + } + ], + "Input": [ { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 110, - "column": 12 + "filePath": "src/FacetItem.jsx", + "line": 12, + "column": 4 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 108, + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 39, "column": 12 }, { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 19, + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 51, "column": 12 }, { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 45, - "column": 10 - }, - { - "filePath": "src/users/LearnerRecords.jsx", - "line": 67, - "column": 18 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 63, + "column": 12 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 100, - "column": 14 + "filePath": "src/LearningTypeRadioFacet.jsx", + "line": 77, + "column": 16 }, { - "filePath": "src/users/UserSearch.jsx", - "line": 22, + "filePath": "src/TypeaheadFacetDropdown.jsx", + "line": 26, "column": 8 - }, - { - "filePath": "src/users/VerifiedName.jsx", - "line": 55, - "column": 10 } ], - "Tabs": [ + "SearchField.Advanced": [ { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 20, + "filePath": "src/SearchBox.jsx", + "line": 151, "column": 6 - }, + } + ], + "SearchField.Input": [ { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 45, + "filePath": "src/SearchBox.jsx", + "line": 162, "column": 8 - }, - { - "filePath": "src/users/LearnerInformation.jsx", - "line": 17, - "column": 6 } ], - "Tab": [ + "SearchField.ClearButton": [ { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 21, + "filePath": "src/SearchBox.jsx", + "line": 169, "column": 8 - }, + } + ], + "SearchField.SubmitButton": [ { - "filePath": "src/ProgramEnrollments/ProgramEnrollmentsIndexPage.jsx", - "line": 25, + "filePath": "src/SearchBox.jsx", + "line": 170, "column": 8 - }, - { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 55, - "column": 10 - }, + } + ], + "MediaQuery": [ { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 60, - "column": 10 + "filePath": "src/SearchFilters.jsx", + "line": 84, + "column": 6 }, { - "filePath": "src/SupportToolsTab/SupportToolsTab.jsx", - "line": 67, - "column": 10 - }, + "filePath": "src/SearchFilters.jsx", + "line": 89, + "column": 6 + } + ], + "breakpoints": [ { - "filePath": "src/users/LearnerInformation.jsx", - "line": 21, - "column": 8 + "filePath": "src/SearchFilters.jsx", + "line": 84, + "column": 28 }, { - "filePath": "src/users/LearnerInformation.jsx", - "line": 29, - "column": 8 + "filePath": "src/SearchFilters.jsx", + "line": 89, + "column": 28 }, { - "filePath": "src/users/LearnerInformation.jsx", - "line": 34, - "column": 8 - }, + "filePath": "src/tests/SearchFilters.test.jsx", + "line": 13, + "column": 47 + } + ], + "Container": [ { - "filePath": "src/users/LearnerInformation.jsx", - "line": 45, - "column": 8 - }, + "filePath": "src/SearchHeader.jsx", + "line": 41, + "column": 6 + } + ], + "Row": [ { - "filePath": "src/users/LearnerInformation.jsx", - "line": 50, + "filePath": "src/SearchHeader.jsx", + "line": 42, "column": 8 } ], - "Hyperlink": [ + "Col": [ { - "filePath": "src/ProgramEnrollments/ProgramInspector/EnrollmentDetails.jsx", - "line": 38, - "column": 18 + "filePath": "src/SearchHeader.jsx", + "line": 43, + "column": 10 }, { - "filePath": "src/users/CopyShowHyperLinks.jsx", - "line": 10, - "column": 6 - }, + "filePath": "src/SearchHeader.jsx", + "line": 62, + "column": 10 + } + ], + "Pagination": [ { - "filePath": "src/users/CopyShowHyperLinks.jsx", - "line": 23, - "column": 6 - }, + "filePath": "src/SearchPagination.jsx", + "line": 53, + "column": 4 + } + ], + "ResponsiveContext.Provider": [ { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 67, - "column": 8 - }, + "filePath": "src/tests/SearchFilters.test.jsx", + "line": 15, + "column": 4 + } + ] + } + }, + { + "version": "12.2.0", + "name": "@edx/frontend-learner-portal-base", + "repository": "https://github.com/edx/frontend-learner-portal-base", + "folderName": "frontend-learner-portal-base", + "usages": { + "Dropdown.Deprecated": [ { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 107, - "column": 16 + "filePath": "src/components/course-enrollments/course-cards/BaseCourseCard.jsx", + "line": 150, + "column": 10 + } + ], + "Modal": [ + { + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 111, + "column": 6 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 135, + "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 74, "column": 6 } ], - "Alert": [ + "StatusAlert": [ { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 112, - "column": 8 + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 116, + "column": 14 }, { - "filePath": "src/ProgramEnrollments/ProgramInspector/ProgramInspector.jsx", - "line": 201, - "column": 16 + "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", + "line": 11, + "column": 4 }, { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 29, - "column": 19 + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 56, + "column": 4 }, { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 32, - "column": 10 - }, + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 76, + "column": 6 + } + ], + "Input": [ { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 29, - "column": 19 - }, + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 133, + "column": 14 + } + ], + "StatefulButton": [ { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 32, + "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", + "line": 149, "column": 10 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 52, - "column": 12 - }, - { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 117, - "column": 20 - }, + "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", + "line": 78, + "column": 10 + } + ], + "Button": [ { - "filePath": "src/users/EnterpriseAssociations.jsx", - "line": 40, - "column": 16 - }, + "filePath": "src/components/course-enrollments/course-cards/UpcomingCourseCard.jsx", + "line": 10, + "column": 4 + } + ], + "breakpoints": [ { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 119, - "column": 16 + "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", + "line": 126, + "column": 30 }, { - "filePath": "src/users/LearnerRecords.jsx", - "line": 74, - "column": 18 + "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", + "line": 161, + "column": 26 }, { - "filePath": "src/users/LearnerRecords.jsx", - "line": 140, - "column": 14 + "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", + "line": 174, + "column": 26 } ], - "Dropdown": [ - { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 55, - "column": 8 - }, + "Collapsible": [ { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 57, + "filePath": "src/components/course-enrollments/CourseSection.jsx", + "line": 80, "column": 8 - }, + } + ] + } + }, + { + "version": "20.28.0", + "name": "@edx/frontend-lib-content-components", + "repository": { + "type": "git", + "url": "git+https://github.com/edx/frontend-lib-content-components.git" + }, + "folderName": "frontend-lib-content-components", + "usages": { + "Toast": [ { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 87, - "column": 8 + "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", + "line": 33, + "column": 6 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 103, + "filePath": "src/editors/containers/TextEditor/index.jsx", + "line": 111, "column": 8 } ], - "Dropdown.Toggle": [ + "ModalDialog.Footer": [ { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 56, - "column": 10 + "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", + "line": 38, + "column": 6 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 58, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", + "line": 26, + "column": 4 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 88, - "column": 10 + "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "line": 38, + "column": 4 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 104, - "column": 10 + "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", + "line": 33, + "column": 4 } ], - "AvatarButton": [ + "ActionRow": [ { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 56, - "column": 31 + "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", + "line": 39, + "column": 8 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 58, - "column": 59 - } - ], - "Dropdown.Menu": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 21, + "column": 4 + }, { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 60, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 18, + "column": 2 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 62, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 29, + "column": 8 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 91, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 46, + "column": 16 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 107, - "column": 10 - } - ], - "Dropdown.Item": [ + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 69, + "column": 14 + }, { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 72, + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", + "line": 27, "column": 6 }, { - "filePath": "src/supportHeader/DesktopHeader.jsx", - "line": 80, + "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "line": 39, "column": 6 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 74, - "column": 6 + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", + "line": 22, + "column": 2 }, { - "filePath": "src/supportHeader/MobileHeader.jsx", - "line": 82, + "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", + "line": 34, "column": 6 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 92, - "column": 12 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 66, + "column": 10 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 101, - "column": 12 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 49, + "column": 18 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 108, - "column": 12 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 68, + "column": 18 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 120, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 93, + "column": 18 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 119, + "column": 18 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 36, + "column": 6 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 24, + "column": 4 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 123, "column": 12 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 77, + "column": 10 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 106, + "column": 8 } ], - "Modal": [ + "Hyperlink": [ { - "filePath": "src/users/account-actions/CancelRetirement.jsx", - "line": 54, - "column": 6 + "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", + "line": 44, + "column": 10 }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 56, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", + "line": 29, + "column": 8 }, { - "filePath": "src/users/account-actions/ResetPassword.jsx", - "line": 57, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 37, + "column": 8 + }, + { + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 79, "column": 6 }, { - "filePath": "src/users/account-actions/TogglePasswordStatus.jsx", - "line": 36, + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", + "line": 35, "column": 6 }, { - "filePath": "src/users/courseSummary/CourseSummary.jsx", - "line": 146, - "column": 4 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", + "line": 31, + "column": 8 + } + ], + "ActionRow.Spacer": [ + { + "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", + "line": 49, + "column": 10 }, { - "filePath": "src/users/enrollments/Certificates.jsx", - "line": 189, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 25, "column": 4 }, { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 136, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 31, + "column": 10 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 96, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 35, + "column": 10 }, { - "filePath": "src/users/entitlements/CreateEntitlementForm.jsx", - "line": 98, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 50, + "column": 18 }, { - "filePath": "src/users/entitlements/ExpireEntitlementForm.jsx", - "line": 93, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 73, + "column": 16 }, { - "filePath": "src/users/entitlements/ReissueEntitlementForm.jsx", - "line": 91, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", + "line": 28, + "column": 8 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 64, - "column": 6 + "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "line": 41, + "column": 8 }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 149, - "column": 6 - } - ], - "DataTable": [ + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", + "line": 45, + "column": 4 + }, { - "filePath": "src/users/account-actions/PasswordHistory.jsx", - "line": 63, - "column": 10 - } - ], - "InputSelect": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 68, + "column": 12 + }, { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 101, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 54, + "column": 20 }, { - "filePath": "src/users/enrollments/ChangeEnrollmentForm.jsx", - "line": 111, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 73, + "column": 20 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 65, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 98, + "column": 20 }, { - "filePath": "src/users/enrollments/CreateEnrollmentForm.jsx", - "line": 74, - "column": 8 - } - ], - "TransitionReplace": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 124, + "column": 20 + }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 296, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 54, + "column": 12 }, { - "filePath": "src/users/enrollments/Enrollments.jsx", - "line": 310, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 26, "column": 6 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 276, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 144, + "column": 14 }, { - "filePath": "src/users/entitlements/Entitlements.jsx", - "line": 290, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 82, + "column": 12 }, { - "filePath": "src/users/LearnerCredentials.jsx", - "line": 16, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 127, + "column": 10 } ], - "Card.Subtitle": [ + "Button": [ { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 63, - "column": 14 + "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", + "line": 50, + "column": 10 }, { - "filePath": "src/users/licenses/LicenseCard.jsx", - "line": 68, - "column": 14 + "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", + "line": 57, + "column": 10 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 87, - "column": 14 + "filePath": "src/editors/containers/EditorContainer/index.jsx", + "line": 36, + "column": 10 }, { - "filePath": "src/users/SingleSignOnRecordCard.jsx", - "line": 92, - "column": 14 - } - ], - "OverlayTrigger": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 89, + "column": 12 + }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 43, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", + "line": 34, "column": 8 - } - ], - "Popover": [ + }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 47, - "column": 12 - } - ], - "Popover.Title": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", + "line": 37, + "column": 8 + }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 48, - "column": 14 - } - ], - "Popover.Content": [ + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", + "line": 39, + "column": 6 + }, { - "filePath": "src/users/VerifiedName.jsx", - "line": 49, - "column": 14 - } - ] - } - }, - { - "version": "12.0.5", - "name": "@edx/frontend-component-cookie-policy-banner", - "repository": { - "type": "git", - "url": "https://github.com/openedx/frontend-component-cookie-policy-banner" - }, - "folderName": "frontend-component-cookie-policy-banner", - "usages": { - "StatusAlert": [ + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", + "line": 29, + "column": 8 + }, { - "filePath": "src/CookiePolicyBanner/index.jsx", - "line": 66, - "column": 10 - } - ] - } - }, - { - "version": "19.9.0", - "name": "@edx/frontend-component-header-edx", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-component-header-edx.git" - }, - "folderName": "frontend-component-header-edx", - "usages": { - "Dropdown": [ + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/SelectTypeFooter.jsx", + "line": 36, + "column": 8 + }, { - "filePath": "src/DesktopHeader.jsx", - "line": 66, - "column": 6 + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/index.jsx", + "line": 47, + "column": 8 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 31, - "column": 6 - } - ], - "Dropdown.Toggle": [ + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/index.jsx", + "line": 64, + "column": 6 + }, { - "filePath": "src/DesktopHeader.jsx", - "line": 67, + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", + "line": 50, "column": 8 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 32, + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", + "line": 56, "column": 8 - } - ], - "AvatarButton": [ + }, { - "filePath": "src/DesktopHeader.jsx", - "line": 69, - "column": 14 + "filePath": "src/editors/containers/TextEditor/components/SourceCodeModal/index.jsx", + "line": 30, + "column": 8 }, { - "filePath": "src/MobileHeader.jsx", - "line": 136, + "filePath": "src/editors/containers/VideoEditor/components/SelectVideoModal.jsx", + "line": 39, "column": 21 - } - ], - "Dropdown.Menu": [ - { - "filePath": "src/DesktopHeader.jsx", - "line": 78, - "column": 8 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 38, - "column": 8 - } - ], - "Dropdown.Item": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 99, + "column": 10 + }, { - "filePath": "src/DesktopHeader.jsx", - "line": 80, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", + "line": 71, "column": 12 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 15, - "column": 4 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 112, + "column": 10 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 21, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 34, + "column": 4 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 40, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 165, "column": 10 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 43, - "column": 10 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 58, + "column": 16 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 51, - "column": 12 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 61, + "column": 16 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 55, - "column": 10 - } - ], - "Button": [ - { - "filePath": "src/learning-header/AnonymousUserMenu.jsx", - "line": 13, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 131, "column": 6 }, { - "filePath": "src/learning-header/AnonymousUserMenu.jsx", - "line": 20, - "column": 6 - } - ] - } - }, - { - "version": "19.25.3", - "name": "@edx/frontend-component-header", - "repository": { - "type": "git", - "url": "git+https://github.com/openedx/frontend-component-header.git" - }, - "folderName": "frontend-component-header", - "usages": { - "Button": [ - { - "filePath": "src/learning-header/AnonymousUserMenu.jsx", + "filePath": "src/editors/sharedComponents/Button/index.jsx", "line": 12, - "column": 4 + "column": 2 }, { - "filePath": "src/learning-header/AnonymousUserMenu.jsx", - "line": 19, - "column": 4 + "filePath": "src/editors/sharedComponents/CodeEditor/index.jsx", + "line": 32, + "column": 8 }, { - "filePath": "src/StudioHeader.test.jsx", - "line": 91, - "column": 8 + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 40, + "column": 12 } ], - "Dropdown.Item": [ + "Spinner": [ { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 15, - "column": 4 + "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", + "line": 63, + "column": 16 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 32, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/index.jsx", + "line": 23, + "column": 8 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 35, + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/Gallery.jsx", + "line": 30, + "column": 6 + }, + { + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", + "line": 84, "column": 10 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 39, - "column": 12 + "filePath": "src/editors/containers/TextEditor/index.jsx", + "line": 118, + "column": 14 }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 43, + "filePath": "src/editors/containers/VideoEditor/index.jsx", + "line": 41, "column": 10 }, { - "filePath": "src/StudioHeader.test.jsx", - "line": 85, + "filePath": "src/example.jsx", + "line": 48, "column": 12 + } + ], + "Form.Group": [ + { + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.jsx", + "line": 15, + "column": 2 }, { - "filePath": "src/StudioHeader.test.jsx", - "line": 86, - "column": 12 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Feedback/FeedbackControl.jsx", + "line": 12, + "column": 2 }, { - "filePath": "src/StudioHeader.test.jsx", - "line": 87, - "column": 12 - } - ], - "Dropdown": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GeneralFeedback/index.jsx", + "line": 27, + "column": 6 + }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 23, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/MatlabCard.jsx", + "line": 36, "column": 6 }, { - "filePath": "src/StudioHeader.test.jsx", - "line": 80, - "column": 8 - } - ], - "Dropdown.Toggle": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Randomization/index.jsx", + "line": 29, + "column": 6 + }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 24, - "column": 8 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 34, + "column": 6 }, { - "filePath": "src/StudioHeader.test.jsx", - "line": 81, - "column": 10 - } - ], - "Dropdown.Menu": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 45, + "column": 6 + }, { - "filePath": "src/learning-header/AuthenticatedUserDropdown.jsx", - "line": 30, - "column": 8 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 41, + "column": 6 }, { - "filePath": "src/StudioHeader.test.jsx", - "line": 84, - "column": 10 - } - ], - "ActionRow": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 59, + "column": 8 + }, { - "filePath": "src/StudioHeader.jsx", - "line": 101, - "column": 12 - } - ], - "ActionRow.Spacer": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 78, + "column": 6 + }, { - "filePath": "src/StudioHeader.test.jsx", - "line": 90, - "column": 8 - } - ] - } - }, - { - "version": "19.25.1", - "name": "@edx/frontend-enterprise-catalog-search", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-enterprise.git" - }, - "folderName": "catalog-search", - "usages": { - "Button": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TimerCard.jsx", + "line": 27, + "column": 6 + }, { - "filePath": "src/ClearCurrentRefinements.jsx", - "line": 25, + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 28, "column": 6 }, { - "filePath": "src/CurrentRefinements.jsx", - "line": 108, - "column": 10 + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", + "line": 28, + "column": 2 + }, + { + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", + "line": 38, + "column": 2 + }, + { + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", + "line": 23, + "column": 4 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 47, + "column": 8 }, { - "filePath": "src/MobileFilterMenu.jsx", - "line": 21, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 59, "column": 8 }, { - "filePath": "src/MobileFilterMenu.jsx", - "line": 56, - "column": 14 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 35, + "column": 6 }, { - "filePath": "src/MobileFilterMenu.jsx", - "line": 76, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 48, "column": 16 - } - ], - "Badge": [ + }, { - "filePath": "src/CurrentRefinements.jsx", - "line": 82, - "column": 10 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 67, + "column": 16 }, { - "filePath": "src/CurrentRefinements.jsx", - "line": 96, - "column": 10 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 92, + "column": 16 }, { - "filePath": "src/FacetItem.jsx", - "line": 22, - "column": 6 - } - ], - "Dropdown": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 118, + "column": 16 + }, { - "filePath": "src/FacetDropdown.jsx", - "line": 16, - "column": 4 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 116, + "column": 10 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 29, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 59, "column": 6 - } - ], - "Dropdown.Toggle": [ + }, { - "filePath": "src/FacetDropdown.jsx", - "line": 17, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 60, "column": 6 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 30, + "filePath": "www/src/Gallery.jsx", + "line": 41, "column": 8 - } - ], - "Dropdown.Menu": [ - { - "filePath": "src/FacetDropdown.jsx", - "line": 27, - "column": 6 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 37, + "filePath": "www/src/Gallery.jsx", + "line": 52, "column": 8 } ], - "Dropdown.Item": [ + "Form.Control": [ { - "filePath": "src/FacetItem.jsx", - "line": 11, - "column": 2 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.jsx", + "line": 19, + "column": 4 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 38, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 49, + "column": 8 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 50, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Feedback/FeedbackControl.jsx", + "line": 22, + "column": 4 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 62, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GeneralFeedback/index.jsx", + "line": 28, + "column": 8 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 76, - "column": 14 - } - ], - "Input": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 22, + "column": 6 + }, { - "filePath": "src/FacetItem.jsx", - "line": 12, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 19, "column": 4 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 39, - "column": 12 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/MatlabCard.jsx", + "line": 37, + "column": 8 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 51, - "column": 12 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/Randomization/index.jsx", + "line": 30, + "column": 8 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 63, - "column": 12 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 35, + "column": 8 }, { - "filePath": "src/LearningTypeRadioFacet.jsx", - "line": 77, - "column": 16 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 46, + "column": 8 }, { - "filePath": "src/TypeaheadFacetDropdown.jsx", - "line": 26, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 42, "column": 8 - } - ], - "SearchField.Advanced": [ + }, { - "filePath": "src/SearchBox.jsx", - "line": 151, - "column": 6 - } - ], - "SearchField.Input": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 60, + "column": 10 + }, { - "filePath": "src/SearchBox.jsx", - "line": 162, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ShowAnswerCard.jsx", + "line": 79, "column": 8 - } - ], - "SearchField.ClearButton": [ + }, { - "filePath": "src/SearchBox.jsx", - "line": 169, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TimerCard.jsx", + "line": 28, "column": 8 - } - ], - "SearchField.SubmitButton": [ + }, { - "filePath": "src/SearchBox.jsx", - "line": 170, - "column": 8 - } - ], - "MediaQuery": [ + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", + "line": 32, + "column": 4 + }, { - "filePath": "src/SearchFilters.jsx", - "line": 84, + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", + "line": 43, "column": 6 }, { - "filePath": "src/SearchFilters.jsx", - "line": 89, + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", + "line": 50, "column": 6 - } - ], - "breakpoints": [ + }, { - "filePath": "src/SearchFilters.jsx", - "line": 84, - "column": 28 + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", + "line": 24, + "column": 6 }, { - "filePath": "src/SearchFilters.jsx", - "line": 89, - "column": 28 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 48, + "column": 10 }, { - "filePath": "src/tests/SearchFilters.test.jsx", - "line": 15, - "column": 50 - } - ], - "Container": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 60, + "column": 10 + }, { - "filePath": "src/SearchHeader.jsx", + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", "line": 37, - "column": 6 - } - ], - "Row": [ - { - "filePath": "src/SearchHeader.jsx", - "line": 38, "column": 8 - } - ], - "Col": [ - { - "filePath": "src/SearchHeader.jsx", - "line": 39, - "column": 10 }, { - "filePath": "src/SearchHeader.jsx", - "line": 58, - "column": 10 - } - ], - "Pagination": [ - { - "filePath": "src/SearchPagination.jsx", - "line": 53, - "column": 4 - } - ], - "ResponsiveContext.Provider": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", + "line": 60, + "column": 8 + }, { - "filePath": "src/tests/SearchFilters.test.jsx", - "line": 15, - "column": 6 - } - ] - } - }, - { - "version": "12.2.0", - "name": "@edx/frontend-learner-portal-base", - "repository": "https://github.com/edx/frontend-learner-portal-base", - "folderName": "frontend-learner-portal-base", - "usages": { - "Dropdown.Deprecated": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 62, + "column": 10 + }, { - "filePath": "src/components/course-enrollments/course-cards/BaseCourseCard.jsx", - "line": 150, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 71, "column": 10 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 89, + "column": 12 } ], - "Modal": [ + "Form": [ { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 111, - "column": 6 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.test.jsx", + "line": 26, + "column": 34 }, { - "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", - "line": 74, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Checker/index.jsx", + "line": 8, + "column": 20 + }, + { + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Checker/index.jsx", + "line": 10, + "column": 18 } ], - "StatusAlert": [ + "ButtonGroup": [ { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 116, - "column": 14 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 16, + "column": 2 }, { - "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/ModalError.jsx", - "line": 11, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ResetCard.jsx", + "line": 33, + "column": 6 + } + ], + "IconButtonWithTooltip": [ + { + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 17, "column": 4 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 56, + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 24, "column": 4 }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 76, - "column": 6 - } - ], - "Input": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 55, + "column": 12 + }, { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 133, - "column": 14 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 94, + "column": 12 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 95, + "column": 12 } ], - "StatefulButton": [ + "Check": [ { - "filePath": "src/components/course-enrollments/course-cards/email-settings/EmailSettingsModal.jsx", - "line": 149, - "column": 10 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 20, + "column": 11 }, { - "filePath": "src/components/course-enrollments/course-cards/mark-complete-modal/MarkCompleteModal.jsx", - "line": 78, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TypeRow.jsx", + "line": 37, + "column": 43 } ], - "Button": [ + "Icon": [ { - "filePath": "src/components/course-enrollments/course-cards/UpcomingCourseCard.jsx", - "line": 10, - "column": 4 - } - ], - "breakpoints": [ + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 21, + "column": 14 + }, { - "filePath": "src/components/course-enrollments/CourseEnrollments.jsx", - "line": 126, - "column": 30 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 28, + "column": 14 }, { - "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", - "line": 161, - "column": 26 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", + "line": 55, + "column": 16 }, { - "filePath": "src/components/course-enrollments/tests/CourseEnrollments.test.jsx", - "line": 174, - "column": 26 - } - ], - "Collapsible": [ + "filePath": "src/editors/containers/EditorContainer/index.jsx", + "line": 59, + "column": 20 + }, { - "filePath": "src/components/course-enrollments/CourseSection.jsx", - "line": 80, - "column": 8 - } - ] - } - }, - { - "version": "20.18.0", - "name": "@edx/frontend-lib-content-components", - "repository": { - "type": "git", - "url": "git+https://github.com/edx/frontend-lib-content-components.git" - }, - "folderName": "frontend-lib-content-components", - "usages": { - "Toast": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 72, + "column": 20 + }, { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 26, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 79, + "column": 18 }, { - "filePath": "src/editors/containers/TextEditor/index.jsx", - "line": 111, - "column": 8 - } - ], - "ModalDialog.Footer": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 29, + "column": 18 + }, { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 31, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 28, + "column": 14 }, { - "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", - "line": 38, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/TypeRow.jsx", + "line": 37, + "column": 32 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 33, - "column": 4 - } - ], - "ActionRow": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 25, + "column": 14 + }, { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 32, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 28, + "column": 14 }, { - "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", - "line": 39, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 30, + "column": 46 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", - "line": 22, - "column": 2 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", + "line": 28, + "column": 22 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 34, - "column": 6 + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", + "line": 64, + "column": 16 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 65, - "column": 10 - } - ], - "ActionRow.Spacer": [ + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", + "line": 32, + "column": 26 + }, { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 33, - "column": 8 + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", + "line": 40, + "column": 16 }, { - "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", "line": 41, - "column": 8 + "column": 22 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", - "line": 45, - "column": 4 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 42, + "column": 96 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 48, + "column": 98 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 67, - "column": 12 - } - ], - "Button": [ + "line": 74, + "column": 24 + }, { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 34, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 26, + "column": 50 }, { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 41, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 27, + "column": 48 }, { - "filePath": "src/editors/containers/TextEditor/components/CodeEditor/index.jsx", - "line": 87, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 28, + "column": 27 }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/index.jsx", - "line": 47, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 29, + "column": 29 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 30, + "column": 29 }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/index.jsx", - "line": 64, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "line": 31, + "column": 26 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", "line": 50, - "column": 8 + "column": 20 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", - "line": 56, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 69, + "column": 20 }, { - "filePath": "src/editors/containers/TextEditor/components/SourceCodeModal/index.jsx", - "line": 30, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 94, + "column": 20 }, { - "filePath": "src/editors/containers/VideoEditor/components/SelectVideoModal.jsx", - "line": 39, - "column": 21 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 120, + "column": 20 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 98, - "column": 10 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 56, + "column": 22 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", - "line": 74, - "column": 12 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 97, + "column": 22 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 110, - "column": 10 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 29, + "column": 16 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 161, - "column": 10 + "line": 142, + "column": 16 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 55, - "column": 16 + "line": 85, + "column": 24 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 58, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 41, "column": 16 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 119, - "column": 6 + "line": 100, + "column": 22 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 125, + "column": 12 } ], - "Spinner": [ - { - "filePath": "src/editors/containers/EditorContainer/components/EditorFooter/index.jsx", - "line": 47, - "column": 14 - }, + "Close": [ { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/Gallery.jsx", - "line": 30, - "column": 6 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", + "line": 27, + "column": 11 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", - "line": 84, - "column": 10 + "filePath": "src/editors/containers/EditorContainer/index.jsx", + "line": 58, + "column": 17 }, { - "filePath": "src/editors/containers/TextEditor/index.jsx", - "line": 118, - "column": 14 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", + "line": 27, + "column": 19 }, { - "filePath": "src/editors/containers/VideoEditor/index.jsx", - "line": 41, - "column": 10 + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", + "line": 37, + "column": 23 }, { - "filePath": "src/example.jsx", - "line": 48, - "column": 12 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 28, + "column": 13 } ], - "Form.Group": [ + "Truncate": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.jsx", - "line": 17, - "column": 4 - }, + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", + "line": 50, + "column": 6 + } + ], + "IconButton": [ { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", - "line": 28, - "column": 2 + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", + "line": 53, + "column": 6 }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", - "line": 38, - "column": 2 + "filePath": "src/editors/containers/EditorContainer/index.jsx", + "line": 57, + "column": 10 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", - "line": 23, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 70, + "column": 10 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget.jsx", - "line": 49, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 77, "column": 8 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget.jsx", - "line": 61, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 27, "column": 8 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 34, - "column": 6 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 34, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", + "line": 26, "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 112, + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 30, "column": 10 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 60, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", + "line": 26, + "column": 12 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 55, + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", + "line": 57, "column": 6 }, { - "filePath": "www/src/Gallery.jsx", - "line": 29, - "column": 8 + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", + "line": 31, + "column": 16 }, { - "filePath": "www/src/Gallery.jsx", - "line": 40, - "column": 8 - } - ], - "Form.Control": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.jsx", - "line": 22, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 42, + "column": 10 }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", - "line": 32, - "column": 4 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 48, + "column": 10 }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", - "line": 43, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", + "line": 72, + "column": 20 }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", - "line": 50, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 27, "column": 6 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", - "line": 24, - "column": 6 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 84, + "column": 14 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget.jsx", - "line": 50, - "column": 10 - }, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", + "line": 39, + "column": 12 + } + ], + "EditOutline": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget.jsx", - "line": 62, - "column": 10 - }, + "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", + "line": 59, + "column": 13 + } + ], + "ModalDialog.Header": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 36, - "column": 8 + "filePath": "src/editors/containers/EditorContainer/index.jsx", + "line": 49, + "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/LanguageSelector.jsx", - "line": 61, - "column": 8 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", + "line": 22, + "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 57, - "column": 10 + "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "line": 30, + "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 72, - "column": 12 + "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", + "line": 25, + "column": 4 } ], - "Form": [ + "ModalDialog.Body": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditableHeader.test.jsx", - "line": 26, - "column": 34 - } - ], - "ButtonGroup": [ + "filePath": "src/editors/containers/EditorContainer/index.jsx", + "line": 64, + "column": 6 + }, + { + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", + "line": 34, + "column": 6 + }, + { + "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "line": 35, + "column": 4 + }, { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 16, - "column": 2 + "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", + "line": 30, + "column": 4 } ], - "IconButtonWithTooltip": [ + "Collapsible.Advanced": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 17, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 36, "column": 4 }, { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 24, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 15, + "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 51, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 22, + "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 91, - "column": 12 - } - ], - "Check": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 20, - "column": 11 - } - ], - "Icon": [ + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 87, + "column": 8 + }, { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 21, - "column": 14 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 101, + "column": 6 }, { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 28, - "column": 14 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 18, + "column": 8 }, { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 53, - "column": 16 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 26, + "column": 2 + } + ], + "Collapsible.Body": [ + { + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 58, + "column": 8 }, { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 29, - "column": 22 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 18, + "column": 8 }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", - "line": 64, - "column": 16 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 25, + "column": 8 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", - "line": 32, - "column": 26 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 88, + "column": 10 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", - "line": 40, - "column": 16 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/index.jsx", + "line": 102, + "column": 8 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 40, - "column": 22 + "line": 52, + "column": 4 + } + ], + "Collapsible.Trigger": [ + { + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 69, + "column": 8 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 41, - "column": 96 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 22, + "column": 10 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 47, - "column": 98 - }, + "line": 31, + "column": 4 + } + ], + "FeedbackOutline": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 73, - "column": 24 - }, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 71, + "column": 17 + } + ], + "DeleteOutline": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 25, - "column": 50 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/AnswerOption.jsx", + "line": 78, + "column": 15 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 26, - "column": 48 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 28, + "column": 15 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/HintRow.jsx", "line": 27, - "column": 27 + "column": 11 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 28, - "column": 29 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", + "line": 57, + "column": 19 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 29, - "column": 29 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 98, + "column": 19 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 30, - "column": 26 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 86, + "column": 21 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 54, - "column": 22 - }, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 99, + "column": 19 + } + ], + "Form.Label": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 77, - "column": 22 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/AnswerWidget/components/Feedback/FeedbackControl.jsx", + "line": 13, + "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 112, - "column": 22 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/ScoringCard.jsx", + "line": 31, + "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 148, - "column": 22 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 32, + "column": 10 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 52, - "column": 20 + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", + "line": 29, + "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 95, - "column": 22 + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", + "line": 52, + "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 138, - "column": 16 + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", + "line": 39, + "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 82, - "column": 24 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 51, + "column": 20 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 41, - "column": 16 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 70, + "column": 20 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 89, - "column": 24 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 95, + "column": 20 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 115, - "column": 12 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", + "line": 121, + "column": 20 } ], - "Close": [ + "Card.Section": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/EditConfirmationButtons.jsx", - "line": 27, - "column": 11 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/CardSection.jsx", + "line": 14, + "column": 4 }, { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 28, - "column": 19 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 17, + "column": 6 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", - "line": 37, - "column": 23 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 54, + "column": 14 } ], - "Truncate": [ + "Form.CheckboxSet": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 48, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 36, + "column": 4 } ], - "IconButton": [ - { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 51, - "column": 6 - }, - { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 27, - "column": 12 - }, + "Row": [ { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", - "line": 57, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 40, "column": 6 }, { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", - "line": 31, - "column": 16 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 41, - "column": 10 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/index.jsx", + "line": 20, + "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 47, + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 26, + "column": 8 + } + ], + "Form.Checkbox": [ + { + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/GroupFeedback/GroupFeedbackRow.jsx", + "line": 42, "column": 10 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 71, - "column": 20 + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", + "line": 47, + "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 80, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 124, "column": 14 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/TranscriptActionMenu.jsx", - "line": 39, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 146, "column": 12 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 87, - "column": 14 + "line": 107, + "column": 10 } ], - "Edit": [ + "MailtoLink": [ { - "filePath": "src/editors/containers/EditorContainer/components/TitleHeader/index.jsx", - "line": 57, - "column": 13 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/MatlabCard.jsx", + "line": 31, + "column": 10 } ], - "ModalDialog.Header": [ + "Card": [ { - "filePath": "src/editors/containers/EditorContainer/index.jsx", - "line": 23, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/settingsComponents/SwitchToAdvancedEditorCard.jsx", + "line": 22, + "column": 4 }, { - "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", - "line": 30, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 16, "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 25, - "column": 4 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", + "line": 51, + "column": 10 } ], - "ModalDialog.Title": [ + "Collapsible.Visible": [ { - "filePath": "src/editors/containers/EditorContainer/index.jsx", + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", "line": 24, - "column": 8 + "column": 12 }, { - "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", - "line": 31, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 27, + "column": 12 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 35, "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 26, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", + "line": 45, "column": 6 } ], - "ModalDialog": [ + "KeyboardArrowDown": [ { - "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", - "line": 21, - "column": 2 - }, + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 25, + "column": 25 + } + ], + "KeyboardArrowUp": [ { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 16, - "column": 2 + "filePath": "src/editors/containers/ProblemEditor/components/EditProblemView/SettingsWidget/SettingsOption.jsx", + "line": 28, + "column": 25 } ], - "ModalDialog.Body": [ + "Col": [ { - "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", - "line": 35, + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 27, "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 30, - "column": 4 - } - ], - "ModalDialog.CloseButton": [ + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 47, + "column": 24 + }, { - "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", - "line": 42, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 59, + "column": 24 }, { - "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", - "line": 35, - "column": 8 + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 27, + "column": 10 } ], - "Form.Label": [ + "ArrowBack": [ { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", - "line": 29, - "column": 4 - }, + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 30, + "column": 27 + } + ], + "Form.RadioSet": [ { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", - "line": 52, - "column": 6 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 37, + "column": 8 }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/DimensionControls.jsx", - "line": 39, - "column": 4 + "filePath": "www/src/Gallery.jsx", + "line": 42, + "column": 10 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 35, - "column": 8 + "filePath": "www/src/Gallery.jsx", + "line": 59, + "column": 10 + } + ], + "Form.Radio": [ + { + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 47, + "column": 18 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 125, + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 70, "column": 16 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 146, + "filePath": "www/src/Gallery.jsx", + "line": 48, "column": 14 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "filePath": "www/src/Gallery.jsx", "line": 64, - "column": 8 + "column": 12 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 102, + "filePath": "www/src/Gallery.jsx", + "line": 65, "column": 12 } ], - "Form.Checkbox": [ + "OverlayTrigger": [ { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/AltTextControls.jsx", - "line": 47, - "column": 4 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 51, + "column": 18 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 58, - "column": 27 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 133, + "column": 14 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 82, - "column": 20 - }, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 116, + "column": 10 + } + ], + "Tooltip": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 117, - "column": 20 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/AdvanceTypeSelect.jsx", + "line": 54, + "column": 22 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 153, - "column": 20 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 137, + "column": 18 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", "line": 120, "column": 14 - }, + } + ], + "Container": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 141, - "column": 12 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", + "line": 22, + "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 97, - "column": 10 - } - ], - "ArrowBackIos": [ + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", + "line": 17, + "column": 4 + }, { - "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/index.jsx", - "line": 65, - "column": 20 + "filePath": "src/editors/sharedComponents/ErrorBoundary/ErrorPage.jsx", + "line": 25, + "column": 6 } ], "Image": [ + { + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/Preview.jsx", + "line": 26, + "column": 6 + }, { "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/index.jsx", "line": 75, @@ -21646,46 +25607,17 @@ "column": 6 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 82, - "column": 10 - } - ], - "Alert": [ - { - "filePath": "src/editors/containers/TextEditor/components/RawEditor/index.jsx", - "line": 12, - "column": 4 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 76, - "column": 8 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 153, - "column": 12 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/ErrorSummary.jsx", - "line": 18, - "column": 4 - }, - { - "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", - "line": 43, - "column": 4 - } - ], - "Scrollable": [ - { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/Gallery.jsx", - "line": 52, - "column": 4 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 85, + "column": 10 } ], "SelectableBox.Set": [ + { + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", + "line": 18, + "column": 6 + }, { "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/Gallery.jsx", "line": 54, @@ -21693,35 +25625,23 @@ } ], "SelectableBox": [ + { + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/content/ProblemTypeSelect.jsx", + "line": 27, + "column": 14 + }, { "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/GalleryCard.jsx", "line": 12, "column": 2 } ], - "Add": [ - { - "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", - "line": 56, - "column": 28 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", - "line": 75, - "column": 26 - }, + "Stack": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 162, - "column": 24 + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/index.jsx", + "line": 22, + "column": 10 }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 120, - "column": 20 - } - ], - "Stack": [ { "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", "line": 81, @@ -21729,50 +25649,127 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 64, + "line": 65, "column": 8 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 96, + "line": 97, "column": 8 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", - "line": 57, + "line": 56, "column": 6 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 49, + "line": 46, "column": 12 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", - "line": 27, + "line": 25, "column": 6 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 81, + "line": 84, "column": 8 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 102, + "line": 104, "column": 8 }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/ImportTranscriptCard.jsx", + "line": 23, + "column": 2 + }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 109, + "line": 114, "column": 6 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/editors/containers/ProblemEditor/components/SelectTypeModal/SelectTypeWrapper/index.jsx", + "line": 23, + "column": 8 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 160, + "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "line": 31, + "column": 6 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", + "line": 26, + "column": 6 + } + ], + "ModalDialog": [ + { + "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "line": 21, + "column": 2 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", + "line": 16, + "column": 2 + } + ], + "ModalDialog.CloseButton": [ + { + "filePath": "src/editors/containers/TextEditor/components/BaseModal.jsx", + "line": 42, + "column": 8 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/BaseModal.jsx", + "line": 35, "column": 8 } ], + "ArrowBackIos": [ + { + "filePath": "src/editors/containers/TextEditor/components/ImageSettingsModal/index.jsx", + "line": 65, + "column": 20 + } + ], + "Scrollable": [ + { + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/Gallery.jsx", + "line": 52, + "column": 4 + } + ], + "Add": [ + { + "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/index.jsx", + "line": 56, + "column": 28 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", + "line": 74, + "column": 26 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", + "line": 168, + "column": 24 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 134, + "column": 20 + } + ], "Search": [ { "filePath": "src/editors/containers/TextEditor/components/SelectImageModal/SearchSort.jsx", @@ -21788,7 +25785,7 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 68, + "line": 69, "column": 12 }, { @@ -21805,7 +25802,7 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 69, + "line": 70, "column": 14 }, { @@ -21822,7 +25819,7 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 77, + "line": 78, "column": 14 }, { @@ -21839,17 +25836,17 @@ }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 78, + "line": 79, "column": 16 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 84, + "line": 85, "column": 16 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 87, + "line": 88, "column": 16 }, { @@ -21868,118 +25865,58 @@ "column": 8 } ], - "Collapsible.Advanced": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 25, - "column": 2 - } - ], - "Collapsible.Trigger": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 30, - "column": 4 - } - ], - "Collapsible.Visible": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 34, - "column": 6 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 44, - "column": 6 - } - ], - "Info": [ + "InfoOutline": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 40, + "line": 41, "column": 56 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 138, - "column": 59 + "line": 142, + "column": 27 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 115, - "column": 55 + "line": 125, + "column": 23 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/ErrorSummary.jsx", "line": 19, "column": 12 - }, - { - "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", - "line": 45, - "column": 12 } ], "ExpandMore": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 41, + "line": 42, "column": 76 } ], "ExpandLess": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 47, + "line": 48, "column": 78 } ], - "Collapsible.Body": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/CollapsibleFormWidget.jsx", - "line": 51, - "column": 4 - } - ], "Form.Row": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget.jsx", - "line": 48, - "column": 6 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 35, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget/index.jsx", + "line": 46, "column": 6 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 71, + "line": 88, "column": 10 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 96, - "column": 8 - } - ], - "Col": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget.jsx", - "line": 49, - "column": 24 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/DurationWidget.jsx", - "line": 61, - "column": 24 } ], "MoreHoriz": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 72, + "line": 73, "column": 21 }, { @@ -21991,286 +25928,151 @@ "FileUpload": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/HandoutWidget/index.jsx", - "line": 98, - "column": 30 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 110, - "column": 30 - } - ], - "Form.Text": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/index.jsx", - "line": 52, - "column": 10 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 32, - "column": 8 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 35, - "column": 8 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 41, - "column": 12 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 63, - "column": 6 + "line": 102, + "column": 24 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 67, - "column": 8 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 115, + "column": 24 } ], "Copyright": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 25, + "line": 26, "column": 61 } ], "Cc": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 26, + "line": 27, "column": 59 } ], "Attribution": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 27, + "line": 28, "column": 38 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 54, - "column": 33 + "line": 50, + "column": 60 } ], "Nc": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 28, + "line": 29, "column": 40 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 77, - "column": 33 + "line": 69, + "column": 31 } ], "Nd": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 29, + "line": 30, "column": 40 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 112, - "column": 33 + "line": 94, + "column": 31 } ], "Sa": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseBlurb.jsx", - "line": 30, + "line": 31, "column": 37 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 148, - "column": 33 - } - ], - "Card": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 50, - "column": 14 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 65, - "column": 14 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 99, - "column": 14 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 135, - "column": 14 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", - "line": 29, - "column": 8 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 48, - "column": 10 + "line": 120, + "column": 31 } ], - "Card.Header": [ + "CheckboxControl": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 51, - "column": 16 + "line": 55, + "column": 20 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", "line": 74, - "column": 16 + "column": 20 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 109, - "column": 16 + "line": 99, + "column": 20 }, { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 145, - "column": 16 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", - "line": 30, - "column": 10 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 49, - "column": 12 + "line": 125, + "column": 20 } ], - "Card.Section": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 60, - "column": 16 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 94, - "column": 16 - }, + "Alert": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 130, - "column": 16 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", + "line": 79, + "column": 8 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDetails.jsx", - "line": 166, - "column": 16 + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/ErrorSummary.jsx", + "line": 18, + "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", - "line": 31, - "column": 10 + "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", + "line": 43, + "column": 4 }, { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 51, - "column": 14 - } - ], - "Hyperlink": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseDisplay.jsx", - "line": 34, - "column": 10 + "filePath": "src/editors/sharedComponents/RawEditor/index.jsx", + "line": 23, + "column": 8 } ], - "Delete": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/LicenseWidget/LicenseSelector.jsx", - "line": 53, - "column": 17 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/ThumbnailWidget/index.jsx", - "line": 96, - "column": 19 - }, + "Card.Header": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 83, - "column": 21 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 90, - "column": 21 - } - ], - "OverlayTrigger": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 129, - "column": 14 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 78, + "line": 52, "column": 12 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 106, - "column": 10 - } - ], - "Tooltip": [ - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/index.jsx", - "line": 133, - "column": 18 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 82, - "column": 16 - }, - { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", - "line": 110, - "column": 14 } ], "Card.Body": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 50, + "line": 53, "column": 12 } ], "Card.Footer": [ { "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 54, + "line": 57, "column": 14 } ], - "Row": [ + "FormControlFeedback": [ { - "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/TranscriptWidget/Transcript.jsx", - "line": 74, + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 68, + "column": 10 + }, + { + "filePath": "src/editors/containers/VideoEditor/components/VideoSettingsModal/components/VideoSourceWidget/index.jsx", + "line": 77, "column": 10 } ], @@ -22286,87 +26088,65 @@ "column": 10 } ], - "Form.RadioSet": [ - { - "filePath": "www/src/Gallery.jsx", - "line": 30, - "column": 10 - }, - { - "filePath": "www/src/Gallery.jsx", - "line": 47, - "column": 10 - } - ], - "Form.Radio": [ - { - "filePath": "www/src/Gallery.jsx", - "line": 36, - "column": 14 - }, - { - "filePath": "www/src/Gallery.jsx", - "line": 52, - "column": 12 - }, + "Outline": [ { - "filePath": "www/src/Gallery.jsx", - "line": 53, + "filePath": "src/editors/sharedComponents/ErrorAlerts/ErrorAlert.jsx", + "line": 45, "column": 12 } ] } }, { - "version": "20.18.0", + "version": "20.28.0", "name": "content-components-gallery", "folderName": "www", "usages": { "Form.Group": [ { "filePath": "src/Gallery.jsx", - "line": 29, + "line": 41, "column": 8 }, { "filePath": "src/Gallery.jsx", - "line": 40, + "line": 52, "column": 8 } ], "Form.RadioSet": [ { "filePath": "src/Gallery.jsx", - "line": 30, + "line": 42, "column": 10 }, { "filePath": "src/Gallery.jsx", - "line": 47, + "line": 59, "column": 10 } ], "Form.Radio": [ { "filePath": "src/Gallery.jsx", - "line": 36, + "line": 48, "column": 14 }, { "filePath": "src/Gallery.jsx", - "line": 52, + "line": 64, "column": 12 }, { "filePath": "src/Gallery.jsx", - "line": 53, + "line": 65, "column": 12 } ] } }, { - "version": "19.14.1", + "version": "20.22.4", "name": "@edx/frontend-lib-special-exams", "repository": { "type": "git", @@ -22790,7 +26570,7 @@ } }, { - "version": "20.18.1", + "version": "20.28.3", "name": "@edx/frontend-platform", "repository": { "type": "git", @@ -22829,17 +26609,25 @@ } }, { - "version": "19.25.3", + "version": "20.27.0", "name": "@edx/frontend-template-application", "repository": { "type": "git", "url": "git+https://github.com/openedx/frontend-template-application.git" }, "folderName": "frontend-template-application", - "usages": {} + "usages": { + "Container": [ + { + "filePath": "src/example/ExamplePage.jsx", + "line": 5, + "column": 4 + } + ] + } }, { - "version": "20.10.0", + "version": "20.28.3", "name": "@edx/gatsby-react-app", "repository": { "type": "git", @@ -22850,53 +26638,53 @@ "Icon": [ { "filePath": "src/components/2U/ProductCard.jsx", - "line": 184, + "line": 122, "column": 10 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 197, + "line": 130, "column": 10 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 210, + "line": 138, "column": 10 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 223, + "line": 146, "column": 10 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 236, + "line": 154, "column": 10 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 249, + "line": 162, "column": 10 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 262, + "line": 170, "column": 10 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 275, + "line": 178, "column": 10 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 288, + "line": 186, "column": 10 }, { - "filePath": "src/components/2U/ProductCard.jsx", - "line": 436, - "column": 12 + "filePath": "src/components/BootCamp/BootCampStickyNav.jsx", + "line": 34, + "column": 8 }, { "filePath": "src/components/Card/index.jsx", @@ -22925,37 +26713,47 @@ }, { "filePath": "src/components/ContentfulModule/FeaturedProductsModule.jsx", - "line": 39, + "line": 71, "column": 14 }, { "filePath": "src/components/ContentfulModule/FootnoteModule.jsx", - "line": 40, - "column": 14 + "line": 52, + "column": 16 }, { "filePath": "src/components/ContentfulModule/FootnoteModule.jsx", - "line": 72, - "column": 14 + "line": 109, + "column": 16 }, { "filePath": "src/components/ContentfulModule/MoreInfoCTAModule.jsx", - "line": 26, - "column": 6 + "line": 41, + "column": 8 }, { "filePath": "src/components/ContentfulModule/PartnershipModule.jsx", "line": 29, "column": 9 }, + { + "filePath": "src/components/ContentfulModule/StatisticIconModule.jsx", + "line": 31, + "column": 14 + }, { "filePath": "src/components/ContentfulModule/UpcomingProgramModule.jsx", - "line": 36, + "line": 38, "column": 9 }, { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 155, + "line": 171, + "column": 12 + }, + { + "filePath": "src/components/Course/2U/CourseHeader2U.jsx", + "line": 188, "column": 14 }, { @@ -22970,8 +26768,8 @@ }, { "filePath": "src/components/Course/2U/WhyGetsmarter.jsx", - "line": 50, - "column": 14 + "line": 55, + "column": 16 }, { "filePath": "src/components/Course/CourseHeader/CourseBreadcrumbs.jsx", @@ -23000,17 +26798,17 @@ }, { "filePath": "src/components/Course/CourseSnapshot/index.jsx", - "line": 178, + "line": 206, "column": 24 }, { "filePath": "src/components/Course/CourseSnapshot/index.jsx", - "line": 192, + "line": 220, "column": 22 }, { "filePath": "src/components/Course/CourseSnapshot/index.jsx", - "line": 235, + "line": 263, "column": 24 }, { @@ -23100,13 +26898,18 @@ }, { "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", - "line": 20, - "column": 8 + "line": 39, + "column": 12 }, { "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", - "line": 21, - "column": 8 + "line": 40, + "column": 12 + }, + { + "filePath": "src/components/Learn/DynamicProductList/ProductInformation.jsx", + "line": 47, + "column": 12 }, { "filePath": "src/components/Overlays/SaveForLaterOverlay.jsx", @@ -23118,6 +26921,11 @@ "line": 65, "column": 10 }, + { + "filePath": "src/components/ProductDetail/ProductDetailHero.jsx", + "line": 158, + "column": 14 + }, { "filePath": "src/components/Search/Refinements/FacetList.jsx", "line": 180, @@ -23130,12 +26938,12 @@ }, { "filePath": "src/components/Search/Refinements/LearningTypeRadioSelect.jsx", - "line": 101, + "line": 102, "column": 22 }, { "filePath": "src/components/Search/Refinements/LearningTypeRadioSelect.jsx", - "line": 102, + "line": 103, "column": 23 }, { @@ -23170,65 +26978,65 @@ }, { "filePath": "src/templates/mastersProgramDetail.jsx", - "line": 522, + "line": 523, "column": 22 + }, + { + "filePath": "src/templates/programDetailDegree.jsx", + "line": 241, + "column": 16 } ], "Launch": [ { "filePath": "src/components/2U/ProductCard.jsx", - "line": 184, + "line": 122, "column": 48 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 197, + "line": 130, "column": 48 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 210, + "line": 138, "column": 48 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 223, + "line": 146, "column": 48 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 236, + "line": 154, "column": 48 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 249, + "line": 162, "column": 48 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 262, + "line": 170, "column": 48 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 275, + "line": 178, "column": 48 }, { "filePath": "src/components/2U/ProductCard.jsx", - "line": 288, + "line": 186, "column": 48 }, - { - "filePath": "src/components/2U/ProductCard.jsx", - "line": 436, - "column": 23 - }, { "filePath": "src/components/Course/2U/WhyGetsmarter.jsx", - "line": 52, - "column": 21 + "line": 57, + "column": 23 }, { "filePath": "src/components/Course/CourseModes/index.jsx", @@ -23249,7 +27057,7 @@ "Card": [ { "filePath": "src/components/2U/ProductCard.jsx", - "line": 384, + "line": 269, "column": 8 }, { @@ -23271,7 +27079,7 @@ "Card.Body": [ { "filePath": "src/components/2U/ProductCard.jsx", - "line": 409, + "line": 294, "column": 10 }, { @@ -23288,7 +27096,7 @@ "Badge": [ { "filePath": "src/components/2U/ProductCard.jsx", - "line": 429, + "line": 314, "column": 14 }, { @@ -23303,7 +27111,7 @@ }, { "filePath": "src/components/DiscoveryCard/DiscoveryCourseCard.jsx", - "line": 147, + "line": 150, "column": 14 }, { @@ -23317,123 +27125,262 @@ "column": 22 }, { - "filePath": "src/components/Search/AutoCompleteDropdownItem.jsx", - "line": 63, - "column": 14 + "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", + "line": 79, + "column": 14 + }, + { + "filePath": "src/components/Search/AutoCompleteDropdownItem.jsx", + "line": 63, + "column": 14 + }, + { + "filePath": "src/components/Search/AutoCompleteDropdownItem.jsx", + "line": 67, + "column": 12 + }, + { + "filePath": "src/components/Search/Refinements/FacetList.jsx", + "line": 208, + "column": 33 + } + ], + "ExpandMore": [ + { + "filePath": "src/components/AboutUs/TimelineEntry.jsx", + "line": 46, + "column": 8 + }, + { + "filePath": "src/components/Card/index.jsx", + "line": 171, + "column": 68 + }, + { + "filePath": "src/components/Course/2U/MobileCollapsibleSection.jsx", + "line": 21, + "column": 21 + }, + { + "filePath": "src/components/Header/MobileNavigation/MenuAccordion/index.jsx", + "line": 109, + "column": 21 + }, + { + "filePath": "src/components/Header/SiteNavLink.jsx", + "line": 90, + "column": 17 + }, + { + "filePath": "src/components/Product/StickyNav.jsx", + "line": 104, + "column": 33 + } + ], + "Collapsible": [ + { + "filePath": "src/components/BootCamp/BootCampCurriculumModule.jsx", + "line": 61, + "column": 16 + }, + { + "filePath": "src/components/Course/CoursePageMobile.jsx", + "line": 77, + "column": 6 + }, + { + "filePath": "src/components/Course/CoursePageMobile.jsx", + "line": 91, + "column": 6 + }, + { + "filePath": "src/components/Course/CoursePageMobile.jsx", + "line": 99, + "column": 6 + }, + { + "filePath": "src/components/Course/CoursePageMobile.jsx", + "line": 110, + "column": 6 + }, + { + "filePath": "src/components/Course/CoursePageMobile.jsx", + "line": 122, + "column": 6 + }, + { + "filePath": "src/components/Course/CoursePageMobile.jsx", + "line": 134, + "column": 6 + }, + { + "filePath": "src/components/Course/CoursePageMobile.jsx", + "line": 144, + "column": 6 + }, + { + "filePath": "src/components/Course/CoursePageMobile.jsx", + "line": 154, + "column": 6 + }, + { + "filePath": "src/components/FAQs/AccordionFAQ.jsx", + "line": 62, + "column": 14 + }, + { + "filePath": "src/components/FAQs/AccordionFAQ.jsx", + "line": 90, + "column": 12 + }, + { + "filePath": "src/components/Header/MobileNavigation/MenuAccordion/CollapsibleTrigger.jsx", + "line": 11, + "column": 17 + } + ], + "ArrowForward": [ + { + "filePath": "src/components/BootCamp/BootCampStickyNav.jsx", + "line": 34, + "column": 19 + }, + { + "filePath": "src/components/Carousel/index.jsx", + "line": 268, + "column": 58 + }, + { + "filePath": "src/components/ContentfulModule/FeaturedProductsModule.jsx", + "line": 71, + "column": 25 + }, + { + "filePath": "src/components/ContentfulModule/MoreInfoCTAModule.jsx", + "line": 41, + "column": 19 + }, + { + "filePath": "src/components/Home/Audiences.jsx", + "line": 56, + "column": 18 + }, + { + "filePath": "src/components/Home/Audiences.jsx", + "line": 94, + "column": 18 }, { - "filePath": "src/components/Search/AutoCompleteDropdownItem.jsx", - "line": 67, - "column": 12 + "filePath": "src/components/Home/Audiences.jsx", + "line": 132, + "column": 18 }, { - "filePath": "src/components/Search/Refinements/FacetList.jsx", - "line": 208, - "column": 33 - } - ], - "Card.Footer": [ - { - "filePath": "src/components/2U/ProductCard.jsx", - "line": 434, - "column": 10 - } - ], - "ExpandMore": [ + "filePath": "src/components/Home/NewOnEdxCarousel/SubcategoriesList/index.jsx", + "line": 78, + "column": 17 + }, { - "filePath": "src/components/AboutUs/TimelineEntry.jsx", - "line": 46, - "column": 8 + "filePath": "src/components/Home/StaticCallouts.jsx", + "line": 151, + "column": 44 }, { - "filePath": "src/components/Card/index.jsx", - "line": 171, - "column": 68 + "filePath": "src/components/Home/StaticCallouts.jsx", + "line": 192, + "column": 44 }, { - "filePath": "src/components/Course/2U/MobileCollapsibleSection.jsx", - "line": 21, - "column": 21 + "filePath": "src/components/Home/StaticCallouts.jsx", + "line": 232, + "column": 44 }, { - "filePath": "src/components/Header/MobileNavigation/MenuAccordion/index.jsx", - "line": 109, - "column": 21 + "filePath": "src/components/Home/StaticCallouts.jsx", + "line": 274, + "column": 48 }, { - "filePath": "src/components/Header/SiteNavLink.jsx", - "line": 90, - "column": 17 + "filePath": "src/components/ProductDetail/ProductDetailHero.jsx", + "line": 158, + "column": 25 }, { - "filePath": "src/components/Product/StickyNav.jsx", - "line": 74, - "column": 33 + "filePath": "src/templates/programDetailDegree.jsx", + "line": 241, + "column": 27 } ], - "Collapsible": [ + "ChevronRight": [ { - "filePath": "src/components/BootCamp/BootCampCurriculumModule.jsx", - "line": 59, - "column": 16 + "filePath": "src/components/Breadcrumbs/index.jsx", + "line": 54, + "column": 18 }, { - "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 61, - "column": 6 + "filePath": "src/components/Search/Results/showAllLink.jsx", + "line": 24, + "column": 69 }, { - "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 75, - "column": 6 + "filePath": "src/components/SkillsBreadcrumbs/index.jsx", + "line": 38, + "column": 24 + } + ], + "Check": [ + { + "filePath": "src/components/Card/FilterProgramCard.jsx", + "line": 44, + "column": 18 }, { - "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 83, - "column": 6 + "filePath": "src/components/ContentfulModule/AboutTheProgramModule.jsx", + "line": 59, + "column": 14 }, { - "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 94, - "column": 6 + "filePath": "src/components/ContentfulModule/AdmissionsAboutSection/AdmissionsAboutSection.jsx", + "line": 19, + "column": 10 }, { - "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 106, - "column": 6 + "filePath": "src/components/Course/CourseModes/index.jsx", + "line": 309, + "column": 48 }, { - "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 118, - "column": 6 + "filePath": "src/components/Course/CourseModes/index.jsx", + "line": 310, + "column": 48 }, { - "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 128, - "column": 6 + "filePath": "src/components/Course/CourseModes/index.jsx", + "line": 318, + "column": 48 }, { - "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 138, - "column": 6 + "filePath": "src/components/Course/CourseModes/index.jsx", + "line": 319, + "column": 48 }, { - "filePath": "src/components/FAQs/AccordionFAQ.jsx", - "line": 26, - "column": 10 + "filePath": "src/components/Course/CourseModes/index.jsx", + "line": 327, + "column": 48 }, { - "filePath": "src/components/Header/MobileNavigation/MenuAccordion/CollapsibleTrigger.jsx", - "line": 11, - "column": 17 + "filePath": "src/components/Course/CourseModes/index.jsx", + "line": 336, + "column": 48 + }, + { + "filePath": "src/components/ProductDetail/ProductDetailHero.jsx", + "line": 44, + "column": 8 } ], "Button": [ - { - "filePath": "src/components/BootCamp/BootCampCurriculumModule.jsx", - "line": 73, - "column": 12 - }, { "filePath": "src/components/Card/index.jsx", "line": 139, @@ -23445,13 +27392,13 @@ "column": 16 }, { - "filePath": "src/components/ContentfulModule/DynamicProductModule.jsx", - "line": 38, - "column": 12 + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 112, + "column": 10 }, { - "filePath": "src/components/ContentfulModule/FeaturedProductsModule.jsx", - "line": 37, + "filePath": "src/components/ContentfulModule/DynamicProductModule/DynamicProductModule.jsx", + "line": 38, "column": 12 }, { @@ -23461,17 +27408,17 @@ }, { "filePath": "src/components/ContentfulModule/UpcomingProgramModule.jsx", - "line": 66, + "line": 68, "column": 14 }, { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 169, + "line": 202, "column": 27 }, { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 192, + "line": 225, "column": 16 }, { @@ -23486,7 +27433,7 @@ }, { "filePath": "src/components/Course/CourseRunSelector/index.jsx", - "line": 217, + "line": 219, "column": 10 }, { @@ -23524,14 +27471,9 @@ "line": 131, "column": 12 }, - { - "filePath": "src/components/ProductDetail/ProductDetailHero.jsx", - "line": 114, - "column": 14 - }, { "filePath": "src/components/Search/ManagedAutoComplete.jsx", - "line": 235, + "line": 269, "column": 14 }, { @@ -23539,119 +27481,40 @@ "line": 42, "column": 10 }, - { - "filePath": "src/components/Search/Refinements/ClearRefinements.jsx", - "line": 35, - "column": 4 - }, - { - "filePath": "src/components/Search/Refinements/MobileFilterMenu.jsx", - "line": 117, - "column": 14 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 130, - "column": 10 - }, - { - "filePath": "src/templates/articlePage.jsx", - "line": 77, - "column": 14 - }, - { - "filePath": "src/templates/courseDetail2U.jsx", - "line": 484, - "column": 6 - }, - { - "filePath": "src/templates/courseDetailBootcamp.jsx", - "line": 201, - "column": 18 - }, - { - "filePath": "src/templates/learnIndexPage/Hero.jsx", - "line": 37, - "column": 10 - }, - { - "filePath": "src/templates/learnPage.jsx", - "line": 127, - "column": 12 - }, - { - "filePath": "src/templates/programDetailDegree.jsx", - "line": 219, - "column": 16 - } - ], - "ChevronRight": [ - { - "filePath": "src/components/Breadcrumbs/index.jsx", - "line": 54, - "column": 18 - }, - { - "filePath": "src/components/Search/Results/showAllLink.jsx", - "line": 24, - "column": 69 - }, - { - "filePath": "src/components/SkillsBreadcrumbs/index.jsx", - "line": 29, - "column": 24 - } - ], - "Check": [ - { - "filePath": "src/components/Card/FilterProgramCard.jsx", - "line": 44, - "column": 18 - }, - { - "filePath": "src/components/ContentfulModule/AboutTheProgramModule.jsx", - "line": 83, - "column": 14 - }, - { - "filePath": "src/components/ContentfulModule/AdmissionsAboutSection/AdmissionsAboutSection.jsx", - "line": 19, - "column": 10 - }, - { - "filePath": "src/components/Course/CourseModes/index.jsx", - "line": 309, - "column": 48 + { + "filePath": "src/components/Search/Refinements/ClearRefinements.jsx", + "line": 35, + "column": 4 }, { - "filePath": "src/components/Course/CourseModes/index.jsx", - "line": 310, - "column": 48 + "filePath": "src/components/Search/Refinements/MobileFilterMenu.jsx", + "line": 117, + "column": 14 }, { - "filePath": "src/components/Course/CourseModes/index.jsx", - "line": 318, - "column": 48 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 123, + "column": 10 }, { - "filePath": "src/components/Course/CourseModes/index.jsx", - "line": 319, - "column": 48 + "filePath": "src/templates/articlePage.jsx", + "line": 110, + "column": 14 }, { - "filePath": "src/components/Course/CourseModes/index.jsx", - "line": 327, - "column": 48 + "filePath": "src/templates/courseDetail2U.jsx", + "line": 322, + "column": 6 }, { - "filePath": "src/components/Course/CourseModes/index.jsx", - "line": 336, - "column": 48 + "filePath": "src/templates/learnIndexPage/Hero.jsx", + "line": 37, + "column": 10 }, { - "filePath": "src/components/ProductDetail/ProductDetailHero.jsx", - "line": 41, - "column": 8 + "filePath": "src/templates/learnPage.jsx", + "line": 131, + "column": 12 } ], "ExpandLess": [ @@ -23746,17 +27609,22 @@ }, { "filePath": "src/components/ContentfulModule/BlurbModule/SlantedBlurbModule.jsx", - "line": 39, + "line": 53, "column": 6 }, { "filePath": "src/components/ContentfulModule/FeaturedProductsModule.jsx", - "line": 20, + "line": 47, "column": 4 }, + { + "filePath": "src/components/ContentfulModule/FeaturedProductsModule.jsx", + "line": 60, + "column": 10 + }, { "filePath": "src/components/ContentfulModule/MoreInfoCTAModule.jsx", - "line": 31, + "line": 26, "column": 4 }, { @@ -23766,7 +27634,7 @@ }, { "filePath": "src/components/ContentfulModule/UpcomingProgramModule.jsx", - "line": 52, + "line": 54, "column": 6 }, { @@ -23776,7 +27644,7 @@ }, { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 148, + "line": 181, "column": 6 }, { @@ -23786,13 +27654,13 @@ }, { "filePath": "src/components/Course/2U/StickyNav2U.jsx", - "line": 170, + "line": 171, "column": 12 }, { "filePath": "src/components/Course/2U/WhyGetsmarter.jsx", - "line": 12, - "column": 4 + "line": 16, + "column": 6 }, { "filePath": "src/components/Course/BusinessBlock/index.jsx", @@ -23826,9 +27694,14 @@ }, { "filePath": "src/components/Course/CoursePageMobile.jsx", - "line": 76, + "line": 92, "column": 8 }, + { + "filePath": "src/components/Course/CourseRecommendations/CourseRecommendations.jsx", + "line": 21, + "column": 4 + }, { "filePath": "src/components/Course/CourseRecommendations/CourseRecommendationsExp.jsx", "line": 16, @@ -23841,7 +27714,7 @@ }, { "filePath": "src/components/Course/CourseSnapshot/index.jsx", - "line": 146, + "line": 174, "column": 12 }, { @@ -23886,7 +27759,7 @@ }, { "filePath": "src/components/Home/Hero.jsx", - "line": 37, + "line": 63, "column": 10 }, { @@ -23926,12 +27799,12 @@ }, { "filePath": "src/components/Learn/DynamicProductList/DynamicProductList.jsx", - "line": 204, + "line": 223, "column": 6 }, { "filePath": "src/components/Learn/LearnHero.jsx", - "line": 48, + "line": 58, "column": 6 }, { @@ -23951,42 +27824,42 @@ }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 425, + "line": 432, "column": 8 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 426, + "line": 433, "column": 10 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 427, + "line": 434, "column": 12 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 653, + "line": 660, "column": 12 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 661, + "line": 668, "column": 12 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 680, + "line": 687, "column": 8 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 862, + "line": 869, "column": 10 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 863, + "line": 870, "column": 12 }, { @@ -24025,13 +27898,13 @@ "column": 8 }, { - "filePath": "src/components/Search/Results/FullProductHits.jsx", - "line": 39, + "filePath": "src/components/Search/Results/FirstLevelResult.jsx", + "line": 52, "column": 4 }, { - "filePath": "src/components/Search/Results/OverviewProductHits.jsx", - "line": 23, + "filePath": "src/components/Search/Results/SecondLevelResult.jsx", + "line": 40, "column": 4 }, { @@ -24045,168 +27918,301 @@ "column": 6 }, { - "filePath": "src/components/SitewideBanner/index.jsx", - "line": 74, + "filePath": "src/components/SitewideBanner/index.jsx", + "line": 74, + "column": 6 + }, + { + "filePath": "src/components/SplitView/index.jsx", + "line": 32, + "column": 4 + }, + { + "filePath": "src/components/SubjectTopics/index.jsx", + "line": 58, + "column": 8 + }, + { + "filePath": "src/components/SubjectTopics/index.jsx", + "line": 68, + "column": 10 + }, + { + "filePath": "src/templates/aboutEdX.jsx", + "line": 376, + "column": 12 + }, + { + "filePath": "src/templates/aboutEdX.jsx", + "line": 400, + "column": 12 + }, + { + "filePath": "src/templates/allTopics.jsx", + "line": 70, + "column": 10 + }, + { + "filePath": "src/templates/allTopics.jsx", + "line": 81, + "column": 8 + }, + { + "filePath": "src/templates/articlePage.jsx", + "line": 57, + "column": 6 + }, + { + "filePath": "src/templates/careers.jsx", + "line": 104, + "column": 10 + }, + { + "filePath": "src/templates/careers.jsx", + "line": 126, + "column": 10 + }, + { + "filePath": "src/templates/careers.jsx", + "line": 134, + "column": 10 + }, + { + "filePath": "src/templates/courseDetail2U.jsx", + "line": 451, + "column": 18 + }, + { + "filePath": "src/templates/learnIndexPage/Hero.jsx", + "line": 22, + "column": 6 + }, + { + "filePath": "src/templates/learnIndexPage/index.jsx", + "line": 40, + "column": 8 + }, + { + "filePath": "src/templates/learnPage.jsx", + "line": 143, + "column": 10 + }, + { + "filePath": "src/templates/learnPage.jsx", + "line": 166, + "column": 12 + }, + { + "filePath": "src/templates/learnPage.jsx", + "line": 194, + "column": 10 + }, + { + "filePath": "src/templates/paidLandingPage/Footer.jsx", + "line": 41, + "column": 6 + }, + { + "filePath": "src/templates/paidLandingPage/Header.jsx", + "line": 25, + "column": 6 + } + ], + "ArrowBack": [ + { + "filePath": "src/components/Carousel/index.jsx", + "line": 248, + "column": 58 + }, + { + "filePath": "src/components/Home/NewOnEdxCarousel/SubcategoriesList/index.jsx", + "line": 62, + "column": 17 + } + ], + "useToggle": [ + { + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 11, + "column": 32 + }, + { + "filePath": "src/components/Course/2U/CourseHeader2U.jsx", + "line": 87, + "column": 32 + } + ], + "ModalDialog": [ + { + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 44, + "column": 4 + }, + { + "filePath": "src/components/Course/2U/CourseVideoDialog.jsx", + "line": 10, + "column": 4 + }, + { + "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", + "line": 32, + "column": 4 + } + ], + "ModalDialog.Header": [ + { + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 53, + "column": 6 + }, + { + "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", + "line": 39, + "column": 6 + } + ], + "ModalDialog.Title": [ + { + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 54, + "column": 8 + }, + { + "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", + "line": 40, + "column": 8 + }, + { + "filePath": "src/components/MarketingModal/SaveForLaterModal.jsx", + "line": 66, + "column": 14 + } + ], + "ModalDialog.Body": [ + { + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 62, + "column": 6 + }, + { + "filePath": "src/components/Course/2U/CourseVideoDialog.jsx", + "line": 20, "column": 6 }, { - "filePath": "src/components/SplitView/index.jsx", - "line": 32, - "column": 4 - }, + "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", + "line": 49, + "column": 6 + } + ], + "Form.Group": [ { - "filePath": "src/components/SubjectTopics/index.jsx", - "line": 58, + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 63, "column": 8 }, { - "filePath": "src/components/SubjectTopics/index.jsx", - "line": 68, + "filePath": "src/components/Overlays/SocialSharePopover.jsx", + "line": 110, "column": 10 }, { - "filePath": "src/templates/aboutEdX.jsx", - "line": 376, - "column": 12 - }, - { - "filePath": "src/templates/aboutEdX.jsx", - "line": 400, - "column": 12 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 68, + "column": 16 }, { - "filePath": "src/templates/allTopics.jsx", - "line": 70, - "column": 10 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 73, + "column": 16 }, { - "filePath": "src/templates/allTopics.jsx", - "line": 81, - "column": 8 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 78, + "column": 16 }, { - "filePath": "src/templates/articlePage.jsx", - "line": 46, - "column": 6 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 88, + "column": 16 }, { - "filePath": "src/templates/careers.jsx", - "line": 90, - "column": 10 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 92, + "column": 16 }, { - "filePath": "src/templates/careers.jsx", - "line": 111, - "column": 10 + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", + "line": 96, + "column": 16 }, { - "filePath": "src/templates/careers.jsx", + "filePath": "src/pages/secure-preview/DynamicProductList.jsx", "line": 117, "column": 10 }, { - "filePath": "src/templates/courseDetail2U.jsx", - "line": 612, - "column": 20 - }, - { - "filePath": "src/templates/learnIndexPage/Hero.jsx", - "line": 22, - "column": 6 + "filePath": "src/templates/CCPAPage.jsx", + "line": 27, + "column": 8 }, { - "filePath": "src/templates/learnIndexPage/index.jsx", - "line": 40, + "filePath": "src/templates/CCPAPageES.jsx", + "line": 26, "column": 8 - }, + } + ], + "Form.Switch": [ { - "filePath": "src/templates/learnPage.jsx", - "line": 139, + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 64, "column": 10 }, { - "filePath": "src/templates/learnPage.jsx", - "line": 161, - "column": 12 + "filePath": "src/templates/CCPAPage.jsx", + "line": 28, + "column": 10 }, { - "filePath": "src/templates/learnPage.jsx", - "line": 190, + "filePath": "src/templates/CCPAPageES.jsx", + "line": 27, "column": 10 - }, + } + ], + "ModalDialog.Footer": [ { - "filePath": "src/templates/paidLandingPage/Footer.jsx", - "line": 41, + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 103, "column": 6 }, { - "filePath": "src/templates/paidLandingPage/Header.jsx", - "line": 25, + "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", + "line": 59, "column": 6 } ], - "ArrowBack": [ + "ActionRow": [ { - "filePath": "src/components/Carousel/index.jsx", - "line": 248, - "column": 58 + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 104, + "column": 8 }, { - "filePath": "src/components/Home/NewOnEdxCarousel/SubcategoriesList/index.jsx", - "line": 62, - "column": 17 + "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", + "line": 60, + "column": 8 } ], - "ArrowForward": [ - { - "filePath": "src/components/Carousel/index.jsx", - "line": 268, - "column": 58 - }, - { - "filePath": "src/components/Home/Audiences.jsx", - "line": 56, - "column": 18 - }, - { - "filePath": "src/components/Home/Audiences.jsx", - "line": 94, - "column": 18 - }, - { - "filePath": "src/components/Home/Audiences.jsx", - "line": 132, - "column": 18 - }, - { - "filePath": "src/components/Home/NewOnEdxCarousel/SubcategoriesList/index.jsx", - "line": 78, - "column": 17 - }, - { - "filePath": "src/components/Home/StaticCallouts.jsx", - "line": 151, - "column": 44 - }, - { - "filePath": "src/components/Home/StaticCallouts.jsx", - "line": 192, - "column": 44 - }, - { - "filePath": "src/components/Home/StaticCallouts.jsx", - "line": 232, - "column": 44 - }, + "ModalDialog.CloseButton": [ { - "filePath": "src/components/Home/StaticCallouts.jsx", - "line": 274, - "column": 48 + "filePath": "src/components/CCPADialog/CCPADialog.jsx", + "line": 105, + "column": 10 }, { - "filePath": "src/components/ProductDetail/ProductDetailHero.jsx", - "line": 124, - "column": 30 + "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", + "line": 61, + "column": 10 } ], "Hyperlink": [ @@ -24217,46 +28223,56 @@ }, { "filePath": "src/components/ContentfulModule/FootnoteModule.jsx", - "line": 71, - "column": 12 + "line": 104, + "column": 14 } ], - "CallMade": [ + "OpenInNew": [ { - "filePath": "src/components/ContentfulModule/FeaturedProductsModule.jsx", - "line": 39, - "column": 25 + "filePath": "src/components/ContentfulModule/FootnoteModule.jsx", + "line": 53, + "column": 23 }, { - "filePath": "src/components/ContentfulModule/MoreInfoCTAModule.jsx", - "line": 26, - "column": 17 + "filePath": "src/components/ContentfulModule/StatisticIconModule.jsx", + "line": 32, + "column": 21 } ], - "OpenInNew": [ + "ArrowUpward": [ { "filePath": "src/components/ContentfulModule/FootnoteModule.jsx", - "line": 41, - "column": 21 + "line": 110, + "column": 23 } ], - "ArrowUpward": [ + "Skeleton": [ { - "filePath": "src/components/ContentfulModule/FootnoteModule.jsx", - "line": 73, - "column": 21 + "filePath": "src/components/ContentfulModule/ImageCarouselModule/ImageCarouselModule.jsx", + "line": 15, + "column": 8 + }, + { + "filePath": "src/templates/homePage.jsx", + "line": 92, + "column": 15 } ], "useWindowSize": [ { "filePath": "src/components/ContentfulModule/ImageCarouselModule/ImageCarouselModule.jsx", - "line": 13, + "line": 26, "column": 21 }, { "filePath": "src/components/Header/SearchBar.jsx", "line": 24, "column": 20 + }, + { + "filePath": "src/components/Home/Hero.jsx", + "line": 35, + "column": 20 } ], "ArrowOutward": [ @@ -24267,26 +28283,26 @@ }, { "filePath": "src/components/ContentfulModule/UpcomingProgramModule.jsx", - "line": 36, + "line": 38, "column": 20 } ], - "useToggle": [ + "CallMade": [ { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 76, - "column": 32 + "line": 171, + "column": 23 } ], "Breadcrumb": [ { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 152, + "line": 185, "column": 14 }, { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 156, + "line": 189, "column": 14 }, { @@ -24308,7 +28324,7 @@ "ChevronLeft": [ { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 155, + "line": 188, "column": 25 }, { @@ -24318,49 +28334,25 @@ }, { "filePath": "src/components/SkillsBreadcrumbs/index.jsx", - "line": 14, + "line": 20, "column": 6 } ], "PlayCircleFilled": [ { "filePath": "src/components/Course/2U/CourseHeader2U.jsx", - "line": 195, + "line": 228, "column": 30 }, - { - "filePath": "src/components/Course/CourseHeader/CourseVideo.jsx", - "line": 46, - "column": 10 - }, - { - "filePath": "src/components/Video/index.jsx", - "line": 129, - "column": 18 - } - ], - "ModalDialog": [ - { - "filePath": "src/components/Course/2U/CourseVideoDialog.jsx", - "line": 10, - "column": 4 - }, - { - "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", - "line": 32, - "column": 4 - } - ], - "ModalDialog.Body": [ - { - "filePath": "src/components/Course/2U/CourseVideoDialog.jsx", - "line": 20, - "column": 6 + { + "filePath": "src/components/Course/CourseHeader/CourseVideo.jsx", + "line": 46, + "column": 10 }, { - "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", - "line": 49, - "column": 6 + "filePath": "src/components/Video/index.jsx", + "line": 128, + "column": 18 } ], "Collapsible.Advanced": [ @@ -24376,7 +28368,7 @@ }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 704, + "line": 711, "column": 18 } ], @@ -24403,12 +28395,12 @@ }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 712, + "line": 719, "column": 22 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 713, + "line": 720, "column": 22 } ], @@ -24425,14 +28417,14 @@ }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 715, + "line": 722, "column": 20 } ], "DropdownButton": [ { "filePath": "src/components/Course/2U/StickyNav2U.jsx", - "line": 179, + "line": 180, "column": 16 }, { @@ -24444,7 +28436,7 @@ "Dropdown.Item": [ { "filePath": "src/components/Course/2U/StickyNav2U.jsx", - "line": 191, + "line": 192, "column": 20 }, { @@ -24454,8 +28446,8 @@ }, { "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", - "line": 31, - "column": 10 + "line": 50, + "column": 14 } ], "OverlayTrigger": [ @@ -24556,7 +28548,7 @@ "CardGrid": [ { "filePath": "src/components/Course/CourseRunSelector/index.jsx", - "line": 188, + "line": 190, "column": 10 }, { @@ -24565,17 +28557,10 @@ "column": 10 } ], - "Calendar": [ - { - "filePath": "src/components/Course/CourseSnapshot/index.jsx", - "line": 178, - "column": 35 - } - ], "Person": [ { "filePath": "src/components/Course/CourseSnapshot/index.jsx", - "line": 192, + "line": 220, "column": 33 }, { @@ -24595,19 +28580,19 @@ }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 500, + "line": 507, "column": 26 }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 524, + "line": 531, "column": 26 } ], "MoneyOutline": [ { "filePath": "src/components/Course/CourseSnapshot/index.jsx", - "line": 235, + "line": 263, "column": 35 } ], @@ -24638,7 +28623,7 @@ }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 432, + "line": 439, "column": 20 } ], @@ -24650,7 +28635,7 @@ }, { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 433, + "line": 440, "column": 22 }, { @@ -24673,50 +28658,10 @@ "column": 35 } ], - "ModalDialog.Header": [ - { - "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", - "line": 39, - "column": 6 - } - ], - "ModalDialog.Title": [ - { - "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", - "line": 40, - "column": 8 - }, - { - "filePath": "src/components/MarketingModal/SaveForLaterModal.jsx", - "line": 66, - "column": 14 - } - ], - "ModalDialog.Footer": [ - { - "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", - "line": 59, - "column": 6 - } - ], - "ActionRow": [ - { - "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", - "line": 60, - "column": 8 - } - ], - "ModalDialog.CloseButton": [ - { - "filePath": "src/components/EnterpriseEnrolmentModal/EnterpriseEnrollmentInformModal.jsx", - "line": 61, - "column": 10 - } - ], "Input": [ { "filePath": "src/components/Footer/index.jsx", - "line": 467, + "line": 484, "column": 18 } ], @@ -24750,8 +28695,8 @@ }, { "filePath": "src/components/Home/HomeSearchInput.jsx", - "line": 57, - "column": 10 + "line": 58, + "column": 12 }, { "filePath": "src/components/Search/PreQuery/SearchBox.jsx", @@ -24772,8 +28717,8 @@ }, { "filePath": "src/components/Home/HomeSearchInput.jsx", - "line": 65, - "column": 10 + "line": 66, + "column": 12 }, { "filePath": "src/components/Search/PreQuery/SearchBox.jsx", @@ -24799,8 +28744,8 @@ }, { "filePath": "src/components/Home/HomeSearchInput.jsx", - "line": 67, - "column": 8 + "line": 68, + "column": 10 }, { "filePath": "src/components/Search/PreQuery/SearchBox.jsx", @@ -24821,8 +28766,8 @@ }, { "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", - "line": 18, - "column": 4 + "line": 37, + "column": 8 } ], "Dropdown.Toggle": [ @@ -24833,8 +28778,8 @@ }, { "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", - "line": 19, - "column": 6 + "line": 38, + "column": 10 } ], "AvatarButton": [ @@ -24852,25 +28797,8 @@ }, { "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", - "line": 29, - "column": 6 - } - ], - "Chip": [ - { - "filePath": "src/components/Home/CardListTabs.jsx", - "line": 62, - "column": 20 - }, - { - "filePath": "src/components/Home/NewOnEdxCarousel/SubcategoriesList/index.jsx", - "line": 99, - "column": 14 - }, - { - "filePath": "src/components/Learn/RelatedTopics.jsx", - "line": 31, - "column": 12 + "line": 48, + "column": 10 } ], "KeyboardArrowRight": [ @@ -24890,13 +28818,13 @@ "Tune": [ { "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", - "line": 20, - "column": 26 + "line": 39, + "column": 30 }, { "filePath": "src/components/Learn/DynamicProductList/ProductFilter.jsx", - "line": 21, - "column": 26 + "line": 40, + "column": 30 } ], "MarketingModal": [ @@ -24964,52 +28892,10 @@ }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 70, + "line": 63, "column": 6 } ], - "Form.Group": [ - { - "filePath": "src/components/Overlays/SocialSharePopover.jsx", - "line": 110, - "column": 10 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 75, - "column": 16 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 80, - "column": 16 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 85, - "column": 16 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 95, - "column": 16 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 99, - "column": 16 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 103, - "column": 16 - }, - { - "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 124, - "column": 10 - } - ], "Form.Control": [ { "filePath": "src/components/Overlays/SocialSharePopover.jsx", @@ -25018,37 +28904,37 @@ }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 77, + "line": 70, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 82, + "line": 75, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 87, + "line": 80, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 97, + "line": 90, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 101, + "line": 94, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 105, + "line": 98, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 126, + "line": 119, "column": 12 } ], @@ -25062,7 +28948,7 @@ "LibraryBooks": [ { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 481, + "line": 488, "column": 24 }, { @@ -25074,7 +28960,7 @@ "AccessTime": [ { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 548, + "line": 555, "column": 26 }, { @@ -25086,7 +28972,7 @@ "School": [ { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 569, + "line": 576, "column": 26 }, { @@ -25098,35 +28984,35 @@ "CreditCard": [ { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 594, + "line": 601, "column": 24 } ], "Collapsible.Trigger": [ { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 708, + "line": 715, "column": 20 } ], "AddCircle": [ { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 712, + "line": 719, "column": 54 } ], "RemoveCircle": [ { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 713, + "line": 720, "column": 52 } ], "FormatQuote": [ { "filePath": "src/components/Program/ProgramMain.jsx", - "line": 761, + "line": 768, "column": 16 } ], @@ -25173,7 +29059,7 @@ "Pagination": [ { "filePath": "src/components/Search/Pagination/index.jsx", - "line": 29, + "line": 44, "column": 4 } ], @@ -25217,27 +29103,6 @@ "column": 10 } ], - "DataTable": [ - { - "filePath": "src/components/Search/Results/FullProductHits.jsx", - "line": 47, - "column": 6 - } - ], - "CardView": [ - { - "filePath": "src/components/Search/Results/FullProductHits.jsx", - "line": 89, - "column": 8 - } - ], - "DataTable.TableFooter": [ - { - "filePath": "src/components/Search/Results/FullProductHits.jsx", - "line": 94, - "column": 8 - } - ], "StatusAlert": [ { "filePath": "src/components/Search/Results/NoResultsBlurb.jsx", @@ -25280,37 +29145,37 @@ }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 75, + "line": 68, "column": 32 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 80, + "line": 73, "column": 32 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 85, + "line": 78, "column": 32 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 95, + "line": 88, "column": 32 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 99, + "line": 92, "column": 32 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 103, + "line": 96, "column": 32 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 124, + "line": 117, "column": 54 } ], @@ -25324,73 +29189,73 @@ "Tabs": [ { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 71, + "line": 64, "column": 8 } ], "Tab": [ { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 72, + "line": 65, "column": 10 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 92, + "line": 85, "column": 10 } ], "Form.Row": [ { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 74, + "line": 67, "column": 14 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 94, + "line": 87, "column": 14 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 123, + "line": 116, "column": 8 } ], "Form.Label": [ { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 76, + "line": 69, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 81, + "line": 74, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 86, + "line": 79, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 96, + "line": 89, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 100, + "line": 93, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 104, + "line": 97, "column": 18 }, { "filePath": "src/pages/secure-preview/DynamicProductList.jsx", - "line": 125, + "line": 118, "column": 12 } ], @@ -25408,23 +29273,23 @@ ], "StarFilled": [ { - "filePath": "src/templates/privacyPolicy.jsx", - "line": 43, + "filePath": "src/templates/privacyPolicyPrevious.jsx", + "line": 44, "column": 14 }, { - "filePath": "src/templates/privacyPolicy.jsx", - "line": 55, + "filePath": "src/templates/privacyPolicyPrevious.jsx", + "line": 56, "column": 14 }, { - "filePath": "src/templates/privacyPolicyES.jsx", - "line": 24, + "filePath": "src/templates/privacyPolicyPreviousES.jsx", + "line": 25, "column": 14 }, { - "filePath": "src/templates/privacyPolicyES.jsx", - "line": 33, + "filePath": "src/templates/privacyPolicyPreviousES.jsx", + "line": 34, "column": 14 } ], diff --git a/docs/decisions/0018-design-tokens-style-dictionary.rst b/docs/decisions/0018-design-tokens-style-dictionary.rst new file mode 100644 index 0000000000..312302ee87 --- /dev/null +++ b/docs/decisions/0018-design-tokens-style-dictionary.rst @@ -0,0 +1,19 @@ +18. Design tokens with Style Dictionary +--------------------------------------- + +Status +------ + +Proposed + +Context +------- + +Decision +-------- + +Consequences +------------ + +Resources +--------- diff --git a/example/package-lock.json b/example/package-lock.json index 6631f07cdf..580f1c87bf 100644 --- a/example/package-lock.json +++ b/example/package-lock.json @@ -11,6 +11,7 @@ "dependencies": { "@edx/brand-openedx": "^1.1.0", "@edx/frontend-platform": "^2.6.1", + "@faker-js/faker": "^7.6.0", "core-js": "^3.22.2", "react": "^16.14.0", "react-dom": "^16.14.0", @@ -127,12 +128,12 @@ } }, "node_modules/@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz", + "integrity": "sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==", "dev": true, "dependencies": { - "eslint-scope": "^5.1.1", + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", "semver": "^6.3.0" }, @@ -1785,13 +1786,13 @@ } }, "node_modules/@babel/runtime-corejs3": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz", - "integrity": "sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==", + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.13.tgz", + "integrity": "sha512-p39/6rmY9uvlzRiLZBIB3G9/EBr66LBMcYm7fIDeSBNdRjF2AGD3rFZucUyAgGHC2N+7DdLvVi33uTjSE44FIw==", "dev": true, "dependencies": { "core-js-pure": "^3.25.1", - "regenerator-runtime": "^0.13.10" + "regenerator-runtime": "^0.13.11" }, "engines": { "node": ">=6.9.0" @@ -1891,9 +1892,9 @@ "integrity": "sha512-ne2ZKF1r0akkt0rEzCAQAk4cTDTI2GiWCpc+T7ldQpw9X57OnUB16dKsFNe40C9uEjL5h3Ps/ZsFM5dm4cIkEQ==" }, "node_modules/@edx/eslint-config": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.1.0.tgz", - "integrity": "sha512-Okv8vkmX+qe+joD7h9DcT9JdRIyy6jJSVWbIHr2dAHKuk5swVFO92JvhC2pYtMg2EPKA1P1Hmz8cmmfw6QoTZw==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.1.1.tgz", + "integrity": "sha512-RqaC5h+VYdq5DwJsEbdJCruibsKWakx/zImuypmwC7odXJ2ls/yMvWzY/Z4k/Xd2QGPhow3y7yQzUsJPb4eheQ==", "dev": true, "peerDependencies": { "eslint": "^6.8.0 || ^7.0.0 || ^8.0.0", @@ -1905,24 +1906,24 @@ } }, "node_modules/@edx/frontend-build": { - "version": "12.3.0", - "resolved": "https://registry.npmjs.org/@edx/frontend-build/-/frontend-build-12.3.0.tgz", - "integrity": "sha512-GewVd5qD59d8hHZFnXyS5jWkDY8TWYENqO5dd+/Kmu7cmjKrp69PKmNyVs+QgZEADodYI5UT48A2LhsDZjDx7A==", + "version": "12.4.19", + "resolved": "https://registry.npmjs.org/@edx/frontend-build/-/frontend-build-12.4.19.tgz", + "integrity": "sha512-l6oF6ErYepRiHGNkHIVIsB+WvnL1OeyyUGe7vxJp9CD30y/cP1iB4/K2zbcVH8v5kxiHhmc/cpWHH5DnJO0KZw==", "dev": true, "dependencies": { "@babel/cli": "7.16.0", "@babel/core": "7.16.0", - "@babel/eslint-parser": "7.18.2", + "@babel/eslint-parser": "7.19.1", "@babel/plugin-proposal-class-properties": "7.16.0", "@babel/plugin-proposal-object-rest-spread": "7.16.0", "@babel/plugin-syntax-dynamic-import": "7.8.3", "@babel/preset-env": "7.16.4", "@babel/preset-react": "7.16.0", - "@edx/eslint-config": "3.1.0", - "@edx/new-relic-source-map-webpack-plugin": "1.0.1", - "@pmmmwh/react-refresh-webpack-plugin": "0.5.3", + "@edx/eslint-config": "3.1.1", + "@edx/new-relic-source-map-webpack-plugin": "1.0.2", + "@pmmmwh/react-refresh-webpack-plugin": "0.5.10", "@svgr/webpack": "6.2.1", - "autoprefixer": "10.2.6", + "autoprefixer": "10.4.13", "babel-jest": "26.6.3", "babel-loader": "8.2.3", "babel-plugin-react-intl": "7.9.4", @@ -1931,36 +1932,37 @@ "clean-webpack-plugin": "3.0.0", "css-loader": "5.2.7", "cssnano": "5.0.12", - "dotenv": "8.2.0", + "dotenv": "8.6.0", "dotenv-webpack": "7.0.3", - "eslint": "8.18.0", + "eslint": "8.29.0", "eslint-config-airbnb": "19.0.4", "eslint-plugin-import": "2.26.0", - "eslint-plugin-jsx-a11y": "6.5.1", - "eslint-plugin-react": "7.30.0", + "eslint-plugin-jsx-a11y": "6.6.1", + "eslint-plugin-react": "7.31.11", "eslint-plugin-react-hooks": "4.6.0", "file-loader": "6.2.0", "html-webpack-plugin": "5.5.0", "identity-obj-proxy": "3.0.0", - "image-webpack-loader": "8.1.0", + "image-minimizer-webpack-plugin": "3.3.0", "jest": "26.6.3", "mini-css-extract-plugin": "1.6.2", - "postcss": "8.4.5", - "postcss-loader": "6.1.1", + "postcss": "8.4.21", + "postcss-loader": "6.2.1", "postcss-rtlcss": "3.5.1", - "react-dev-utils": "12.0.0", - "react-refresh": "0.10.0", - "resolve-url-loader": "5.0.0-beta.1", - "sass": "1.49.9", + "react-dev-utils": "12.0.1", + "react-refresh": "0.14.0", + "resolve-url-loader": "5.0.0", + "sass": "1.56.1", "sass-loader": "12.6.0", + "sharp": "^0.31.0", "source-map-loader": "0.2.4", - "style-loader": "2.0.0", + "style-loader": "3.3.1", "url-loader": "4.1.1", - "webpack": "5.50.0", + "webpack": "5.75.0", "webpack-bundle-analyzer": "4.5.0", "webpack-cli": "4.10.0", "webpack-dev-server": "4.7.3", - "webpack-merge": "5.2.0" + "webpack-merge": "5.8.0" }, "bin": { "fedx-scripts": "bin/fedx-scripts.js" @@ -2035,9 +2037,9 @@ } }, "node_modules/@edx/new-relic-source-map-webpack-plugin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@edx/new-relic-source-map-webpack-plugin/-/new-relic-source-map-webpack-plugin-1.0.1.tgz", - "integrity": "sha512-SAwugqBvDUg7ANdu1uBCkpPp0MnBlfyYAvKwO6Jh6Q4tMIPN6U35IF7MAymn1EZmi28UV6sLpSQPLggQjVQknA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@edx/new-relic-source-map-webpack-plugin/-/new-relic-source-map-webpack-plugin-1.0.2.tgz", + "integrity": "sha512-jwu9WjRtEbv0rvPHGCnhbQbbv6+DTADShj43NQVsuAyD823znjutgoHnlc+9HIOiYiIxjz/wIMcGVwjrTnMceQ==", "dev": true, "dependencies": { "@newrelic/publish-sourcemap": "^5.0.1" @@ -2120,15 +2122,15 @@ } }, "node_modules/@eslint/eslintrc": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", - "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", "dev": true, "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.4.0", - "globals": "^13.15.0", + "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -2149,9 +2151,9 @@ "dev": true }, "node_modules/@eslint/eslintrc/node_modules/globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -2187,6 +2189,15 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@faker-js/faker": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-7.6.0.tgz", + "integrity": "sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==", + "engines": { + "node": ">=14.0.0", + "npm": ">=6.0.0" + } + }, "node_modules/@formatjs/ecma402-abstract": { "version": "1.11.4", "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.11.4.tgz", @@ -2388,19 +2399,32 @@ } }, "node_modules/@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", "dev": true, "dependencies": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" } }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, "node_modules/@humanwhocodes/object-schema": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", @@ -3243,6 +3267,15 @@ "dev": true, "optional": true }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "dependencies": { + "eslint-scope": "5.1.1" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -3279,18 +3312,18 @@ } }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.3.tgz", - "integrity": "sha512-OoTnFb8XEYaOuMNhVDsLRnAO6MCYHNs1g6d8pBcHhDFsi1P3lPbq/IklwtbAx9cG0W4J9KswxZtwGnejrnxp+g==", + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", + "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", "dev": true, "dependencies": { "ansi-html-community": "^0.0.8", "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.8.1", + "core-js-pure": "^3.23.3", "error-stack-parser": "^2.0.6", "find-up": "^5.0.0", "html-entities": "^2.1.0", - "loader-utils": "^2.0.0", + "loader-utils": "^2.0.4", "schema-utils": "^3.0.0", "source-map": "^0.7.3" }, @@ -3301,7 +3334,7 @@ "@types/webpack": "4.x || 5.x", "react-refresh": ">=0.10.0 <1.0.0", "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <3.0.0", + "type-fest": ">=0.17.0 <4.0.0", "webpack": ">=4.43.0 <6.0.0", "webpack-dev-server": "3.x || 4.x", "webpack-hot-middleware": "2.x", @@ -3374,16 +3407,6 @@ "react": ">=16.8.0" } }, - "node_modules/@sindresorhus/is": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", - "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, "node_modules/@sinonjs/commons": { "version": "1.8.4", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.4.tgz", @@ -3842,27 +3865,27 @@ } }, "node_modules/@types/estree": { - "version": "0.0.50", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", - "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", "dev": true }, "node_modules/@types/express": { - "version": "4.17.14", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz", - "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", + "version": "4.17.16", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.16.tgz", + "integrity": "sha512-LkKpqRZ7zqXJuvoELakaFYuETHjZkSol8EV6cNnyishutDBCCdv6+dsKPbKkCcIk57qRphOLY5sEgClw1bO3gA==", "dev": true, "dependencies": { "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", + "@types/express-serve-static-core": "^4.17.31", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { - "version": "4.17.31", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", - "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", + "version": "4.17.33", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", + "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", "dev": true, "dependencies": { "@types/node": "*", @@ -4183,9 +4206,9 @@ } }, "node_modules/@types/ws": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", - "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", + "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", "dev": true, "dependencies": { "@types/node": "*" @@ -4481,9 +4504,9 @@ } }, "node_modules/address": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.1.tgz", - "integrity": "sha512-B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "dev": true, "engines": { "node": ">= 10.0.0" @@ -4561,9 +4584,9 @@ } }, "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", @@ -4652,50 +4675,6 @@ "node": ">= 8" } }, - "node_modules/arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "optional": true - }, - "node_modules/archive-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", - "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", - "dev": true, - "optional": true, - "dependencies": { - "file-type": "^4.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/archive-type/node_modules/file-type": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", - "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, "node_modules/argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -4773,15 +4752,15 @@ "dev": true }, "node_modules/array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", "is-string": "^1.0.7" }, "engines": { @@ -4857,6 +4836,19 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, "node_modules/assert-ok": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-ok/-/assert-ok-1.0.0.tgz", @@ -4924,17 +4916,27 @@ } }, "node_modules/autoprefixer": { - "version": "10.2.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.2.6.tgz", - "integrity": "sha512-8lChSmdU6dCNMCQopIf4Pe5kipkAGj/fvTMslCsih0uHpOrXOPUEVOmYMMqmw3cekQkSD7EhIeuYl5y0BLdKqg==", + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + } + ], "dependencies": { - "browserslist": "^4.16.6", - "caniuse-lite": "^1.0.30001230", - "colorette": "^1.2.2", - "fraction.js": "^4.1.1", + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", - "postcss-value-parser": "^4.1.0" + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" }, "bin": { "autoprefixer": "bin/autoprefixer" @@ -4942,18 +4944,26 @@ "engines": { "node": "^10 || ^12 || >=14" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, "peerDependencies": { "postcss": "^8.1.0" } }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/axe-core": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.5.1.tgz", - "integrity": "sha512-1exVbW0X1O/HSr/WMwnaweyqcWOgZgLiVxdLG34pvSQk4NlYQr9OUy0JLwuhFfuVNQzzqgH57eYzkFBCb3bIsQ==", + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", + "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", "dev": true, "engines": { "node": ">=4" @@ -5107,9 +5117,9 @@ } }, "node_modules/babel-loader/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" @@ -5119,9 +5129,9 @@ } }, "node_modules/babel-loader/node_modules/loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -5423,8 +5433,7 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "optional": true + ] }, "node_modules/batch": { "version": "0.6.1", @@ -5441,441 +5450,38 @@ "node": "*" } }, - "node_modules/bin-build": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", - "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", - "dev": true, - "optional": true, - "dependencies": { - "decompress": "^4.0.0", - "download": "^6.2.2", - "execa": "^0.7.0", - "p-map-series": "^1.0.0", - "tempfile": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-build/node_modules/cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", - "dev": true, - "optional": true, - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "node_modules/bin-build/node_modules/execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", - "dev": true, - "optional": true, - "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-build/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-build/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "optional": true, - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-build/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-build/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "optional": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/bin-check": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", - "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", - "dev": true, - "optional": true, - "dependencies": { - "execa": "^0.7.0", - "executable": "^4.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-check/node_modules/cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", - "dev": true, - "optional": true, - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "node_modules/bin-check/node_modules/execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", - "dev": true, - "optional": true, - "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-check/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-check/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "optional": true, - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-check/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/bin-check/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "optional": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, - "node_modules/bin-version": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", - "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", - "dev": true, - "optional": true, - "dependencies": { - "execa": "^1.0.0", - "find-versions": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/bin-version-check": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", - "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, - "optional": true, - "dependencies": { - "bin-version": "^3.0.0", - "semver": "^5.6.0", - "semver-truncate": "^1.1.2" - }, "engines": { - "node": ">=6" - } - }, - "node_modules/bin-version-check/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true, - "bin": { - "semver": "bin/semver" + "node": ">=8" } }, - "node_modules/bin-wrapper": { + "node_modules/bl": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", - "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", - "dev": true, - "optional": true, - "dependencies": { - "bin-check": "^4.1.0", - "bin-version-check": "^4.0.0", - "download": "^7.1.0", - "import-lazy": "^3.1.0", - "os-filter-obj": "^2.0.0", - "pify": "^4.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/bin-wrapper/node_modules/download": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", - "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, - "optional": true, "dependencies": { - "archive-type": "^4.0.0", - "caw": "^2.0.1", - "content-disposition": "^0.5.2", - "decompress": "^4.2.0", - "ext-name": "^5.0.0", - "file-type": "^8.1.0", - "filenamify": "^2.0.0", - "get-stream": "^3.0.0", - "got": "^8.3.1", - "make-dir": "^1.2.0", - "p-event": "^2.1.0", - "pify": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/bin-wrapper/node_modules/download/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-wrapper/node_modules/file-type": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", - "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/bin-wrapper/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-wrapper/node_modules/got": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", - "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", - "dev": true, - "optional": true, - "dependencies": { - "@sindresorhus/is": "^0.7.0", - "cacheable-request": "^2.1.1", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "into-stream": "^3.1.0", - "is-retry-allowed": "^1.1.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "mimic-response": "^1.0.0", - "p-cancelable": "^0.4.0", - "p-timeout": "^2.0.1", - "pify": "^3.0.0", - "safe-buffer": "^5.1.1", - "timed-out": "^4.0.1", - "url-parse-lax": "^3.0.0", - "url-to-options": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-wrapper/node_modules/got/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-wrapper/node_modules/make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "optional": true, - "dependencies": { - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-wrapper/node_modules/make-dir/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-wrapper/node_modules/p-cancelable": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", - "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-wrapper/node_modules/p-event": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", - "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", - "dev": true, - "optional": true, - "dependencies": { - "p-timeout": "^2.0.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/bin-wrapper/node_modules/p-timeout": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", - "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", - "dev": true, - "optional": true, - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/bin-wrapper/node_modules/prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/bin-wrapper/node_modules/url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "node_modules/bl/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, - "optional": true, "dependencies": { - "prepend-http": "^2.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=4" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/bl": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", - "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", - "dev": true, - "optional": true, - "dependencies": { - "readable-stream": "^2.3.5", - "safe-buffer": "^5.1.1" + "node": ">= 6" } }, "node_modules/body-parser": { @@ -6049,47 +5655,11 @@ "url": "https://feross.org/support" } ], - "optional": true, "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, - "node_modules/buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "dev": true, - "optional": true, - "dependencies": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "node_modules/buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", - "dev": true, - "optional": true - }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, - "optional": true, - "engines": { - "node": "*" - } - }, - "node_modules/buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", - "dev": true, - "optional": true - }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -6136,105 +5706,6 @@ "resolved": "https://registry.npmjs.org/cache-control-esm/-/cache-control-esm-1.0.0.tgz", "integrity": "sha512-Fa3UV4+eIk4EOih8FTV6EEsVKO0W5XWtNs6FC3InTfVz+EjurjPfDXY5wZDo/lxjDxg5RjNcurLyxEJBcEUx9g==" }, - "node_modules/cacheable-request": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", - "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", - "dev": true, - "optional": true, - "dependencies": { - "clone-response": "1.0.2", - "get-stream": "3.0.0", - "http-cache-semantics": "3.8.1", - "keyv": "3.0.0", - "lowercase-keys": "1.0.0", - "normalize-url": "2.0.1", - "responselike": "1.0.2" - } - }, - "node_modules/cacheable-request/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/cacheable-request/node_modules/lowercase-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", - "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cacheable-request/node_modules/normalize-url": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", - "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", - "dev": true, - "optional": true, - "dependencies": { - "prepend-http": "^2.0.0", - "query-string": "^5.0.1", - "sort-keys": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cacheable-request/node_modules/prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/cacheable-request/node_modules/query-string": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", - "dev": true, - "optional": true, - "dependencies": { - "decode-uri-component": "^0.2.0", - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cacheable-request/node_modules/sort-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", - "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", - "dev": true, - "optional": true, - "dependencies": { - "is-plain-obj": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cacheable-request/node_modules/strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", @@ -6328,22 +5799,6 @@ "isarray": "0.0.1" } }, - "node_modules/caw": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", - "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", - "dev": true, - "optional": true, - "dependencies": { - "get-proxy": "^2.0.0", - "isurl": "^1.0.0-alpha5", - "tunnel-agent": "^0.6.0", - "url-to-options": "^1.0.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -6402,6 +5857,12 @@ "fsevents": "~2.3.2" } }, + "node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, "node_modules/chrome-trace-event": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", @@ -6598,16 +6059,6 @@ "node": ">=6" } }, - "node_modules/clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", - "dev": true, - "optional": true, - "dependencies": { - "mimic-response": "^1.0.0" - } - }, "node_modules/co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -6637,6 +6088,19 @@ "node": ">=0.10.0" } }, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" + } + }, "node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", @@ -6652,6 +6116,34 @@ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dev": true, + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, + "node_modules/color/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, "node_modules/colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", @@ -6659,9 +6151,9 @@ "dev": true }, "node_modules/colorette": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "dev": true }, "node_modules/combined-stream": { @@ -6759,17 +6251,6 @@ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "optional": true, - "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, "node_modules/confusing-browser-globals": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", @@ -6827,9 +6308,9 @@ "dev": true }, "node_modules/cookiejar": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz", - "integrity": "sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz", + "integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==", "dev": true }, "node_modules/copy-descriptor": { @@ -6865,9 +6346,9 @@ } }, "node_modules/core-js-pure": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz", - "integrity": "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==", + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.2.tgz", + "integrity": "sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A==", "dev": true, "hasInstallScript": true, "funding": { @@ -6959,18 +6440,6 @@ "webpack": "^4.27.0 || ^5.0.0" } }, - "node_modules/css-loader/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/css-loader/node_modules/semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -6986,12 +6455,6 @@ "node": ">=10" } }, - "node_modules/css-loader/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/css-mediaquery": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/css-mediaquery/-/css-mediaquery-0.1.2.tgz", @@ -7178,27 +6641,6 @@ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" }, - "node_modules/cwebp-bin": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cwebp-bin/-/cwebp-bin-7.0.1.tgz", - "integrity": "sha512-Ko5ADY74/dbfd8xG0+f+MUP9UKjCe1TG4ehpW0E5y4YlPdwDJlGrSzSR4/Yonxpm9QmZE1RratkIxFlKeyo3FA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "dependencies": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.1" - }, - "bin": { - "cwebp": "cli.js" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/imagemin/cwebp-bin?sponsor=1" - } - }, "node_modules/damerau-levenshtein": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", @@ -7252,204 +6694,26 @@ "dev": true }, "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "engines": { "node": ">=0.10" } }, - "node_modules/decompress": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", - "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", - "dev": true, - "optional": true, - "dependencies": { - "decompress-tar": "^4.0.0", - "decompress-tarbz2": "^4.0.0", - "decompress-targz": "^4.0.0", - "decompress-unzip": "^4.0.1", - "graceful-fs": "^4.1.10", - "make-dir": "^1.0.0", - "pify": "^2.3.0", - "strip-dirs": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "dev": true, - "optional": true, - "dependencies": { - "mimic-response": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress-tar": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", - "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", - "dev": true, - "optional": true, - "dependencies": { - "file-type": "^5.2.0", - "is-stream": "^1.1.0", - "tar-stream": "^1.5.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress-tar/node_modules/file-type": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress-tarbz2": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", - "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", - "dev": true, - "optional": true, - "dependencies": { - "decompress-tar": "^4.1.0", - "file-type": "^6.1.0", - "is-stream": "^1.1.0", - "seek-bzip": "^1.0.5", - "unbzip2-stream": "^1.0.9" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress-tarbz2/node_modules/file-type": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", - "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress-targz": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", - "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", - "dev": true, - "optional": true, - "dependencies": { - "decompress-tar": "^4.1.1", - "file-type": "^5.2.0", - "is-stream": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress-targz/node_modules/file-type": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress-unzip": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", - "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", - "dev": true, - "optional": true, - "dependencies": { - "file-type": "^3.8.0", - "get-stream": "^2.2.0", - "pify": "^2.3.0", - "yauzl": "^2.4.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress-unzip/node_modules/file-type": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", - "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decompress-unzip/node_modules/get-stream": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", - "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dev": true, - "optional": true, "dependencies": { - "object-assign": "^4.0.1", - "pinkie-promise": "^2.0.0" + "mimic-response": "^3.1.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decompress-unzip/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/decompress/node_modules/make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "optional": true, - "dependencies": { - "pify": "^3.0.0" + "node": ">=10" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress/node_modules/make-dir/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/decompress/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/deep-equal": { @@ -7469,6 +6733,15 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true, + "engines": { + "node": ">=4.0.0" + } + }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", @@ -7648,6 +6921,15 @@ "npm": "1.2.8000 || >= 1.4.16" } }, + "node_modules/detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -7879,12 +7161,12 @@ } }, "node_modules/dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", + "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" } }, "node_modules/dotenv-defaults": { @@ -7911,85 +7193,12 @@ "webpack": "^4 || ^5" } }, - "node_modules/download": { - "version": "6.2.5", - "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", - "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", - "dev": true, - "optional": true, - "dependencies": { - "caw": "^2.0.0", - "content-disposition": "^0.5.2", - "decompress": "^4.0.0", - "ext-name": "^5.0.0", - "file-type": "5.2.0", - "filenamify": "^2.0.0", - "get-stream": "^3.0.0", - "got": "^7.0.0", - "make-dir": "^1.0.0", - "p-event": "^1.0.0", - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/download/node_modules/file-type": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/download/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/download/node_modules/make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "optional": true, - "dependencies": { - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/download/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, "node_modules/duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "node_modules/duplexer3": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", - "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", - "dev": true, - "optional": true - }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -8121,35 +7330,44 @@ } }, "node_modules/es-abstract": { - "version": "1.20.4", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz", - "integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==", + "version": "1.21.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", + "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", "dev": true, "dependencies": { + "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "function.prototype.name": "^1.1.5", "get-intrinsic": "^1.1.3", "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", "has": "^1.0.3", "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", + "internal-slot": "^1.0.4", + "is-array-buffer": "^3.0.1", "is-callable": "^1.2.7", "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", "is-weakref": "^1.0.2", "object-inspect": "^1.12.2", "object-keys": "^1.1.1", "object.assign": "^4.1.4", "regexp.prototype.flags": "^1.4.3", "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" }, "engines": { "node": ">= 0.4" @@ -8159,11 +7377,25 @@ } }, "node_modules/es-module-lexer": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz", - "integrity": "sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==", + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "dev": true }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, "node_modules/es-shim-unscopables": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", @@ -8298,13 +7530,15 @@ } }, "node_modules/eslint": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.18.0.tgz", - "integrity": "sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA==", + "version": "8.29.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz", + "integrity": "sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==", "dev": true, "dependencies": { - "@eslint/eslintrc": "^1.3.0", - "@humanwhocodes/config-array": "^0.9.2", + "@eslint/eslintrc": "^1.3.3", + "@humanwhocodes/config-array": "^0.11.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", @@ -8314,18 +7548,21 @@ "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", + "espree": "^9.4.0", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", "globals": "^13.15.0", + "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", @@ -8336,8 +7573,7 @@ "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" @@ -8390,13 +7626,14 @@ } }, "node_modules/eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", "dev": true, "dependencies": { "debug": "^3.2.7", - "resolve": "^1.20.0" + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" } }, "node_modules/eslint-import-resolver-node/node_modules/debug": { @@ -8489,23 +7726,24 @@ "dev": true }, "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", - "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz", + "integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==", "dev": true, "dependencies": { - "@babel/runtime": "^7.16.3", + "@babel/runtime": "^7.18.9", "aria-query": "^4.2.2", - "array-includes": "^3.1.4", + "array-includes": "^3.1.5", "ast-types-flow": "^0.0.7", - "axe-core": "^4.3.5", + "axe-core": "^4.4.3", "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.7", + "damerau-levenshtein": "^1.0.8", "emoji-regex": "^9.2.2", "has": "^1.0.3", - "jsx-ast-utils": "^3.2.1", + "jsx-ast-utils": "^3.3.2", "language-tags": "^1.0.5", - "minimatch": "^3.0.4" + "minimatch": "^3.1.2", + "semver": "^6.3.0" }, "engines": { "node": ">=4.0" @@ -8515,25 +7753,26 @@ } }, "node_modules/eslint-plugin-react": { - "version": "7.30.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.30.0.tgz", - "integrity": "sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==", + "version": "7.31.11", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz", + "integrity": "sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==", "dev": true, "dependencies": { - "array-includes": "^3.1.5", - "array.prototype.flatmap": "^1.3.0", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", "doctrine": "^2.1.0", "estraverse": "^5.3.0", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.1", - "object.values": "^1.1.5", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", "prop-types": "^15.8.1", "resolve": "^2.0.0-next.3", "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.7" + "string.prototype.matchall": "^4.0.8" }, "engines": { "node": ">=4" @@ -8734,9 +7973,9 @@ } }, "node_modules/eslint/node_modules/globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", "dev": true, "dependencies": { "type-fest": "^0.20.2" @@ -8757,6 +7996,15 @@ "node": ">=8" } }, + "node_modules/eslint/node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, "node_modules/eslint/node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", @@ -8794,9 +8042,9 @@ } }, "node_modules/espree": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz", - "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==", + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", "dev": true, "dependencies": { "acorn": "^8.8.0", @@ -8898,110 +8146,6 @@ "node": ">=0.8.x" } }, - "node_modules/exec-buffer": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", - "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", - "dev": true, - "optional": true, - "dependencies": { - "execa": "^0.7.0", - "p-finally": "^1.0.0", - "pify": "^3.0.0", - "rimraf": "^2.5.4", - "tempfile": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/exec-buffer/node_modules/cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", - "dev": true, - "optional": true, - "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "node_modules/exec-buffer/node_modules/execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", - "dev": true, - "optional": true, - "dependencies": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/exec-buffer/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/exec-buffer/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/exec-buffer/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "optional": true, - "dependencies": { - "shebang-regex": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/exec-buffer/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/exec-buffer/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "optional": true, - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "which": "bin/which" - } - }, "node_modules/exec-sh": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", @@ -9093,29 +8237,6 @@ "which": "bin/which" } }, - "node_modules/executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", - "dev": true, - "optional": true, - "dependencies": { - "pify": "^2.2.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/executable/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", @@ -9262,6 +8383,15 @@ "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true }, + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, "node_modules/expect": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", @@ -9390,33 +8520,6 @@ "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", "dev": true }, - "node_modules/ext-list": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", - "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", - "dev": true, - "optional": true, - "dependencies": { - "mime-db": "^1.28.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/ext-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", - "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", - "dev": true, - "optional": true, - "dependencies": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -9522,23 +8625,6 @@ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "node_modules/fast-xml-parser": { - "version": "3.21.1", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz", - "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==", - "dev": true, - "optional": true, - "dependencies": { - "strnum": "^1.0.4" - }, - "bin": { - "xml2js": "cli.js" - }, - "funding": { - "type": "paypal", - "url": "https://paypal.me/naturalintelligence" - } - }, "node_modules/fastest-levenshtein": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", @@ -9549,9 +8635,9 @@ } }, "node_modules/fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "dependencies": { "reusify": "^1.0.4" @@ -9578,16 +8664,6 @@ "bser": "2.1.1" } }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, - "optional": true, - "dependencies": { - "pend": "~1.2.0" - } - }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -9632,40 +8708,6 @@ "node": ">= 12" } }, - "node_modules/file-type": { - "version": "12.4.2", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz", - "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/filename-reserved-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", - "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, - "node_modules/filenamify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", - "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", - "dev": true, - "optional": true, - "dependencies": { - "filename-reserved-regex": "^2.0.0", - "strip-outer": "^1.0.0", - "trim-repeated": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/filesize": { "version": "8.0.7", "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", @@ -9777,19 +8819,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/find-versions": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", - "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", - "dev": true, - "optional": true, - "dependencies": { - "semver-regex": "^2.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", @@ -9864,6 +8893,15 @@ "node": ">=0.10.3" } }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, "node_modules/for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", @@ -9986,18 +9024,6 @@ "node": ">=8" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", @@ -10052,12 +9078,6 @@ "node": ">=6" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/form-data": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", @@ -10130,23 +9150,11 @@ "node": ">= 0.6" } }, - "node_modules/from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", - "dev": true, - "optional": true, - "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, "node_modules/fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true, - "optional": true + "dev": true }, "node_modules/fs-extra": { "version": "9.1.0", @@ -10218,12 +9226,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, "node_modules/functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", @@ -10252,9 +9254,9 @@ } }, "node_modules/get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", "dev": true, "dependencies": { "function-bind": "^1.1.1", @@ -10283,19 +9285,6 @@ "node": ">=8.0.0" } }, - "node_modules/get-proxy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", - "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", - "dev": true, - "optional": true, - "dependencies": { - "npm-conf": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -10333,90 +9322,11 @@ "node": ">=0.10.0" } }, - "node_modules/gifsicle": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-5.3.0.tgz", - "integrity": "sha512-FJTpgdj1Ow/FITB7SVza5HlzXa+/lqEY0tHQazAJbuAdvyJtkH4wIdsR2K414oaTwRXHFLLF+tYbipj+OpYg+Q==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "dependencies": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0", - "execa": "^5.0.0" - }, - "bin": { - "gifsicle": "cli.js" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/imagemin/gisicle-bin?sponsor=1" - } - }, - "node_modules/gifsicle/node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "optional": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/gifsicle/node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gifsicle/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gifsicle/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "optional": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", + "dev": true }, "node_modules/glob": { "version": "7.2.3", @@ -10503,6 +9413,21 @@ "node": ">=4" } }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/globby": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", @@ -10528,40 +9453,16 @@ "node": ">=0.10.0" } }, - "node_modules/got": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", - "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, - "optional": true, "dependencies": { - "decompress-response": "^3.2.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-plain-obj": "^1.1.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "p-cancelable": "^0.3.0", - "p-timeout": "^1.1.1", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "url-parse-lax": "^1.0.0", - "url-to-options": "^1.0.1" + "get-intrinsic": "^1.1.3" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/got/node_modules/get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/graceful-fs": { @@ -10570,6 +9471,12 @@ "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, + "node_modules/grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, "node_modules/growly": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", @@ -10646,14 +9553,16 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-symbol-support-x": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", - "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", "dev": true, - "optional": true, "engines": { - "node": "*" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-symbols": { @@ -10668,19 +9577,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-to-string-tag-x": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", - "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", - "dev": true, - "optional": true, - "dependencies": { - "has-symbol-support-x": "^1.4.1" - }, - "engines": { - "node": "*" - } - }, "node_modules/has-tostringtag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", @@ -10917,13 +9813,6 @@ "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/http-cache-semantics": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", - "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", - "dev": true, - "optional": true - }, "node_modules/http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", @@ -11004,18 +9893,6 @@ } } }, - "node_modules/http-proxy-middleware/node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", @@ -11109,373 +9986,99 @@ "type": "consulting", "url": "https://feross.org/support" } - ], - "optional": true + ] }, "node_modules/ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true, "engines": { "node": ">= 4" } }, - "node_modules/image-webpack-loader": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/image-webpack-loader/-/image-webpack-loader-8.1.0.tgz", - "integrity": "sha512-bxzMIBNu42KGo6Bc9YMB0QEUt+XuVTl2ZSX3oGAlbsqYOkxkT4TEWvVsnwUkCRCYISJrMCEc/s0y8OYrmEfUOg==", - "dev": true, - "dependencies": { - "imagemin": "^7.0.1", - "loader-utils": "^2.0.0", - "object-assign": "^4.1.1", - "schema-utils": "^2.7.1" - }, - "optionalDependencies": { - "imagemin-gifsicle": "^7.0.0", - "imagemin-mozjpeg": "^9.0.0", - "imagemin-optipng": "^8.0.0", - "imagemin-pngquant": "^9.0.2", - "imagemin-svgo": "^9.0.0", - "imagemin-webp": "^7.0.0" - } - }, - "node_modules/image-webpack-loader/node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "node_modules/image-minimizer-webpack-plugin": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/image-minimizer-webpack-plugin/-/image-minimizer-webpack-plugin-3.3.0.tgz", + "integrity": "sha512-WFLJoOhF2f3c2K4NqpqnJdsBkGcBz/i9+qnhS50qQvC+5FEPQZxcsyKaYrUjvIpox6d3kIoEdip3GbxXwHAEpA==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "engines": { - "node": ">= 8.9.0" + "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" - } - }, - "node_modules/imagemin": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz", - "integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==", - "dev": true, - "dependencies": { - "file-type": "^12.0.0", - "globby": "^10.0.0", - "graceful-fs": "^4.2.2", - "junk": "^3.1.0", - "make-dir": "^3.0.0", - "p-pipe": "^3.0.0", - "replace-ext": "^1.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/imagemin-gifsicle": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz", - "integrity": "sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==", - "dev": true, - "optional": true, - "dependencies": { - "execa": "^1.0.0", - "gifsicle": "^5.0.0", - "is-gif": "^3.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/imagemin/imagemin-gifsicle?sponsor=1" - } - }, - "node_modules/imagemin-mozjpeg": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz", - "integrity": "sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==", - "dev": true, - "optional": true, - "dependencies": { - "execa": "^4.0.0", - "is-jpg": "^2.0.0", - "mozjpeg": "^7.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/imagemin-mozjpeg/node_modules/execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "optional": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/imagemin-mozjpeg/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "optional": true, - "dependencies": { - "pump": "^3.0.0" }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imagemin-mozjpeg/node_modules/human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8.12.0" - } - }, - "node_modules/imagemin-mozjpeg/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imagemin-mozjpeg/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "optional": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/imagemin-optipng": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz", - "integrity": "sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==", - "dev": true, - "optional": true, - "dependencies": { - "exec-buffer": "^3.0.0", - "is-png": "^2.0.0", - "optipng-bin": "^7.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/imagemin-pngquant": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz", - "integrity": "sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==", - "dev": true, - "optional": true, - "dependencies": { - "execa": "^4.0.0", - "is-png": "^2.0.0", - "is-stream": "^2.0.0", - "ow": "^0.17.0", - "pngquant-bin": "^6.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/imagemin-pngquant/node_modules/execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "optional": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/imagemin-pngquant/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "optional": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imagemin-pngquant/node_modules/human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8.12.0" - } - }, - "node_modules/imagemin-pngquant/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imagemin-pngquant/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "optional": true, - "dependencies": { - "path-key": "^3.0.0" + "peerDependencies": { + "webpack": "^5.1.0" }, - "engines": { - "node": ">=8" + "peerDependenciesMeta": { + "@squoosh/lib": { + "optional": true + }, + "imagemin": { + "optional": true + }, + "sharp": { + "optional": true + } } }, - "node_modules/imagemin-svgo": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz", - "integrity": "sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==", + "node_modules/image-minimizer-webpack-plugin/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, - "optional": true, "dependencies": { - "is-svg": "^4.2.1", - "svgo": "^2.1.0" - }, - "engines": { - "node": ">=10" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" }, "funding": { - "url": "https://github.com/sindresorhus/imagemin-svgo?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/imagemin-webp": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/imagemin-webp/-/imagemin-webp-7.0.0.tgz", - "integrity": "sha512-JoYjvHNgBLgrQAkeCO7T5iNc8XVpiBmMPZmiXMhalC7K6gwY/3DCEUfNxVPOmNJ+NIJlJFvzcMR9RBxIE74Xxw==", + "node_modules/image-minimizer-webpack-plugin/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, - "optional": true, "dependencies": { - "cwebp-bin": "^7.0.1", - "exec-buffer": "^3.2.0", - "is-cwebp-readable": "^3.0.0" + "fast-deep-equal": "^3.1.3" }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - } - }, - "node_modules/imagemin/node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true, - "engines": { - "node": ">=8" + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/imagemin/node_modules/globby": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", - "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", - "dev": true, - "dependencies": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" - }, - "engines": { - "node": ">=8" - } + "node_modules/image-minimizer-webpack-plugin/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, - "node_modules/imagemin/node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/image-minimizer-webpack-plugin/node_modules/schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, "dependencies": { - "semver": "^6.0.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" }, "engines": { - "node": ">=8" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/imagemin/node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", - "dev": true, - "engines": { - "node": ">=8" + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, "node_modules/immediate": { @@ -11484,9 +10087,9 @@ "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" }, "node_modules/immer": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.16.tgz", - "integrity": "sha512-qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ==", + "version": "9.0.18", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.18.tgz", + "integrity": "sha512-eAPNpsj7Ax1q6Y/3lm2PmlwRcFzpON7HSNQ3ru5WQH1/PSpnyed/HpNOELl2CxLKoj4r+bAHgdyKqW5gc2Se1A==", "dev": true, "funding": { "type": "opencollective", @@ -11524,16 +10127,6 @@ "node": ">=4" } }, - "node_modules/import-lazy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", - "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, "node_modules/import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -11592,12 +10185,12 @@ "dev": true }, "node_modules/internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz", + "integrity": "sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.1.0", + "get-intrinsic": "^1.1.3", "has": "^1.0.3", "side-channel": "^1.0.4" }, @@ -11635,20 +10228,6 @@ "@formatjs/intl-numberformat": "^5.5.2" } }, - "node_modules/into-stream": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", - "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", - "dev": true, - "optional": true, - "dependencies": { - "from2": "^2.1.1", - "p-is-promise": "^1.1.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/invariant": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", @@ -11701,6 +10280,20 @@ "url": "https://github.com/sponsors/ljharb" } }, + "node_modules/is-array-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz", + "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -11788,26 +10381,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-cwebp-readable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz", - "integrity": "sha512-bpELc7/Q1/U5MWHn4NdHI44R3jxk0h9ew9ljzabiRl70/UIjL/ZAqRMb52F5+eke/VC8yTiv4Ewryo1fPWidvA==", - "dev": true, - "optional": true, - "dependencies": { - "file-type": "^10.5.0" - } - }, - "node_modules/is-cwebp-readable/node_modules/file-type": { - "version": "10.11.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", - "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, "node_modules/is-data-descriptor": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", @@ -11903,29 +10476,6 @@ "node": ">=6" } }, - "node_modules/is-gif": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", - "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", - "dev": true, - "optional": true, - "dependencies": { - "file-type": "^10.4.0" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-gif/node_modules/file-type": { - "version": "10.11.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", - "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -11971,23 +10521,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-jpg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", - "integrity": "sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/is-natural-number": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", - "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", - "dev": true, - "optional": true - }, "node_modules/is-negative-zero": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", @@ -12024,16 +10557,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", - "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", - "dev": true, - "optional": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/is-path-cwd": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", @@ -12068,13 +10591,15 @@ } }, "node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true, - "optional": true, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-plain-object": { @@ -12089,16 +10614,6 @@ "node": ">=0.10.0" } }, - "node_modules/is-png": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-png/-/is-png-2.0.0.tgz", - "integrity": "sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8" - } - }, "node_modules/is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", @@ -12127,16 +10642,6 @@ "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", "dev": true }, - "node_modules/is-retry-allowed": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/is-root": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", @@ -12182,29 +10687,32 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-svg": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.2.tgz", - "integrity": "sha512-mM90duy00JGMyjqIVHu9gNTjywdZV+8qNasX8cm/EEYZ53PHDgajvbBwNVvty5dwSAxLUD3p3bdo+7sR/UMrpw==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, - "optional": true, "dependencies": { - "fast-xml-parser": "^3.19.0" + "has-symbols": "^1.0.2" }, "engines": { - "node": ">=6" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -12396,20 +10904,6 @@ "node": ">=8" } }, - "node_modules/isurl": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", - "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", - "dev": true, - "optional": true, - "dependencies": { - "has-to-string-tag-x": "^1.2.0", - "is-object": "^1.0.1" - }, - "engines": { - "node": ">= 4" - } - }, "node_modules/jest": { "version": "26.6.3", "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz", @@ -13990,18 +12484,6 @@ "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/jest-snapshot/node_modules/semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -14029,12 +12511,6 @@ "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/jest-util": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-26.6.2.tgz", @@ -14338,6 +12814,16 @@ "integrity": "sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw==", "peer": true }, + "node_modules/js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/js-sdsl" + } + }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -14414,19 +12900,6 @@ "node": ">=4" } }, - "node_modules/json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", - "dev": true, - "optional": true - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -14446,9 +12919,9 @@ "dev": true }, "node_modules/json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, "bin": { "json5": "lib/cli.js" @@ -14482,30 +12955,11 @@ "node": ">=4.0" } }, - "node_modules/junk": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", - "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/jwt-decode": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz", "integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==" }, - "node_modules/keyv": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", - "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", - "dev": true, - "optional": true, - "dependencies": { - "json-buffer": "3.0.0" - } - }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -14540,12 +12994,12 @@ "dev": true }, "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.7.tgz", + "integrity": "sha512-bSytju1/657hFjgUzPAPqszxH62ouE8nQFoFaVlIQfne4wO/wXC9A4+m8jYve7YBBvi59eq0SUpcshvG8h5Usw==", "dev": true, "dependencies": { - "language-subtag-registry": "~0.3.2" + "language-subtag-registry": "^0.3.20" } }, "node_modules/leven": { @@ -14603,9 +13057,9 @@ } }, "node_modules/loader-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.3.tgz", - "integrity": "sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -14711,25 +13165,16 @@ "tslib": "^2.0.3" } }, - "node_modules/lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "optional": true, "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" } }, "node_modules/mailto-link": { @@ -14834,9 +13279,9 @@ } }, "node_modules/memfs": { - "version": "3.4.9", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.9.tgz", - "integrity": "sha512-3rm8kbrzpUGRyPKSGuk387NZOwQ90O4rI9tsWQkzNW7BLSnKGp23RsEsKK8N8QVCrtJoAMqy3spxHC4os4G6PQ==", + "version": "3.4.13", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz", + "integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==", "dev": true, "dependencies": { "fs-monkey": "^1.0.3" @@ -14931,13 +13376,15 @@ } }, "node_modules/mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "dev": true, - "optional": true, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/mini-css-extract-plugin": { @@ -15012,23 +13459,11 @@ "mkdirp": "bin/cmd.js" } }, - "node_modules/mozjpeg": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.1.tgz", - "integrity": "sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "dependencies": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0" - }, - "bin": { - "mozjpeg": "cli.js" - }, - "engines": { - "node": ">=10" - } + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true }, "node_modules/mrmime": { "version": "1.0.1", @@ -15098,6 +13533,12 @@ "node": ">=0.10.0" } }, + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", + "dev": true + }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -15135,6 +13576,39 @@ "tslib": "^2.0.3" } }, + "node_modules/node-abi": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz", + "integrity": "sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==", + "dev": true, + "dependencies": { + "semver": "^7.3.5" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-abi/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-addon-api": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==", + "dev": true + }, "node_modules/node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", @@ -15165,19 +13639,6 @@ "which": "^2.0.2" } }, - "node_modules/node-notifier/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "optional": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/node-notifier/node_modules/semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -15194,13 +13655,6 @@ "node": ">=10" } }, - "node_modules/node-notifier/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "optional": true - }, "node_modules/node-releases": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.6.tgz", @@ -15258,30 +13712,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm-conf": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", - "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", - "dev": true, - "optional": true, - "dependencies": { - "config-chain": "^1.1.11", - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm-conf/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, "node_modules/npm-run-path": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", @@ -15421,9 +13851,9 @@ "peer": true }, "node_modules/object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15485,28 +13915,28 @@ } }, "node_modules/object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { "node": ">= 0.4" } }, "node_modules/object.fromentries": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { "node": ">= 0.4" @@ -15516,13 +13946,13 @@ } }, "node_modules/object.hasown": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz", - "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", "dev": true, "dependencies": { "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "es-abstract": "^1.20.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -15541,14 +13971,14 @@ } }, "node_modules/object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { "node": ">= 0.4" @@ -15650,76 +14080,6 @@ "node": ">= 0.8.0" } }, - "node_modules/optipng-bin": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-7.0.1.tgz", - "integrity": "sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "dependencies": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0" - }, - "bin": { - "optipng": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/os-filter-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", - "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", - "dev": true, - "optional": true, - "dependencies": { - "arch": "^2.1.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/ow": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/ow/-/ow-0.17.0.tgz", - "integrity": "sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==", - "dev": true, - "optional": true, - "dependencies": { - "type-fest": "^0.11.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ow/node_modules/type-fest": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", - "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-cancelable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", - "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, "node_modules/p-each-series": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", @@ -15732,19 +14092,6 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-event": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", - "integrity": "sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==", - "dev": true, - "optional": true, - "dependencies": { - "p-timeout": "^1.1.1" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", @@ -15754,16 +14101,6 @@ "node": ">=4" } }, - "node_modules/p-is-promise": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", - "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -15803,41 +14140,6 @@ "node": ">=6" } }, - "node_modules/p-map-series": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", - "integrity": "sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==", - "dev": true, - "optional": true, - "dependencies": { - "p-reduce": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/p-pipe": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", - "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/p-reduce": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", - "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=4" - } - }, "node_modules/p-retry": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", @@ -15851,19 +14153,6 @@ "node": ">=8" } }, - "node_modules/p-timeout": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", - "integrity": "sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==", - "dev": true, - "optional": true, - "dependencies": { - "p-finally": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", @@ -16003,13 +14292,6 @@ "node": ">=8" } }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true, - "optional": true - }, "node_modules/picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -16204,101 +14486,6 @@ "node": ">=4" } }, - "node_modules/pngquant-bin": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.1.tgz", - "integrity": "sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "dependencies": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.1", - "execa": "^4.0.0" - }, - "bin": { - "pngquant": "cli.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/pngquant-bin/node_modules/execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "optional": true, - "dependencies": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/pngquant-bin/node_modules/get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "optional": true, - "dependencies": { - "pump": "^3.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pngquant-bin/node_modules/human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8.12.0" - } - }, - "node_modules/pngquant-bin/node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/pngquant-bin/node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "optional": true, - "dependencies": { - "path-key": "^3.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/popper.js": { "version": "1.16.1", "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", @@ -16343,21 +14530,27 @@ } }, "node_modules/postcss": { - "version": "8.4.5", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.5.tgz", - "integrity": "sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==", + "version": "8.4.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", + "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], "dependencies": { - "nanoid": "^3.1.30", + "nanoid": "^3.3.4", "picocolors": "^1.0.0", - "source-map-js": "^1.0.1" + "source-map-js": "^1.0.2" }, "engines": { "node": "^10 || ^12 || >=14" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" } }, "node_modules/postcss-calc": { @@ -16456,13 +14649,13 @@ } }, "node_modules/postcss-loader": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.1.1.tgz", - "integrity": "sha512-lBmJMvRh1D40dqpWKr9Rpygwxn8M74U9uaCSeYGNKLGInbk9mXBt1ultHf2dH9Ghk6Ue4UXlXWwGMH9QdUJ5ug==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", "dev": true, "dependencies": { "cosmiconfig": "^7.0.0", - "klona": "^2.0.4", + "klona": "^2.0.5", "semver": "^7.3.5" }, "engines": { @@ -16477,18 +14670,6 @@ "webpack": "^5.0.0" } }, - "node_modules/postcss-loader/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, "node_modules/postcss-loader/node_modules/semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -16504,12 +14685,6 @@ "node": ">=10" } }, - "node_modules/postcss-loader/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, "node_modules/postcss-merge-longhand": { "version": "5.1.7", "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", @@ -16913,6 +15088,32 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, + "node_modules/prebuild-install": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", + "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", + "dev": true, + "dependencies": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -16922,16 +15123,6 @@ "node": ">= 0.8.0" } }, - "node_modules/prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/pretty-error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", @@ -17043,13 +15234,6 @@ "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true, - "optional": true - }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", @@ -17072,13 +15256,6 @@ "node": ">= 0.10" } }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", - "dev": true, - "optional": true - }, "node_modules/psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", @@ -17210,6 +15387,30 @@ "node": ">= 0.8" } }, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "dependencies": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "bin": { + "rc": "cli.js" + } + }, + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, "node_modules/react": { "version": "16.14.0", "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", @@ -17265,9 +15466,9 @@ } }, "node_modules/react-dev-utils": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.0.tgz", - "integrity": "sha512-xBQkitdxozPxt1YZ9O1097EJiVpwHr9FoAuEVURCKV0Av8NBERovJauzP7bo1ThvuhZ4shsQ1AJiu4vQpoT1AQ==", + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", "dev": true, "dependencies": { "@babel/code-frame": "^7.16.0", @@ -17289,7 +15490,7 @@ "open": "^8.4.0", "pkg-up": "^3.1.0", "prompts": "^2.4.2", - "react-error-overlay": "^6.0.10", + "react-error-overlay": "^6.0.11", "recursive-readdir": "^2.2.2", "shell-quote": "^1.7.3", "strip-ansi": "^6.0.1", @@ -17399,9 +15600,9 @@ } }, "node_modules/react-dev-utils/node_modules/loader-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", - "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", "dev": true, "engines": { "node": ">= 12.13.0" @@ -17634,9 +15835,9 @@ } }, "node_modules/react-refresh": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.10.0.tgz", - "integrity": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==", + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", "dev": true, "engines": { "node": ">=0.10.0" @@ -17996,9 +16197,9 @@ } }, "node_modules/regenerator-runtime": { - "version": "0.13.10", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz", - "integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==" + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, "node_modules/regenerator-transform": { "version": "0.15.0", @@ -18147,15 +16348,6 @@ "node": ">=0.10" } }, - "node_modules/replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "dev": true, - "engines": { - "node": ">= 0.10" - } - }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -18237,10 +16429,9 @@ "dev": true }, "node_modules/resolve-url-loader": { - "version": "5.0.0-beta.1", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0-beta.1.tgz", - "integrity": "sha512-MXkuP7+etG/4H96tZnbUOX9g2KiJaEpJ7cnjmVZUYkIXWKh2soTZF/ghczKVw/qKZZplDDjZwR5xGztD9ex7KQ==", - "deprecated": "version 5 is now released", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", + "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", "dev": true, "dependencies": { "adjust-sourcemap-loader": "^4.0.0", @@ -18262,16 +16453,6 @@ "node": ">=0.10.0" } }, - "node_modules/responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", - "dev": true, - "optional": true, - "dependencies": { - "lowercase-keys": "^1.0.0" - } - }, "node_modules/ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", @@ -18585,9 +16766,9 @@ } }, "node_modules/sass": { - "version": "1.49.9", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.49.9.tgz", - "integrity": "sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==", + "version": "1.56.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz", + "integrity": "sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==", "dev": true, "dependencies": { "chokidar": ">=3.0.0 <4.0.0", @@ -18678,27 +16859,6 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/seek-bzip": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", - "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", - "dev": true, - "optional": true, - "dependencies": { - "commander": "^2.8.1" - }, - "bin": { - "seek-bunzip": "bin/seek-bunzip", - "seek-table": "bin/seek-bzip-table" - } - }, - "node_modules/seek-bzip/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true, - "optional": true - }, "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", @@ -18726,39 +16886,6 @@ "semver": "bin/semver.js" } }, - "node_modules/semver-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", - "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", - "dev": true, - "optional": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/semver-truncate": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", - "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", - "dev": true, - "optional": true, - "dependencies": { - "semver": "^5.3.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/semver-truncate/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true, - "bin": { - "semver": "bin/semver" - } - }, "node_modules/send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", @@ -18972,6 +17099,44 @@ "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==", "peer": true }, + "node_modules/sharp": { + "version": "0.31.3", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", + "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "color": "^4.2.3", + "detect-libc": "^2.0.1", + "node-addon-api": "^5.0.0", + "prebuild-install": "^7.1.1", + "semver": "^7.3.8", + "simple-get": "^4.0.1", + "tar-fs": "^2.1.1", + "tunnel-agent": "^0.6.0" + }, + "engines": { + "node": ">=14.15.0" + }, + "funding": { + "url": "https://opencollective.com/libvips" + } + }, + "node_modules/sharp/node_modules/semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -19029,6 +17194,66 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, + "node_modules/simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "node_modules/simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.3.1" + } + }, + "node_modules/simple-swizzle/node_modules/is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + }, "node_modules/sirv": { "version": "1.0.19", "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", @@ -19257,32 +17482,6 @@ "websocket-driver": "^0.7.4" } }, - "node_modules/sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", - "dev": true, - "optional": true, - "dependencies": { - "is-plain-obj": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sort-keys-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", - "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", - "dev": true, - "optional": true, - "dependencies": { - "sort-keys": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", @@ -19321,9 +17520,9 @@ } }, "node_modules/source-map-loader/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" @@ -19333,9 +17532,9 @@ } }, "node_modules/source-map-loader/node_modules/loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -19686,18 +17885,18 @@ "dev": true }, "node_modules/string.prototype.matchall": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", - "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.1", + "regexp.prototype.flags": "^1.4.3", "side-channel": "^1.0.4" }, "funding": { @@ -19705,28 +17904,28 @@ } }, "node_modules/string.prototype.trimend": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", - "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "es-abstract": "^1.20.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/string.prototype.trimstart": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", - "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", "dev": true, "dependencies": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "es-abstract": "^1.20.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" @@ -19753,16 +17952,6 @@ "node": ">=8" } }, - "node_modules/strip-dirs": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", - "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", - "dev": true, - "optional": true, - "dependencies": { - "is-natural-number": "^4.0.1" - } - }, "node_modules/strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", @@ -19793,44 +17982,20 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/strip-outer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", - "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", - "dev": true, - "optional": true, - "dependencies": { - "escape-string-regexp": "^1.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/strnum": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", - "dev": true, - "optional": true - }, "node_modules/style-loader": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", - "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", + "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", "dev": true, - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, "engines": { - "node": ">= 10.13.0" + "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "webpack": "^5.0.0" } }, "node_modules/stylehacks": { @@ -20009,58 +18174,46 @@ "node": ">=6" } }, - "node_modules/tar-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", - "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "node_modules/tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", "dev": true, - "optional": true, "dependencies": { - "bl": "^1.0.0", - "buffer-alloc": "^1.2.0", - "end-of-stream": "^1.0.0", - "fs-constants": "^1.0.0", - "readable-stream": "^2.3.0", - "to-buffer": "^1.1.1", - "xtend": "^4.0.0" - }, - "engines": { - "node": ">= 0.8.0" + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" } }, - "node_modules/temp-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", - "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", + "node_modules/tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, - "optional": true, + "dependencies": { + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" + }, "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/tempfile": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", - "integrity": "sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==", + "node_modules/tar-stream/node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, - "optional": true, "dependencies": { - "temp-dir": "^1.0.0", - "uuid": "^3.0.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">=4" - } - }, - "node_modules/tempfile/node_modules/uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", - "deprecated": "Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details.", - "dev": true, - "optional": true, - "bin": { - "uuid": "bin/uuid" + "node": ">= 6" } }, "node_modules/terminal-link": { @@ -20201,29 +18354,12 @@ "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", "dev": true }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true, - "optional": true - }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, - "node_modules/timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/tiny-invariant": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", @@ -20240,13 +18376,6 @@ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, - "node_modules/to-buffer": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", - "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", - "dev": true, - "optional": true - }, "node_modules/to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", @@ -20361,19 +18490,6 @@ "node": ">=8" } }, - "node_modules/trim-repeated": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", - "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", - "dev": true, - "optional": true, - "dependencies": { - "escape-string-regexp": "^1.0.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, "node_modules/tsconfig-paths": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", @@ -20387,9 +18503,9 @@ } }, "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" @@ -20417,7 +18533,6 @@ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, - "optional": true, "dependencies": { "safe-buffer": "^5.0.1" }, @@ -20471,6 +18586,20 @@ "node": ">= 0.6" } }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -20508,17 +18637,6 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/unbzip2-stream": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", - "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", - "dev": true, - "optional": true, - "dependencies": { - "buffer": "^5.2.1", - "through": "^2.3.8" - } - }, "node_modules/uncontrollable": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", @@ -20758,29 +18876,6 @@ "requires-port": "^1.0.0" } }, - "node_modules/url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", - "dev": true, - "optional": true, - "dependencies": { - "prepend-http": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/url-to-options": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", - "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", - "dev": true, - "optional": true, - "engines": { - "node": ">= 4" - } - }, "node_modules/use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", @@ -20863,12 +18958,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, "node_modules/v8-to-istanbul": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz", @@ -20988,35 +19077,35 @@ } }, "node_modules/webpack": { - "version": "5.50.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.50.0.tgz", - "integrity": "sha512-hqxI7t/KVygs0WRv/kTgUW8Kl3YC81uyWQSo/7WUs5LsuRw0htH/fCwbVBGCuiX/t4s7qzjXFcf41O8Reiypag==", + "version": "5.75.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", + "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", "dev": true, "dependencies": { - "@types/eslint-scope": "^3.7.0", - "@types/estree": "^0.0.50", + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/wasm-edit": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", + "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.8.0", - "es-module-lexer": "^0.7.1", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.4", - "json-parse-better-errors": "^1.0.2", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.1.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.2.0", - "webpack-sources": "^3.2.0" + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" }, "bin": { "webpack": "bin/webpack.js" @@ -21192,12 +19281,6 @@ } } }, - "node_modules/webpack-cli/node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true - }, "node_modules/webpack-cli/node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", @@ -21207,19 +19290,6 @@ "node": ">= 10" } }, - "node_modules/webpack-cli/node_modules/webpack-merge": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", - "dev": true, - "dependencies": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - }, - "engines": { - "node": ">=10.0.0" - } - }, "node_modules/webpack-dev-middleware": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", @@ -21244,9 +19314,9 @@ } }, "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", @@ -21271,12 +19341,6 @@ "ajv": "^8.8.2" } }, - "node_modules/webpack-dev-middleware/node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true - }, "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", @@ -21354,9 +19418,9 @@ } }, "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "dependencies": { "fast-deep-equal": "^3.1.1", @@ -21402,12 +19466,6 @@ "node": ">=8" } }, - "node_modules/webpack-dev-server/node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true - }, "node_modules/webpack-dev-server/node_modules/del": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", @@ -21539,16 +19597,16 @@ } }, "node_modules/webpack-dev-server/node_modules/ws": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.10.0.tgz", - "integrity": "sha512-+s49uSmZpvtAsd2h37vIPy1RBusaLawVe8of+GyEPsaJTCMpj/2v8NpeK1SHXjBlQ95lQTmQofOJnFiLoaN3yw==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz", + "integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==", "dev": true, "engines": { "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { "bufferutil": { @@ -21560,9 +19618,9 @@ } }, "node_modules/webpack-merge": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.2.0.tgz", - "integrity": "sha512-QBglJBg5+lItm3/Lopv8KDDK01+hjdg2azEwi/4vKJ8ZmGPdtJsTpjtNNOW3a4WiqzXdCATtTudOZJngE7RKkA==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", "dev": true, "dependencies": { "clone-deep": "^4.0.1", @@ -21689,6 +19747,26 @@ "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", "dev": true }, + "node_modules/which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, "node_modules/wildcard": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", @@ -21804,16 +19882,6 @@ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "optional": true, - "engines": { - "node": ">=0.4" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -21824,11 +19892,10 @@ } }, "node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true, - "optional": true + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, "node_modules/yaml": { "version": "1.10.2", @@ -21866,17 +19933,6 @@ "node": ">=10" } }, - "node_modules/yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dev": true, - "optional": true, - "dependencies": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", @@ -21969,12 +20025,12 @@ } }, "@babel/eslint-parser": { - "version": "7.18.2", - "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.18.2.tgz", - "integrity": "sha512-oFQYkE8SuH14+uR51JVAmdqwKYXGRjEXx7s+WiagVjqQ+HPE+nnwyF2qlVG8evUsUHmPcA+6YXMEDbIhEyQc5A==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.19.1.tgz", + "integrity": "sha512-AqNf2QWt1rtu2/1rLswy6CDP7H9Oh3mMhk177Y67Rg8d7RD9WfOLLv8CGn6tisFvS2htm86yIe1yLF6I1UDaGQ==", "dev": true, "requires": { - "eslint-scope": "^5.1.1", + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", "eslint-visitor-keys": "^2.1.0", "semver": "^6.3.0" } @@ -23098,13 +21154,13 @@ } }, "@babel/runtime-corejs3": { - "version": "7.20.1", - "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.1.tgz", - "integrity": "sha512-CGulbEDcg/ND1Im7fUNRZdGXmX2MTWVVZacQi/6DiKE5HNwZ3aVTm5PV4lO8HHz0B2h8WQyvKKjbX5XgTtydsg==", + "version": "7.20.13", + "resolved": "https://registry.npmjs.org/@babel/runtime-corejs3/-/runtime-corejs3-7.20.13.tgz", + "integrity": "sha512-p39/6rmY9uvlzRiLZBIB3G9/EBr66LBMcYm7fIDeSBNdRjF2AGD3rFZucUyAgGHC2N+7DdLvVi33uTjSE44FIw==", "dev": true, "requires": { "core-js-pure": "^3.25.1", - "regenerator-runtime": "^0.13.10" + "regenerator-runtime": "^0.13.11" } }, "@babel/template": { @@ -23180,31 +21236,31 @@ "integrity": "sha512-ne2ZKF1r0akkt0rEzCAQAk4cTDTI2GiWCpc+T7ldQpw9X57OnUB16dKsFNe40C9uEjL5h3Ps/ZsFM5dm4cIkEQ==" }, "@edx/eslint-config": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.1.0.tgz", - "integrity": "sha512-Okv8vkmX+qe+joD7h9DcT9JdRIyy6jJSVWbIHr2dAHKuk5swVFO92JvhC2pYtMg2EPKA1P1Hmz8cmmfw6QoTZw==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@edx/eslint-config/-/eslint-config-3.1.1.tgz", + "integrity": "sha512-RqaC5h+VYdq5DwJsEbdJCruibsKWakx/zImuypmwC7odXJ2ls/yMvWzY/Z4k/Xd2QGPhow3y7yQzUsJPb4eheQ==", "dev": true, "requires": {} }, "@edx/frontend-build": { - "version": "12.3.0", - "resolved": "https://registry.npmjs.org/@edx/frontend-build/-/frontend-build-12.3.0.tgz", - "integrity": "sha512-GewVd5qD59d8hHZFnXyS5jWkDY8TWYENqO5dd+/Kmu7cmjKrp69PKmNyVs+QgZEADodYI5UT48A2LhsDZjDx7A==", + "version": "12.4.19", + "resolved": "https://registry.npmjs.org/@edx/frontend-build/-/frontend-build-12.4.19.tgz", + "integrity": "sha512-l6oF6ErYepRiHGNkHIVIsB+WvnL1OeyyUGe7vxJp9CD30y/cP1iB4/K2zbcVH8v5kxiHhmc/cpWHH5DnJO0KZw==", "dev": true, "requires": { "@babel/cli": "7.16.0", "@babel/core": "7.16.0", - "@babel/eslint-parser": "7.18.2", + "@babel/eslint-parser": "7.19.1", "@babel/plugin-proposal-class-properties": "7.16.0", "@babel/plugin-proposal-object-rest-spread": "7.16.0", "@babel/plugin-syntax-dynamic-import": "7.8.3", "@babel/preset-env": "7.16.4", "@babel/preset-react": "7.16.0", - "@edx/eslint-config": "3.1.0", - "@edx/new-relic-source-map-webpack-plugin": "1.0.1", - "@pmmmwh/react-refresh-webpack-plugin": "0.5.3", + "@edx/eslint-config": "3.1.1", + "@edx/new-relic-source-map-webpack-plugin": "1.0.2", + "@pmmmwh/react-refresh-webpack-plugin": "0.5.10", "@svgr/webpack": "6.2.1", - "autoprefixer": "10.2.6", + "autoprefixer": "10.4.13", "babel-jest": "26.6.3", "babel-loader": "8.2.3", "babel-plugin-react-intl": "7.9.4", @@ -23213,36 +21269,37 @@ "clean-webpack-plugin": "3.0.0", "css-loader": "5.2.7", "cssnano": "5.0.12", - "dotenv": "8.2.0", + "dotenv": "8.6.0", "dotenv-webpack": "7.0.3", - "eslint": "8.18.0", + "eslint": "8.29.0", "eslint-config-airbnb": "19.0.4", "eslint-plugin-import": "2.26.0", - "eslint-plugin-jsx-a11y": "6.5.1", - "eslint-plugin-react": "7.30.0", + "eslint-plugin-jsx-a11y": "6.6.1", + "eslint-plugin-react": "7.31.11", "eslint-plugin-react-hooks": "4.6.0", "file-loader": "6.2.0", "html-webpack-plugin": "5.5.0", "identity-obj-proxy": "3.0.0", - "image-webpack-loader": "8.1.0", + "image-minimizer-webpack-plugin": "3.3.0", "jest": "26.6.3", "mini-css-extract-plugin": "1.6.2", - "postcss": "8.4.5", - "postcss-loader": "6.1.1", + "postcss": "8.4.21", + "postcss-loader": "6.2.1", "postcss-rtlcss": "3.5.1", - "react-dev-utils": "12.0.0", - "react-refresh": "0.10.0", - "resolve-url-loader": "5.0.0-beta.1", - "sass": "1.49.9", + "react-dev-utils": "12.0.1", + "react-refresh": "0.14.0", + "resolve-url-loader": "5.0.0", + "sass": "1.56.1", "sass-loader": "12.6.0", + "sharp": "^0.31.0", "source-map-loader": "0.2.4", - "style-loader": "2.0.0", + "style-loader": "3.3.1", "url-loader": "4.1.1", - "webpack": "5.50.0", + "webpack": "5.75.0", "webpack-bundle-analyzer": "4.5.0", "webpack-cli": "4.10.0", "webpack-dev-server": "4.7.3", - "webpack-merge": "5.2.0" + "webpack-merge": "5.8.0" } }, "@edx/frontend-platform": { @@ -23295,9 +21352,9 @@ } }, "@edx/new-relic-source-map-webpack-plugin": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@edx/new-relic-source-map-webpack-plugin/-/new-relic-source-map-webpack-plugin-1.0.1.tgz", - "integrity": "sha512-SAwugqBvDUg7ANdu1uBCkpPp0MnBlfyYAvKwO6Jh6Q4tMIPN6U35IF7MAymn1EZmi28UV6sLpSQPLggQjVQknA==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@edx/new-relic-source-map-webpack-plugin/-/new-relic-source-map-webpack-plugin-1.0.2.tgz", + "integrity": "sha512-jwu9WjRtEbv0rvPHGCnhbQbbv6+DTADShj43NQVsuAyD823znjutgoHnlc+9HIOiYiIxjz/wIMcGVwjrTnMceQ==", "dev": true, "requires": { "@newrelic/publish-sourcemap": "^5.0.1" @@ -23368,15 +21425,15 @@ } }, "@eslint/eslintrc": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.3.tgz", - "integrity": "sha512-uj3pT6Mg+3t39fvLrj8iuCIJ38zKO9FpGtJ4BBJebJhEwjoT+KLVNCcHT5QC9NGRIEi7fZ0ZR8YRb884auB4Lg==", + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.4.1.tgz", + "integrity": "sha512-XXrH9Uarn0stsyldqDYq8r++mROmWRI1xKMXa640Bb//SY1+ECYX6VzT6Lcx5frD0V30XieqJ0oX9I2Xj5aoMA==", "dev": true, "requires": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.4.0", - "globals": "^13.15.0", + "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", @@ -23391,9 +21448,9 @@ "dev": true }, "globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -23416,6 +21473,11 @@ } } }, + "@faker-js/faker": { + "version": "7.6.0", + "resolved": "https://registry.npmjs.org/@faker-js/faker/-/faker-7.6.0.tgz", + "integrity": "sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==" + }, "@formatjs/ecma402-abstract": { "version": "1.11.4", "resolved": "https://registry.npmjs.org/@formatjs/ecma402-abstract/-/ecma402-abstract-1.11.4.tgz", @@ -23592,16 +21654,22 @@ } }, "@humanwhocodes/config-array": { - "version": "0.9.5", - "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.9.5.tgz", - "integrity": "sha512-ObyMyWxZiCu/yTisA7uzx81s40xR2fD5Cg/2Kq7G02ajkNubJf6BopgDTmDyc3U7sXpNKM8cYOw7s7Tyr+DnCw==", + "version": "0.11.8", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.8.tgz", + "integrity": "sha512-UybHIJzJnR5Qc/MsD9Kr+RpO2h+/P1GhOwdiLPXK5TWk5sgTdu88bTD9UP+CKbPPh5Rni1u0GjAdYQLemG8g+g==", "dev": true, "requires": { "@humanwhocodes/object-schema": "^1.2.1", "debug": "^4.1.1", - "minimatch": "^3.0.4" + "minimatch": "^3.0.5" } }, + "@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true + }, "@humanwhocodes/object-schema": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", @@ -24250,6 +22318,15 @@ "dev": true, "optional": true }, + "@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "requires": { + "eslint-scope": "5.1.1" + } + }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -24277,18 +22354,18 @@ } }, "@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.3.tgz", - "integrity": "sha512-OoTnFb8XEYaOuMNhVDsLRnAO6MCYHNs1g6d8pBcHhDFsi1P3lPbq/IklwtbAx9cG0W4J9KswxZtwGnejrnxp+g==", + "version": "0.5.10", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", + "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", "dev": true, "requires": { "ansi-html-community": "^0.0.8", "common-path-prefix": "^3.0.0", - "core-js-pure": "^3.8.1", + "core-js-pure": "^3.23.3", "error-stack-parser": "^2.0.6", "find-up": "^5.0.0", "html-entities": "^2.1.0", - "loader-utils": "^2.0.0", + "loader-utils": "^2.0.4", "schema-utils": "^3.0.0", "source-map": "^0.7.3" }, @@ -24329,13 +22406,6 @@ "dequal": "^2.0.2" } }, - "@sindresorhus/is": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", - "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", - "dev": true, - "optional": true - }, "@sinonjs/commons": { "version": "1.8.4", "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.4.tgz", @@ -24655,27 +22725,27 @@ } }, "@types/estree": { - "version": "0.0.50", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.50.tgz", - "integrity": "sha512-C6N5s2ZFtuZRj54k2/zyRhNDjJwwcViAM3Nbm8zjBpbqAdZ00mr0CFxvSKeO8Y/e03WVFLpQMdHYVfUd6SB+Hw==", + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", "dev": true }, "@types/express": { - "version": "4.17.14", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.14.tgz", - "integrity": "sha512-TEbt+vaPFQ+xpxFLFssxUDXj5cWCxZJjIcB7Yg0k0GMHGtgtQgpvx/MUQUeAkNbA9AAGrwkAsoeItdTgS7FMyg==", + "version": "4.17.16", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.16.tgz", + "integrity": "sha512-LkKpqRZ7zqXJuvoELakaFYuETHjZkSol8EV6cNnyishutDBCCdv6+dsKPbKkCcIk57qRphOLY5sEgClw1bO3gA==", "dev": true, "requires": { "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", + "@types/express-serve-static-core": "^4.17.31", "@types/qs": "*", "@types/serve-static": "*" } }, "@types/express-serve-static-core": { - "version": "4.17.31", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.31.tgz", - "integrity": "sha512-DxMhY+NAsTwMMFHBTtJFNp5qiHKJ7TeqOo23zVEM9alT1Ml27Q3xcTH0xwxn7Q0BbMcVEJOs/7aQtUWupUQN3Q==", + "version": "4.17.33", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.33.tgz", + "integrity": "sha512-TPBqmR/HRYI3eC2E5hmiivIzv+bidAfXofM+sbonAGvyDhySGw9/PQZFt2BLOrjUUR++4eJVpx6KnLQK1Fk9tA==", "dev": true, "requires": { "@types/node": "*", @@ -24992,9 +23062,9 @@ } }, "@types/ws": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", - "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "version": "8.5.4", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.4.tgz", + "integrity": "sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==", "dev": true, "requires": { "@types/node": "*" @@ -25257,9 +23327,9 @@ "dev": true }, "address": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.1.tgz", - "integrity": "sha512-B+6bi5D34+fDYENiH5qOlA0cV2rAGKuWZ9LeyUUehbXy8e0VS9e498yO0Jeeh+iM+6KbfudHTFjXw2MmJD4QRA==", + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", "dev": true }, "adjust-sourcemap-loader": { @@ -25313,9 +23383,9 @@ }, "dependencies": { "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -25379,32 +23449,6 @@ "picomatch": "^2.0.4" } }, - "arch": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", - "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", - "dev": true, - "optional": true - }, - "archive-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/archive-type/-/archive-type-4.0.0.tgz", - "integrity": "sha512-zV4Ky0v1F8dBrdYElwTvQhweQ0P7Kwc1aluqJsYtOBP01jXcWCyW2IEfI1YiqsG+Iy7ZR+o5LF1N+PGECBxHWA==", - "dev": true, - "optional": true, - "requires": { - "file-type": "^4.2.0" - }, - "dependencies": { - "file-type": { - "version": "4.4.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-4.4.0.tgz", - "integrity": "sha512-f2UbFQEk7LXgWpi5ntcO86OeA/cC80fuDDDaX/fZ2ZGel+AF7leRQqBBW1eJNiiQkrZlAoM6P+VYP5P6bOlDEQ==", - "dev": true, - "optional": true - } - } - }, "argparse": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", @@ -25458,15 +23502,15 @@ "dev": true }, "array-includes": { - "version": "3.1.5", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", - "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5", - "get-intrinsic": "^1.1.1", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", "is-string": "^1.0.7" } }, @@ -25515,6 +23559,19 @@ "es-shim-unscopables": "^1.0.0" } }, + "array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" + } + }, "assert-ok": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-ok/-/assert-ok-1.0.0.tgz", @@ -25567,23 +23624,29 @@ "peer": true }, "autoprefixer": { - "version": "10.2.6", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.2.6.tgz", - "integrity": "sha512-8lChSmdU6dCNMCQopIf4Pe5kipkAGj/fvTMslCsih0uHpOrXOPUEVOmYMMqmw3cekQkSD7EhIeuYl5y0BLdKqg==", + "version": "10.4.13", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.13.tgz", + "integrity": "sha512-49vKpMqcZYsJjwotvt4+h/BCjJVnhGwcLpDt5xkcaOG3eLrG/HUYLagrihYsQ+qrIBgIzX1Rw7a6L8I/ZA1Atg==", "dev": true, "requires": { - "browserslist": "^4.16.6", - "caniuse-lite": "^1.0.30001230", - "colorette": "^1.2.2", - "fraction.js": "^4.1.1", + "browserslist": "^4.21.4", + "caniuse-lite": "^1.0.30001426", + "fraction.js": "^4.2.0", "normalize-range": "^0.1.2", - "postcss-value-parser": "^4.1.0" + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" } }, + "available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true + }, "axe-core": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.5.1.tgz", - "integrity": "sha512-1exVbW0X1O/HSr/WMwnaweyqcWOgZgLiVxdLG34pvSQk4NlYQr9OUy0JLwuhFfuVNQzzqgH57eYzkFBCb3bIsQ==", + "version": "4.6.3", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.6.3.tgz", + "integrity": "sha512-/BQzOX780JhsxDnPpH4ZiyrJAzcd8AfzFPkv+89veFSr1rcMjuq2JDCwypKaPeB6ljHp9KjXhPpjgCvQlWYuqg==", "dev": true }, "axios": { @@ -25696,18 +23759,18 @@ }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" } }, "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -25947,8 +24010,7 @@ "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "dev": true, - "optional": true + "dev": true }, "batch": { "version": "0.6.1", @@ -25962,367 +24024,36 @@ "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true }, - "bin-build": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bin-build/-/bin-build-3.0.0.tgz", - "integrity": "sha512-jcUOof71/TNAI2uM5uoUaDq2ePcVBQ3R/qhxAz1rX7UfvduAL/RXD3jXzvn8cVcDJdGVkiR1shal3OH0ImpuhA==", - "dev": true, - "optional": true, - "requires": { - "decompress": "^4.0.0", - "download": "^6.2.2", - "execa": "^0.7.0", - "p-map-series": "^1.0.0", - "tempfile": "^2.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", - "dev": true, - "optional": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", - "dev": true, - "optional": true, - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "optional": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "optional": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "optional": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "bin-check": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-check/-/bin-check-4.1.0.tgz", - "integrity": "sha512-b6weQyEUKsDGFlACWSIOfveEnImkJyK/FGW6FAG42loyoquvjdtOIqO6yBFzHyqyVVhNgNkQxxx09SFLK28YnA==", - "dev": true, - "optional": true, - "requires": { - "execa": "^0.7.0", - "executable": "^4.1.0" - }, - "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", - "dev": true, - "optional": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", - "dev": true, - "optional": true, - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "optional": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "optional": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "optional": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, - "bin-version": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bin-version/-/bin-version-3.1.0.tgz", - "integrity": "sha512-Mkfm4iE1VFt4xd4vH+gx+0/71esbfus2LsnCGe8Pi4mndSPyT+NGES/Eg99jx8/lUGWfu3z2yuB/bt5UB+iVbQ==", - "dev": true, - "optional": true, - "requires": { - "execa": "^1.0.0", - "find-versions": "^3.0.0" - } - }, - "bin-version-check": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/bin-version-check/-/bin-version-check-4.0.0.tgz", - "integrity": "sha512-sR631OrhC+1f8Cvs8WyVWOA33Y8tgwjETNPyyD/myRBXLkfS/vl74FmH/lFcRl9KY3zwGh7jFhvyk9vV3/3ilQ==", - "dev": true, - "optional": true, - "requires": { - "bin-version": "^3.0.0", - "semver": "^5.6.0", - "semver-truncate": "^1.1.2" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true - } - } + "binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true }, - "bin-wrapper": { + "bl": { "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bin-wrapper/-/bin-wrapper-4.1.0.tgz", - "integrity": "sha512-hfRmo7hWIXPkbpi0ZltboCMVrU+0ClXR/JgbCKKjlDjQf6igXa7OwdqNcFWQZPZTgiY7ZpzE3+LjjkLiTN2T7Q==", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, - "optional": true, "requires": { - "bin-check": "^4.1.0", - "bin-version-check": "^4.0.0", - "download": "^7.1.0", - "import-lazy": "^3.1.0", - "os-filter-obj": "^2.0.0", - "pify": "^4.0.1" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" }, "dependencies": { - "download": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/download/-/download-7.1.0.tgz", - "integrity": "sha512-xqnBTVd/E+GxJVrX5/eUJiLYjCGPwMpdL+jGhGU57BvtcA7wwhtHVbXBeUk51kOpW3S7Jn3BQbN9Q1R1Km2qDQ==", - "dev": true, - "optional": true, - "requires": { - "archive-type": "^4.0.0", - "caw": "^2.0.1", - "content-disposition": "^0.5.2", - "decompress": "^4.2.0", - "ext-name": "^5.0.0", - "file-type": "^8.1.0", - "filenamify": "^2.0.0", - "get-stream": "^3.0.0", - "got": "^8.3.1", - "make-dir": "^1.2.0", - "p-event": "^2.1.0", - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true - } - } - }, - "file-type": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-8.1.0.tgz", - "integrity": "sha512-qyQ0pzAy78gVoJsmYeNgl8uH8yKhr1lVhW7JbzJmnlRi0I4R2eEDEJZVKG8agpDnLpacwNbDhLNG/LMdxHD2YQ==", - "dev": true, - "optional": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true - }, - "got": { - "version": "8.3.2", - "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", - "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", - "dev": true, - "optional": true, - "requires": { - "@sindresorhus/is": "^0.7.0", - "cacheable-request": "^2.1.1", - "decompress-response": "^3.3.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "into-stream": "^3.1.0", - "is-retry-allowed": "^1.1.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "mimic-response": "^1.0.0", - "p-cancelable": "^0.4.0", - "p-timeout": "^2.0.1", - "pify": "^3.0.0", - "safe-buffer": "^5.1.1", - "timed-out": "^4.0.1", - "url-parse-lax": "^3.0.0", - "url-to-options": "^1.0.1" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true - } - } - }, - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "optional": true, - "requires": { - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true - } - } - }, - "p-cancelable": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", - "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", - "dev": true, - "optional": true - }, - "p-event": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-2.3.1.tgz", - "integrity": "sha512-NQCqOFhbpVTMX4qMe8PF8lbGtzZ+LCiN7pcNrb/413Na7+TRoe1xkKUzuWa/YEJdGQ0FvKtj35EEbDoVPO2kbA==", - "dev": true, - "optional": true, - "requires": { - "p-timeout": "^2.0.1" - } - }, - "p-timeout": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", - "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", - "dev": true, - "optional": true, - "requires": { - "p-finally": "^1.0.0" - } - }, - "prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", - "dev": true, - "optional": true - }, - "url-parse-lax": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", - "integrity": "sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==", + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, - "optional": true, "requires": { - "prepend-http": "^2.0.0" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" } } } }, - "binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "dev": true - }, - "bl": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/bl/-/bl-1.2.3.tgz", - "integrity": "sha512-pvcNpa0UU69UT341rO6AYy4FVAIkUHuZXRIWbq+zHnsVcRzDDjIAhGuuYoi0d//cwIwtt4pkpKycWEfjdV+vww==", - "dev": true, - "optional": true, - "requires": { - "readable-stream": "^2.3.5", - "safe-buffer": "^5.1.1" - } - }, "body-parser": { "version": "1.20.1", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz", @@ -26443,44 +24174,11 @@ "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, - "optional": true, "requires": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, - "buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "dev": true, - "optional": true, - "requires": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", - "dev": true, - "optional": true - }, - "buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, - "optional": true - }, - "buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha512-T7zexNBwiiaCOGDg9xNX9PBmjrubblRkENuptryuI64URkXDFum9il/JGL8Lm8wYfAXpredVXXZz7eMHilimiQ==", - "dev": true, - "optional": true - }, "buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", @@ -26521,86 +24219,6 @@ "resolved": "https://registry.npmjs.org/cache-control-esm/-/cache-control-esm-1.0.0.tgz", "integrity": "sha512-Fa3UV4+eIk4EOih8FTV6EEsVKO0W5XWtNs6FC3InTfVz+EjurjPfDXY5wZDo/lxjDxg5RjNcurLyxEJBcEUx9g==" }, - "cacheable-request": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", - "integrity": "sha512-vag0O2LKZ/najSoUwDbVlnlCFvhBE/7mGTY2B5FgCBDcRD+oVV1HYTOwM6JZfMg/hIcM6IwnTZ1uQQL5/X3xIQ==", - "dev": true, - "optional": true, - "requires": { - "clone-response": "1.0.2", - "get-stream": "3.0.0", - "http-cache-semantics": "3.8.1", - "keyv": "3.0.0", - "lowercase-keys": "1.0.0", - "normalize-url": "2.0.1", - "responselike": "1.0.2" - }, - "dependencies": { - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true - }, - "lowercase-keys": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", - "integrity": "sha512-RPlX0+PHuvxVDZ7xX+EBVAp4RsVxP/TdDSN2mJYdiq1Lc4Hz7EUSjUI7RZrKKlmrIzVhf6Jo2stj7++gVarS0A==", - "dev": true, - "optional": true - }, - "normalize-url": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", - "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", - "dev": true, - "optional": true, - "requires": { - "prepend-http": "^2.0.0", - "query-string": "^5.0.1", - "sort-keys": "^2.0.0" - } - }, - "prepend-http": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", - "integrity": "sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==", - "dev": true, - "optional": true - }, - "query-string": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", - "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", - "dev": true, - "optional": true, - "requires": { - "decode-uri-component": "^0.2.0", - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - } - }, - "sort-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", - "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", - "dev": true, - "optional": true, - "requires": { - "is-plain-obj": "^1.0.0" - } - }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", - "dev": true, - "optional": true - } - } - }, "call-bind": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", @@ -26669,19 +24287,6 @@ "isarray": "0.0.1" } }, - "caw": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/caw/-/caw-2.0.1.tgz", - "integrity": "sha512-Cg8/ZSBEa8ZVY9HspcGUYaK63d/bN7rqS3CYCzEGUxuYv6UlmcjzDUz2fCFFHyTvUW5Pk0I+3hkA3iXlIj6guA==", - "dev": true, - "optional": true, - "requires": { - "get-proxy": "^2.0.0", - "isurl": "^1.0.0-alpha5", - "tunnel-agent": "^0.6.0", - "url-to-options": "^1.0.1" - } - }, "chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", @@ -26720,6 +24325,12 @@ "readdirp": "~3.6.0" } }, + "chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==", + "dev": true + }, "chrome-trace-event": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", @@ -26879,16 +24490,6 @@ "shallow-clone": "^3.0.0" } }, - "clone-response": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", - "integrity": "sha512-yjLXh88P599UOyPTFX0POsd7WxnbsVsGohcwzHOLspIhhpalPw1BcqED8NblyZLKcGrL8dTgMlcaZxV2jAD41Q==", - "dev": true, - "optional": true, - "requires": { - "mimic-response": "^1.0.0" - } - }, "co": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", @@ -26911,6 +24512,33 @@ "object-visit": "^1.0.0" } }, + "color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "dev": true, + "requires": { + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "dependencies": { + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + } + } + }, "color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", @@ -26926,6 +24554,16 @@ "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true }, + "color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dev": true, + "requires": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" + } + }, "colord": { "version": "2.9.3", "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", @@ -26933,9 +24571,9 @@ "dev": true }, "colorette": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.4.0.tgz", - "integrity": "sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==", + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", "dev": true }, "combined-stream": { @@ -27023,17 +24661,6 @@ "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, - "config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", - "dev": true, - "optional": true, - "requires": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" - } - }, "confusing-browser-globals": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", @@ -27079,9 +24706,9 @@ "dev": true }, "cookiejar": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.3.tgz", - "integrity": "sha512-JxbCBUdrfr6AQjOXrxoTvAMJO4HBTUIlBzslcJPAz+/KT8yk53fXun51u+RenNYvad/+Vc2DIz5o9UxlCDymFQ==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cookiejar/-/cookiejar-2.1.4.tgz", + "integrity": "sha512-LDx6oHrK+PhzLKJU9j5S7/Y3jM/mUHvD/DeI1WQmJn652iPC5Y4TBzC9l+5OMOXlyTTA+SmVUPm0HQUwpD5Jqw==", "dev": true }, "copy-descriptor": { @@ -27105,9 +24732,9 @@ } }, "core-js-pure": { - "version": "3.26.0", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.26.0.tgz", - "integrity": "sha512-LiN6fylpVBVwT8twhhluD9TzXmZQQsr2I2eIKtWNbZI1XMfBT7CV18itaN6RA7EtQd/SDdRx/wzvAShX2HvhQA==", + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.2.tgz", + "integrity": "sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A==", "dev": true }, "core-util-is": { @@ -27170,15 +24797,6 @@ "semver": "^7.3.5" }, "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -27187,12 +24805,6 @@ "requires": { "lru-cache": "^6.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, @@ -27338,17 +24950,6 @@ "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.1.tgz", "integrity": "sha512-DJR/VvkAvSZW9bTouZue2sSxDwdTN92uHjqeKVm+0dAqdfNykRzQ95tay8aXMBAAPpUiq4Qcug2L7neoRh2Egw==" }, - "cwebp-bin": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/cwebp-bin/-/cwebp-bin-7.0.1.tgz", - "integrity": "sha512-Ko5ADY74/dbfd8xG0+f+MUP9UKjCe1TG4ehpW0E5y4YlPdwDJlGrSzSR4/Yonxpm9QmZE1RratkIxFlKeyo3FA==", - "dev": true, - "optional": true, - "requires": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.1" - } - }, "damerau-levenshtein": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", @@ -27388,168 +24989,17 @@ "dev": true }, "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==" - }, - "decompress": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/decompress/-/decompress-4.2.1.tgz", - "integrity": "sha512-e48kc2IjU+2Zw8cTb6VZcJQ3lgVbS4uuB1TfCHbiZIP/haNXm+SVyhu+87jts5/3ROpd82GSVCoNs/z8l4ZOaQ==", - "dev": true, - "optional": true, - "requires": { - "decompress-tar": "^4.0.0", - "decompress-tarbz2": "^4.0.0", - "decompress-targz": "^4.0.0", - "decompress-unzip": "^4.0.1", - "graceful-fs": "^4.1.10", - "make-dir": "^1.0.0", - "pify": "^2.3.0", - "strip-dirs": "^2.0.0" - }, - "dependencies": { - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "optional": true, - "requires": { - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true - } - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "optional": true - } - } + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" }, "decompress-response": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", - "integrity": "sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==", - "dev": true, - "optional": true, - "requires": { - "mimic-response": "^1.0.0" - } - }, - "decompress-tar": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-tar/-/decompress-tar-4.1.1.tgz", - "integrity": "sha512-JdJMaCrGpB5fESVyxwpCx4Jdj2AagLmv3y58Qy4GE6HMVjWz1FeVQk1Ct4Kye7PftcdOo/7U7UKzYBJgqnGeUQ==", - "dev": true, - "optional": true, - "requires": { - "file-type": "^5.2.0", - "is-stream": "^1.1.0", - "tar-stream": "^1.5.2" - }, - "dependencies": { - "file-type": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", - "dev": true, - "optional": true - } - } - }, - "decompress-tarbz2": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-tarbz2/-/decompress-tarbz2-4.1.1.tgz", - "integrity": "sha512-s88xLzf1r81ICXLAVQVzaN6ZmX4A6U4z2nMbOwobxkLoIIfjVMBg7TeguTUXkKeXni795B6y5rnvDw7rxhAq9A==", - "dev": true, - "optional": true, - "requires": { - "decompress-tar": "^4.1.0", - "file-type": "^6.1.0", - "is-stream": "^1.1.0", - "seek-bzip": "^1.0.5", - "unbzip2-stream": "^1.0.9" - }, - "dependencies": { - "file-type": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-6.2.0.tgz", - "integrity": "sha512-YPcTBDV+2Tm0VqjybVd32MHdlEGAtuxS3VAYsumFokDSMG+ROT5wawGlnHDoz7bfMcMDt9hxuXvXwoKUx2fkOg==", - "dev": true, - "optional": true - } - } - }, - "decompress-targz": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/decompress-targz/-/decompress-targz-4.1.1.tgz", - "integrity": "sha512-4z81Znfr6chWnRDNfFNqLwPvm4db3WuZkqV+UgXQzSngG3CEKdBkw5jrv3axjjL96glyiiKjsxJG3X6WBZwX3w==", - "dev": true, - "optional": true, - "requires": { - "decompress-tar": "^4.1.1", - "file-type": "^5.2.0", - "is-stream": "^1.1.0" - }, - "dependencies": { - "file-type": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", - "dev": true, - "optional": true - } - } - }, - "decompress-unzip": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/decompress-unzip/-/decompress-unzip-4.0.1.tgz", - "integrity": "sha512-1fqeluvxgnn86MOh66u8FjbtJpAFv5wgCT9Iw8rcBqQcCo5tO8eiJw7NNTrvt9n4CRBVq7CstiS922oPgyGLrw==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dev": true, - "optional": true, "requires": { - "file-type": "^3.8.0", - "get-stream": "^2.2.0", - "pify": "^2.3.0", - "yauzl": "^2.4.2" - }, - "dependencies": { - "file-type": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-3.9.0.tgz", - "integrity": "sha512-RLoqTXE8/vPmMuTI88DAzhMYC99I8BWv7zYP4A1puo5HIjEJ5EX48ighy4ZyKMG9EDXxBgW6e++cn7d1xuFghA==", - "dev": true, - "optional": true - }, - "get-stream": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-2.3.1.tgz", - "integrity": "sha512-AUGhbbemXxrZJRD5cDvKtQxLuYaIbNtDTK8YqupCI393Q2KSTreEsLUN3ZxAWFGiKTzL6nKuzfcIvieflUX9qA==", - "dev": true, - "optional": true, - "requires": { - "object-assign": "^4.0.1", - "pinkie-promise": "^2.0.0" - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "optional": true - } + "mimic-response": "^3.1.0" } }, "deep-equal": { @@ -27566,6 +25016,12 @@ "regexp.prototype.flags": "^1.2.0" } }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, "deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", @@ -27692,6 +25148,12 @@ "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true }, + "detect-libc": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "dev": true + }, "detect-newline": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", @@ -27883,9 +25345,9 @@ } }, "dotenv": { - "version": "8.2.0", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.2.0.tgz", - "integrity": "sha512-8sJ78ElpbDJBHNeBzUbUVLsqKdccaa/BXF1uPTw3GrvQTBgrQrtObr2mUrE38vzYd8cEv+m/JBfDLioYcfXoaw==", + "version": "8.6.0", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-8.6.0.tgz", + "integrity": "sha512-IrPdXQsk2BbzvCBGBOTmmSH5SodmqZNt4ERAZDmW4CT+tL8VtvinqywuANaFu4bOMWki16nqf0e4oC0QIaDr/g==", "dev": true }, "dotenv-defaults": { @@ -27906,72 +25368,12 @@ "dotenv-defaults": "^2.0.2" } }, - "download": { - "version": "6.2.5", - "resolved": "https://registry.npmjs.org/download/-/download-6.2.5.tgz", - "integrity": "sha512-DpO9K1sXAST8Cpzb7kmEhogJxymyVUd5qz/vCOSyvwtp2Klj2XcDt5YUuasgxka44SxF0q5RriKIwJmQHG2AuA==", - "dev": true, - "optional": true, - "requires": { - "caw": "^2.0.0", - "content-disposition": "^0.5.2", - "decompress": "^4.0.0", - "ext-name": "^5.0.0", - "file-type": "5.2.0", - "filenamify": "^2.0.0", - "get-stream": "^3.0.0", - "got": "^7.0.0", - "make-dir": "^1.0.0", - "p-event": "^1.0.0", - "pify": "^3.0.0" - }, - "dependencies": { - "file-type": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-5.2.0.tgz", - "integrity": "sha512-Iq1nJ6D2+yIO4c8HHg4fyVb8mAJieo1Oloy1mLLaB2PvezNedhBVm+QU7g0qM42aiMbRXTxKKwGD17rjKNJYVQ==", - "dev": true, - "optional": true - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true - }, - "make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dev": true, - "optional": true, - "requires": { - "pify": "^3.0.0" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true - } - } - }, "duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true }, - "duplexer3": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.5.tgz", - "integrity": "sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==", - "dev": true, - "optional": true - }, "ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", @@ -28073,43 +25475,63 @@ } }, "es-abstract": { - "version": "1.20.4", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.4.tgz", - "integrity": "sha512-0UtvRN79eMe2L+UNEF1BwRe364sj/DXhQ/k5FmivgoSdpM90b8Jc0mDzKMGo7QS0BVbOP/bTwBKNnDc9rNzaPA==", + "version": "1.21.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.21.1.tgz", + "integrity": "sha512-QudMsPOz86xYz/1dG1OuGBKOELjCh99IIWHLzy5znUB6j8xG2yMA7bfTV86VSqKF+Y/H08vQPR+9jyXpuC6hfg==", "dev": true, "requires": { + "available-typed-arrays": "^1.0.5", "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", "es-to-primitive": "^1.2.1", "function-bind": "^1.1.1", "function.prototype.name": "^1.1.5", "get-intrinsic": "^1.1.3", "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", "has": "^1.0.3", "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", "has-symbols": "^1.0.3", - "internal-slot": "^1.0.3", + "internal-slot": "^1.0.4", + "is-array-buffer": "^3.0.1", "is-callable": "^1.2.7", "is-negative-zero": "^2.0.2", "is-regex": "^1.1.4", "is-shared-array-buffer": "^1.0.2", "is-string": "^1.0.7", + "is-typed-array": "^1.1.10", "is-weakref": "^1.0.2", "object-inspect": "^1.12.2", "object-keys": "^1.1.1", "object.assign": "^4.1.4", "regexp.prototype.flags": "^1.4.3", "safe-regex-test": "^1.0.0", - "string.prototype.trimend": "^1.0.5", - "string.prototype.trimstart": "^1.0.5", - "unbox-primitive": "^1.0.2" + "string.prototype.trimend": "^1.0.6", + "string.prototype.trimstart": "^1.0.6", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.9" } }, "es-module-lexer": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.7.1.tgz", - "integrity": "sha512-MgtWFl5No+4S3TmhDmCz2ObFGm6lEpTnzbQi+Dd+pw4mlTIZTmM2iAs5gRlmx5zS9luzobCSBSI90JM/1/JgOw==", + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "dev": true }, + "es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "requires": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + } + }, "es-shim-unscopables": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", @@ -28210,13 +25632,15 @@ } }, "eslint": { - "version": "8.18.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.18.0.tgz", - "integrity": "sha512-As1EfFMVk7Xc6/CvhssHUjsAQSkpfXvUGMFC3ce8JDe6WvqCgRrLOBQbVpsBFr1X1V+RACOadnzVvcUS5ni2bA==", + "version": "8.29.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.29.0.tgz", + "integrity": "sha512-isQ4EEiyUjZFbEKvEGJKKGBwXtvXX+zJbkVKCgTuB9t/+jUBcy8avhkEwWJecI15BkRkOYmvIM5ynbhRjEkoeg==", "dev": true, "requires": { - "@eslint/eslintrc": "^1.3.0", - "@humanwhocodes/config-array": "^0.9.2", + "@eslint/eslintrc": "^1.3.3", + "@humanwhocodes/config-array": "^0.11.6", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", "ajv": "^6.10.0", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", @@ -28226,18 +25650,21 @@ "eslint-scope": "^7.1.1", "eslint-utils": "^3.0.0", "eslint-visitor-keys": "^3.3.0", - "espree": "^9.3.2", + "espree": "^9.4.0", "esquery": "^1.4.0", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", - "functional-red-black-tree": "^1.0.1", - "glob-parent": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", "globals": "^13.15.0", + "grapheme-splitter": "^1.0.4", "ignore": "^5.2.0", "import-fresh": "^3.0.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-sdsl": "^4.1.4", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", @@ -28248,8 +25675,7 @@ "regexpp": "^3.2.0", "strip-ansi": "^6.0.1", "strip-json-comments": "^3.1.0", - "text-table": "^0.2.0", - "v8-compile-cache": "^2.0.3" + "text-table": "^0.2.0" }, "dependencies": { "ansi-styles": { @@ -28324,9 +25750,9 @@ } }, "globals": { - "version": "13.17.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", - "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", + "version": "13.19.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.19.0.tgz", + "integrity": "sha512-dkQ957uSRWHw7CFXLUtUHQI3g3aWApYhfNR2O6jn/907riyTYKVBmxYVROkBcY614FSSeSJh7Xm7SrUWCxvJMQ==", "dev": true, "requires": { "type-fest": "^0.20.2" @@ -28338,6 +25764,12 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, + "is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true + }, "js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", @@ -28388,13 +25820,14 @@ } }, "eslint-import-resolver-node": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", - "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", "dev": true, "requires": { "debug": "^3.2.7", - "resolve": "^1.20.0" + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" }, "dependencies": { "debug": { @@ -28476,45 +25909,47 @@ } }, "eslint-plugin-jsx-a11y": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", - "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", + "version": "6.6.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.6.1.tgz", + "integrity": "sha512-sXgFVNHiWffBq23uiS/JaP6eVR622DqwB4yTzKvGZGcPq6/yZ3WmOZfuBks/vHWo9GaFOqC2ZK4i6+C35knx7Q==", "dev": true, "requires": { - "@babel/runtime": "^7.16.3", + "@babel/runtime": "^7.18.9", "aria-query": "^4.2.2", - "array-includes": "^3.1.4", + "array-includes": "^3.1.5", "ast-types-flow": "^0.0.7", - "axe-core": "^4.3.5", + "axe-core": "^4.4.3", "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.7", + "damerau-levenshtein": "^1.0.8", "emoji-regex": "^9.2.2", "has": "^1.0.3", - "jsx-ast-utils": "^3.2.1", + "jsx-ast-utils": "^3.3.2", "language-tags": "^1.0.5", - "minimatch": "^3.0.4" + "minimatch": "^3.1.2", + "semver": "^6.3.0" } }, "eslint-plugin-react": { - "version": "7.30.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.30.0.tgz", - "integrity": "sha512-RgwH7hjW48BleKsYyHK5vUAvxtE9SMPDKmcPRQgtRCYaZA0XQPt5FSkrU3nhz5ifzMZcA8opwmRJ2cmOO8tr5A==", + "version": "7.31.11", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.31.11.tgz", + "integrity": "sha512-TTvq5JsT5v56wPa9OYHzsrOlHzKZKjV+aLgS+55NJP/cuzdiQPC7PfYoUjMoxlffKtvijpk7vA/jmuqRb9nohw==", "dev": true, "requires": { - "array-includes": "^3.1.5", - "array.prototype.flatmap": "^1.3.0", + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", "doctrine": "^2.1.0", "estraverse": "^5.3.0", "jsx-ast-utils": "^2.4.1 || ^3.0.0", "minimatch": "^3.1.2", - "object.entries": "^1.1.5", - "object.fromentries": "^2.0.5", - "object.hasown": "^1.1.1", - "object.values": "^1.1.5", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", "prop-types": "^15.8.1", "resolve": "^2.0.0-next.3", "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.7" + "string.prototype.matchall": "^4.0.8" }, "dependencies": { "doctrine": { @@ -28580,9 +26015,9 @@ "dev": true }, "espree": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.0.tgz", - "integrity": "sha512-DQmnRpLj7f6TgN/NYb0MTzJXL+vJF9h3pHy4JhCIs3zwcgez8xmGg3sXHcEO97BrmO2OSvCwMdfdlyl+E9KjOw==", + "version": "9.4.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.4.1.tgz", + "integrity": "sha512-XwctdmTO6SIvCzd9810yyNzIrOrqNYV9Koizx4C/mRhf9uq0o4yHoCEU/670pOxOL/MSraektvSAji79kX90Vg==", "dev": true, "requires": { "acorn": "^8.8.0", @@ -28652,91 +26087,6 @@ "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true }, - "exec-buffer": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/exec-buffer/-/exec-buffer-3.2.0.tgz", - "integrity": "sha512-wsiD+2Tp6BWHoVv3B+5Dcx6E7u5zky+hUwOHjuH2hKSLR3dvRmX8fk8UD8uqQixHs4Wk6eDmiegVrMPjKj7wpA==", - "dev": true, - "optional": true, - "requires": { - "execa": "^0.7.0", - "p-finally": "^1.0.0", - "pify": "^3.0.0", - "rimraf": "^2.5.4", - "tempfile": "^2.0.0" - }, - "dependencies": { - "cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", - "dev": true, - "optional": true, - "requires": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" - } - }, - "execa": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-0.7.0.tgz", - "integrity": "sha512-RztN09XglpYI7aBBrJCPW95jEH7YF1UEPOoX9yDhUTPdp7mK+CQvnLTuD10BNXZ3byLTu2uehZ8EcKT/4CGiFw==", - "dev": true, - "optional": true, - "requires": { - "cross-spawn": "^5.0.1", - "get-stream": "^3.0.0", - "is-stream": "^1.1.0", - "npm-run-path": "^2.0.0", - "p-finally": "^1.0.0", - "signal-exit": "^3.0.0", - "strip-eof": "^1.0.0" - } - }, - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true - }, - "shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, - "optional": true, - "requires": { - "shebang-regex": "^1.0.0" - } - }, - "shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", - "dev": true, - "optional": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "optional": true, - "requires": { - "isexe": "^2.0.0" - } - } - } - }, "exec-sh": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", @@ -28809,25 +26159,6 @@ } } }, - "executable": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/executable/-/executable-4.1.1.tgz", - "integrity": "sha512-8iA79xD3uAch729dUG8xaaBBFGaEa0wdD2VkYLFHwlqosEj/jT66AzcreRDSgV7ehnNLBW2WR5jIXwGKjVdTLg==", - "dev": true, - "optional": true, - "requires": { - "pify": "^2.2.0" - }, - "dependencies": { - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", - "dev": true, - "optional": true - } - } - }, "exit": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", @@ -28947,6 +26278,12 @@ } } }, + "expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", + "dev": true + }, "expect": { "version": "26.6.2", "resolved": "https://registry.npmjs.org/expect/-/expect-26.6.2.tgz", @@ -29061,27 +26398,6 @@ } } }, - "ext-list": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/ext-list/-/ext-list-2.2.2.tgz", - "integrity": "sha512-u+SQgsubraE6zItfVA0tBuCBhfU9ogSRnsvygI7wht9TS510oLkBRXBsqopeUG/GBOIQyKZO9wjTqIu/sf5zFA==", - "dev": true, - "optional": true, - "requires": { - "mime-db": "^1.28.0" - } - }, - "ext-name": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/ext-name/-/ext-name-5.0.0.tgz", - "integrity": "sha512-yblEwXAbGv1VQDmow7s38W77hzAgJAO50ztBLMcUyUBfxv1HC+LGwtiEN+Co6LtlqT/5uwVOxsD4TNIilWhwdQ==", - "dev": true, - "optional": true, - "requires": { - "ext-list": "^2.0.0", - "sort-keys-length": "^1.0.0" - } - }, "extend": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", @@ -29171,16 +26487,6 @@ "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true }, - "fast-xml-parser": { - "version": "3.21.1", - "resolved": "https://registry.npmjs.org/fast-xml-parser/-/fast-xml-parser-3.21.1.tgz", - "integrity": "sha512-FTFVjYoBOZTJekiUsawGsSYV9QL0A+zDYCRj7y34IO6Jg+2IMYEtQa+bbictpdpV8dHxXywqU7C0gRDEOFtBFg==", - "dev": true, - "optional": true, - "requires": { - "strnum": "^1.0.4" - } - }, "fastest-levenshtein": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", @@ -29188,9 +26494,9 @@ "dev": true }, "fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", "dev": true, "requires": { "reusify": "^1.0.4" @@ -29214,16 +26520,6 @@ "bser": "2.1.1" } }, - "fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", - "dev": true, - "optional": true, - "requires": { - "pend": "~1.2.0" - } - }, "file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", @@ -29252,31 +26548,6 @@ "tslib": "^2.4.0" } }, - "file-type": { - "version": "12.4.2", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-12.4.2.tgz", - "integrity": "sha512-UssQP5ZgIOKelfsaB5CuGAL+Y+q7EmONuiwF3N5HAH0t27rvrttgi6Ra9k/+DVaY9UF6+ybxu5pOXLUdA8N7Vg==", - "dev": true - }, - "filename-reserved-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/filename-reserved-regex/-/filename-reserved-regex-2.0.0.tgz", - "integrity": "sha512-lc1bnsSr4L4Bdif8Xb/qrtokGbq5zlsms/CYH8PP+WtCkGNF65DPiQY8vG3SakEdRn8Dlnm+gW/qWKKjS5sZzQ==", - "dev": true, - "optional": true - }, - "filenamify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/filenamify/-/filenamify-2.1.0.tgz", - "integrity": "sha512-ICw7NTT6RsDp2rnYKVd8Fu4cr6ITzGy3+u4vUujPkabyaz+03F24NWEX7fs5fp+kBonlaqPH8fAO2NM+SXt/JA==", - "dev": true, - "optional": true, - "requires": { - "filename-reserved-regex": "^2.0.0", - "strip-outer": "^1.0.0", - "trim-repeated": "^1.0.0" - } - }, "filesize": { "version": "8.0.7", "resolved": "https://registry.npmjs.org/filesize/-/filesize-8.0.7.tgz", @@ -29362,16 +26633,6 @@ "path-exists": "^4.0.0" } }, - "find-versions": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-3.2.0.tgz", - "integrity": "sha512-P8WRou2S+oe222TOCHitLy8zj+SIsVJh52VP4lvXkaFVnOFFdoWv1H1Jjvel1aI6NCFOAaeAVm8qrI0odiLcww==", - "dev": true, - "optional": true, - "requires": { - "semver-regex": "^2.0.0" - } - }, "flat-cache": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", @@ -29419,6 +26680,15 @@ "integrity": "sha512-U6kGnykA/6bFmg1M/oT9EkFeIYv7JlX3bozwQJWiiLz6L0w3F5vBVPxHlwyX/vtNq1ckcpRKOB9f2Qal/VtFpg==", "peer": true }, + "for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "requires": { + "is-callable": "^1.1.3" + } + }, "for-in": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", @@ -29499,15 +26769,6 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, "schema-utils": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.0.tgz", @@ -29542,12 +26803,6 @@ "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", "dev": true - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, @@ -29600,23 +26855,11 @@ "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true }, - "from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", - "dev": true, - "optional": true, - "requires": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, "fs-constants": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", - "dev": true, - "optional": true + "dev": true }, "fs-extra": { "version": "9.1.0", @@ -29672,12 +26915,6 @@ "functions-have-names": "^1.2.2" } }, - "functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", - "dev": true - }, "functions-have-names": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", @@ -29697,9 +26934,9 @@ "dev": true }, "get-intrinsic": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.3.tgz", - "integrity": "sha512-QJVz1Tj7MS099PevUG5jvnt9tSkXN8K14dxQlikJuPt4uD9hHAHjLyLBiLR5zELelBdD9QNRAXZzsJx0WaDL9A==", + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.0.tgz", + "integrity": "sha512-L049y6nFOuom5wGyRc3/gdTLO94dySVKRACj1RmJZBQXlbTMhtNIgkWkUHq+jYmZvKf14EW1EoJnnjbmoHij0Q==", "dev": true, "requires": { "function-bind": "^1.1.1", @@ -29719,16 +26956,6 @@ "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true }, - "get-proxy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/get-proxy/-/get-proxy-2.1.0.tgz", - "integrity": "sha512-zmZIaQTWnNQb4R4fJUEp/FC51eZsc6EkErspy3xtIYStaq8EB/hDIWipxsal+E8rz0qD7f2sL/NA9Xee4RInJw==", - "dev": true, - "optional": true, - "requires": { - "npm-conf": "^1.1.0" - } - }, "get-stream": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", @@ -29754,61 +26981,11 @@ "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", "dev": true }, - "gifsicle": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/gifsicle/-/gifsicle-5.3.0.tgz", - "integrity": "sha512-FJTpgdj1Ow/FITB7SVza5HlzXa+/lqEY0tHQazAJbuAdvyJtkH4wIdsR2K414oaTwRXHFLLF+tYbipj+OpYg+Q==", - "dev": true, - "optional": true, - "requires": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0", - "execa": "^5.0.0" - }, - "dependencies": { - "execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, - "optional": true, - "requires": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "dev": true, - "optional": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "optional": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "optional": true, - "requires": { - "path-key": "^3.0.0" - } - } - } + "github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==", + "dev": true }, "glob": { "version": "7.2.3", @@ -29876,6 +27053,15 @@ "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "dev": true }, + "globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "requires": { + "define-properties": "^1.1.3" + } + }, "globby": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", @@ -29897,36 +27083,13 @@ } } }, - "got": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", - "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, - "optional": true, "requires": { - "decompress-response": "^3.2.0", - "duplexer3": "^0.1.4", - "get-stream": "^3.0.0", - "is-plain-obj": "^1.1.0", - "is-retry-allowed": "^1.0.0", - "is-stream": "^1.0.0", - "isurl": "^1.0.0-alpha5", - "lowercase-keys": "^1.0.0", - "p-cancelable": "^0.3.0", - "p-timeout": "^1.1.1", - "safe-buffer": "^5.0.1", - "timed-out": "^4.0.0", - "url-parse-lax": "^1.0.0", - "url-to-options": "^1.0.1" - }, - "dependencies": { - "get-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", - "integrity": "sha512-GlhdIUuVakc8SJ6kK0zAFbiGzRFzNnY4jUuEbV9UROo4Y+0Ny4fjvcZFVTeDA4odpFyOQzaw6hXukJSq/f28sQ==", - "dev": true, - "optional": true - } + "get-intrinsic": "^1.1.3" } }, "graceful-fs": { @@ -29935,6 +27098,12 @@ "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true }, + "grapheme-splitter": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", + "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", + "dev": true + }, "growly": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", @@ -29993,12 +27162,11 @@ "get-intrinsic": "^1.1.1" } }, - "has-symbol-support-x": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", - "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", - "dev": true, - "optional": true + "has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true }, "has-symbols": { "version": "1.0.3", @@ -30006,16 +27174,6 @@ "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true }, - "has-to-string-tag-x": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", - "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", - "dev": true, - "optional": true, - "requires": { - "has-symbol-support-x": "^1.4.1" - } - }, "has-tostringtag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", @@ -30206,13 +27364,6 @@ } } }, - "http-cache-semantics": { - "version": "3.8.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", - "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", - "dev": true, - "optional": true - }, "http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", @@ -30271,14 +27422,6 @@ "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", "micromatch": "^4.0.2" - }, - "dependencies": { - "is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", - "dev": true - } } }, "https-proxy-agent": { @@ -30340,290 +27483,74 @@ "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "dev": true, - "optional": true + "dev": true }, "ignore": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", - "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", "dev": true }, - "image-webpack-loader": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/image-webpack-loader/-/image-webpack-loader-8.1.0.tgz", - "integrity": "sha512-bxzMIBNu42KGo6Bc9YMB0QEUt+XuVTl2ZSX3oGAlbsqYOkxkT4TEWvVsnwUkCRCYISJrMCEc/s0y8OYrmEfUOg==", - "dev": true, - "requires": { - "imagemin": "^7.0.1", - "imagemin-gifsicle": "^7.0.0", - "imagemin-mozjpeg": "^9.0.0", - "imagemin-optipng": "^8.0.0", - "imagemin-pngquant": "^9.0.2", - "imagemin-svgo": "^9.0.0", - "imagemin-webp": "^7.0.0", - "loader-utils": "^2.0.0", - "object-assign": "^4.1.1", - "schema-utils": "^2.7.1" - }, - "dependencies": { - "schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", - "dev": true, - "requires": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" - } - } - } - }, - "imagemin": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/imagemin/-/imagemin-7.0.1.tgz", - "integrity": "sha512-33AmZ+xjZhg2JMCe+vDf6a9mzWukE7l+wAtesjE7KyteqqKjzxv7aVQeWnul1Ve26mWvEQqyPwl0OctNBfSR9w==", + "image-minimizer-webpack-plugin": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/image-minimizer-webpack-plugin/-/image-minimizer-webpack-plugin-3.3.0.tgz", + "integrity": "sha512-WFLJoOhF2f3c2K4NqpqnJdsBkGcBz/i9+qnhS50qQvC+5FEPQZxcsyKaYrUjvIpox6d3kIoEdip3GbxXwHAEpA==", "dev": true, "requires": { - "file-type": "^12.0.0", - "globby": "^10.0.0", - "graceful-fs": "^4.2.2", - "junk": "^3.1.0", - "make-dir": "^3.0.0", - "p-pipe": "^3.0.0", - "replace-ext": "^1.0.0" + "schema-utils": "^4.0.0", + "serialize-javascript": "^6.0.0" }, "dependencies": { - "array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "dev": true - }, - "globby": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/globby/-/globby-10.0.2.tgz", - "integrity": "sha512-7dUi7RvCoT/xast/o/dLN53oqND4yk0nsHkhRgn9w65C4PofCLOoJ39iSOg+qVDdWQPIEj+eszMHQ+aLVwwQSg==", + "ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "requires": { - "@types/glob": "^7.1.1", - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.0.3", - "glob": "^7.1.3", - "ignore": "^5.1.1", - "merge2": "^1.2.3", - "slash": "^3.0.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" } }, - "make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, "requires": { - "semver": "^6.0.0" + "fast-deep-equal": "^3.1.3" } }, - "slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "dev": true - } - } - }, - "imagemin-gifsicle": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/imagemin-gifsicle/-/imagemin-gifsicle-7.0.0.tgz", - "integrity": "sha512-LaP38xhxAwS3W8PFh4y5iQ6feoTSF+dTAXFRUEYQWYst6Xd+9L/iPk34QGgK/VO/objmIlmq9TStGfVY2IcHIA==", - "dev": true, - "optional": true, - "requires": { - "execa": "^1.0.0", - "gifsicle": "^5.0.0", - "is-gif": "^3.0.0" - } - }, - "imagemin-mozjpeg": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/imagemin-mozjpeg/-/imagemin-mozjpeg-9.0.0.tgz", - "integrity": "sha512-TwOjTzYqCFRgROTWpVSt5UTT0JeCuzF1jswPLKALDd89+PmrJ2PdMMYeDLYZ1fs9cTovI9GJd68mRSnuVt691w==", - "dev": true, - "optional": true, - "requires": { - "execa": "^4.0.0", - "is-jpg": "^2.0.0", - "mozjpeg": "^7.0.0" - }, - "dependencies": { - "execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "optional": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "optional": true, - "requires": { - "pump": "^3.0.0" - } - }, - "human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true, - "optional": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "optional": true }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "optional": true, - "requires": { - "path-key": "^3.0.0" - } - } - } - }, - "imagemin-optipng": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/imagemin-optipng/-/imagemin-optipng-8.0.0.tgz", - "integrity": "sha512-CUGfhfwqlPjAC0rm8Fy+R2DJDBGjzy2SkfyT09L8rasnF9jSoHFqJ1xxSZWK6HVPZBMhGPMxCTL70OgTHlLF5A==", - "dev": true, - "optional": true, - "requires": { - "exec-buffer": "^3.0.0", - "is-png": "^2.0.0", - "optipng-bin": "^7.0.0" - } - }, - "imagemin-pngquant": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/imagemin-pngquant/-/imagemin-pngquant-9.0.2.tgz", - "integrity": "sha512-cj//bKo8+Frd/DM8l6Pg9pws1pnDUjgb7ae++sUX1kUVdv2nrngPykhiUOgFeE0LGY/LmUbCf4egCHC4YUcZSg==", - "dev": true, - "optional": true, - "requires": { - "execa": "^4.0.0", - "is-png": "^2.0.0", - "is-stream": "^2.0.0", - "ow": "^0.17.0", - "pngquant-bin": "^6.0.0" - }, - "dependencies": { - "execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "optional": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "optional": true, - "requires": { - "pump": "^3.0.0" - } - }, - "human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true, - "optional": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "optional": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "schema-utils": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", + "integrity": "sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==", "dev": true, - "optional": true, "requires": { - "path-key": "^3.0.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.8.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.0.0" } } } }, - "imagemin-svgo": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/imagemin-svgo/-/imagemin-svgo-9.0.0.tgz", - "integrity": "sha512-uNgXpKHd99C0WODkrJ8OO/3zW3qjgS4pW7hcuII0RcHN3tnKxDjJWcitdVC/TZyfIqSricU8WfrHn26bdSW62g==", - "dev": true, - "optional": true, - "requires": { - "is-svg": "^4.2.1", - "svgo": "^2.1.0" - } - }, - "imagemin-webp": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/imagemin-webp/-/imagemin-webp-7.0.0.tgz", - "integrity": "sha512-JoYjvHNgBLgrQAkeCO7T5iNc8XVpiBmMPZmiXMhalC7K6gwY/3DCEUfNxVPOmNJ+NIJlJFvzcMR9RBxIE74Xxw==", - "dev": true, - "optional": true, - "requires": { - "cwebp-bin": "^7.0.1", - "exec-buffer": "^3.2.0", - "is-cwebp-readable": "^3.0.0" - } - }, "immediate": { "version": "3.0.6", "resolved": "https://registry.npmjs.org/immediate/-/immediate-3.0.6.tgz", "integrity": "sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==" }, "immer": { - "version": "9.0.16", - "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.16.tgz", - "integrity": "sha512-qenGE7CstVm1NrHQbMh8YaSzTZTFNP3zPqr3YU0S0UY441j4bJTg4A2Hh5KAhwgaiU6ZZ1Ar6y/2f4TblnMReQ==", + "version": "9.0.18", + "resolved": "https://registry.npmjs.org/immer/-/immer-9.0.18.tgz", + "integrity": "sha512-eAPNpsj7Ax1q6Y/3lm2PmlwRcFzpON7HSNQ3ru5WQH1/PSpnyed/HpNOELl2CxLKoj4r+bAHgdyKqW5gc2Se1A==", "dev": true }, "immutable": { @@ -30650,13 +27577,6 @@ } } }, - "import-lazy": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-3.1.0.tgz", - "integrity": "sha512-8/gvXvX2JMn0F+CDlSC4l6kOmVaLOO3XLkksI7CI3Ud95KDYJuYur2b9P/PUt/i/pDAMd/DulQsNbbbmRRsDIQ==", - "dev": true, - "optional": true - }, "import-local": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", @@ -30700,12 +27620,12 @@ "dev": true }, "internal-slot": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", - "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.4.tgz", + "integrity": "sha512-tA8URYccNzMo94s5MQZgH8NB/XTa6HsOo0MLfXTKKEnHVVdegzaQoFZ7Jp44bdvLvY2waT5dc+j5ICEswhi7UQ==", "dev": true, "requires": { - "get-intrinsic": "^1.1.0", + "get-intrinsic": "^1.1.3", "has": "^1.0.3", "side-channel": "^1.0.4" } @@ -30736,17 +27656,6 @@ "@formatjs/intl-numberformat": "^5.5.2" } }, - "into-stream": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", - "integrity": "sha512-TcdjPibTksa1NQximqep2r17ISRiNE9fwlfbg3F8ANdvP5/yrFTew86VcO//jk4QTaMlbjypPBq76HN2zaKfZQ==", - "dev": true, - "optional": true, - "requires": { - "from2": "^2.1.1", - "p-is-promise": "^1.1.0" - } - }, "invariant": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", @@ -30787,6 +27696,17 @@ "has-tostringtag": "^1.0.0" } }, + "is-array-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.1.tgz", + "integrity": "sha512-ASfLknmY8Xa2XtB4wmbz13Wu202baeA18cJBCeCy0wXUHZF0IPyVEXqKEcd+t2fNSLLL1vC6k7lxZEojNbISXQ==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-typed-array": "^1.1.10" + } + }, "is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", @@ -30850,25 +27770,6 @@ "has": "^1.0.3" } }, - "is-cwebp-readable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-cwebp-readable/-/is-cwebp-readable-3.0.0.tgz", - "integrity": "sha512-bpELc7/Q1/U5MWHn4NdHI44R3jxk0h9ew9ljzabiRl70/UIjL/ZAqRMb52F5+eke/VC8yTiv4Ewryo1fPWidvA==", - "dev": true, - "optional": true, - "requires": { - "file-type": "^10.5.0" - }, - "dependencies": { - "file-type": { - "version": "10.11.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", - "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", - "dev": true, - "optional": true - } - } - }, "is-data-descriptor": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", @@ -30931,25 +27832,6 @@ "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", "dev": true }, - "is-gif": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-gif/-/is-gif-3.0.0.tgz", - "integrity": "sha512-IqJ/jlbw5WJSNfwQ/lHEDXF8rxhRgF6ythk2oiEvhpG29F704eX9NO6TvPfMiq9DrbwgcEDnETYNcZDPewQoVw==", - "dev": true, - "optional": true, - "requires": { - "file-type": "^10.4.0" - }, - "dependencies": { - "file-type": { - "version": "10.11.0", - "resolved": "https://registry.npmjs.org/file-type/-/file-type-10.11.0.tgz", - "integrity": "sha512-uzk64HRpUZyTGZtVuvrjP0FYxzQrBf4rojot6J65YMEbwBLB0CWm0CLojVpwpmFmxcE/lkvYICgfcGozbBq6rw==", - "dev": true, - "optional": true - } - } - }, "is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", @@ -30985,20 +27867,6 @@ } } }, - "is-jpg": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-jpg/-/is-jpg-2.0.0.tgz", - "integrity": "sha512-ODlO0ruzhkzD3sdynIainVP5eoOFNN85rxA1+cwwnPe4dKyX0r5+hxNO5XpCrxlHcmb9vkOit9mhRD2JVuimHg==", - "dev": true, - "optional": true - }, - "is-natural-number": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-natural-number/-/is-natural-number-4.0.1.tgz", - "integrity": "sha512-Y4LTamMe0DDQIIAlaer9eKebAlDSV6huy+TWhJVPlzZh2o4tRP5SQWFlLn5N0To4mDD22/qdOq+veo1cSISLgQ==", - "dev": true, - "optional": true - }, "is-negative-zero": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", @@ -31020,13 +27888,6 @@ "has-tostringtag": "^1.0.0" } }, - "is-object": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.2.tgz", - "integrity": "sha512-2rRIahhZr2UWb45fIOuvZGpFtz0TyOZLf32KxBbSoUCeZR495zCKlWUKKUByk3geS2eAs7ZAABt0Y/Rx0GiQGA==", - "dev": true, - "optional": true - }, "is-path-cwd": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", @@ -31052,11 +27913,10 @@ } }, "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true, - "optional": true + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "dev": true }, "is-plain-object": { "version": "2.0.4", @@ -31067,13 +27927,6 @@ "isobject": "^3.0.1" } }, - "is-png": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-png/-/is-png-2.0.0.tgz", - "integrity": "sha512-4KPGizaVGj2LK7xwJIz8o5B2ubu1D/vcQsgOGFEDlpcvgZHto4gBnyd0ig7Ws+67ixmwKoNmu0hYnpo6AaKb5g==", - "dev": true, - "optional": true - }, "is-potential-custom-element-name": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", @@ -31096,13 +27949,6 @@ "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", "dev": true }, - "is-retry-allowed": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.2.0.tgz", - "integrity": "sha512-RUbUeKwvm3XG2VYamhJL1xFktgjvPzL0Hq8C+6yrWIswDy3BIXGqCxhxkc30N9jqK311gVU137K8Ei55/zVJRg==", - "dev": true, - "optional": true - }, "is-root": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-root/-/is-root-2.1.0.tgz", @@ -31133,16 +27979,6 @@ "has-tostringtag": "^1.0.0" } }, - "is-svg": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-4.3.2.tgz", - "integrity": "sha512-mM90duy00JGMyjqIVHu9gNTjywdZV+8qNasX8cm/EEYZ53PHDgajvbBwNVvty5dwSAxLUD3p3bdo+7sR/UMrpw==", - "dev": true, - "optional": true, - "requires": { - "fast-xml-parser": "^3.19.0" - } - }, "is-symbol": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", @@ -31152,6 +27988,19 @@ "has-symbols": "^1.0.2" } }, + "is-typed-array": { + "version": "1.1.10", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.10.tgz", + "integrity": "sha512-PJqgEHiWZvMpaFZ3uTc8kHPM4+4ADTlDniuQL7cU/UDA0Ql7F70yGfHph3cLNe+c9toaigv+DFzTJKhc2CtO6A==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + } + }, "is-typedarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", @@ -31294,17 +28143,6 @@ "istanbul-lib-report": "^3.0.0" } }, - "isurl": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", - "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", - "dev": true, - "optional": true, - "requires": { - "has-to-string-tag-x": "^1.2.0", - "is-object": "^1.0.1" - } - }, "jest": { "version": "26.6.3", "resolved": "https://registry.npmjs.org/jest/-/jest-26.6.3.tgz", @@ -32494,15 +29332,6 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -32520,12 +29349,6 @@ "requires": { "has-flag": "^4.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, @@ -32759,6 +29582,12 @@ "integrity": "sha512-opJeO4nCucVnsjiXOE+/PcCgYw9Gwpvs/a6B1LL/lQhwWwpbVEVYDZ1FokFr8PRc7ghYlrFPuyHuiiDNTQxmcw==", "peer": true }, + "js-sdsl": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/js-sdsl/-/js-sdsl-4.3.0.tgz", + "integrity": "sha512-mifzlm2+5nZ+lEcLJMoBK0/IH/bDg8XnJfd/Wq6IP+xoCjLZsTOnV2QpxlVbX9bMnkl5PdEjNtBJ9Cj1NjifhQ==", + "dev": true + }, "js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", @@ -32815,19 +29644,6 @@ "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true }, - "json-buffer": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", - "integrity": "sha512-CuUqjv0FUZIdXkHPI8MezCnFCdaTAacej1TZYulLoAg1h/PhwkdXFN4V/gzY4g+fMBCOV2xF+rp7t2XD2ns/NQ==", - "dev": true, - "optional": true - }, - "json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", - "dev": true - }, "json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", @@ -32847,9 +29663,9 @@ "dev": true }, "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true }, "jsonfile": { @@ -32872,27 +29688,11 @@ "object.assign": "^4.1.3" } }, - "junk": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/junk/-/junk-3.1.0.tgz", - "integrity": "sha512-pBxcB3LFc8QVgdggvZWyeys+hnrNWg4OcZIU/1X59k5jQdLBlCsYGRQaz234SqoRLTCgMH00fY0xRJH+F9METQ==", - "dev": true - }, "jwt-decode": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/jwt-decode/-/jwt-decode-3.1.2.tgz", "integrity": "sha512-UfpWE/VZn0iP50d8cz9NrZLM9lSWhcJ+0Gt/nm4by88UL+J1SiKN8/5dkjMmbEzwL2CAe+67GsegCbIKtbp75A==" }, - "keyv": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", - "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", - "dev": true, - "optional": true, - "requires": { - "json-buffer": "3.0.0" - } - }, "kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", @@ -32918,12 +29718,12 @@ "dev": true }, "language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.7.tgz", + "integrity": "sha512-bSytju1/657hFjgUzPAPqszxH62ouE8nQFoFaVlIQfne4wO/wXC9A4+m8jYve7YBBvi59eq0SUpcshvG8h5Usw==", "dev": true, "requires": { - "language-subtag-registry": "~0.3.2" + "language-subtag-registry": "^0.3.20" } }, "leven": { @@ -32969,9 +29769,9 @@ "dev": true }, "loader-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.3.tgz", - "integrity": "sha512-THWqIsn8QRnvLl0shHYVBN9syumU8pYWEHPTmkiVGd+7K5eFNVSY6AJhRvgGF70gg1Dz+l/k8WicvFCxdEs60A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -33065,22 +29865,13 @@ "tslib": "^2.0.3" } }, - "lowercase-keys": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", - "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", - "dev": true, - "optional": true - }, "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, - "optional": true, "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "yallist": "^4.0.0" } }, "mailto-link": { @@ -33169,9 +29960,9 @@ "dev": true }, "memfs": { - "version": "3.4.9", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.9.tgz", - "integrity": "sha512-3rm8kbrzpUGRyPKSGuk387NZOwQ90O4rI9tsWQkzNW7BLSnKGp23RsEsKK8N8QVCrtJoAMqy3spxHC4os4G6PQ==", + "version": "3.4.13", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.13.tgz", + "integrity": "sha512-omTM41g3Skpvx5dSYeZIbXKcXoAVc/AoMNwn9TKx++L/gaen/+4TTttmu8ZSch5vfVJ8uJvGbroTsIlslRg6lg==", "dev": true, "requires": { "fs-monkey": "^1.0.3" @@ -33239,11 +30030,10 @@ "dev": true }, "mimic-response": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", - "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", - "dev": true, - "optional": true + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", + "dev": true }, "mini-css-extract-plugin": { "version": "1.6.2", @@ -33295,16 +30085,11 @@ "minimist": "^1.2.6" } }, - "mozjpeg": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/mozjpeg/-/mozjpeg-7.1.1.tgz", - "integrity": "sha512-iIDxWvzhWvLC9mcRJ1uSkiKaj4drF58oCqK2bITm5c2Jt6cJ8qQjSSru2PCaysG+hLIinryj8mgz5ZJzOYTv1A==", - "dev": true, - "optional": true, - "requires": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0" - } + "mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", + "dev": true }, "mrmime": { "version": "1.0.1", @@ -33359,6 +30144,12 @@ "to-regex": "^3.0.1" } }, + "napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", + "dev": true + }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -33393,6 +30184,32 @@ "tslib": "^2.0.3" } }, + "node-abi": { + "version": "3.31.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.31.0.tgz", + "integrity": "sha512-eSKV6s+APenqVh8ubJyiu/YhZgxQpGP66ntzUb3lY1xB9ukSRaGnx0AIxI+IM+1+IVYC1oWobgG5L3Lt9ARykQ==", + "dev": true, + "requires": { + "semver": "^7.3.5" + }, + "dependencies": { + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, + "node-addon-api": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-5.1.0.tgz", + "integrity": "sha512-eh0GgfEkpnoWDq+VY8OyvYhFEzBk6jIYbRKdIlyTiAXIVJ8PyBaKb0rp7oDtoddbdoHWhq8wwr+XZ81F1rpNdA==", + "dev": true + }, "node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", @@ -33420,16 +30237,6 @@ "which": "^2.0.2" }, "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "optional": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -33439,13 +30246,6 @@ "requires": { "lru-cache": "^6.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true, - "optional": true } } }, @@ -33493,26 +30293,6 @@ "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", "dev": true }, - "npm-conf": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/npm-conf/-/npm-conf-1.1.3.tgz", - "integrity": "sha512-Yic4bZHJOt9RCFbRP3GgpqhScOY4HH3V2P8yBj6CeYq118Qr+BLXqT2JvpJ00mryLESpgOxf5XlFv4ZjXxLScw==", - "dev": true, - "optional": true, - "requires": { - "config-chain": "^1.1.11", - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "dev": true, - "optional": true - } - } - }, "npm-run-path": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", @@ -33625,9 +30405,9 @@ "peer": true }, "object-inspect": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", - "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", "dev": true }, "object-is": { @@ -33668,35 +30448,35 @@ } }, "object.entries": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", - "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" } }, "object.fromentries": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.5.tgz", - "integrity": "sha512-CAyG5mWQRRiBU57Re4FKoTBjXfDoNwdFVH2Y1tS9PqCsfUTymAohOkEMSG3aRNKmv4lV3O7p1et7c187q6bynw==", + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" } }, "object.hasown": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.1.tgz", - "integrity": "sha512-LYLe4tivNQzq4JdaWW6WO3HMZZJWzkkH8fnI6EebWl0VZth2wL2Lovm74ep2/gZzlaTdV62JZHEqHQ2yVn8Q/A==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", "dev": true, "requires": { "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "es-abstract": "^1.20.4" } }, "object.pick": { @@ -33709,14 +30489,14 @@ } }, "object.values": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", - "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" } }, "obuf": { @@ -33788,82 +30568,18 @@ "word-wrap": "^1.2.3" } }, - "optipng-bin": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/optipng-bin/-/optipng-bin-7.0.1.tgz", - "integrity": "sha512-W99mpdW7Nt2PpFiaO+74pkht7KEqkXkeRomdWXfEz3SALZ6hns81y/pm1dsGZ6ItUIfchiNIP6ORDr1zETU1jA==", - "dev": true, - "optional": true, - "requires": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.0" - } - }, - "os-filter-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/os-filter-obj/-/os-filter-obj-2.0.0.tgz", - "integrity": "sha512-uksVLsqG3pVdzzPvmAHpBK0wKxYItuzZr7SziusRPoz67tGV8rL1szZ6IdeUrbqLjGDwApBtN29eEE3IqGHOjg==", - "dev": true, - "optional": true, - "requires": { - "arch": "^2.1.0" - } - }, - "ow": { - "version": "0.17.0", - "resolved": "https://registry.npmjs.org/ow/-/ow-0.17.0.tgz", - "integrity": "sha512-i3keDzDQP5lWIe4oODyDFey1qVrq2hXKTuTH2VpqwpYtzPiKZt2ziRI4NBQmgW40AnV5Euz17OyWweCb+bNEQA==", - "dev": true, - "optional": true, - "requires": { - "type-fest": "^0.11.0" - }, - "dependencies": { - "type-fest": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.11.0.tgz", - "integrity": "sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==", - "dev": true, - "optional": true - } - } - }, - "p-cancelable": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", - "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", - "dev": true, - "optional": true - }, "p-each-series": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-2.2.0.tgz", "integrity": "sha512-ycIL2+1V32th+8scbpTvyHNaHe02z0sjgh91XXjAk+ZeXoPN4Z46DVUnzdso0aX4KckKw0FNNFHdjZ2UsZvxiA==", "dev": true }, - "p-event": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/p-event/-/p-event-1.3.0.tgz", - "integrity": "sha512-hV1zbA7gwqPVFcapfeATaNjQ3J0NuzorHPyG8GPL9g/Y/TplWVBVoCKCXL6Ej2zscrCEv195QNWJXuBH6XZuzA==", - "dev": true, - "optional": true, - "requires": { - "p-timeout": "^1.1.1" - } - }, "p-finally": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", "integrity": "sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==", "dev": true }, - "p-is-promise": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", - "integrity": "sha512-zL7VE4JVS2IFSkR2GQKDSPEVxkoH43/p7oEnwpdCndKYJO0HVeRB7fA8TJwuLOTBREtK0ea8eHaxdwcpob5dmg==", - "dev": true, - "optional": true - }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -33888,29 +30604,6 @@ "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", "dev": true }, - "p-map-series": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-map-series/-/p-map-series-1.0.0.tgz", - "integrity": "sha512-4k9LlvY6Bo/1FcIdV33wqZQES0Py+iKISU9Uc8p8AjWoZPnFKMpVIVD3s0EYn4jzLh1I+WeUZkJ0Yoa4Qfw3Kg==", - "dev": true, - "optional": true, - "requires": { - "p-reduce": "^1.0.0" - } - }, - "p-pipe": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-pipe/-/p-pipe-3.1.0.tgz", - "integrity": "sha512-08pj8ATpzMR0Y80x50yJHn37NF6vjrqHutASaX5LiH5npS9XPvrUmscd9MF5R4fuYRHOxQR1FfMIlF7AzwoPqw==", - "dev": true - }, - "p-reduce": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", - "integrity": "sha512-3Tx1T3oM1xO/Y8Gj0sWyE78EIJZ+t+aEmXUdvQgvGmSMri7aPTHoovbXEreWKkL5j21Er60XAWLTzKbAKYOujQ==", - "dev": true, - "optional": true - }, "p-retry": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", @@ -33921,16 +30614,6 @@ "retry": "^0.13.1" } }, - "p-timeout": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", - "integrity": "sha512-gb0ryzr+K2qFqFv6qi3khoeqMZF/+ajxQipEF6NteZVnvz9tzdsfAVj3lYtn1gAXvH5lfLwfxEII799gt/mRIA==", - "dev": true, - "optional": true, - "requires": { - "p-finally": "^1.0.0" - } - }, "p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", @@ -34040,13 +30723,6 @@ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, - "pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true, - "optional": true - }, "picocolors": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", @@ -34188,72 +30864,6 @@ } } }, - "pngquant-bin": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/pngquant-bin/-/pngquant-bin-6.0.1.tgz", - "integrity": "sha512-Q3PUyolfktf+hYio6wsg3SanQzEU/v8aICg/WpzxXcuCMRb7H2Q81okfpcEztbMvw25ILjd3a87doj2N9kvbpQ==", - "dev": true, - "optional": true, - "requires": { - "bin-build": "^3.0.0", - "bin-wrapper": "^4.0.1", - "execa": "^4.0.0" - }, - "dependencies": { - "execa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/execa/-/execa-4.1.0.tgz", - "integrity": "sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==", - "dev": true, - "optional": true, - "requires": { - "cross-spawn": "^7.0.0", - "get-stream": "^5.0.0", - "human-signals": "^1.1.1", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.0", - "onetime": "^5.1.0", - "signal-exit": "^3.0.2", - "strip-final-newline": "^2.0.0" - } - }, - "get-stream": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-5.2.0.tgz", - "integrity": "sha512-nBF+F1rAZVCu/p7rjzgA+Yb4lfYXrpl7a6VmJrU8wF9I1CKvP/QwPNZHnOlwbTkY6dvtFIzFMSyQXbLoTQPRpA==", - "dev": true, - "optional": true, - "requires": { - "pump": "^3.0.0" - } - }, - "human-signals": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-1.1.1.tgz", - "integrity": "sha512-SEQu7vl8KjNL2eoGBLF3+wAjpsNfA9XMlXAYj/3EdaNfAlxKthD1xjEQfGOUhllCGGJVNY34bRr6lPINhNjyZw==", - "dev": true, - "optional": true - }, - "is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "optional": true - }, - "npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, - "optional": true, - "requires": { - "path-key": "^3.0.0" - } - } - } - }, "popper.js": { "version": "1.16.1", "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", @@ -34289,14 +30899,14 @@ "dev": true }, "postcss": { - "version": "8.4.5", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.5.tgz", - "integrity": "sha512-jBDboWM8qpaqwkMwItqTQTiFikhs/67OYVvblFFTM7MrZjt6yMKd6r2kgXizEbTTljacm4NldIlZnhbjr84QYg==", + "version": "8.4.21", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.21.tgz", + "integrity": "sha512-tP7u/Sn/dVxK2NnruI4H9BG+x+Wxz6oeZ1cJ8P6G/PZY0IKk4k/63TDsQf2kQq3+qoJeLm2kIBUNlZe3zgb4Zg==", "dev": true, "requires": { - "nanoid": "^3.1.30", + "nanoid": "^3.3.4", "picocolors": "^1.0.0", - "source-map-js": "^1.0.1" + "source-map-js": "^1.0.2" } }, "postcss-calc": { @@ -34360,25 +30970,16 @@ "requires": {} }, "postcss-loader": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.1.1.tgz", - "integrity": "sha512-lBmJMvRh1D40dqpWKr9Rpygwxn8M74U9uaCSeYGNKLGInbk9mXBt1ultHf2dH9Ghk6Ue4UXlXWwGMH9QdUJ5ug==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-6.2.1.tgz", + "integrity": "sha512-WbbYpmAaKcux/P66bZ40bpWsBucjx/TTgVVzRZ9yUO8yQfVBlameJ0ZGVaPfH64hNSBh63a+ICP5nqOpBA0w+Q==", "dev": true, "requires": { "cosmiconfig": "^7.0.0", - "klona": "^2.0.4", + "klona": "^2.0.5", "semver": "^7.3.5" }, "dependencies": { - "lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dev": true, - "requires": { - "yallist": "^4.0.0" - } - }, "semver": { "version": "7.3.8", "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", @@ -34387,12 +30988,6 @@ "requires": { "lru-cache": "^6.0.0" } - }, - "yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true } } }, @@ -34648,19 +31243,32 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, + "prebuild-install": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", + "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", + "dev": true, + "requires": { + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + } + }, "prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", - "dev": true, - "optional": true - }, "pretty-error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", @@ -34760,13 +31368,6 @@ } } }, - "proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true, - "optional": true - }, "proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", @@ -34785,13 +31386,6 @@ } } }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", - "dev": true, - "optional": true - }, "psl": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/psl/-/psl-1.9.0.tgz", @@ -34887,6 +31481,26 @@ } } }, + "rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "dev": true, + "requires": { + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" + }, + "dependencies": { + "strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "dev": true + } + } + }, "react": { "version": "16.14.0", "resolved": "https://registry.npmjs.org/react/-/react-16.14.0.tgz", @@ -34932,9 +31546,9 @@ } }, "react-dev-utils": { - "version": "12.0.0", - "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.0.tgz", - "integrity": "sha512-xBQkitdxozPxt1YZ9O1097EJiVpwHr9FoAuEVURCKV0Av8NBERovJauzP7bo1ThvuhZ4shsQ1AJiu4vQpoT1AQ==", + "version": "12.0.1", + "resolved": "https://registry.npmjs.org/react-dev-utils/-/react-dev-utils-12.0.1.tgz", + "integrity": "sha512-84Ivxmr17KjUupyqzFode6xKhjwuEJDROWKJy/BthkL7Wn6NJ8h4WE6k/exAv6ImS+0oZLRRW5j/aINMHyeGeQ==", "dev": true, "requires": { "@babel/code-frame": "^7.16.0", @@ -34956,7 +31570,7 @@ "open": "^8.4.0", "pkg-up": "^3.1.0", "prompts": "^2.4.2", - "react-error-overlay": "^6.0.10", + "react-error-overlay": "^6.0.11", "recursive-readdir": "^2.2.2", "shell-quote": "^1.7.3", "strip-ansi": "^6.0.1", @@ -35030,9 +31644,9 @@ "dev": true }, "loader-utils": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.0.tgz", - "integrity": "sha512-HVl9ZqccQihZ7JM85dco1MvO9G+ONvxoGa9rkhzFsneGLKSUg1gJf9bWzhRhcvm2qChhWpebQhP44qxjKIUCaQ==", + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-3.2.1.tgz", + "integrity": "sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw==", "dev": true }, "slash": { @@ -35197,9 +31811,9 @@ } }, "react-refresh": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.10.0.tgz", - "integrity": "sha512-PgidR3wST3dDYKr6b4pJoqQFpPGNKDSCDx4cZoshjXipw3LzO7mG1My2pwEzz2JVkF+inx3xRpDeQLFQGH/hsQ==", + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", "dev": true }, "react-remove-scroll": { @@ -35464,9 +32078,9 @@ } }, "regenerator-runtime": { - "version": "0.13.10", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.10.tgz", - "integrity": "sha512-KepLsg4dU12hryUO7bp/axHAKvwGOCV0sGloQtpagJ12ai+ojVDqkeGSiRX1zlq+kjIMZ1t7gpze+26QqtdGqw==" + "version": "0.13.11", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.11.tgz", + "integrity": "sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==" }, "regenerator-transform": { "version": "0.15.0", @@ -35584,12 +32198,6 @@ "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", "dev": true }, - "replace-ext": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.1.tgz", - "integrity": "sha512-yD5BHCe7quCgBph4rMQ+0KkIRKwWCrHDOX1p1Gp6HwjPM5kVoCdKGNhN7ydqqsX6lJEnQDKZ/tFMiEdQ1dvPEw==", - "dev": true - }, "require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", @@ -35652,9 +32260,9 @@ "dev": true }, "resolve-url-loader": { - "version": "5.0.0-beta.1", - "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0-beta.1.tgz", - "integrity": "sha512-MXkuP7+etG/4H96tZnbUOX9g2KiJaEpJ7cnjmVZUYkIXWKh2soTZF/ghczKVw/qKZZplDDjZwR5xGztD9ex7KQ==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-url-loader/-/resolve-url-loader-5.0.0.tgz", + "integrity": "sha512-uZtduh8/8srhBoMx//5bwqjQ+rfYOUq8zC9NrMUGtjBiGTtFJM42s58/36+hTqeqINcnYe08Nj3LkK9lW4N8Xg==", "dev": true, "requires": { "adjust-sourcemap-loader": "^4.0.0", @@ -35672,16 +32280,6 @@ } } }, - "responselike": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", - "integrity": "sha512-/Fpe5guzJk1gPqdJLJR5u7eG/gNY4nImjbRDaVWVMRhne55TCmj2i9Q+54PBRfatRC8v/rIiv9BN0pMd9OV5EQ==", - "dev": true, - "optional": true, - "requires": { - "lowercase-keys": "^1.0.0" - } - }, "ret": { "version": "0.1.15", "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", @@ -35916,9 +32514,9 @@ } }, "sass": { - "version": "1.49.9", - "resolved": "https://registry.npmjs.org/sass/-/sass-1.49.9.tgz", - "integrity": "sha512-YlYWkkHP9fbwaFRZQRXgDi3mXZShslVmmo+FVK3kHLUELHHEYrCmL1x6IUjC7wLS6VuJSAFXRQS/DxdsC4xL1A==", + "version": "1.56.1", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.56.1.tgz", + "integrity": "sha512-VpEyKpyBPCxE7qGDtOcdJ6fFbcpOM+Emu7uZLxVrkX8KVU/Dp5UF7WLvzqRuUhB6mqqQt1xffLoG+AndxTZrCQ==", "dev": true, "requires": { "chokidar": ">=3.0.0 <4.0.0", @@ -35965,25 +32563,6 @@ "ajv-keywords": "^3.5.2" } }, - "seek-bzip": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/seek-bzip/-/seek-bzip-1.0.6.tgz", - "integrity": "sha512-e1QtP3YL5tWww8uKaOCQ18UxIT2laNBXHjV/S2WYCiK4udiv8lkG89KRIoCjUagnAmCBurjF4zEVX2ByBbnCjQ==", - "dev": true, - "optional": true, - "requires": { - "commander": "^2.8.1" - }, - "dependencies": { - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true, - "optional": true - } - } - }, "select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", @@ -36005,32 +32584,6 @@ "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true }, - "semver-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-2.0.0.tgz", - "integrity": "sha512-mUdIBBvdn0PLOeP3TEkMH7HHeUP3GjsXCwKarjv/kGmUFOYg1VqEemKhoQpWMu6X2I8kHeuVdGibLGkVK+/5Qw==", - "dev": true, - "optional": true - }, - "semver-truncate": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/semver-truncate/-/semver-truncate-1.1.2.tgz", - "integrity": "sha512-V1fGg9i4CL3qesB6U0L6XAm4xOJiHmt4QAacazumuasc03BvtFGIMCduv01JWQ69Nv+JST9TqhSCiJoxoY031w==", - "dev": true, - "optional": true, - "requires": { - "semver": "^5.3.0" - }, - "dependencies": { - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "optional": true - } - } - }, "send": { "version": "0.18.0", "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", @@ -36222,6 +32775,33 @@ "integrity": "sha512-S4vJDjHHMBaiZuT9NPb616CSmLf618jawtv3sufLl6ivK8WocjAo58cXwbRV1cgqxH0Qbv+iUt6m05eqEa2IRA==", "peer": true }, + "sharp": { + "version": "0.31.3", + "resolved": "https://registry.npmjs.org/sharp/-/sharp-0.31.3.tgz", + "integrity": "sha512-XcR4+FCLBFKw1bdB+GEhnUNXNXvnt0tDo4WsBsraKymuo/IAuPuCBVAL2wIkUw2r/dwFW5Q5+g66Kwl2dgDFVg==", + "dev": true, + "requires": { + "color": "^4.2.3", + "detect-libc": "^2.0.1", + "node-addon-api": "^5.0.0", + "prebuild-install": "^7.1.1", + "semver": "^7.3.8", + "simple-get": "^4.0.1", + "tar-fs": "^2.1.1", + "tunnel-agent": "^0.6.0" + }, + "dependencies": { + "semver": { + "version": "7.3.8", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.8.tgz", + "integrity": "sha512-NB1ctGL5rlHrPJtFDVIVzTyQylMLu9N9VICA6HSFJo8MCGVTMW6gfpicwKmmK/dAjTOrqu5l63JJOpDSrAis3A==", + "dev": true, + "requires": { + "lru-cache": "^6.0.0" + } + } + } + }, "shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", @@ -36267,6 +32847,40 @@ "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, + "simple-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/simple-concat/-/simple-concat-1.0.1.tgz", + "integrity": "sha512-cSFtAPtRhljv69IK0hTVZQ+OfE9nePi/rtJmw5UjHeVyVroEqJXP1sFztKUy1qU+xvz3u/sfYJLa947b7nAN2Q==", + "dev": true + }, + "simple-get": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-4.0.1.tgz", + "integrity": "sha512-brv7p5WgH0jmQJr1ZDDfKDOSeWWg+OVypG99A/5vYGPqJ6pxiaHLy8nxtFjBA7oMa01ebA9gfh1uMCFqOuXxvA==", + "dev": true, + "requires": { + "decompress-response": "^6.0.0", + "once": "^1.3.1", + "simple-concat": "^1.0.0" + } + }, + "simple-swizzle": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/simple-swizzle/-/simple-swizzle-0.2.2.tgz", + "integrity": "sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==", + "dev": true, + "requires": { + "is-arrayish": "^0.3.1" + }, + "dependencies": { + "is-arrayish": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", + "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==", + "dev": true + } + } + }, "sirv": { "version": "1.0.19", "resolved": "https://registry.npmjs.org/sirv/-/sirv-1.0.19.tgz", @@ -36457,26 +33071,6 @@ "websocket-driver": "^0.7.4" } }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", - "dev": true, - "optional": true, - "requires": { - "is-plain-obj": "^1.0.0" - } - }, - "sort-keys-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sort-keys-length/-/sort-keys-length-1.0.1.tgz", - "integrity": "sha512-GRbEOUqCxemTAk/b32F2xa8wDTs+Z1QHOkbhJDQTvv/6G3ZkbJ+frYWsTcc7cBB3Fu4wy4XlLCuNtJuMn7Gsvw==", - "dev": true, - "optional": true, - "requires": { - "sort-keys": "^1.0.0" - } - }, "source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", @@ -36506,18 +33100,18 @@ }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" } }, "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -36823,41 +33417,41 @@ } }, "string.prototype.matchall": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.7.tgz", - "integrity": "sha512-f48okCX7JiwVi1NXCVWcFnZgADDC/n2vePlQ/KUCNqCikLLilQvwjMO8+BHVKvgzH0JB0J9LEPgxOGT02RoETg==", + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", + "integrity": "sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==", "dev": true, "requires": { "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.19.1", - "get-intrinsic": "^1.1.1", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", "has-symbols": "^1.0.3", "internal-slot": "^1.0.3", - "regexp.prototype.flags": "^1.4.1", + "regexp.prototype.flags": "^1.4.3", "side-channel": "^1.0.4" } }, "string.prototype.trimend": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", - "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.6.tgz", + "integrity": "sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==", "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "es-abstract": "^1.20.4" } }, "string.prototype.trimstart": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", - "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.6.tgz", + "integrity": "sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==", "dev": true, "requires": { "call-bind": "^1.0.2", "define-properties": "^1.1.4", - "es-abstract": "^1.19.5" + "es-abstract": "^1.20.4" } }, "strip-ansi": { @@ -36875,16 +33469,6 @@ "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true }, - "strip-dirs": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/strip-dirs/-/strip-dirs-2.1.0.tgz", - "integrity": "sha512-JOCxOeKLm2CAS73y/U4ZeZPTkE+gNVCzKt7Eox84Iej1LT/2pTWYpZKJuxwQpvX1LiZb1xokNR7RLfuBAa7T3g==", - "dev": true, - "optional": true, - "requires": { - "is-natural-number": "^4.0.1" - } - }, "strip-eof": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", @@ -36903,32 +33487,12 @@ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, - "strip-outer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-outer/-/strip-outer-1.0.1.tgz", - "integrity": "sha512-k55yxKHwaXnpYGsOzg4Vl8+tDrWylxDEpknGjhTiZB8dFRU5rTo9CAzeycivxV3s+zlTKwrs6WxMxR95n26kwg==", - "dev": true, - "optional": true, - "requires": { - "escape-string-regexp": "^1.0.2" - } - }, - "strnum": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/strnum/-/strnum-1.0.5.tgz", - "integrity": "sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==", - "dev": true, - "optional": true - }, "style-loader": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-2.0.0.tgz", - "integrity": "sha512-Z0gYUJmzZ6ZdRUqpg1r8GsaFKypE+3xAzuFeMuoHgjc9KZv3wMyCRjQIWEbhoFSq7+7yoHXySDJyyWQaPajeiQ==", + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-3.3.1.tgz", + "integrity": "sha512-GPcQ+LDJbrcxHORTRes6Jy2sfvK2kS6hpSfI/fXhPt+spVzxF6LJ1dHLN9zIGmVaaP044YKaIatFaufENRiDoQ==", "dev": true, - "requires": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - } + "requires": {} }, "stylehacks": { "version": "5.1.1", @@ -37069,46 +33633,41 @@ "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "dev": true }, - "tar-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-1.6.2.tgz", - "integrity": "sha512-rzS0heiNf8Xn7/mpdSVVSMAWAoy9bfb1WOTYC78Z0UQKeKa/CWS8FOq0lKGNa8DWKAn9gxjCvMLYc5PGXYlK2A==", + "tar-fs": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.1.tgz", + "integrity": "sha512-V0r2Y9scmbDRLCNex/+hYzvp/zyYjvFbHPNgVTKfQvVrb6guiE/fxP+XblDNR011utopbkex2nM4dHNV6GDsng==", "dev": true, - "optional": true, "requires": { - "bl": "^1.0.0", - "buffer-alloc": "^1.2.0", - "end-of-stream": "^1.0.0", - "fs-constants": "^1.0.0", - "readable-stream": "^2.3.0", - "to-buffer": "^1.1.1", - "xtend": "^4.0.0" + "chownr": "^1.1.1", + "mkdirp-classic": "^0.5.2", + "pump": "^3.0.0", + "tar-stream": "^2.1.4" } }, - "temp-dir": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-1.0.0.tgz", - "integrity": "sha512-xZFXEGbG7SNC3itwBzI3RYjq/cEhBkx2hJuKGIUOcEULmkQExXiHat2z/qkISYsuR+IKumhEfKKbV5qXmhICFQ==", - "dev": true, - "optional": true - }, - "tempfile": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/tempfile/-/tempfile-2.0.0.tgz", - "integrity": "sha512-ZOn6nJUgvgC09+doCEF3oB+r3ag7kUvlsXEGX069QRD60p+P3uP7XG9N2/at+EyIRGSN//ZY3LyEotA1YpmjuA==", + "tar-stream": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-2.2.0.tgz", + "integrity": "sha512-ujeqbceABgwMZxEJnk2HDY2DlnUZ+9oEcb1KzTVfYHio0UE6dG71n60d8D2I4qNvleWrrXpmjpt7vZeF1LnMZQ==", "dev": true, - "optional": true, "requires": { - "temp-dir": "^1.0.0", - "uuid": "^3.0.1" + "bl": "^4.0.3", + "end-of-stream": "^1.4.1", + "fs-constants": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^3.1.1" }, "dependencies": { - "uuid": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.4.0.tgz", - "integrity": "sha512-HjSDRw6gZE5JMggctHBcjVak08+KEVhSIiDzFnT9S9aegmp85S/bReBVTb4QTFaRNptJ9kuYaNhnbNEOkbKb/A==", + "readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dev": true, - "optional": true + "requires": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + } } } }, @@ -37206,26 +33765,12 @@ "integrity": "sha512-fcwX4mndzpLQKBS1DVYhGAcYaYt7vsHNIvQV+WXMvnow5cgjPphq5CaayLaGsjRdSCKZFNGt7/GYAuXaNOiYCA==", "dev": true }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", - "dev": true, - "optional": true - }, "thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true }, - "timed-out": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", - "integrity": "sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==", - "dev": true, - "optional": true - }, "tiny-invariant": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", @@ -37242,13 +33787,6 @@ "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", "dev": true }, - "to-buffer": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/to-buffer/-/to-buffer-1.1.1.tgz", - "integrity": "sha512-lx9B5iv7msuFYE3dytT+KE5tap+rNYw+K4jVkb9R/asAb+pbBSM17jtunHplhBe6RRJdZx3Pn2Jph24O32mOVg==", - "dev": true, - "optional": true - }, "to-fast-properties": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", @@ -37337,16 +33875,6 @@ "punycode": "^2.1.1" } }, - "trim-repeated": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-repeated/-/trim-repeated-1.0.0.tgz", - "integrity": "sha512-pkonvlKk8/ZuR0D5tLW8ljt5I8kmxp2XKymhepUeOdCEfKpZaktSArkLHZt76OB1ZvO9bssUsDty4SWhLvZpLg==", - "dev": true, - "optional": true, - "requires": { - "escape-string-regexp": "^1.0.2" - } - }, "tsconfig-paths": { "version": "3.14.1", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", @@ -37360,9 +33888,9 @@ }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" @@ -37386,7 +33914,6 @@ "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", "integrity": "sha512-McnNiV1l8RYeY8tBgEpuodCC1mLUdbSN+CYBL7kJsJNInOP8UjDDEwdk6Mw60vdLLrr5NHKZhMAOSrR2NZuQ+w==", "dev": true, - "optional": true, "requires": { "safe-buffer": "^5.0.1" } @@ -37422,6 +33949,17 @@ "mime-types": "~2.1.24" } }, + "typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + } + }, "typedarray-to-buffer": { "version": "3.1.5", "resolved": "https://registry.npmjs.org/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz", @@ -37449,17 +33987,6 @@ "which-boxed-primitive": "^1.0.2" } }, - "unbzip2-stream": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/unbzip2-stream/-/unbzip2-stream-1.4.3.tgz", - "integrity": "sha512-mlExGW4w71ebDJviH16lQLtZS32VKqsSfk80GCfUlwT/4/hNRFsoscrF/c++9xinkMzECL1uL9DDwXqFWkruPg==", - "dev": true, - "optional": true, - "requires": { - "buffer": "^5.2.1", - "through": "^2.3.8" - } - }, "uncontrollable": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/uncontrollable/-/uncontrollable-7.2.1.tgz", @@ -37633,23 +34160,6 @@ "requires-port": "^1.0.0" } }, - "url-parse-lax": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", - "integrity": "sha512-BVA4lR5PIviy2PMseNd2jbFQ+jwSwQGdJejf5ctd1rEXt0Ypd7yanUK9+lYechVlN5VaTJGsu2U/3MDDu6KgBA==", - "dev": true, - "optional": true, - "requires": { - "prepend-http": "^1.0.1" - } - }, - "url-to-options": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", - "integrity": "sha512-0kQLIzG4fdk/G5NONku64rSH/x32NOA39LVQqlK8Le6lvTF6GGRJpqaQFGgU+CLwySIqBSMdwYM0sYcW9f6P4A==", - "dev": true, - "optional": true - }, "use": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", @@ -37699,12 +34209,6 @@ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true }, - "v8-compile-cache": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", - "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", - "dev": true - }, "v8-to-istanbul": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-7.1.2.tgz", @@ -37807,35 +34311,35 @@ "dev": true }, "webpack": { - "version": "5.50.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.50.0.tgz", - "integrity": "sha512-hqxI7t/KVygs0WRv/kTgUW8Kl3YC81uyWQSo/7WUs5LsuRw0htH/fCwbVBGCuiX/t4s7qzjXFcf41O8Reiypag==", + "version": "5.75.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.75.0.tgz", + "integrity": "sha512-piaIaoVJlqMsPtX/+3KTTO6jfvrSYgauFVdt8cr9LTHKmcq/AMd4mhzsiP7ZF/PGRNPGA8336jldh9l2Kt2ogQ==", "dev": true, "requires": { - "@types/eslint-scope": "^3.7.0", - "@types/estree": "^0.0.50", + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^0.0.51", "@webassemblyjs/ast": "1.11.1", "@webassemblyjs/wasm-edit": "1.11.1", "@webassemblyjs/wasm-parser": "1.11.1", - "acorn": "^8.4.1", + "acorn": "^8.7.1", "acorn-import-assertions": "^1.7.6", "browserslist": "^4.14.5", "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^5.8.0", - "es-module-lexer": "^0.7.1", + "enhanced-resolve": "^5.10.0", + "es-module-lexer": "^0.9.0", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.2.4", - "json-parse-better-errors": "^1.0.2", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.1.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.1.3", - "watchpack": "^2.2.0", - "webpack-sources": "^3.2.0" + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" }, "dependencies": { "webpack-sources": { @@ -37946,27 +34450,11 @@ "webpack-merge": "^5.7.3" }, "dependencies": { - "colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true - }, "commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true - }, - "webpack-merge": { - "version": "5.8.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", - "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", - "dev": true, - "requires": { - "clone-deep": "^4.0.1", - "wildcard": "^2.0.0" - } } } }, @@ -37984,9 +34472,9 @@ }, "dependencies": { "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -38004,12 +34492,6 @@ "fast-deep-equal": "^3.1.3" } }, - "colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true - }, "json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", @@ -38068,9 +34550,9 @@ }, "dependencies": { "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "requires": { "fast-deep-equal": "^3.1.1", @@ -38100,12 +34582,6 @@ "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true }, - "colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true - }, "del": { "version": "6.1.1", "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", @@ -38194,18 +34670,18 @@ } }, "ws": { - "version": "8.10.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.10.0.tgz", - "integrity": "sha512-+s49uSmZpvtAsd2h37vIPy1RBusaLawVe8of+GyEPsaJTCMpj/2v8NpeK1SHXjBlQ95lQTmQofOJnFiLoaN3yw==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz", + "integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==", "dev": true, "requires": {} } } }, "webpack-merge": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.2.0.tgz", - "integrity": "sha512-QBglJBg5+lItm3/Lopv8KDDK01+hjdg2azEwi/4vKJ8ZmGPdtJsTpjtNNOW3a4WiqzXdCATtTudOZJngE7RKkA==", + "version": "5.8.0", + "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.8.0.tgz", + "integrity": "sha512-/SaI7xY0831XwP6kzuwhKWVKDP9t1QY1h65lAFLbZqMPIuYcD9QAW4u9STIbU9kaJbPBB/geU/gLr1wDjOhQ+Q==", "dev": true, "requires": { "clone-deep": "^4.0.1", @@ -38301,6 +34777,20 @@ "integrity": "sha512-B+enWhmw6cjfVC7kS8Pj9pCrKSc5txArRyaYGe088shv/FGWH+0Rjx/xPgtsWfsUtS27FkP697E4DDhgrgoc0Q==", "dev": true }, + "which-typed-array": { + "version": "1.1.9", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.9.tgz", + "integrity": "sha512-w9c4xkx6mPidwp7180ckYWfMmvxpjlZuIudNtDf4N/tTAUB8VJbX25qZoAsrtGuYNnGw3pa0AXgbGKRB8/EceA==", + "dev": true, + "requires": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0", + "is-typed-array": "^1.1.10" + } + }, "wildcard": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", @@ -38386,13 +34876,6 @@ "integrity": "sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==", "dev": true }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true, - "optional": true - }, "y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -38400,11 +34883,10 @@ "dev": true }, "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==", - "dev": true, - "optional": true + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, "yaml": { "version": "1.10.2", @@ -38433,17 +34915,6 @@ "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true }, - "yauzl": { - "version": "2.10.0", - "resolved": "https://registry.npmjs.org/yauzl/-/yauzl-2.10.0.tgz", - "integrity": "sha512-p4a9I6X6nu6IhoGmBqAcbJy1mlC4j27vEPZX9F4L4/vZT3Lyq1VkFHw/V/PUcB9Buo+DG3iHkT0x3Qya58zc3g==", - "dev": true, - "optional": true, - "requires": { - "buffer-crc32": "~0.2.3", - "fd-slicer": "~1.1.0" - } - }, "yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", diff --git a/example/package.json b/example/package.json index 10436cd65a..121885e517 100644 --- a/example/package.json +++ b/example/package.json @@ -17,6 +17,7 @@ "dependencies": { "@edx/brand-openedx": "^1.1.0", "@edx/frontend-platform": "^2.6.1", + "@faker-js/faker": "^7.6.0", "core-js": "^3.22.2", "react": "^16.14.0", "react-dom": "^16.14.0", diff --git a/example/src/MyComponent.jsx b/example/src/MyComponent.jsx index 5f8d0ad2c7..3bfab4ddcd 100644 --- a/example/src/MyComponent.jsx +++ b/example/src/MyComponent.jsx @@ -10,7 +10,12 @@ const MyComponent = () => { return (
-

My Form

+
+

+ My Form +

+ 1 +
{
- Test bubble
); }; diff --git a/icons/.svgrrc.js b/icons/.svgrrc.js index 2b5fa76c23..271c486095 100644 --- a/icons/.svgrrc.js +++ b/icons/.svgrrc.js @@ -33,8 +33,36 @@ module.exports = { return exportEntries.join('\n') }, svgoConfig: { - plugins: { - removeViewBox: false, + plugins: [ + { + removeViewBox: false + }, + { + addAttributesToSVGElement: { + attributes: ['fill="none"'], + }, + }, + ], + }, + jsx: { + babelConfig: { + plugins: [ + [ + "@svgr/babel-plugin-add-jsx-attribute", + { + "elements": ["path"], + "attributes": [ + { + "name": "fill", + "value": "currentColor", + "spread": false, + "literal": false, + "position": "end" + } + ] + } + ] + ], }, }, }; diff --git a/icons/es5/10K.js b/icons/es5/10K.js index ec94991f21..e6f7726514 100644 --- a/icons/es5/10K.js +++ b/icons/es5/10K.js @@ -7,9 +7,11 @@ function Svg10K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 10.5h1.5v3H10v-3zM21 3H3v18h18V3zM7.5 15H6v-4.5H4.5V9h3v6zM13 9v6H8.5V9H13zm6 6h-1.75l-1.75-2.25V15H14V9h1.5v2.25L17.25 9H19l-2.25 3L19 15z" + d: "M10 10.5h1.5v3H10v-3zM21 3H3v18h18V3zM7.5 15H6v-4.5H4.5V9h3v6zM13 9v6H8.5V9H13zm6 6h-1.75l-1.75-2.25V15H14V9h1.5v2.25L17.25 9H19l-2.25 3L19 15z", + fill: "currentColor" })); } diff --git a/icons/es5/10Mp.js b/icons/es5/10Mp.js index 1e3dd80713..9b78a5b0d7 100644 --- a/icons/es5/10Mp.js +++ b/icons/es5/10Mp.js @@ -7,9 +7,11 @@ function Svg10Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5 7H15v3h-1.5V7zM21 3H3v18h18V3zm-8.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm2.5 0h-1.5v-6H18V17h-3v1.5zm-5-13v6H8.5V7H7V5.5h3zm6.5 0v6H12v-6h4.5zM15 14h1.5v1.5H15V14z" + d: "M13.5 7H15v3h-1.5V7zM21 3H3v18h18V3zm-8.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm2.5 0h-1.5v-6H18V17h-3v1.5zm-5-13v6H8.5V7H7V5.5h3zm6.5 0v6H12v-6h4.5zM15 14h1.5v1.5H15V14z", + fill: "currentColor" })); } diff --git a/icons/es5/11Mp.js b/icons/es5/11Mp.js index 81d00de691..6ccbd66c81 100644 --- a/icons/es5/11Mp.js +++ b/icons/es5/11Mp.js @@ -7,11 +7,14 @@ function Svg11Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm5 2.5h3v6H9.5V7H8V5.5zm4.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h3v6h-1.5V7H13V5.5zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm5 2.5h3v6H9.5V7H8V5.5zm4.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h3v6h-1.5V7H13V5.5zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/123.js b/icons/es5/123.js index ce12c940be..1f5610e465 100644 --- a/icons/es5/123.js +++ b/icons/es5/123.js @@ -7,9 +7,11 @@ function Svg123(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 15H5.5v-4.5H4V9h3v6zm6.5-1.5h-3v-1h3V9H9v1.5h3v1H9V15h4.5v-1.5zm6 1.5V9H15v1.5h3v1h-2v1h2v1h-3V15h4.5z" + d: "M7 15H5.5v-4.5H4V9h3v6zm6.5-1.5h-3v-1h3V9H9v1.5h3v1H9V15h4.5v-1.5zm6 1.5V9H15v1.5h3v1h-2v1h2v1h-3V15h4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/12Mp.js b/icons/es5/12Mp.js index 0a54117854..96d41adaa8 100644 --- a/icons/es5/12Mp.js +++ b/icons/es5/12Mp.js @@ -7,11 +7,14 @@ function Svg12Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9 5h3V7h-3V5.5h4.5V9h-3v1h3v1.5H12V8zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9 5h3V7h-3V5.5h4.5V9h-3v1h3v1.5H12V8zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/13Mp.js b/icons/es5/13Mp.js index 36ef1979bc..1d16d83992 100644 --- a/icons/es5/13Mp.js +++ b/icons/es5/13Mp.js @@ -7,11 +7,14 @@ function Svg13Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9 7h3V9h-2V8h2V7h-3V5.5h4.5v6H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9 7h3V9h-2V8h2V7h-3V5.5h4.5v6H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/14Mp.js b/icons/es5/14Mp.js index af99e701c6..a38aabc1a5 100644 --- a/icons/es5/14Mp.js +++ b/icons/es5/14Mp.js @@ -7,11 +7,14 @@ function Svg14Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9 2.5h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9 2.5h1.5v3H15v-3h1.5v3h1V10h-1v1.5H15V10h-3V5.5zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/15Mp.js b/icons/es5/15Mp.js index e1c54a22fd..be556292fc 100644 --- a/icons/es5/15Mp.js +++ b/icons/es5/15Mp.js @@ -7,11 +7,14 @@ function Svg15Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9 7h3V9h-3V5.5h4.5V7h-3v1h3v3.5H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9 7h3V9h-3V5.5h4.5V7h-3v1h3v3.5H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/16Mp.js b/icons/es5/16Mp.js index bcbbf4600d..194951f049 100644 --- a/icons/es5/16Mp.js +++ b/icons/es5/16Mp.js @@ -7,13 +7,17 @@ function Svg16Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9 2.5h4.5V7h-3v1h3v3.5H12v-6zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9 2.5h4.5V7h-3v1h3v3.5H12v-6zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13.5 9H15v1.5h-1.5z" + d: "M13.5 9H15v1.5h-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/17Mp.js b/icons/es5/17Mp.js index 6d6386d814..c8e085ddc6 100644 --- a/icons/es5/17Mp.js +++ b/icons/es5/17Mp.js @@ -7,11 +7,14 @@ function Svg17Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm4 2.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM12 7V5.5h4.87l-1.87 6h-1.75L14.62 7H12zm6 10h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm4 2.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM12 7V5.5h4.87l-1.87 6h-1.75L14.62 7H12zm6 10h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/18Mp.js b/icons/es5/18Mp.js index 86e053de22..62ae835402 100644 --- a/icons/es5/18Mp.js +++ b/icons/es5/18Mp.js @@ -7,13 +7,17 @@ function Svg18Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5 9H15v1.5h-1.5zm0-2.5H15V8h-1.5z" + d: "M13.5 9H15v1.5h-1.5zm0-2.5H15V8h-1.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9 2.5h4.5v6H12v-6zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9 2.5h4.5v6H12v-6zm-5 0h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/18UpRating.js b/icons/es5/18UpRating.js index 03328c1542..3c63c8dd8e 100644 --- a/icons/es5/18UpRating.js +++ b/icons/es5/18UpRating.js @@ -7,11 +7,14 @@ function Svg18UpRating(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 12.5h1.5V14H13zm0-2.5h1.5v1.5H13z" + d: "M13 12.5h1.5V14H13zm0-2.5h1.5v1.5H13z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM10 15H8.5v-4.5H7V9h3v6zm6-1c0 .55-.45 1-1 1h-2.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H15c.55 0 1 .45 1 1v4z" + d: "M21 3H3v18h18V3zM10 15H8.5v-4.5H7V9h3v6zm6-1c0 .55-.45 1-1 1h-2.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H15c.55 0 1 .45 1 1v4z", + fill: "currentColor" })); } diff --git a/icons/es5/19Mp.js b/icons/es5/19Mp.js index cdf119b065..0206f9912c 100644 --- a/icons/es5/19Mp.js +++ b/icons/es5/19Mp.js @@ -7,11 +7,14 @@ function Svg19Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5 6.5H15V8h-1.5zM15 14h1.5v1.5H15z" + d: "M13.5 6.5H15V8h-1.5zM15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9 7h3V9h-3V5.5h4.5v6H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9 7h3V9h-3V5.5h4.5v6H12V10zM7 5.5h3v6H8.5V7H7V5.5zm5.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/1K.js b/icons/es5/1K.js index 35f53b77a7..259e8cb6f6 100644 --- a/icons/es5/1K.js +++ b/icons/es5/1K.js @@ -7,9 +7,11 @@ function Svg1K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM10 15H8.5v-4.5H7V9h3v6zm7 0h-1.75l-1.75-2.25V15H12V9h1.5v2.25L15.25 9H17l-2.25 3L17 15z" + d: "M21 3H3v18h18V3zM10 15H8.5v-4.5H7V9h3v6zm7 0h-1.75l-1.75-2.25V15H12V9h1.5v2.25L15.25 9H17l-2.25 3L17 15z", + fill: "currentColor" })); } diff --git a/icons/es5/1KPlus.js b/icons/es5/1KPlus.js index b0eb843658..7d005d5665 100644 --- a/icons/es5/1KPlus.js +++ b/icons/es5/1KPlus.js @@ -7,9 +7,11 @@ function Svg1KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M21 3H3v18h18V3zM9 15H7.5v-4.5H6V9h3v6zm4.75 0L12 12.75V15h-1.5V9H12v2.25L13.75 9h1.75l-2.25 3 2.25 3h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/1XMobiledata.js b/icons/es5/1XMobiledata.js index 41fdf0069a..0321d6f65d 100644 --- a/icons/es5/1XMobiledata.js +++ b/icons/es5/1XMobiledata.js @@ -7,9 +7,11 @@ function Svg1XMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z" + d: "M4 7h4v10H6V9H4V7zm11.83 4.72L18.66 7h-2.33l-1.66 2.77L13 7h-2.33l2.83 4.72L10.33 17h2.33l2-3.34 2 3.34H19l-3.17-5.28z", + fill: "currentColor" })); } diff --git a/icons/es5/20Mp.js b/icons/es5/20Mp.js index 89151e740a..c1b62250ce 100644 --- a/icons/es5/20Mp.js +++ b/icons/es5/20Mp.js @@ -7,13 +7,17 @@ function Svg20Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.5 7H16v3h-1.5z" + d: "M14.5 7H16v3h-1.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h4.5v6H13v-6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h4.5v6H13v-6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/21Mp.js b/icons/es5/21Mp.js index f6685eaaee..f2b2c18a5f 100644 --- a/icons/es5/21Mp.js +++ b/icons/es5/21Mp.js @@ -7,11 +7,14 @@ function Svg21Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm4.5 5h3V7h-3V5.5H12V9H9v1h3v1.5H7.5V8zm5 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h3v6h-1.5V7H13V5.5zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm4.5 5h3V7h-3V5.5H12V9H9v1h3v1.5H7.5V8zm5 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm.5-13h3v6h-1.5V7H13V5.5zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/22Mp.js b/icons/es5/22Mp.js index 3e53074eb3..864c627fea 100644 --- a/icons/es5/22Mp.js +++ b/icons/es5/22Mp.js @@ -7,11 +7,14 @@ function Svg22Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM13 8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H13V8zm5 9h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM13 8h3V7h-3V5.5h4.5V9h-3v1h3v1.5H13V8zm5 9h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/23Mp.js b/icons/es5/23Mp.js index 9552fc9fbb..20f48389fa 100644 --- a/icons/es5/23Mp.js +++ b/icons/es5/23Mp.js @@ -7,11 +7,14 @@ function Svg23Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM13 10h3V9h-2V8h2V7h-3V5.5h4.5v6H13V10zm5 7h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM13 10h3V9h-2V8h2V7h-3V5.5h4.5v6H13V10zm5 7h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/24Mp.js b/icons/es5/24Mp.js index 5fc7460dba..aceaa22314 100644 --- a/icons/es5/24Mp.js +++ b/icons/es5/24Mp.js @@ -7,11 +7,14 @@ function Svg24Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17zm.5-7h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10z" + d: "M3 3v18h18V3H3zm3.5 5h3V7h-3V5.5H11V9H8v1h3v1.5H6.5V8zm6 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17zm.5-7h-1v1.5H16V10h-3V5.5h1.5v3H16v-3h1.5v3h1V10z", + fill: "currentColor" })); } diff --git a/icons/es5/2K.js b/icons/es5/2K.js index 7ddca13924..b6e5503d70 100644 --- a/icons/es5/2K.js +++ b/icons/es5/2K.js @@ -7,9 +7,11 @@ function Svg2K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM8 12.5v1h3V15H6.5v-3.5h3v-1h-3V9H11v3.5H8zM18 15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + d: "M21 3H3v18h18V3zM8 12.5v1h3V15H6.5v-3.5h3v-1h-3V9H11v3.5H8zM18 15h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z", + fill: "currentColor" })); } diff --git a/icons/es5/2KPlus.js b/icons/es5/2KPlus.js index 450dd268f0..f2fbdbcbac 100644 --- a/icons/es5/2KPlus.js +++ b/icons/es5/2KPlus.js @@ -7,9 +7,11 @@ function Svg2KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-11 9.5H7.5v1H10V15H6v-3.5h2.5v-1H6V9h4v3.5zm4.25 2.5l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M21 3H3v18h18V3zm-11 9.5H7.5v1H10V15H6v-3.5h2.5v-1H6V9h4v3.5zm4.25 2.5l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/2Mp.js b/icons/es5/2Mp.js index f9b5f39723..cd01cd119a 100644 --- a/icons/es5/2Mp.js +++ b/icons/es5/2Mp.js @@ -7,11 +7,14 @@ function Svg2Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm7 5h3V7h-3V5.5h4.5V9h-3v1h3v1.5H10V8zm2.5 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm7 5h3V7h-3V5.5h4.5V9h-3v1h3v1.5H10V8zm2.5 10.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/30Fps.js b/icons/es5/30Fps.js index 4d4e71b22f..fb535e610d 100644 --- a/icons/es5/30Fps.js +++ b/icons/es5/30Fps.js @@ -7,9 +7,11 @@ function Svg30Fps(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 5v3h6v2.5H3v3h5V16H2v3h9V5H2zm17 3v8h-4V8h4m3-3H12v14h10V5z" + d: "M2 5v3h6v2.5H3v3h5V16H2v3h9V5H2zm17 3v8h-4V8h4m3-3H12v14h10V5z", + fill: "currentColor" })); } diff --git a/icons/es5/30FpsSelect.js b/icons/es5/30FpsSelect.js index 8a87eb78ad..1da89b906b 100644 --- a/icons/es5/30FpsSelect.js +++ b/icons/es5/30FpsSelect.js @@ -7,9 +7,11 @@ function Svg30FpsSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 4v2h5v2H5v2h4v2H4v2h7V4H4zm9 0h7v10h-7V4zm5 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" + d: "M4 4v2h5v2H5v2h4v2H4v2h7V4H4zm9 0h7v10h-7V4zm5 2h-3v6h3V6zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z", + fill: "currentColor" })); } diff --git a/icons/es5/360.js b/icons/es5/360.js index e57ab4b23a..dc05bf1dda 100644 --- a/icons/es5/360.js +++ b/icons/es5/360.js @@ -7,9 +7,11 @@ function Svg360(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z" + d: "M12 7C6.48 7 2 9.24 2 12c0 2.24 2.94 4.13 7 4.77V20l4-4-4-4v2.73c-3.15-.56-5-1.9-5-2.73 0-1.06 3.04-3 8-3s8 1.94 8 3c0 .73-1.46 1.89-4 2.53v2.05c3.53-.77 6-2.53 6-4.58 0-2.76-4.48-5-10-5z", + fill: "currentColor" })); } diff --git a/icons/es5/3DRotation.js b/icons/es5/3DRotation.js index fdc4908fa9..5bc9ca3b81 100644 --- a/icons/es5/3DRotation.js +++ b/icons/es5/3DRotation.js @@ -7,9 +7,11 @@ function Svg3DRotation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.53 21.48A10.487 10.487 0 011.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08a1.07 1.07 0 01-.4-.24c-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56a1.67 1.67 0 00-.23-.51c-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31a2.098 2.098 0 00.89-.75c.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z" + d: "M7.53 21.48A10.487 10.487 0 011.56 13H.06c.51 6.16 5.66 11 11.95 11l.66-.03-3.81-3.81-1.33 1.32zm.89-6.52c-.19 0-.37-.03-.52-.08a1.07 1.07 0 01-.4-.24c-.11-.1-.2-.22-.26-.37-.06-.14-.09-.3-.09-.47h-1.3c0 .36.07.68.21.95.14.27.33.5.56.69.24.18.51.32.82.41.3.1.62.15.96.15.37 0 .72-.05 1.03-.15.32-.1.6-.25.83-.44s.42-.43.55-.72.2-.61.2-.97c0-.19-.02-.38-.07-.56a1.67 1.67 0 00-.23-.51c-.1-.16-.24-.3-.4-.43-.17-.13-.37-.23-.61-.31a2.098 2.098 0 00.89-.75c.1-.15.17-.3.22-.46s.07-.32.07-.48c0-.36-.06-.68-.18-.96s-.29-.51-.51-.69c-.2-.19-.47-.33-.77-.43C9.11 8.05 8.77 8 8.4 8c-.36 0-.69.05-1 .16-.3.11-.57.26-.79.45-.21.19-.38.41-.51.67-.12.26-.18.54-.18.85h1.3c0-.17.03-.32.09-.45s.14-.25.25-.34.23-.17.38-.22.3-.08.48-.08c.4 0 .7.1.89.31.19.2.29.49.29.86 0 .18-.03.34-.08.49s-.14.27-.25.37c-.11.1-.25.18-.41.24-.16.06-.36.09-.58.09h-.77v1.03h.77c.22 0 .42.02.6.07s.33.13.45.23c.12.11.22.24.29.4s.1.35.1.57c0 .41-.12.72-.35.93-.23.23-.55.33-.95.33zm8.55-5.92c-.32-.33-.7-.59-1.14-.77-.44-.18-.93-.27-1.47-.27H12v8h2.3c.55 0 1.06-.09 1.51-.27s.84-.43 1.16-.76c.32-.33.57-.73.74-1.19.17-.47.26-.99.26-1.57v-.4c0-.58-.09-1.1-.26-1.57s-.42-.87-.74-1.2zm-.39 3.16c0 .42-.05.79-.14 1.13-.1.33-.24.62-.43.85-.19.23-.43.41-.71.53-.29.12-.62.18-.99.18h-.91V9.12h.97c.72 0 1.27.23 1.64.69.38.46.57 1.12.57 1.99v.4zM12.01 0l-.66.03 3.81 3.81 1.33-1.33c3.27 1.55 5.61 4.72 5.96 8.48h1.5C23.45 4.84 18.3 0 12.01 0z", + fill: "currentColor" })); } diff --git a/icons/es5/3GMobiledata.js b/icons/es5/3GMobiledata.js index 0f095c6626..1935a5cd86 100644 --- a/icons/es5/3GMobiledata.js +++ b/icons/es5/3GMobiledata.js @@ -7,9 +7,11 @@ function Svg3GMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 7v2h5v2H4v2h4v2H3v2h7V7H3zm18 4v6h-9V7h9v2h-7v6h5v-2h-2.5v-2H21z" + d: "M3 7v2h5v2H4v2h4v2H3v2h7V7H3zm18 4v6h-9V7h9v2h-7v6h5v-2h-2.5v-2H21z", + fill: "currentColor" })); } diff --git a/icons/es5/3K.js b/icons/es5/3K.js index 3ca5c99653..e90f56cc6f 100644 --- a/icons/es5/3K.js +++ b/icons/es5/3K.js @@ -7,9 +7,11 @@ function Svg3K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM11 9v6H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H11zm7 6h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + d: "M21 3H3v18h18V3zM11 9v6H6.5v-1.5h3v-1h-2v-1h2v-1h-3V9H11zm7 6h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z", + fill: "currentColor" })); } diff --git a/icons/es5/3KPlus.js b/icons/es5/3KPlus.js index 0d3116ac49..e04812efd4 100644 --- a/icons/es5/3KPlus.js +++ b/icons/es5/3KPlus.js @@ -7,9 +7,11 @@ function Svg3KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM10 9v6H5.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10zm6 6h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M21 3H3v18h18V3zM10 9v6H5.5v-1.5h3v-1h-2v-1h2v-1h-3V9H10zm6 6h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/3Mp.js b/icons/es5/3Mp.js index 2b5f8f441b..5eb845d5c0 100644 --- a/icons/es5/3Mp.js +++ b/icons/es5/3Mp.js @@ -7,11 +7,14 @@ function Svg3Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM10 10h3V9h-2V8h2V7h-3V5.5h4.5v6H10V10zm8 7h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM10 10h3V9h-2V8h2V7h-3V5.5h4.5v6H10V10zm8 7h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/3P.js b/icons/es5/3P.js index 8d59108deb..3fabf90a10 100644 --- a/icons/es5/3P.js +++ b/icons/es5/3P.js @@ -7,9 +7,11 @@ function Svg3P(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 2v20l4-4h16V2H2zm10 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0116 13.43V14z" + d: "M2 2v20l4-4h16V2H2zm10 4c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0116 13.43V14z", + fill: "currentColor" })); } diff --git a/icons/es5/4GMobiledata.js b/icons/es5/4GMobiledata.js index 97e57c35d7..5e6259723c 100644 --- a/icons/es5/4GMobiledata.js +++ b/icons/es5/4GMobiledata.js @@ -7,9 +7,11 @@ function Svg4GMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7V7h-9v10h9v-6h-4z" + d: "M9 7H7v5H5V7H3v7h4v3h2v-3h2v-2H9V7zm8 4v2h2v2h-5V9h7V7h-9v10h9v-6h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/4GPlusMobiledata.js b/icons/es5/4GPlusMobiledata.js index a692aca6c3..6e440e7612 100644 --- a/icons/es5/4GPlusMobiledata.js +++ b/icons/es5/4GPlusMobiledata.js @@ -7,9 +7,11 @@ function Svg4GPlusMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 11v2h2v2h-4V9h6V7H9v10h8v-6h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z" + d: "M13 11v2h2v2h-4V9h6V7H9v10h8v-6h-4zm11 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2zM7 7H5v5H3V7H1v7h4v3h2v-3h1v-2H7V7z", + fill: "currentColor" })); } diff --git a/icons/es5/4K.js b/icons/es5/4K.js index 27f38232a5..c3c83cc715 100644 --- a/icons/es5/4K.js +++ b/icons/es5/4K.js @@ -7,9 +7,11 @@ function Svg4K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-9 10.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z" + d: "M21 3H3v18h18V3zm-9 10.51h-1V15H9.5v-1.5h-3V9H8v3h1.5V9H11v3h1v1.51zM18.2 15h-1.7l-2-3v3H13V9h1.5v3l2-3h1.7l-2 3 2 3z", + fill: "currentColor" })); } diff --git a/icons/es5/4KPlus.js b/icons/es5/4KPlus.js index 5bfa0880dd..b01ff01a32 100644 --- a/icons/es5/4KPlus.js +++ b/icons/es5/4KPlus.js @@ -7,9 +7,11 @@ function Svg4KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM11 13.5h-1V15H8.5v-1.5h-3V9H7v3h1.5V9H10v3h1v1.5zm3.75 1.5L13 12.75V15h-1.5V9H13v2.25L14.75 9h1.75l-2.25 3 2.25 3h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M21 3H3v18h18V3zM11 13.5h-1V15H8.5v-1.5h-3V9H7v3h1.5V9H10v3h1v1.5zm3.75 1.5L13 12.75V15h-1.5V9H13v2.25L14.75 9h1.75l-2.25 3 2.25 3h-1.75zM19 12.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/4Mp.js b/icons/es5/4Mp.js index 62fa01d2a7..2df3231ae0 100644 --- a/icons/es5/4Mp.js +++ b/icons/es5/4Mp.js @@ -7,11 +7,14 @@ function Svg4Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm-3-8.5V5.5H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10h-3zm8.5 7h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm-3-8.5V5.5H11v3h1.5v-3H14v3h1V10h-1v1.5h-1.5V10h-3zm8.5 7h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/5G.js b/icons/es5/5G.js index b1af8813d2..d6ef4f075b 100644 --- a/icons/es5/5G.js +++ b/icons/es5/5G.js @@ -7,9 +7,11 @@ function Svg5G(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 13h2v2h-5V9h7V7h-9v10h9v-6h-4zM3 13h5v2H3v2h7v-6H5V9h5V7H3z" + d: "M17 13h2v2h-5V9h7V7h-9v10h9v-6h-4zM3 13h5v2H3v2h7v-6H5V9h5V7H3z", + fill: "currentColor" })); } diff --git a/icons/es5/5K.js b/icons/es5/5K.js index 263cbb4abe..48b11a29ab 100644 --- a/icons/es5/5K.js +++ b/icons/es5/5K.js @@ -7,9 +7,11 @@ function Svg5K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-10 7.5H8v1h3V15H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + d: "M21 3H3v18h18V3zm-10 7.5H8v1h3V15H6.5v-1.5h3v-1h-3V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z", + fill: "currentColor" })); } diff --git a/icons/es5/5KPlus.js b/icons/es5/5KPlus.js index fd7adc4789..3cc286d241 100644 --- a/icons/es5/5KPlus.js +++ b/icons/es5/5KPlus.js @@ -7,9 +7,11 @@ function Svg5KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-11 7.5H7.5v1H10V15H6v-1.5h2.5v-1H6V9h4v1.5zm6 4.5h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M21 3H3v18h18V3zm-11 7.5H7.5v1H10V15H6v-1.5h2.5v-1H6V9h4v1.5zm6 4.5h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/5Mp.js b/icons/es5/5Mp.js index 2aa895286b..3ca65b82e5 100644 --- a/icons/es5/5Mp.js +++ b/icons/es5/5Mp.js @@ -7,11 +7,14 @@ function Svg5Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm7 7h3V9h-3V5.5h4.5V7h-3v1h3v3.5H10V10zm2.5 8.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm7 7h3V9h-3V5.5h4.5V7h-3v1h3v3.5H10V10zm2.5 8.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/60Fps.js b/icons/es5/60Fps.js index 3fd6cd4ca1..7a3fff0add 100644 --- a/icons/es5/60Fps.js +++ b/icons/es5/60Fps.js @@ -7,9 +7,11 @@ function Svg60Fps(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 8v8h-4V8h4m3-3H12v14h10V5zM10 8V5H2v14h9v-9H5V8h5zm-2 5v3H5v-3h3z" + d: "M19 8v8h-4V8h4m3-3H12v14h10V5zM10 8V5H2v14h9v-9H5V8h5zm-2 5v3H5v-3h3z", + fill: "currentColor" })); } diff --git a/icons/es5/60FpsSelect.js b/icons/es5/60FpsSelect.js index 30674af441..76575538e7 100644 --- a/icons/es5/60FpsSelect.js +++ b/icons/es5/60FpsSelect.js @@ -7,9 +7,11 @@ function Svg60FpsSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 6v6h-3V6h3zm2-2h-7v10h7V4zm-9 2V4H4v10h7V8H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z" + d: "M18 6v6h-3V6h3zm2-2h-7v10h7V4zm-9 2V4H4v10h7V8H6V6h5zm-2 4v2H6v-2h3zM5 22H3v-5h2v5zm4 0H7v-5h2v5zm4 0h-2v-5h2v5zm8 0h-6v-5h6v5z", + fill: "currentColor" })); } diff --git a/icons/es5/6FtApart.js b/icons/es5/6FtApart.js index 02259e89e6..4cdd664679 100644 --- a/icons/es5/6FtApart.js +++ b/icons/es5/6FtApart.js @@ -7,9 +7,11 @@ function Svg6FtApart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85a6.95 6.95 0 00-5.56 0A2.01 2.01 0 002 9.43V10h8v-.57zM18 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85a6.95 6.95 0 00-5.56 0A2.01 2.01 0 0014 9.43V10h8v-.57zM19 17v-2.01L5 15v2l-3-3 3-3v2.01L19 13v-2l3 3-3 3zm-9 2v-1H7v4h3v-2.5H8V19h2zm-1 1.5v.5H8v-.5h1zm8.5-1.5h-1v3h-1v-3h-1v-1h3v1zm-5 0v.5h1v1h-1V22h-1v-4H14v1h-1.5z" + d: "M6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85a6.95 6.95 0 00-5.56 0A2.01 2.01 0 002 9.43V10h8v-.57zM18 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85a6.95 6.95 0 00-5.56 0A2.01 2.01 0 0014 9.43V10h8v-.57zM19 17v-2.01L5 15v2l-3-3 3-3v2.01L19 13v-2l3 3-3 3zm-9 2v-1H7v4h3v-2.5H8V19h2zm-1 1.5v.5H8v-.5h1zm8.5-1.5h-1v3h-1v-3h-1v-1h3v1zm-5 0v.5h1v1h-1V22h-1v-4H14v1h-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/6K.js b/icons/es5/6K.js index 5a067a14b0..cde3fde871 100644 --- a/icons/es5/6K.js +++ b/icons/es5/6K.js @@ -7,9 +7,11 @@ function Svg6K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 12.5h1.5V14H8v-1.5zM21 3H3v18h18V3zm-10 7.5H8v1h3V15H6.5V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + d: "M8 12.5h1.5V14H8v-1.5zM21 3H3v18h18V3zm-10 7.5H8v1h3V15H6.5V9H11v1.5zm7 4.5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z", + fill: "currentColor" })); } diff --git a/icons/es5/6KPlus.js b/icons/es5/6KPlus.js index 504e55c65b..5d16c96d28 100644 --- a/icons/es5/6KPlus.js +++ b/icons/es5/6KPlus.js @@ -7,9 +7,11 @@ function Svg6KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.5 12.5h1V14h-1v-1.5zM21 3H3v18h18V3zm-11 7.5H7.5v1H10V15H6V9h4v1.5zm6 4.5h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M7.5 12.5h1V14h-1v-1.5zM21 3H3v18h18V3zm-11 7.5H7.5v1H10V15H6V9h4v1.5zm6 4.5h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/6Mp.js b/icons/es5/6Mp.js index ed1903280d..17eefdb501 100644 --- a/icons/es5/6Mp.js +++ b/icons/es5/6Mp.js @@ -7,13 +7,17 @@ function Svg6Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm7 2.5h4.5V7h-3v1h3v3.5H10v-6zm2.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm7 2.5h4.5V7h-3v1h3v3.5H10v-6zm2.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11.5 9H13v1.5h-1.5z" + d: "M11.5 9H13v1.5h-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/7K.js b/icons/es5/7K.js index 893788fe20..3c4750d76c 100644 --- a/icons/es5/7K.js +++ b/icons/es5/7K.js @@ -7,9 +7,11 @@ function Svg7K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM9.5 15H7.75l1.38-4.5H6.5V9h4.86L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + d: "M21 3H3v18h18V3zM9.5 15H7.75l1.38-4.5H6.5V9h4.86L9.5 15zm8.5 0h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z", + fill: "currentColor" })); } diff --git a/icons/es5/7KPlus.js b/icons/es5/7KPlus.js index 1bffa9e71e..45ac256d25 100644 --- a/icons/es5/7KPlus.js +++ b/icons/es5/7KPlus.js @@ -7,9 +7,11 @@ function Svg7KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM8.5 15H6.75l1.38-4.5H5.5V9h4.86L8.5 15zm7.5 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M21 3H3v18h18V3zM8.5 15H6.75l1.38-4.5H5.5V9h4.86L8.5 15zm7.5 0h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/7Mp.js b/icons/es5/7Mp.js index 82879b20ee..cc1e7aeda7 100644 --- a/icons/es5/7Mp.js +++ b/icons/es5/7Mp.js @@ -7,11 +7,14 @@ function Svg7Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm-1.25-7L12.62 7H10V5.5h4.87l-1.87 6h-1.75zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm9.5 15.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zm-1.25-7L12.62 7H10V5.5h4.87l-1.87 6h-1.75zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/8K.js b/icons/es5/8K.js index 63700b4395..f0c14863d0 100644 --- a/icons/es5/8K.js +++ b/icons/es5/8K.js @@ -7,9 +7,11 @@ function Svg8K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 12.5h1.5V14H8v-1.5zM8 10h1.5v1.5H8V10zm13-7H3v18h18V3zm-10 7v4c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1zm7 5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + d: "M8 12.5h1.5V14H8v-1.5zM8 10h1.5v1.5H8V10zm13-7H3v18h18V3zm-10 7v4c0 .55-.45 1-1 1H7.5c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1H10c.55 0 1 .45 1 1zm7 5h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z", + fill: "currentColor" })); } diff --git a/icons/es5/8KPlus.js b/icons/es5/8KPlus.js index 928e2a4ca4..6c79488ec8 100644 --- a/icons/es5/8KPlus.js +++ b/icons/es5/8KPlus.js @@ -7,9 +7,11 @@ function Svg8KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.5 12.5h1V14h-1v-1.5zm0-2.5h1v1.5h-1V10zM21 3H3v18h18V3zM10 14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4zm6 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M7.5 12.5h1V14h-1v-1.5zm0-2.5h1v1.5h-1V10zM21 3H3v18h18V3zM10 14c0 .55-.45 1-1 1H7c-.55 0-1-.45-1-1v-4c0-.55.45-1 1-1h2c.55 0 1 .45 1 1v4zm6 1h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/8Mp.js b/icons/es5/8Mp.js index 7136265450..59c97ebafe 100644 --- a/icons/es5/8Mp.js +++ b/icons/es5/8Mp.js @@ -7,13 +7,17 @@ function Svg8Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15zm-3.5-7.5H13V8h-1.5z" + d: "M15 14h1.5v1.5H15zm-3.5-7.5H13V8h-1.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm7 2.5h4.5v6H10v-6zm2.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm7 2.5h4.5v6H10v-6zm2.5 13H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11.5 9H13v1.5h-1.5z" + d: "M11.5 9H13v1.5h-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/9K.js b/icons/es5/9K.js index 3a32207f8c..9135207cc3 100644 --- a/icons/es5/9K.js +++ b/icons/es5/9K.js @@ -7,9 +7,11 @@ function Svg9K(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 10h1.5v1.5H8V10zm13-7H3v18h18V3zM11 9v6H6.5v-1.5h3v-1h-3V9H11zm7 6h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z" + d: "M8 10h1.5v1.5H8V10zm13-7H3v18h18V3zM11 9v6H6.5v-1.5h3v-1h-3V9H11zm7 6h-1.75l-1.75-2.25V15H13V9h1.5v2.25L16.25 9H18l-2.25 3L18 15z", + fill: "currentColor" })); } diff --git a/icons/es5/9KPlus.js b/icons/es5/9KPlus.js index 7180e95d23..c4a83c76eb 100644 --- a/icons/es5/9KPlus.js +++ b/icons/es5/9KPlus.js @@ -7,9 +7,11 @@ function Svg9KPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.5 10h1v1.5h-1V10zM21 3H3v18h18V3zM10 9v6H6v-1.5h2.5v-1H6V9h4zm6 6h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z" + d: "M7.5 10h1v1.5h-1V10zM21 3H3v18h18V3zM10 9v6H6v-1.5h2.5v-1H6V9h4zm6 6h-1.75l-1.75-2.25V15H11V9h1.5v2.25L14.25 9H16l-2.25 3L16 15zm3-2.5h-1.5V14h-1v-1.5H15v-1h1.5V10h1v1.5H19v1z", + fill: "currentColor" })); } diff --git a/icons/es5/9Mp.js b/icons/es5/9Mp.js index 417b2de330..242ee846ce 100644 --- a/icons/es5/9Mp.js +++ b/icons/es5/9Mp.js @@ -7,13 +7,17 @@ function Svg9Mp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 14h1.5v1.5H15z" + d: "M15 14h1.5v1.5H15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm7 7h3V9h-3V5.5h4.5v6H10V10zm2.5 8.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z" + d: "M3 3v18h18V3H3zm7 7h3V9h-3V5.5h4.5v6H10V10zm2.5 8.5H11V14h-1v3H8.5v-3h-1v4.5H6v-6h6.5v6zM18 17h-3v1.5h-1.5v-6H18V17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11.5 6.5H13V8h-1.5z" + d: "M11.5 6.5H13V8h-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Abc.js b/icons/es5/Abc.js index 276aa1175e..4a0cb226a3 100644 --- a/icons/es5/Abc.js +++ b/icons/es5/Abc.js @@ -7,9 +7,11 @@ function SvgAbc(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11h-1.5v-.5h-2v3h2V13H21v2h-5V9h5v2zM8 9v6H6.5v-1.5h-2V15H3V9h5zm-1.5 1.5h-2V12h2v-1.5zm7 1.5c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-4V9h4c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM11 10.5v.75h2v-.75h-2zm2 2.25h-2v.75h2v-.75z" + d: "M21 11h-1.5v-.5h-2v3h2V13H21v2h-5V9h5v2zM8 9v6H6.5v-1.5h-2V15H3V9h5zm-1.5 1.5h-2V12h2v-1.5zm7 1.5c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1h-4V9h4c.55 0 1 .45 1 1v1c0 .55-.45 1-1 1zM11 10.5v.75h2v-.75h-2zm2 2.25h-2v.75h2v-.75z", + fill: "currentColor" })); } diff --git a/icons/es5/AcUnit.js b/icons/es5/AcUnit.js index d480394a7a..ee46ad853f 100644 --- a/icons/es5/AcUnit.js +++ b/icons/es5/AcUnit.js @@ -7,9 +7,11 @@ function SvgAcUnit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z" + d: "M22 11h-4.17l3.24-3.24-1.41-1.42L15 11h-2V9l4.66-4.66-1.42-1.41L13 6.17V2h-2v4.17L7.76 2.93 6.34 4.34 11 9v2H9L4.34 6.34 2.93 7.76 6.17 11H2v2h4.17l-3.24 3.24 1.41 1.42L9 13h2v2l-4.66 4.66 1.42 1.41L11 17.83V22h2v-4.17l3.24 3.24 1.42-1.41L13 15v-2h2l4.66 4.66 1.41-1.42L17.83 13H22v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/AccessAlarm.js b/icons/es5/AccessAlarm.js index 04a4ddbba7..bd6539eade 100644 --- a/icons/es5/AccessAlarm.js +++ b/icons/es5/AccessAlarm.js @@ -7,9 +7,11 @@ function SvgAccessAlarm(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 000-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + d: "M22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM12.5 8H11v6l4.75 2.85.75-1.23-4-2.37V8zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 000-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/AccessAlarms.js b/icons/es5/AccessAlarms.js index 3b71f38dcf..a3dd26ec0a 100644 --- a/icons/es5/AccessAlarms.js +++ b/icons/es5/AccessAlarms.js @@ -7,9 +7,11 @@ function SvgAccessAlarms(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z" + d: "M22 5.7l-4.6-3.9-1.3 1.5 4.6 3.9L22 5.7zM7.9 3.4L6.6 1.9 2 5.7l1.3 1.5 4.6-3.8zM12.5 8H11v6l4.7 2.9.8-1.2-4-2.4V8zM12 4c-5 0-9 4-9 9s4 9 9 9 9-4 9-9-4-9-9-9zm0 16c-3.9 0-7-3.1-7-7s3.1-7 7-7 7 3.1 7 7-3.1 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/AccessTime.js b/icons/es5/AccessTime.js index c351a861e9..00af1ccff8 100644 --- a/icons/es5/AccessTime.js +++ b/icons/es5/AccessTime.js @@ -7,9 +7,11 @@ function SvgAccessTime(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z", + fill: "currentColor" })); } diff --git a/icons/es5/AccessTimeFilled.js b/icons/es5/AccessTimeFilled.js index cff3321239..75e7378710 100644 --- a/icons/es5/AccessTimeFilled.js +++ b/icons/es5/AccessTimeFilled.js @@ -7,9 +7,11 @@ function SvgAccessTimeFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm3.3 14.71L11 12.41V7h2v4.59l3.71 3.71-1.42 1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/Accessibility.js b/icons/es5/Accessibility.js index b542dc408c..b125e83a40 100644 --- a/icons/es5/Accessibility.js +++ b/icons/es5/Accessibility.js @@ -7,9 +7,11 @@ function SvgAccessibility(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z" + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7h-6v13h-2v-6h-2v6H9V9H3V7h18v2z", + fill: "currentColor" })); } diff --git a/icons/es5/AccessibilityNew.js b/icons/es5/AccessibilityNew.js index dea26824b9..4835775cfa 100644 --- a/icons/es5/AccessibilityNew.js +++ b/icons/es5/AccessibilityNew.js @@ -7,9 +7,11 @@ function SvgAccessibilityNew(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + d: "M20.5 6c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 8c1.86.5 4 .83 6 1v13h2v-6h2v6h2V9c2-.17 4.14-.5 6-1l-.5-2zM12 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Accessible.js b/icons/es5/Accessible.js index ba2c0a19aa..b7572597e3 100644 --- a/icons/es5/Accessible.js +++ b/icons/es5/Accessible.js @@ -7,13 +7,15 @@ function SvgAccessible(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 4, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.37-.21-.78-.31-1.25-.25C10.73 7.15 10 8.07 10 9.1V17h7v5h2v-7.5h-5v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1a5 5 0 105.9 5.9h-2.07z" + d: "M19 13v-2c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.17-.19-.38-.34-.61-.45-.01 0-.01-.01-.02-.01H13c-.37-.21-.78-.31-1.25-.25C10.73 7.15 10 8.07 10 9.1V17h7v5h2v-7.5h-5v-3.45c1.29 1.07 3.25 1.94 5 1.95zm-6.17 5c-.41 1.16-1.52 2-2.83 2-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1a5 5 0 105.9 5.9h-2.07z", + fill: "currentColor" })); } diff --git a/icons/es5/AccessibleForward.js b/icons/es5/AccessibleForward.js index af8ffbb857..6a6e37a9ec 100644 --- a/icons/es5/AccessibleForward.js +++ b/icons/es5/AccessibleForward.js @@ -7,13 +7,15 @@ function SvgAccessibleForward(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 18, cy: 4.54, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm5-3.5h-3.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-3.12 7H18v5h2v-7.5z" + d: "M15 17h-2c0 1.65-1.35 3-3 3s-3-1.35-3-3 1.35-3 3-3v-2c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5zm5-3.5h-3.86l1.67-3.67C18.42 8.5 17.44 7 15.96 7h-5.2c-.81 0-1.54.47-1.87 1.2L8.22 10l1.92.53.65-1.53H13l-3.12 7H18v5h2v-7.5z", + fill: "currentColor" })); } diff --git a/icons/es5/AccountBalance.js b/icons/es5/AccountBalance.js index 026cfe6868..3c0de0e476 100644 --- a/icons/es5/AccountBalance.js +++ b/icons/es5/AccountBalance.js @@ -7,9 +7,11 @@ function SvgAccountBalance(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z" + d: "M4 10v7h3v-7H4zm6 0v7h3v-7h-3zM2 22h19v-3H2v3zm14-12v7h3v-7h-3zm-4.5-9L2 6v2h19V6l-9.5-5z", + fill: "currentColor" })); } diff --git a/icons/es5/AccountBalanceWallet.js b/icons/es5/AccountBalanceWallet.js index b711759e58..4656156f43 100644 --- a/icons/es5/AccountBalanceWallet.js +++ b/icons/es5/AccountBalanceWallet.js @@ -7,9 +7,11 @@ function SvgAccountBalanceWallet(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 18v3H3V3h18v3H10v12h11zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M21 18v3H3V3h18v3H10v12h11zm-9-2h10V8H12v8zm4-2.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/AccountBox.js b/icons/es5/AccountBox.js index 114e1842ea..7aa27885d8 100644 --- a/icons/es5/AccountBox.js +++ b/icons/es5/AccountBox.js @@ -7,9 +7,11 @@ function SvgAccountBox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-9 3c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm7 13H5v-.23c0-.62.28-1.2.76-1.58C7.47 15.82 9.64 15 12 15s4.53.82 6.24 2.19c.48.38.76.97.76 1.58V19z" + d: "M21 3H3v18h18V3zm-9 3c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm7 13H5v-.23c0-.62.28-1.2.76-1.58C7.47 15.82 9.64 15 12 15s4.53.82 6.24 2.19c.48.38.76.97.76 1.58V19z", + fill: "currentColor" })); } diff --git a/icons/es5/AccountCircle.js b/icons/es5/AccountCircle.js index 590afced58..ea823c68cb 100644 --- a/icons/es5/AccountCircle.js +++ b/icons/es5/AccountCircle.js @@ -7,9 +7,11 @@ function SvgAccountCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 4c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm0 14c-2.03 0-4.43-.82-6.14-2.88a9.947 9.947 0 0112.28 0C16.43 19.18 14.03 20 12 20z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 4c1.93 0 3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5S10.07 6 12 6zm0 14c-2.03 0-4.43-.82-6.14-2.88a9.947 9.947 0 0112.28 0C16.43 19.18 14.03 20 12 20z", + fill: "currentColor" })); } diff --git a/icons/es5/AccountTree.js b/icons/es5/AccountTree.js index acdaa43bc0..13c6658c35 100644 --- a/icons/es5/AccountTree.js +++ b/icons/es5/AccountTree.js @@ -7,9 +7,11 @@ function SvgAccountTree(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z" + d: "M22 11V3h-7v3H9V3H2v8h7V8h2v10h4v3h7v-8h-7v3h-2V8h2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/AdUnits.js b/icons/es5/AdUnits.js index 8cf4a03c6a..49bf789395 100644 --- a/icons/es5/AdUnits.js +++ b/icons/es5/AdUnits.js @@ -7,11 +7,14 @@ function SvgAdUnits(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 1H5v22h14V1zm-2 18H7V5h10v14z" + d: "M19 1H5v22h14V1zm-2 18H7V5h10v14z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M8 6h8v2H8z" + d: "M8 6h8v2H8z", + fill: "currentColor" })); } diff --git a/icons/es5/Adb.js b/icons/es5/Adb.js index c4a17cc925..0deeb38f1e 100644 --- a/icons/es5/Adb.js +++ b/icons/es5/Adb.js @@ -7,9 +7,11 @@ function SvgAdb(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M5 16c0 3.87 3.13 7 7 7s7-3.13 7-7v-4H5v4zM16.12 4.37l2.1-2.1-.82-.83-2.3 2.31C14.16 3.28 13.12 3 12 3s-2.16.28-3.09.75L6.6 1.44l-.82.83 2.1 2.1C6.14 5.64 5 7.68 5 10v1h14v-1c0-2.32-1.14-4.36-2.88-5.63zM9 9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/AddAPhoto.js b/icons/es5/AddAPhoto.js index bb061887ae..965937847e 100644 --- a/icons/es5/AddAPhoto.js +++ b/icons/es5/AddAPhoto.js @@ -7,9 +7,11 @@ function SvgAddAPhoto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H23v16H3V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3-5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" + d: "M3 4V1h2v3h3v2H5v3H3V6H0V4h3zm3 6V7h3V4h7l1.83 2H23v16H3V10h3zm7 9c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-3-5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/AddAlarm.js b/icons/es5/AddAlarm.js index c107cf66e6..d56dee9de9 100644 --- a/icons/es5/AddAlarm.js +++ b/icons/es5/AddAlarm.js @@ -7,9 +7,11 @@ function SvgAddAlarm(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 000-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z" + d: "M7.88 3.39L6.6 1.86 2 5.71l1.29 1.53 4.59-3.85zM22 5.72l-4.6-3.86-1.29 1.53 4.6 3.86L22 5.72zM12 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a9 9 0 000-18zm0 16c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/AddBox.js b/icons/es5/AddBox.js index 56cdb26984..c7c9b9ac6d 100644 --- a/icons/es5/AddBox.js +++ b/icons/es5/AddBox.js @@ -7,9 +7,11 @@ function SvgAddBox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-4 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z" + d: "M21 3H3v18h18V3zm-4 10h-4v4h-2v-4H7v-2h4V7h2v4h4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/AddBusiness.js b/icons/es5/AddBusiness.js index 6b61f07345..26aa02ff4e 100644 --- a/icons/es5/AddBusiness.js +++ b/icons/es5/AddBusiness.js @@ -7,11 +7,14 @@ function SvgAddBusiness(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 17h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zM2 4h15v2H2z" + d: "M15 17h2v-3h1v-2l-1-5H2l-1 5v2h1v6h9v-6h4v3zm-6 1H4v-4h5v4zM2 4h15v2H2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z" + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/AddCard.js b/icons/es5/AddCard.js index d6c85b17b7..688594e3df 100644 --- a/icons/es5/AddCard.js +++ b/icons/es5/AddCard.js @@ -7,9 +7,11 @@ function SvgAddCard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.01 4L2 20h12v-2H4v-6h18V4H2.01zM20 8H4V6h16v2zm4 9v2h-3v3h-2v-3h-3v-2h3v-3h2v3h3z" + d: "M2.01 4L2 20h12v-2H4v-6h18V4H2.01zM20 8H4V6h16v2zm4 9v2h-3v3h-2v-3h-3v-2h3v-3h2v3h3z", + fill: "currentColor" })); } diff --git a/icons/es5/AddCircleOutline.js b/icons/es5/AddCircleOutline.js index 287ac9f502..c2f729a838 100644 --- a/icons/es5/AddCircleOutline.js +++ b/icons/es5/AddCircleOutline.js @@ -7,9 +7,11 @@ function SvgAddCircleOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/AddHome.js b/icons/es5/AddHome.js index 880d83036a..7dd1c09204 100644 --- a/icons/es5/AddHome.js +++ b/icons/es5/AddHome.js @@ -7,11 +7,14 @@ function SvgAddHome(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 11c.7 0 1.37.1 2 .29V9l-8-6-8 6v12h7.68A6.995 6.995 0 0118 11z" + d: "M18 11c.7 0 1.37.1 2 .29V9l-8-6-8 6v12h7.68A6.995 6.995 0 0118 11z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21v1z" + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V21h-1v-2.5H15v-1h2.5V15h1v2.5H21v1z", + fill: "currentColor" })); } diff --git a/icons/es5/AddHomeWork.js b/icons/es5/AddHomeWork.js index 534fdd5e01..6b0d715f0b 100644 --- a/icons/es5/AddHomeWork.js +++ b/icons/es5/AddHomeWork.js @@ -7,11 +7,14 @@ function SvgAddHomeWork(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 11.68V11L8 6l-7 5v10h5v-6h4v6h1.68c-.43-.91-.68-1.92-.68-3 0-2.79 1.64-5.19 4-6.32zm8 1.43V3H10v1.97l7 5v1.11c.33-.05.66-.08 1-.08 1.96 0 3.73.81 5 2.11zM17 7h2v2h-2V7z" + d: "M15 11.68V11L8 6l-7 5v10h5v-6h4v6h1.68c-.43-.91-.68-1.92-.68-3 0-2.79 1.64-5.19 4-6.32zm8 1.43V3H10v1.97l7 5v1.11c.33-.05.66-.08 1-.08 1.96 0 3.73.81 5 2.11zM17 7h2v2h-2V7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M23 18c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5.5 3v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21h-1z" + d: "M23 18c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5 5-2.24 5-5zm-5.5 3v-2.5H15v-1h2.5V15h1v2.5H21v1h-2.5V21h-1z", + fill: "currentColor" })); } diff --git a/icons/es5/AddIcCall.js b/icons/es5/AddIcCall.js index ef3f8f0945..35a13549b7 100644 --- a/icons/es5/AddIcCall.js +++ b/icons/es5/AddIcCall.js @@ -7,9 +7,11 @@ function SvgAddIcCall(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 6h-3V3h-2v3h-3v2h3v3h2V8h3zm0 9.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" + d: "M21 6h-3V3h-2v3h-3v2h3v3h2V8h3zm0 9.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z", + fill: "currentColor" })); } diff --git a/icons/es5/AddLink.js b/icons/es5/AddLink.js index 71c388252b..d53fdac2da 100644 --- a/icons/es5/AddLink.js +++ b/icons/es5/AddLink.js @@ -7,9 +7,11 @@ function SvgAddLink(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 11h8v2H8v-2zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" + d: "M8 11h8v2H8v-2zm12.1 1H22c0-2.76-2.24-5-5-5h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1zM3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM19 12h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/AddLocation.js b/icons/es5/AddLocation.js index 77d1a272d6..29d560e691 100644 --- a/icons/es5/AddLocation.js +++ b/icons/es5/AddLocation.js @@ -7,9 +7,11 @@ function SvgAddLocation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 6h-2v3H8v2h3v3h2v-3h3V9h-3V6zm-1-4c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" + d: "M13 6h-2v3H8v2h3v3h2v-3h3V9h-3V6zm-1-4c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z", + fill: "currentColor" })); } diff --git a/icons/es5/AddLocationAlt.js b/icons/es5/AddLocationAlt.js index c98ae2c114..a7efbb71c6 100644 --- a/icons/es5/AddLocationAlt.js +++ b/icons/es5/AddLocationAlt.js @@ -7,9 +7,11 @@ function SvgAddLocationAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z" + d: "M20 1v3h3v2h-3v3h-2V6h-3V4h3V1h2zm-8 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2-9.75V7h3v3h2.92c.05.39.08.79.08 1.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 6.22 7.8 3 12 3c.68 0 1.35.08 2 .25z", + fill: "currentColor" })); } diff --git a/icons/es5/AddModerator.js b/icons/es5/AddModerator.js index 88a3cf1242..f7f279e0fa 100644 --- a/icons/es5/AddModerator.js +++ b/icons/es5/AddModerator.js @@ -7,11 +7,14 @@ function SvgAddModerator(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 10c1.08 0 2.09.25 3 .68V5l-8-3-8 3v6.09c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02A6.996 6.996 0 0110 17c0-3.87 3.13-7 7-7z" + d: "M17 10c1.08 0 2.09.25 3 .68V5l-8-3-8 3v6.09c0 5.05 3.41 9.76 8 10.91.03-.01.05-.02.08-.02A6.996 6.996 0 0110 17c0-3.87 3.13-7 7-7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20v1z" + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm3 5.5h-2.5V20h-1v-2.5H14v-1h2.5V14h1v2.5H20v1z", + fill: "currentColor" })); } diff --git a/icons/es5/AddPhotoAlternate.js b/icons/es5/AddPhotoAlternate.js index d56a648e65..bdaa2910ce 100644 --- a/icons/es5/AddPhotoAlternate.js +++ b/icons/es5/AddPhotoAlternate.js @@ -7,9 +7,11 @@ function SvgAddPhotoAlternate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H3v16h16V11h-3zM5 19l3-4 2 3 3-4 4 5H5z" + d: "M19 7v2.99s-1.99.01-2 0V7h-3s.01-1.99 0-2h3V2h2v3h3v2h-3zm-3 4V8h-3V5H3v16h16V11h-3zM5 19l3-4 2 3 3-4 4 5H5z", + fill: "currentColor" })); } diff --git a/icons/es5/AddReaction.js b/icons/es5/AddReaction.js index 5e5e9c2338..bbcd2f3de4 100644 --- a/icons/es5/AddReaction.js +++ b/icons/es5/AddReaction.js @@ -7,9 +7,11 @@ function SvgAddReaction(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 9V7h-2V2.84A9.929 9.929 0 0011.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H18zm-2.5-1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zM22 3h2v2h-2v2h-2V5h-2V3h2V1h2v2z" + d: "M18 9V7h-2V2.84A9.929 9.929 0 0011.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-1.05-.17-2.05-.47-3H18zm-2.5-1c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm-7 0c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zm3.5 9.5c-2.33 0-4.31-1.46-5.11-3.5h10.22c-.8 2.04-2.78 3.5-5.11 3.5zM22 3h2v2h-2v2h-2V5h-2V3h2V1h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/AddRoad.js b/icons/es5/AddRoad.js index 4765df766d..7ef562e8f6 100644 --- a/icons/es5/AddRoad.js +++ b/icons/es5/AddRoad.js @@ -7,9 +7,11 @@ function SvgAddRoad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z" + d: "M20 18v-3h-2v3h-3v2h3v3h2v-3h3v-2zM18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/AddShoppingCart.js b/icons/es5/AddShoppingCart.js index 0d64c08ebb..9fd1e87a78 100644 --- a/icons/es5/AddShoppingCart.js +++ b/icons/es5/AddShoppingCart.js @@ -7,9 +7,11 @@ function SvgAddShoppingCart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59L3.62 17H19v-2H7l1.1-2z" + d: "M11 9h2V6h3V4h-3V1h-2v3H8v2h3v3zm-4 9c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03l3.86-7.01L19.42 4l-3.87 7H8.53L4.27 2H1v2h2l3.6 7.59L3.62 17H19v-2H7l1.1-2z", + fill: "currentColor" })); } diff --git a/icons/es5/AddTask.js b/icons/es5/AddTask.js index 50f31961bf..2a4202ec88 100644 --- a/icons/es5/AddTask.js +++ b/icons/es5/AddTask.js @@ -7,9 +7,11 @@ function SvgAddTask(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 5.18L10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45A10.02 10.02 0 0012 2C6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z" + d: "M22 5.18L10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8c1.57 0 3.04.46 4.28 1.25l1.45-1.45A10.02 10.02 0 0012 2C6.48 2 2 6.48 2 12s4.48 10 10 10c1.73 0 3.36-.44 4.78-1.22l-1.5-1.5c-1 .46-2.11.72-3.28.72zm7-5h-3v2h3v3h2v-3h3v-2h-3v-3h-2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/AddToDrive.js b/icons/es5/AddToDrive.js index 32999875e1..02e78d7e60 100644 --- a/icons/es5/AddToDrive.js +++ b/icons/es5/AddToDrive.js @@ -7,9 +7,11 @@ function SvgAddToDrive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84A5.986 5.986 0 0119 11zM8.15 4.52L2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81A5.93 5.93 0 0113 17c0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z" + d: "M19 11c.17 0 .33.01.49.02L15 3H9l5.68 9.84A5.986 5.986 0 0119 11zM8.15 4.52L2 15.5 5 21l6.33-10.97zM13.2 15.5H9.9L6.73 21h7.81A5.93 5.93 0 0113 17c0-.52.07-1.02.2-1.5zm6.8.5v-3h-2v3h-3v2h3v3h2v-3h3v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/AddToHomeScreen.js b/icons/es5/AddToHomeScreen.js index 4af3f6ed56..d7689220d9 100644 --- a/icons/es5/AddToHomeScreen.js +++ b/icons/es5/AddToHomeScreen.js @@ -7,9 +7,11 @@ function SvgAddToHomeScreen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 1.01L6 1v5h2V5h10v14H8v-1H6v5h14V1.01zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z" + d: "M20 1.01L6 1v5h2V5h10v14H8v-1H6v5h14V1.01zM10 15h2V8H5v2h3.59L3 15.59 4.41 17 10 11.41V15z", + fill: "currentColor" })); } diff --git a/icons/es5/AddToPhotos.js b/icons/es5/AddToPhotos.js index 883bb8024d..127d626c33 100644 --- a/icons/es5/AddToPhotos.js +++ b/icons/es5/AddToPhotos.js @@ -7,9 +7,11 @@ function SvgAddToPhotos(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/AddToQueue.js b/icons/es5/AddToQueue.js index 1953fde232..53f2bf5304 100644 --- a/icons/es5/AddToQueue.js +++ b/icons/es5/AddToQueue.js @@ -7,9 +7,11 @@ function SvgAddToQueue(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z" + d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2h-3v3h-2v-3H8v-2h3V7h2v3h3z", + fill: "currentColor" })); } diff --git a/icons/es5/Addchart.js b/icons/es5/Addchart.js index 49ac8e12bb..6deedb6449 100644 --- a/icons/es5/Addchart.js +++ b/icons/es5/Addchart.js @@ -7,11 +7,14 @@ function SvgAddchart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 19H5V5h9V3H3v18h18V10h-2z" + d: "M19 19H5V5h9V3H3v18h18V10h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11 7h2v10h-2zm4 6h2v4h-2zm-8-3h2v7H7zm12-5V3h-2v2h-2v2h2v2h2V7h2V5z" + d: "M11 7h2v10h-2zm4 6h2v4h-2zm-8-3h2v7H7zm12-5V3h-2v2h-2v2h2v2h2V7h2V5z", + fill: "currentColor" })); } diff --git a/icons/es5/AdfScanner.js b/icons/es5/AdfScanner.js index 2527f1006e..7668ce9a6a 100644 --- a/icons/es5/AdfScanner.js +++ b/icons/es5/AdfScanner.js @@ -7,9 +7,11 @@ function SvgAdfScanner(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12h-4V4H6v8H2v8h20v-8zm-6 0H8V6h8v6zm2 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M22 12h-4V4H6v8H2v8h20v-8zm-6 0H8V6h8v6zm2 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Adjust.js b/icons/es5/Adjust.js index ab33797001..64808e54bf 100644 --- a/icons/es5/Adjust.js +++ b/icons/es5/Adjust.js @@ -7,9 +7,11 @@ function SvgAdjust(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/AdminPanelSettings.js b/icons/es5/AdminPanelSettings.js index cfcc0f0d0c..0a3da191b0 100644 --- a/icons/es5/AdminPanelSettings.js +++ b/icons/es5/AdminPanelSettings.js @@ -7,11 +7,14 @@ function SvgAdminPanelSettings(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 11c.34 0 .67.04 1 .09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55-.69-.98-1.1-2.17-1.1-3.45 0-3.31 2.69-6 6-6z" + d: "M17 11c.34 0 .67.04 1 .09V6.27L10.5 3 3 6.27v4.91c0 4.54 3.2 8.79 7.5 9.82.55-.13 1.08-.32 1.6-.55-.69-.98-1.1-2.17-1.1-3.45 0-3.31 2.69-6 6-6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z" + d: "M17 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 1.38c.62 0 1.12.51 1.12 1.12s-.51 1.12-1.12 1.12-1.12-.51-1.12-1.12.5-1.12 1.12-1.12zm0 5.37c-.93 0-1.74-.46-2.24-1.17.05-.72 1.51-1.08 2.24-1.08s2.19.36 2.24 1.08c-.5.71-1.31 1.17-2.24 1.17z", + fill: "currentColor" })); } diff --git a/icons/es5/Adobe.js b/icons/es5/Adobe.js index 172e6171e4..748c6eb7b5 100644 --- a/icons/es5/Adobe.js +++ b/icons/es5/Adobe.js @@ -7,9 +7,11 @@ function SvgAdobe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.97 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h13.97c1.1 0 2-.9 2-2V5a2 2 0 00-2-2zm-1.59 13.98c-.03.01-.07.02-.1.02h-2.26a.49.49 0 01-.46-.3l-2.46-5.74c-.02-.06-.08-.09-.13-.07a.12.12 0 00-.07.07l-1.53 3.65c-.03.07 0 .14.07.17.02.01.03.01.05.01h1.68c.1 0 .2.06.24.16l.74 1.64c.07.15-.01.33-.16.4-.06 0-.1.01-.14.01H6.73c-.15 0-.28-.13-.28-.28 0-.04.01-.07.02-.11l3.9-9.28c.08-.2.28-.33.49-.33h2.25c.22 0 .41.13.49.33l3.92 9.28c.07.14.01.31-.14.37z" + d: "M18.97 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h13.97c1.1 0 2-.9 2-2V5a2 2 0 00-2-2zm-1.59 13.98c-.03.01-.07.02-.1.02h-2.26a.49.49 0 01-.46-.3l-2.46-5.74c-.02-.06-.08-.09-.13-.07a.12.12 0 00-.07.07l-1.53 3.65c-.03.07 0 .14.07.17.02.01.03.01.05.01h1.68c.1 0 .2.06.24.16l.74 1.64c.07.15-.01.33-.16.4-.06 0-.1.01-.14.01H6.73c-.15 0-.28-.13-.28-.28 0-.04.01-.07.02-.11l3.9-9.28c.08-.2.28-.33.49-.33h2.25c.22 0 .41.13.49.33l3.92 9.28c.07.14.01.31-.14.37z", + fill: "currentColor" })); } diff --git a/icons/es5/AdsClick.js b/icons/es5/AdsClick.js index bd3f3c8282..a128b263bd 100644 --- a/icons/es5/AdsClick.js +++ b/icons/es5/AdsClick.js @@ -7,9 +7,11 @@ function SvgAdsClick(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.71 17.99A5.993 5.993 0 016 12c0-3.31 2.69-6 6-6 3.22 0 5.84 2.53 5.99 5.71l-2.1-.63a3.999 3.999 0 10-4.81 4.81l.63 2.1zM22 12c0 .3-.01.6-.04.9l-1.97-.59c.01-.1.01-.21.01-.31 0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8c.1 0 .21 0 .31-.01l.59 1.97c-.3.03-.6.04-.9.04-5.52 0-10-4.48-10-10S6.48 2 12 2s10 4.48 10 10zm-3.77 4.26L22 15l-10-3 3 10 1.26-3.77 4.27 4.27 1.98-1.98-4.28-4.26z" + d: "M11.71 17.99A5.993 5.993 0 016 12c0-3.31 2.69-6 6-6 3.22 0 5.84 2.53 5.99 5.71l-2.1-.63a3.999 3.999 0 10-4.81 4.81l.63 2.1zM22 12c0 .3-.01.6-.04.9l-1.97-.59c.01-.1.01-.21.01-.31 0-4.42-3.58-8-8-8s-8 3.58-8 8 3.58 8 8 8c.1 0 .21 0 .31-.01l.59 1.97c-.3.03-.6.04-.9.04-5.52 0-10-4.48-10-10S6.48 2 12 2s10 4.48 10 10zm-3.77 4.26L22 15l-10-3 3 10 1.26-3.77 4.27 4.27 1.98-1.98-4.28-4.26z", + fill: "currentColor" })); } diff --git a/icons/es5/Agriculture.js b/icons/es5/Agriculture.js index ffa7e0b5c5..26e49d58ec 100644 --- a/icons/es5/Agriculture.js +++ b/icons/es5/Agriculture.js @@ -7,11 +7,14 @@ function SvgAgriculture(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.5 12c.93 0 1.78.28 2.5.76V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2h-.54A5.98 5.98 0 0112 15c0 .34-.04.67-.09 1h3.14c.25-2.25 2.14-4 4.45-4z" + d: "M19.5 12c.93 0 1.78.28 2.5.76V8c0-1.1-.9-2-2-2h-6.29l-1.06-1.06 1.41-1.41-.71-.71-3.53 3.53.71.71 1.41-1.41L13 6.71V9c0 1.1-.9 2-2 2h-.54A5.98 5.98 0 0112 15c0 .34-.04.67-.09 1h3.14c.25-2.25 2.14-4 4.45-4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M19.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1zm5.83 4.82l-.18-.47.93-.35a4.92 4.92 0 00-2.31-2.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93a4.92 4.92 0 00-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35a4.92 4.92 0 002.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93a4.92 4.92 0 002.43-2.31l-.89-.4.21-.46.9.4c.22-.55.35-1.17.35-1.81 0-.53-.11-1.04-.26-1.52l-.91.34zm-2.68 3.95c-1.53.63-3.29-.09-3.92-1.62-.63-1.53.09-3.29 1.62-3.92 1.53-.63 3.29.09 3.92 1.62.64 1.53-.09 3.29-1.62 3.92z" + d: "M19.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM4 9h5c0-1.1-.9-2-2-2H4c-.55 0-1 .45-1 1s.45 1 1 1zm5.83 4.82l-.18-.47.93-.35a4.92 4.92 0 00-2.31-2.43l-.4.89-.46-.21.4-.9C7.26 10.13 6.64 10 6 10c-.53 0-1.04.11-1.52.26l.34.91-.47.18-.35-.93a4.92 4.92 0 00-2.43 2.31l.89.4-.21.46-.9-.4C1.13 13.74 1 14.36 1 15c0 .53.11 1.04.26 1.52l.91-.34.18.47-.93.35a4.92 4.92 0 002.31 2.43l.4-.89.46.21-.4.9c.55.22 1.17.35 1.81.35.53 0 1.04-.11 1.52-.26l-.34-.91.47-.18.35.93a4.92 4.92 0 002.43-2.31l-.89-.4.21-.46.9.4c.22-.55.35-1.17.35-1.81 0-.53-.11-1.04-.26-1.52l-.91.34zm-2.68 3.95c-1.53.63-3.29-.09-3.92-1.62-.63-1.53.09-3.29 1.62-3.92 1.53-.63 3.29.09 3.92 1.62.64 1.53-.09 3.29-1.62 3.92z", + fill: "currentColor" })); } diff --git a/icons/es5/Air.js b/icons/es5/Air.js index f3923f5022..f4a0690306 100644 --- a/icons/es5/Air.js +++ b/icons/es5/Air.js @@ -7,9 +7,11 @@ function SvgAir(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z" + d: "M14.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3h2c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1H2v-2h9.5c1.65 0 3 1.35 3 3zM19 6.5C19 4.57 17.43 3 15.5 3S12 4.57 12 6.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S16.33 8 15.5 8H2v2h13.5c1.93 0 3.5-1.57 3.5-3.5zm-.5 4.5H2v2h16.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5v2c1.93 0 3.5-1.57 3.5-3.5S20.43 11 18.5 11z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineSeatFlat.js b/icons/es5/AirlineSeatFlat.js index ca95b6ce68..ab6083a91b 100644 --- a/icons/es5/AirlineSeatFlat.js +++ b/icons/es5/AirlineSeatFlat.js @@ -7,9 +7,11 @@ function SvgAirlineSeatFlat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7v6H9V7h13zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9a3 3 0 00-.04-4.24 3 3 0 00-4.24.04 3 3 0 00.04 4.24 3 3 0 004.24-.04z" + d: "M22 7v6H9V7h13zM2 14v2h6v2h8v-2h6v-2H2zm5.14-1.9a3 3 0 00-.04-4.24 3 3 0 00-4.24.04 3 3 0 00.04 4.24 3 3 0 004.24-.04z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineSeatFlatAngled.js b/icons/es5/AirlineSeatFlatAngled.js index 7ba2adf954..f4bee39b49 100644 --- a/icons/es5/AirlineSeatFlatAngled.js +++ b/icons/es5/AirlineSeatFlatAngled.js @@ -7,9 +7,11 @@ function SvgAirlineSeatFlatAngled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.56 16.18L9.2 11.71l2.08-5.66 12.35 4.47-2.07 5.66zM1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94a3.01 3.01 0 001.41-4A3.005 3.005 0 004.7 4.8a2.99 2.99 0 00-1.4 4 2.99 2.99 0 004 1.4z" + d: "M21.56 16.18L9.2 11.71l2.08-5.66 12.35 4.47-2.07 5.66zM1.5 12.14L8 14.48V19h8v-1.63L20.52 19l.69-1.89-19.02-6.86-.69 1.89zm5.8-1.94a3.01 3.01 0 001.41-4A3.005 3.005 0 004.7 4.8a2.99 2.99 0 00-1.4 4 2.99 2.99 0 004 1.4z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineSeatIndividualSuite.js b/icons/es5/AirlineSeatIndividualSuite.js index 1b57c21d24..8d8407f359 100644 --- a/icons/es5/AirlineSeatIndividualSuite.js +++ b/icons/es5/AirlineSeatIndividualSuite.js @@ -7,9 +7,11 @@ function SvgAirlineSeatIndividualSuite(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm16-6H11v7H3V7H1v10h22V7z" + d: "M7 13c1.65 0 3-1.35 3-3S8.65 7 7 7s-3 1.35-3 3 1.35 3 3 3zm16-6H11v7H3V7H1v10h22V7z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineSeatLegroomExtra.js b/icons/es5/AirlineSeatLegroomExtra.js index ac70ceea81..ca906115f5 100644 --- a/icons/es5/AirlineSeatLegroomExtra.js +++ b/icons/es5/AirlineSeatLegroomExtra.js @@ -7,9 +7,11 @@ function SvgAirlineSeatLegroomExtra(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 3H2v14h11v-2H4zm18.24 12.96l-2.53 1.15-3.41-6.98A2.019 2.019 0 0014.51 9H11V3H5v11h10l3.41 7 5.07-2.32-1.24-2.72z" + d: "M4 3H2v14h11v-2H4zm18.24 12.96l-2.53 1.15-3.41-6.98A2.019 2.019 0 0014.51 9H11V3H5v11h10l3.41 7 5.07-2.32-1.24-2.72z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineSeatLegroomNormal.js b/icons/es5/AirlineSeatLegroomNormal.js index 278a53dd83..3b458b243c 100644 --- a/icons/es5/AirlineSeatLegroomNormal.js +++ b/icons/es5/AirlineSeatLegroomNormal.js @@ -7,9 +7,11 @@ function SvgAirlineSeatLegroomNormal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 15V3H3v14h11v-2H5zm17 3h-3v-7c0-1.1-.9-2-2-2h-5V3H6v11h10v7h6v-3z" + d: "M5 15V3H3v14h11v-2H5zm17 3h-3v-7c0-1.1-.9-2-2-2h-5V3H6v11h10v7h6v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineSeatLegroomReduced.js b/icons/es5/AirlineSeatLegroomReduced.js index 457f2391c9..623fbc5f8c 100644 --- a/icons/es5/AirlineSeatLegroomReduced.js +++ b/icons/es5/AirlineSeatLegroomReduced.js @@ -7,9 +7,11 @@ function SvgAirlineSeatLegroomReduced(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.97 21H14v-3l1-4H6V3h6v6h5c1.1 0 2 .9 2 2l-2 7h2.97v3zM5 15V3H3v14h9v-2H5z" + d: "M19.97 21H14v-3l1-4H6V3h6v6h5c1.1 0 2 .9 2 2l-2 7h2.97v3zM5 15V3H3v14h9v-2H5z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineSeatReclineExtra.js b/icons/es5/AirlineSeatReclineExtra.js index 27f5519691..7c3dfd72fd 100644 --- a/icons/es5/AirlineSeatReclineExtra.js +++ b/icons/es5/AirlineSeatReclineExtra.js @@ -7,9 +7,11 @@ function SvgAirlineSeatReclineExtra(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H6.5L4 7H2l2.85 14H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38a2.21 2.21 0 00-.99-.06h-.02a2.268 2.268 0 00-1.84 2.61L7.44 18h9.24l3.82 3 1.5-1.5-5.77-4.5z" + d: "M5.35 5.64c-.9-.64-1.12-1.88-.49-2.79.63-.9 1.88-1.12 2.79-.49.9.64 1.12 1.88.49 2.79-.64.9-1.88 1.12-2.79.49zM16 19H6.5L4 7H2l2.85 14H16v-2zm.23-4h-4.88l-1.03-4.1c1.58.89 3.28 1.54 5.15 1.22V9.99c-1.63.31-3.44-.27-4.69-1.25L9.14 7.47c-.23-.18-.49-.3-.76-.38a2.21 2.21 0 00-.99-.06h-.02a2.268 2.268 0 00-1.84 2.61L7.44 18h9.24l3.82 3 1.5-1.5-5.77-4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineSeatReclineNormal.js b/icons/es5/AirlineSeatReclineNormal.js index 73dcd04f1b..4dd59360b2 100644 --- a/icons/es5/AirlineSeatReclineNormal.js +++ b/icons/es5/AirlineSeatReclineNormal.js @@ -7,9 +7,11 @@ function SvgAirlineSeatReclineNormal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 19V7H4v14h11v-2H6zm14 1.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V18h8.07l3.5 3.5L20 20.07z" + d: "M7.59 5.41c-.78-.78-.78-2.05 0-2.83s2.05-.78 2.83 0 .78 2.05 0 2.83c-.79.79-2.05.79-2.83 0zM6 19V7H4v14h11v-2H6zm14 1.07L14.93 15H11.5v-3.68c1.4 1.15 3.6 2.16 5.5 2.16v-2.16c-1.66.02-3.61-.87-4.67-2.04l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C8.01 7 7 8.01 7 9.25V18h8.07l3.5 3.5L20 20.07z", + fill: "currentColor" })); } diff --git a/icons/es5/AirlineStops.js b/icons/es5/AirlineStops.js index 48276e07f1..26e7935c51 100644 --- a/icons/es5/AirlineStops.js +++ b/icons/es5/AirlineStops.js @@ -7,9 +7,11 @@ function SvgAirlineStops(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.21 9.21C15.93 10.78 13.45 13.3 13 17h2v2H9v-2h2c-.5-4.5-4.37-8-9-8V7c4.39 0 8.22 2.55 10 6.3 1.13-2.43 2.99-4.25 4.78-5.52L14 5h7v7l-2.79-2.79z" + d: "M18.21 9.21C15.93 10.78 13.45 13.3 13 17h2v2H9v-2h2c-.5-4.5-4.37-8-9-8V7c4.39 0 8.22 2.55 10 6.3 1.13-2.43 2.99-4.25 4.78-5.52L14 5h7v7l-2.79-2.79z", + fill: "currentColor" })); } diff --git a/icons/es5/Airlines.js b/icons/es5/Airlines.js index bb77823829..769cbb13a0 100644 --- a/icons/es5/Airlines.js +++ b/icons/es5/Airlines.js @@ -7,9 +7,11 @@ function SvgAirlines(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 4L2 20h17l3-16h-9zm1.5 10a2.5 2.5 0 010-5 2.5 2.5 0 010 5z" + d: "M13 4L2 20h17l3-16h-9zm1.5 10a2.5 2.5 0 010-5 2.5 2.5 0 010 5z", + fill: "currentColor" })); } diff --git a/icons/es5/AirplaneTicket.js b/icons/es5/AirplaneTicket.js index 4c1817b4bd..027784109b 100644 --- a/icons/es5/AirplaneTicket.js +++ b/icons/es5/AirplaneTicket.js @@ -7,9 +7,11 @@ function SvgAirplaneTicket(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20V4zm-4.27 9.3l-8.86 2.36-1.66-2.88.93-.25 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65a.967.967 0 011.18.68.988.988 0 01-.69 1.19z" + d: "M22 4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20V4zm-4.27 9.3l-8.86 2.36-1.66-2.88.93-.25 1.26.99 2.39-.64-2.4-4.16 1.4-.38 4.01 3.74 2.44-.65a.967.967 0 011.18.68.988.988 0 01-.69 1.19z", + fill: "currentColor" })); } diff --git a/icons/es5/AirplanemodeActive.js b/icons/es5/AirplanemodeActive.js index 0868e56134..3e6acee661 100644 --- a/icons/es5/AirplanemodeActive.js +++ b/icons/es5/AirplanemodeActive.js @@ -7,9 +7,11 @@ function SvgAirplanemodeActive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z", + fill: "currentColor" })); } diff --git a/icons/es5/AirplanemodeInactive.js b/icons/es5/AirplanemodeInactive.js index 9308ffc0e6..faf53da6c6 100644 --- a/icons/es5/AirplanemodeInactive.js +++ b/icons/es5/AirplanemodeInactive.js @@ -7,9 +7,11 @@ function SvgAirplanemodeInactive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94l1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z" + d: "M10.5 7.67V3.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V9l8.5 5v2l-4.49-1.32-7.01-7.01zm9.28 14.94l1.41-1.41-7.69-7.7-3.94-3.94-6.75-6.75-1.42 1.41 6.38 6.38L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-2.67l6.28 6.28z", + fill: "currentColor" })); } diff --git a/icons/es5/Airplay.js b/icons/es5/Airplay.js index 516ea64699..6fd66071f4 100644 --- a/icons/es5/Airplay.js +++ b/icons/es5/Airplay.js @@ -7,9 +7,11 @@ function SvgAirplay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 22h12l-6-6-6 6zM23 3H1v16h6v-2H3V5h18v12h-4v2h6V3z" + d: "M6 22h12l-6-6-6 6zM23 3H1v16h6v-2H3V5h18v12h-4v2h6V3z", + fill: "currentColor" })); } diff --git a/icons/es5/AirportShuttle.js b/icons/es5/AirportShuttle.js index ed1ca525bf..8aa8745914 100644 --- a/icons/es5/AirportShuttle.js +++ b/icons/es5/AirportShuttle.js @@ -7,9 +7,11 @@ function SvgAirportShuttle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 5H1v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zM3 11V7h4v4H3zm3 6.25a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zM13 11H9V7h4v4zm5 6.25a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zM15 11V7h1l4 4h-5z" + d: "M17 5H1v11h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-6-6zM3 11V7h4v4H3zm3 6.25a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zM13 11H9V7h4v4zm5 6.25a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zM15 11V7h1l4 4h-5z", + fill: "currentColor" })); } diff --git a/icons/es5/Alarm.js b/icons/es5/Alarm.js index ef6487634c..d0dcffbb3c 100644 --- a/icons/es5/Alarm.js +++ b/icons/es5/Alarm.js @@ -7,9 +7,11 @@ function SvgAlarm(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4a9 9 0 10.001 18.001A9 9 0 0012 4zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + d: "M12.5 8H11v6l4.75 2.85.75-1.23-4-2.37zm4.837-6.19l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4a9 9 0 10.001 18.001A9 9 0 0012 4zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/AlarmAdd.js b/icons/es5/AlarmAdd.js index 81d3c68bd1..dfd5b3feed 100644 --- a/icons/es5/AlarmAdd.js +++ b/icons/es5/AlarmAdd.js @@ -7,9 +7,11 @@ function SvgAlarmAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4a9 9 0 10.001 18.001A9 9 0 0012 4zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z" + d: "M17.337 1.81l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4a9 9 0 10.001 18.001A9 9 0 0012 4zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7zm1-11h-2v3H8v2h3v3h2v-3h3v-2h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/AlarmOff.js b/icons/es5/AlarmOff.js index 295b9ee2b9..a0f27ea769 100644 --- a/icons/es5/AlarmOff.js +++ b/icons/es5/AlarmOff.js @@ -7,9 +7,11 @@ function SvgAlarmOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52A9 9 0 008.47 4.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8A8.964 8.964 0 003 13a9 9 0 009 9c2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85A6.956 6.956 0 0112 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z" + d: "M10.04 6.29C10.66 6.11 11.32 6 12 6c3.86 0 7 3.14 7 7 0 .68-.11 1.34-.29 1.96l1.56 1.56c.47-1.08.73-2.27.73-3.52A9 9 0 008.47 4.72l1.57 1.57zm7.297-4.48l4.607 3.845-1.28 1.535-4.61-3.843zM3.02 2.1L1.61 3.51l1.37 1.37-.92.77 1.28 1.54 1.06-.88.8.8A8.964 8.964 0 003 13a9 9 0 009 9c2.25 0 4.31-.83 5.89-2.2l2.1 2.1 1.41-1.41L3.02 2.1zM12 20c-3.86 0-7-3.14-7-7 0-1.7.61-3.26 1.62-4.47l9.85 9.85A6.956 6.956 0 0112 20zM7.48 3.73l.46-.38-1.28-1.54-.6.5z", + fill: "currentColor" })); } diff --git a/icons/es5/AlarmOn.js b/icons/es5/AlarmOn.js index 776bf4696a..1e9e7f7e3a 100644 --- a/icons/es5/AlarmOn.js +++ b/icons/es5/AlarmOn.js @@ -7,9 +7,11 @@ function SvgAlarmOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4a9 9 0 10.001 18.001A9 9 0 0012 4zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + d: "M10.54 14.53L8.41 12.4l-1.06 1.06 3.18 3.18 6-6-1.06-1.06zm6.797-12.72l4.607 3.845-1.28 1.535-4.61-3.843zm-10.674 0l1.282 1.536L3.337 7.19l-1.28-1.536zM12 4a9 9 0 10.001 18.001A9 9 0 0012 4zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Album.js b/icons/es5/Album.js index a695a7edaf..03143d4dcc 100644 --- a/icons/es5/Album.js +++ b/icons/es5/Album.js @@ -7,9 +7,11 @@ function SvgAlbum(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 14.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 7.5 12 7.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5zm0-5.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z", + fill: "currentColor" })); } diff --git a/icons/es5/AlignHorizontalCenter.js b/icons/es5/AlignHorizontalCenter.js index 76bcc03cf8..0aefa06e40 100644 --- a/icons/es5/AlignHorizontalCenter.js +++ b/icons/es5/AlignHorizontalCenter.js @@ -7,9 +7,11 @@ function SvgAlignHorizontalCenter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z" + d: "M11 2h2v5h8v3h-8v4h5v3h-5v5h-2v-5H6v-3h5v-4H3V7h8z", + fill: "currentColor" })); } diff --git a/icons/es5/AlignHorizontalLeft.js b/icons/es5/AlignHorizontalLeft.js index e62436d4fa..85eb7f0640 100644 --- a/icons/es5/AlignHorizontalLeft.js +++ b/icons/es5/AlignHorizontalLeft.js @@ -7,9 +7,11 @@ function SvgAlignHorizontalLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z" + d: "M4 22H2V2h2v20zM22 7H6v3h16V7zm-6 7H6v3h10v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/AlignHorizontalRight.js b/icons/es5/AlignHorizontalRight.js index a296038cbc..82cf215f93 100644 --- a/icons/es5/AlignHorizontalRight.js +++ b/icons/es5/AlignHorizontalRight.js @@ -7,9 +7,11 @@ function SvgAlignHorizontalRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z" + d: "M20 2h2v20h-2V2zM2 10h16V7H2v3zm6 7h10v-3H8v3z", + fill: "currentColor" })); } diff --git a/icons/es5/AlignVerticalBottom.js b/icons/es5/AlignVerticalBottom.js index 314d629df6..fabaf63f58 100644 --- a/icons/es5/AlignVerticalBottom.js +++ b/icons/es5/AlignVerticalBottom.js @@ -7,9 +7,11 @@ function SvgAlignVerticalBottom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z" + d: "M22 22H2v-2h20v2zM10 2H7v16h3V2zm7 6h-3v10h3V8z", + fill: "currentColor" })); } diff --git a/icons/es5/AlignVerticalCenter.js b/icons/es5/AlignVerticalCenter.js index cc6073d730..6e0b234f39 100644 --- a/icons/es5/AlignVerticalCenter.js +++ b/icons/es5/AlignVerticalCenter.js @@ -7,9 +7,11 @@ function SvgAlignVerticalCenter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z" + d: "M22 11h-5V6h-3v5h-4V3H7v8H1.84v2H7v8h3v-8h4v5h3v-5h5z", + fill: "currentColor" })); } diff --git a/icons/es5/AlignVerticalTop.js b/icons/es5/AlignVerticalTop.js index 5141a1ae41..c4ae9f7428 100644 --- a/icons/es5/AlignVerticalTop.js +++ b/icons/es5/AlignVerticalTop.js @@ -7,9 +7,11 @@ function SvgAlignVerticalTop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z" + d: "M22 2v2H2V2h20zM7 22h3V6H7v16zm7-6h3V6h-3v10z", + fill: "currentColor" })); } diff --git a/icons/es5/AllInbox.js b/icons/es5/AllInbox.js index 085fd6d327..9593dfb4c0 100644 --- a/icons/es5/AllInbox.js +++ b/icons/es5/AllInbox.js @@ -7,9 +7,11 @@ function SvgAllInbox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v11h18V3zm-2 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v5H3v-5h6c0 1.66 1.34 3 3 3s3-1.34 3-3z" + d: "M21 3H3v11h18V3zm-2 6h-4c0 1.62-1.38 3-3 3s-3-1.38-3-3H5V5h14v4zm-4 7h6v5H3v-5h6c0 1.66 1.34 3 3 3s3-1.34 3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/AllInclusive.js b/icons/es5/AllInclusive.js index 948316186b..30718b8b71 100644 --- a/icons/es5/AllInclusive.js +++ b/icons/es5/AllInclusive.js @@ -7,9 +7,11 @@ function SvgAllInclusive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2A5.37 5.37 0 005.4 6.62C2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53L13.51 12l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12a5.386 5.386 0 003.82 1.57c2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z" + d: "M18.6 6.62c-1.44 0-2.8.56-3.77 1.53L7.8 14.39c-.64.64-1.49.99-2.4.99-1.87 0-3.39-1.51-3.39-3.38S3.53 8.62 5.4 8.62c.91 0 1.76.35 2.44 1.03l1.13 1 1.51-1.34L9.22 8.2A5.37 5.37 0 005.4 6.62C2.42 6.62 0 9.04 0 12s2.42 5.38 5.4 5.38c1.44 0 2.8-.56 3.77-1.53L13.51 12l2.69-2.39c.64-.64 1.49-.99 2.4-.99 1.87 0 3.39 1.51 3.39 3.38s-1.52 3.38-3.39 3.38c-.9 0-1.76-.35-2.44-1.03l-1.14-1.01-1.51 1.34 1.27 1.12a5.386 5.386 0 003.82 1.57c2.98 0 5.4-2.41 5.4-5.38s-2.42-5.37-5.4-5.37z", + fill: "currentColor" })); } diff --git a/icons/es5/AllOut.js b/icons/es5/AllOut.js index 288f5fe510..9dc226a9a1 100644 --- a/icons/es5/AllOut.js +++ b/icons/es5/AllOut.js @@ -7,9 +7,11 @@ function SvgAllOut(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + d: "M4 4v4l4-4zm12 0l4 4V4zm4 16v-4l-4 4zM4 20h4l-4-4zm15-8c0-3.87-3.13-7-7-7s-7 3.13-7 7 3.13 7 7 7 7-3.13 7-7zm-7 5c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/AltRoute.js b/icons/es5/AltRoute.js index a0e48fd094..471d6a4315 100644 --- a/icons/es5/AltRoute.js +++ b/icons/es5/AltRoute.js @@ -7,9 +7,11 @@ function SvgAltRoute(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.78 11.16l-1.42 1.42a7.282 7.282 0 01-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6L7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0l-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z" + d: "M9.78 11.16l-1.42 1.42a7.282 7.282 0 01-1.79-2.94l1.94-.49c.32.89.77 1.5 1.27 2.01zM11 6L7 2 3 6h3.02c.02.81.08 1.54.19 2.17l1.94-.49C8.08 7.2 8.03 6.63 8.02 6H11zm10 0l-4-4-4 4h2.99c-.1 3.68-1.28 4.75-2.54 5.88-.5.44-1.01.92-1.45 1.55-.34-.49-.73-.88-1.13-1.24L9.46 13.6c.93.85 1.54 1.54 1.54 3.4v5h2v-5c0-2.02.71-2.66 1.79-3.63 1.38-1.24 3.08-2.78 3.2-7.37H21z", + fill: "currentColor" })); } diff --git a/icons/es5/AlternateEmail.js b/icons/es5/AlternateEmail.js index f0a713d6f9..54b401024a 100644 --- a/icons/es5/AlternateEmail.js +++ b/icons/es5/AlternateEmail.js @@ -7,9 +7,11 @@ function SvgAlternateEmail(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10h5v-2h-5c-4.34 0-8-3.66-8-8s3.66-8 8-8 8 3.66 8 8v1.43c0 .79-.71 1.57-1.5 1.57s-1.5-.78-1.5-1.57V12c0-2.76-2.24-5-5-5s-5 2.24-5 5 2.24 5 5 5c1.38 0 2.64-.56 3.54-1.47.65.89 1.77 1.47 2.96 1.47 1.97 0 3.5-1.6 3.5-3.57V12c0-5.52-4.48-10-10-10zm0 13c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/AmpStories.js b/icons/es5/AmpStories.js index b8687741bc..25261f2c5c 100644 --- a/icons/es5/AmpStories.js +++ b/icons/es5/AmpStories.js @@ -7,9 +7,11 @@ function SvgAmpStories(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 4h10v15H7zM3 6h2v11H3zm16 0h2v11h-2z" + d: "M7 4h10v15H7zM3 6h2v11H3zm16 0h2v11h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Analytics.js b/icons/es5/Analytics.js index 4695e3e7ea..122311965a 100644 --- a/icons/es5/Analytics.js +++ b/icons/es5/Analytics.js @@ -7,9 +7,11 @@ function SvgAnalytics(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm6 14H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z" + d: "M3 3v18h18V3H3zm6 14H7v-5h2v5zm4 0h-2v-3h2v3zm0-5h-2v-2h2v2zm4 5h-2V7h2v10z", + fill: "currentColor" })); } diff --git a/icons/es5/Anchor.js b/icons/es5/Anchor.js index f0d41998d6..e6aae463bc 100644 --- a/icons/es5/Anchor.js +++ b/icons/es5/Anchor.js @@ -7,9 +7,11 @@ function SvgAnchor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 15l1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + d: "M17 15l1.55 1.55c-.96 1.69-3.33 3.04-5.55 3.37V11h3V9h-3V7.82C14.16 7.4 15 6.3 15 5c0-1.65-1.35-3-3-3S9 3.35 9 5c0 1.3.84 2.4 2 2.82V9H8v2h3v8.92c-2.22-.33-4.59-1.68-5.55-3.37L7 15l-4-3v3c0 3.88 4.92 7 9 7s9-3.12 9-7v-3l-4 3zM12 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + fill: "currentColor" })); } diff --git a/icons/es5/Android.js b/icons/es5/Android.js index b3e7ad2294..5ea68d71b7 100644 --- a/icons/es5/Android.js +++ b/icons/es5/Android.js @@ -7,9 +7,11 @@ function SvgAndroid(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85a.637.637 0 00-.83.22l-1.88 3.24a11.463 11.463 0 00-8.94 0L5.65 5.67a.643.643 0 00-.87-.2c-.28.18-.37.54-.22.83L6.4 9.48A10.78 10.78 0 001 18h22a10.78 10.78 0 00-5.4-8.52zM7 15.25a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zm10 0a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5z" + d: "M17.6 9.48l1.84-3.18c.16-.31.04-.69-.26-.85a.637.637 0 00-.83.22l-1.88 3.24a11.463 11.463 0 00-8.94 0L5.65 5.67a.643.643 0 00-.87-.2c-.28.18-.37.54-.22.83L6.4 9.48A10.78 10.78 0 001 18h22a10.78 10.78 0 00-5.4-8.52zM7 15.25a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zm10 0a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Animation.js b/icons/es5/Animation.js index 8c95c7f0c1..a5c4df106d 100644 --- a/icons/es5/Animation.js +++ b/icons/es5/Animation.js @@ -7,9 +7,11 @@ function SvgAnimation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78a7.062 7.062 0 00-3 3A7.014 7.014 0 002 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78a7.062 7.062 0 003-3A7.014 7.014 0 0022 9c0-3.87-3.13-7-7-7zM9 20a5.002 5.002 0 01-4-8c0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3a5.002 5.002 0 01-4-8c0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7a5.002 5.002 0 017 7z" + d: "M15 2c-2.71 0-5.05 1.54-6.22 3.78a7.062 7.062 0 00-3 3A7.014 7.014 0 002 15c0 3.87 3.13 7 7 7 2.71 0 5.05-1.54 6.22-3.78a7.062 7.062 0 003-3A7.014 7.014 0 0022 9c0-3.87-3.13-7-7-7zM9 20a5.002 5.002 0 01-4-8c0 3.87 3.13 7 7 7-.84.63-1.88 1-3 1zm3-3a5.002 5.002 0 01-4-8c0 3.86 3.13 6.99 7 7-.84.63-1.88 1-3 1zm4.7-3.3c-.53.19-1.1.3-1.7.3-2.76 0-5-2.24-5-5 0-.6.11-1.17.3-1.7.53-.19 1.1-.3 1.7-.3 2.76 0 5 2.24 5 5 0 .6-.11 1.17-.3 1.7zM19 12c0-3.86-3.13-6.99-7-7a5.002 5.002 0 017 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Announcement.js b/icons/es5/Announcement.js index cac45767d1..5c2b195375 100644 --- a/icons/es5/Announcement.js +++ b/icons/es5/Announcement.js @@ -7,9 +7,11 @@ function SvgAnnouncement(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2zm-9 9h-2V5h2v6zm0 4h-2v-2h2v2z" + d: "M22 2H2v20l4-4h16V2zm-9 9h-2V5h2v6zm0 4h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Aod.js b/icons/es5/Aod.js index dd79ece41c..af2aba9dd9 100644 --- a/icons/es5/Aod.js +++ b/icons/es5/Aod.js @@ -7,9 +7,11 @@ function SvgAod(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 1H5v22h14V1zm-2 17H7V6h10v12zm-9-8h8v1.5H8V10zm1 3h6v1.5H9V13z" + d: "M19 1H5v22h14V1zm-2 17H7V6h10v12zm-9-8h8v1.5H8V10zm1 3h6v1.5H9V13z", + fill: "currentColor" })); } diff --git a/icons/es5/Apartment.js b/icons/es5/Apartment.js index 7b11c5ce78..49728d3df0 100644 --- a/icons/es5/Apartment.js +++ b/icons/es5/Apartment.js @@ -7,9 +7,11 @@ function SvgApartment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z" + d: "M17 11V3H7v4H3v14h8v-4h2v4h8V11h-4zM7 19H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm4 4H9v-2h2v2zm0-4H9V9h2v2zm0-4H9V5h2v2zm4 8h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm4 12h-2v-2h2v2zm0-4h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Api.js b/icons/es5/Api.js index df4b4162eb..cb63e9e052 100644 --- a/icons/es5/Api.js +++ b/icons/es5/Api.js @@ -7,9 +7,11 @@ function SvgApi(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 12l-2 2-2-2 2-2 2 2zm-2-6l2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6l2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0l-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6l-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z" + d: "M14 12l-2 2-2-2 2-2 2 2zm-2-6l2.12 2.12 2.5-2.5L12 1 7.38 5.62l2.5 2.5L12 6zm-6 6l2.12-2.12-2.5-2.5L1 12l4.62 4.62 2.5-2.5L6 12zm12 0l-2.12 2.12 2.5 2.5L23 12l-4.62-4.62-2.5 2.5L18 12zm-6 6l-2.12-2.12-2.5 2.5L12 23l4.62-4.62-2.5-2.5L12 18z", + fill: "currentColor" })); } diff --git a/icons/es5/AppBlocking.js b/icons/es5/AppBlocking.js index c6ffc60f9c..2828482984 100644 --- a/icons/es5/AppBlocking.js +++ b/icons/es5/AppBlocking.js @@ -7,11 +7,14 @@ function SvgAppBlocking(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4A2.5 2.5 0 0118 9.5c.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15a2.5 2.5 0 01-2.5 2.5z" + d: "M18 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-2.5 4A2.5 2.5 0 0118 9.5c.42 0 .8.11 1.15.29l-3.36 3.36c-.18-.35-.29-.73-.29-1.15zm2.5 2.5c-.42 0-.8-.11-1.15-.29l3.36-3.36c.18.35.29.73.29 1.15a2.5 2.5 0 01-2.5 2.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M19 23v-6h-2v1H7V6h10v1h2V.94L5 1v22h14z" + d: "M19 23v-6h-2v1H7V6h10v1h2V.94L5 1v22h14z", + fill: "currentColor" })); } diff --git a/icons/es5/AppRegistration.js b/icons/es5/AppRegistration.js index 58a3105882..2b138608ea 100644 --- a/icons/es5/AppRegistration.js +++ b/icons/es5/AppRegistration.js @@ -7,9 +7,11 @@ function SvgAppRegistration(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm12 0h4v4h-4zm-5 13.86V20h2.1l5.98-5.97-2.12-2.12zm3-5.83V10h-4v4h2.03zm3.671-.824l1.415-1.414 2.12 2.12-1.413 1.415z" + d: "M10 4h4v4h-4zM4 16h4v4H4zm0-6h4v4H4zm0-6h4v4H4zm12 0h4v4h-4zm-5 13.86V20h2.1l5.98-5.97-2.12-2.12zm3-5.83V10h-4v4h2.03zm3.671-.824l1.415-1.414 2.12 2.12-1.413 1.415z", + fill: "currentColor" })); } diff --git a/icons/es5/AppSettingsAlt.js b/icons/es5/AppSettingsAlt.js index ce1841f4bf..27b3422bd4 100644 --- a/icons/es5/AppSettingsAlt.js +++ b/icons/es5/AppSettingsAlt.js @@ -7,9 +7,11 @@ function SvgAppSettingsAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.81 12.74l-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48a.395.395 0 00-.35-.2c-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01a.408.408 0 00-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38a.401.401 0 00-.5.17l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63a.39.39 0 00-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38a.401.401 0 00.5-.17l.85-1.48a.39.39 0 00-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 23V1h14v6h-2V6H7v12h10v-1h2v6H5z" + d: "M21.81 12.74l-.82-.63v-.22l.8-.63c.16-.12.2-.34.1-.51l-.85-1.48a.395.395 0 00-.35-.2c-.05 0-.1.01-.15.03l-.95.38c-.08-.05-.11-.07-.19-.11l-.15-1.01a.408.408 0 00-.4-.36h-1.71c-.2 0-.37.15-.4.34l-.14 1.01c-.03.02-.07.03-.1.05l-.09.06-.95-.38a.401.401 0 00-.5.17l-.85 1.48c-.1.17-.06.39.1.51l.8.63v.23l-.8.63a.39.39 0 00-.1.51l.85 1.48c.07.13.21.2.35.2.05 0 .1-.01.15-.03l.95-.37c.08.05.12.07.2.11l.15 1.01c.03.2.2.34.4.34h1.71c.2 0 .37-.15.4-.34l.15-1.01c.03-.02.07-.03.1-.05l.09-.06.95.38a.401.401 0 00.5-.17l.85-1.48a.39.39 0 00-.1-.51zM18 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 23V1h14v6h-2V6H7v12h10v-1h2v6H5z", + fill: "currentColor" })); } diff --git a/icons/es5/AppShortcut.js b/icons/es5/AppShortcut.js index aee9d061c3..ba468ba587 100644 --- a/icons/es5/AppShortcut.js +++ b/icons/es5/AppShortcut.js @@ -7,11 +7,14 @@ function SvgAppShortcut(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 18H7V6h10v1h2V1H5v22h14v-6h-2zm3.38-8.38L21 11l.62-1.38L23 9l-1.38-.62L21 7l-.62 1.38L19 9z" + d: "M17 18H7V6h10v1h2V1H5v22h14v-6h-2zm3.38-8.38L21 11l.62-1.38L23 9l-1.38-.62L21 7l-.62 1.38L19 9z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M16 8l-1.25 2.75L12 12l2.75 1.25L16 16l1.25-2.75L20 12l-2.75-1.25zm5 5l-.62 1.38L19 15l1.38.62L21 17l.62-1.38L23 15l-1.38-.62z" + d: "M16 8l-1.25 2.75L12 12l2.75 1.25L16 16l1.25-2.75L20 12l-2.75-1.25zm5 5l-.62 1.38L19 15l1.38.62L21 17l.62-1.38L23 15l-1.38-.62z", + fill: "currentColor" })); } diff --git a/icons/es5/Apple.js b/icons/es5/Apple.js index f5e640d075..ae3f69c60f 100644 --- a/icons/es5/Apple.js +++ b/icons/es5/Apple.js @@ -7,9 +7,11 @@ function SvgApple(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z" + d: "M17.05 20.28c-.98.95-2.05.8-3.08.35-1.09-.46-2.09-.48-3.24 0-1.44.62-2.2.44-3.06-.35C2.79 15.25 3.51 7.59 9.05 7.31c1.35.07 2.29.74 3.08.8 1.18-.24 2.31-.93 3.57-.84 1.51.12 2.65.72 3.4 1.8-3.12 1.87-2.38 5.98.48 7.13-.57 1.5-1.31 2.99-2.54 4.09l.01-.01zM12.03 7.25c-.15-2.23 1.66-4.07 3.74-4.25.29 2.58-2.34 4.5-3.74 4.25z", + fill: "currentColor" })); } diff --git a/icons/es5/Approval.js b/icons/es5/Approval.js index 2c73fc8918..435445b5af 100644 --- a/icons/es5/Approval.js +++ b/icons/es5/Approval.js @@ -7,9 +7,11 @@ function SvgApproval(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 14v8h16v-8H4zm14 4H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5z" + d: "M4 14v8h16v-8H4zm14 4H6v-2h12v2zM12 2C9.24 2 7 4.24 7 7l5 7 5-7c0-2.76-2.24-5-5-5z", + fill: "currentColor" })); } diff --git a/icons/es5/Apps.js b/icons/es5/Apps.js index 856ab1f034..b774f47e00 100644 --- a/icons/es5/Apps.js +++ b/icons/es5/Apps.js @@ -7,9 +7,11 @@ function SvgApps(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z" + d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6-10v4h4V4h-4zm-6 4h4V4h-4v4zm6 6h4v-4h-4v4zm0 6h4v-4h-4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/AppsOutage.js b/icons/es5/AppsOutage.js index e79e092a87..65e6e3b508 100644 --- a/icons/es5/AppsOutage.js +++ b/icons/es5/AppsOutage.js @@ -7,9 +7,11 @@ function SvgAppsOutage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6 6h4v-4h-4v4zm3-20c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V7h1v1zm0-2h-1V2h1v4zM16 14h4v-2.07c-.33.05-.66.07-1 .07-1.07 0-2.09-.24-3-.68V14zM10 4v4h2.68c-.44-.91-.68-1.93-.68-3 0-.34.02-.67.07-1H10z" + d: "M4 8h4V4H4v4zm6 12h4v-4h-4v4zm-6 0h4v-4H4v4zm0-6h4v-4H4v4zm6 0h4v-4h-4v4zm6 6h4v-4h-4v4zm3-20c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V7h1v1zm0-2h-1V2h1v4zM16 14h4v-2.07c-.33.05-.66.07-1 .07-1.07 0-2.09-.24-3-.68V14zM10 4v4h2.68c-.44-.91-.68-1.93-.68-3 0-.34.02-.67.07-1H10z", + fill: "currentColor" })); } diff --git a/icons/es5/Architecture.js b/icons/es5/Architecture.js index a994a77bc1..167a41acc4 100644 --- a/icons/es5/Architecture.js +++ b/icons/es5/Architecture.js @@ -7,9 +7,11 @@ function SvgArchitecture(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.36 18.78L6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M6.36 18.78L6.61 21l1.62-1.54 2.77-7.6c-.68-.17-1.28-.51-1.77-.98l-2.87 7.9zm8.41-7.9c-.49.47-1.1.81-1.77.98l2.77 7.6L17.39 21l.26-2.22-2.88-7.9zM15 8c0-1.3-.84-2.4-2-2.82V3h-2v2.18C9.84 5.6 9 6.7 9 8c0 1.66 1.34 3 3 3s3-1.34 3-3zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Archive.js b/icons/es5/Archive.js index e17975849b..cbfb6234d4 100644 --- a/icons/es5/Archive.js +++ b/icons/es5/Archive.js @@ -7,9 +7,11 @@ function SvgArchive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM12 17.5L6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z" + d: "M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM12 17.5L6.5 12H10v-2h4v2h3.5L12 17.5zM5.12 5l.81-1h12l.94 1H5.12z", + fill: "currentColor" })); } diff --git a/icons/es5/AreaChart.js b/icons/es5/AreaChart.js index bdb38af52f..4ebc175158 100644 --- a/icons/es5/AreaChart.js +++ b/icons/es5/AreaChart.js @@ -7,9 +7,11 @@ function SvgAreaChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 13v7h18v-1.5l-9-7L8 17l-5-4zm0-6l4 3 5-7 5 4h4v8.97l-9.4-7.31-3.98 5.48L3 10.44V7z" + d: "M3 13v7h18v-1.5l-9-7L8 17l-5-4zm0-6l4 3 5-7 5 4h4v8.97l-9.4-7.31-3.98 5.48L3 10.44V7z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowBackIosNew.js b/icons/es5/ArrowBackIosNew.js index 182d05fbf7..78fe35f2f7 100644 --- a/icons/es5/ArrowBackIosNew.js +++ b/icons/es5/ArrowBackIosNew.js @@ -7,9 +7,11 @@ function SvgArrowBackIosNew(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.77 3.77L16 2 6 12l10 10 1.77-1.77L9.54 12z" + d: "M17.77 3.77L16 2 6 12l10 10 1.77-1.77L9.54 12z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowCircleDown.js b/icons/es5/ArrowCircleDown.js index 458b98de13..4dc97e4d26 100644 --- a/icons/es5/ArrowCircleDown.js +++ b/icons/es5/ArrowCircleDown.js @@ -7,9 +7,11 @@ function SvgArrowCircleDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z" + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8-8-3.59-8-8 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 10V8h-2v4H8l4 4 4-4h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowCircleLeft.js b/icons/es5/ArrowCircleLeft.js index 4d1c1f5596..316541ee1e 100644 --- a/icons/es5/ArrowCircleLeft.js +++ b/icons/es5/ArrowCircleLeft.js @@ -7,9 +7,11 @@ function SvgArrowCircleLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 12c0 5.52 4.48 10 10 10s10-4.48 10-10S17.52 2 12 2 2 6.48 2 12zm10-1h4v2h-4v3l-4-4 4-4v3z" + d: "M2 12c0 5.52 4.48 10 10 10s10-4.48 10-10S17.52 2 12 2 2 6.48 2 12zm10-1h4v2h-4v3l-4-4 4-4v3z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowCircleRight.js b/icons/es5/ArrowCircleRight.js index 80f620fc0b..7b501b0669 100644 --- a/icons/es5/ArrowCircleRight.js +++ b/icons/es5/ArrowCircleRight.js @@ -7,9 +7,11 @@ function SvgArrowCircleRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-10 1H8v-2h4V8l4 4-4 4v-3z" + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-10 1H8v-2h4V8l4 4-4 4v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowCircleUp.js b/icons/es5/ArrowCircleUp.js index fd81fdced0..be023d0559 100644 --- a/icons/es5/ArrowCircleUp.js +++ b/icons/es5/ArrowCircleUp.js @@ -7,9 +7,11 @@ function SvgArrowCircleUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z" + d: "M12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8m0 2c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm-1-10v4h2v-4h3l-4-4-4 4h3z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowDownward.js b/icons/es5/ArrowDownward.js index a76fd8ce15..06d4623101 100644 --- a/icons/es5/ArrowDownward.js +++ b/icons/es5/ArrowDownward.js @@ -7,9 +7,11 @@ function SvgArrowDownward(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z" + d: "M20 12l-1.41-1.41L13 16.17V4h-2v12.17l-5.58-5.59L4 12l8 8 8-8z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowLeft.js b/icons/es5/ArrowLeft.js index 4797d192c8..4377bbc83e 100644 --- a/icons/es5/ArrowLeft.js +++ b/icons/es5/ArrowLeft.js @@ -7,9 +7,11 @@ function SvgArrowLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 7l-5 5 5 5V7z" + d: "M14 7l-5 5 5 5V7z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowOutward.js b/icons/es5/ArrowOutward.js index 154f07b8d9..d2b76cb53d 100644 --- a/icons/es5/ArrowOutward.js +++ b/icons/es5/ArrowOutward.js @@ -7,9 +7,11 @@ function SvgArrowOutward(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 6v2h8.59L5 17.59 6.41 19 16 9.41V18h2V6z" + d: "M6 6v2h8.59L5 17.59 6.41 19 16 9.41V18h2V6z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowRight.js b/icons/es5/ArrowRight.js index de86081abf..6bb55df398 100644 --- a/icons/es5/ArrowRight.js +++ b/icons/es5/ArrowRight.js @@ -7,9 +7,11 @@ function SvgArrowRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 17l5-5-5-5v10z" + d: "M10 17l5-5-5-5v10z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowRightAlt.js b/icons/es5/ArrowRightAlt.js index bc530ec5c3..86f3075733 100644 --- a/icons/es5/ArrowRightAlt.js +++ b/icons/es5/ArrowRightAlt.js @@ -7,9 +7,11 @@ function SvgArrowRightAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z" + d: "M16.01 11H4v2h12.01v3L20 12l-3.99-4v3z", + fill: "currentColor" })); } diff --git a/icons/es5/ArrowUpward.js b/icons/es5/ArrowUpward.js index b2f722cf83..0100ab1336 100644 --- a/icons/es5/ArrowUpward.js +++ b/icons/es5/ArrowUpward.js @@ -7,9 +7,11 @@ function SvgArrowUpward(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z" + d: "M4 12l1.41 1.41L11 7.83V20h2V7.83l5.58 5.59L20 12l-8-8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/ArtTrack.js b/icons/es5/ArtTrack.js index 71eb6b7858..ae20734a1c 100644 --- a/icons/es5/ArtTrack.js +++ b/icons/es5/ArtTrack.js @@ -7,9 +7,11 @@ function SvgArtTrack(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zM12 7v10H2V7h10zm-1.5 8l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z" + d: "M22 13h-8v-2h8v2zm0-6h-8v2h8V7zm-8 10h8v-2h-8v2zM12 7v10H2V7h10zm-1.5 8l-2.25-3-1.75 2.26-1.25-1.51L3.5 15h7z", + fill: "currentColor" })); } diff --git a/icons/es5/AspectRatio.js b/icons/es5/AspectRatio.js index e8378e6558..9c496252bd 100644 --- a/icons/es5/AspectRatio.js +++ b/icons/es5/AspectRatio.js @@ -7,9 +7,11 @@ function SvgAspectRatio(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm16-6H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" + d: "M19 12h-2v3h-3v2h5v-5zM7 9h3V7H5v5h2V9zm16-6H1v18h22V3zm-2 16.01H3V4.99h18v14.02z", + fill: "currentColor" })); } diff --git a/icons/es5/Assessment.js b/icons/es5/Assessment.js index d9ff5a3360..e61f996db5 100644 --- a/icons/es5/Assessment.js +++ b/icons/es5/Assessment.js @@ -7,9 +7,11 @@ function SvgAssessment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" + d: "M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/AssignmentInd.js b/icons/es5/AssignmentInd.js index 1a5bd7f3eb..d1a6dab43c 100644 --- a/icons/es5/AssignmentInd.js +++ b/icons/es5/AssignmentInd.js @@ -7,9 +7,11 @@ function SvgAssignmentInd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z" + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 4c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1.4c0-2 4-3.1 6-3.1s6 1.1 6 3.1V19z", + fill: "currentColor" })); } diff --git a/icons/es5/AssignmentLate.js b/icons/es5/AssignmentLate.js index cb47b191d8..1ea75d56bf 100644 --- a/icons/es5/AssignmentLate.js +++ b/icons/es5/AssignmentLate.js @@ -7,9 +7,11 @@ function SvgAssignmentLate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-8 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-8 15h-2v-2h2v2zm0-4h-2V8h2v6zm-1-9c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/AssignmentReturn.js b/icons/es5/AssignmentReturn.js index 78e56bb90e..9762c0074b 100644 --- a/icons/es5/AssignmentReturn.js +++ b/icons/es5/AssignmentReturn.js @@ -7,9 +7,11 @@ function SvgAssignmentReturn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z" + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm4 12h-4v3l-5-5 5-5v3h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/AssignmentReturned.js b/icons/es5/AssignmentReturned.js index 2d93d8cb19..3ed8f1bbf5 100644 --- a/icons/es5/AssignmentReturned.js +++ b/icons/es5/AssignmentReturned.js @@ -7,9 +7,11 @@ function SvgAssignmentReturned(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15l-5-5h3V9h4v4h3l-5 5z" + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm0 15l-5-5h3V9h4v4h3l-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/AssignmentTurnedIn.js b/icons/es5/AssignmentTurnedIn.js index 71ff913663..0d12f3dbed 100644 --- a/icons/es5/AssignmentTurnedIn.js +++ b/icons/es5/AssignmentTurnedIn.js @@ -7,9 +7,11 @@ function SvgAssignmentTurnedIn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-2 14l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/AssistWalker.js b/icons/es5/AssistWalker.js index b94db4ccab..ca92f917ca 100644 --- a/icons/es5/AssistWalker.js +++ b/icons/es5/AssistWalker.js @@ -7,13 +7,15 @@ function SvgAssistWalker(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12.5, cy: 4.5, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M19.77 17.72L19 10h-3c-1.5-.02-2.86-.54-3.76-1.44l-2-1.98A1.95 1.95 0 008.83 6c-.51 0-1.02.2-1.41.59l-4.2 4.17 2.08 4.07-3.15 4.05 1.57 1.24 3.68-4.73-.17-1.36.77.72V20h2v-6.12l-2.12-2.12 2.36-2.36c.94.94 1.72 1.82 3.59 2.32L13 20h1.5l.41-3.5h3.18l.14 1.22c-.44.26-.73.74-.73 1.28 0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-.54-.29-1.02-.73-1.28zM15.09 15l.41-3.5h2l.41 3.5h-2.82z" + d: "M19.77 17.72L19 10h-3c-1.5-.02-2.86-.54-3.76-1.44l-2-1.98A1.95 1.95 0 008.83 6c-.51 0-1.02.2-1.41.59l-4.2 4.17 2.08 4.07-3.15 4.05 1.57 1.24 3.68-4.73-.17-1.36.77.72V20h2v-6.12l-2.12-2.12 2.36-2.36c.94.94 1.72 1.82 3.59 2.32L13 20h1.5l.41-3.5h3.18l.14 1.22c-.44.26-.73.74-.73 1.28 0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5c0-.54-.29-1.02-.73-1.28zM15.09 15l.41-3.5h2l.41 3.5h-2.82z", + fill: "currentColor" })); } diff --git a/icons/es5/Assistant.js b/icons/es5/Assistant.js index 37d07dc2ae..e3e553638a 100644 --- a/icons/es5/Assistant.js +++ b/icons/es5/Assistant.js @@ -7,9 +7,11 @@ function SvgAssistant(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 2H3v18h6l3 3 3-3h6V2zm-7.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z" + d: "M21 2H3v18h6l3 3 3-3h6V2zm-7.12 10.88L12 17l-1.88-4.12L6 11l4.12-1.88L12 5l1.88 4.12L18 11l-4.12 1.88z", + fill: "currentColor" })); } diff --git a/icons/es5/AssistantDirection.js b/icons/es5/AssistantDirection.js index 81f2bfd90e..0f078cbf5f 100644 --- a/icons/es5/AssistantDirection.js +++ b/icons/es5/AssistantDirection.js @@ -7,9 +7,11 @@ function SvgAssistantDirection(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5 10H8v5h2v-3h3.5v2.5L17 11l-3.5-3.5V10zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm8.31 11l-8.34 8.37L3.62 12l8.34-8.37L20.31 12z" + d: "M13.5 10H8v5h2v-3h3.5v2.5L17 11l-3.5-3.5V10zM12 1C5.9 1 1 5.9 1 12s4.9 11 11 11 11-4.9 11-11S18.1 1 12 1zm8.31 11l-8.34 8.37L3.62 12l8.34-8.37L20.31 12z", + fill: "currentColor" })); } diff --git a/icons/es5/AssistantPhoto.js b/icons/es5/AssistantPhoto.js index a924c0868e..b2693e8f65 100644 --- a/icons/es5/AssistantPhoto.js +++ b/icons/es5/AssistantPhoto.js @@ -7,9 +7,11 @@ function SvgAssistantPhoto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z" + d: "M14.4 6L14 4H5v17h2v-7h5.6l.4 2h7V6h-5.6z", + fill: "currentColor" })); } diff --git a/icons/es5/AssuredWorkload.js b/icons/es5/AssuredWorkload.js index 09402a5ae4..9dae0f3ea0 100644 --- a/icons/es5/AssuredWorkload.js +++ b/icons/es5/AssuredWorkload.js @@ -7,9 +7,11 @@ function SvgAssuredWorkload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 10h2v7H5zm6 0h2v7h-2zm11-4L12 1 2 6v2h20zM2 19v2h12.4c-.21-.64-.32-1.31-.36-2H2zm17-6.74V10h-2v3.26zM20 14l-4 2v2.55c0 2.52 1.71 4.88 4 5.45 2.29-.57 4-2.93 4-5.45V16l-4-2zm-.72 7l-2.03-2.03 1.06-1.06.97.97 2.41-2.38 1.06 1.06L19.28 21z" + d: "M5 10h2v7H5zm6 0h2v7h-2zm11-4L12 1 2 6v2h20zM2 19v2h12.4c-.21-.64-.32-1.31-.36-2H2zm17-6.74V10h-2v3.26zM20 14l-4 2v2.55c0 2.52 1.71 4.88 4 5.45 2.29-.57 4-2.93 4-5.45V16l-4-2zm-.72 7l-2.03-2.03 1.06-1.06.97.97 2.41-2.38 1.06 1.06L19.28 21z", + fill: "currentColor" })); } diff --git a/icons/es5/Atm.js b/icons/es5/Atm.js index c89bd395d0..159ea28c7b 100644 --- a/icons/es5/Atm.js +++ b/icons/es5/Atm.js @@ -7,9 +7,11 @@ function SvgAtm(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM7 9H2v6h1.5v-1.5h2V15H7V9zm-1.5 3h-2v-1.5h2V12zM22 9h-6.5v6H17v-4.5h1V14h1.5v-3.51h1V15H22V9z" + d: "M8 9v1.5h2.25V15h1.5v-4.5H14V9H8zM7 9H2v6h1.5v-1.5h2V15H7V9zm-1.5 3h-2v-1.5h2V12zM22 9h-6.5v6H17v-4.5h1V14h1.5v-3.51h1V15H22V9z", + fill: "currentColor" })); } diff --git a/icons/es5/AttachEmail.js b/icons/es5/AttachEmail.js index 6ccb41ddaa..fbf656464c 100644 --- a/icons/es5/AttachEmail.js +++ b/icons/es5/AttachEmail.js @@ -7,11 +7,14 @@ function SvgAttachEmail(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 10V2H1v16h13v-5c0-1.66 1.34-3 3-3h4zm-10 1L3 6V4l8 5 8-5v2l-8 5z" + d: "M21 10V2H1v16h13v-5c0-1.66 1.34-3 3-3h4zm-10 1L3 6V4l8 5 8-5v2l-8 5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5a2.5 2.5 0 00-5 0V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z" + d: "M21 14v4c0 1.1-.9 2-2 2s-2-.9-2-2v-4.5c0-.28.22-.5.5-.5s.5.22.5.5V18h2v-4.5a2.5 2.5 0 00-5 0V18c0 2.21 1.79 4 4 4s4-1.79 4-4v-4h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/AttachFile.js b/icons/es5/AttachFile.js index 654bc7bf9b..366b52145f 100644 --- a/icons/es5/AttachFile.js +++ b/icons/es5/AttachFile.js @@ -7,9 +7,11 @@ function SvgAttachFile(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5a2.5 2.5 0 015 0v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5a2.5 2.5 0 005 0V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z" + d: "M16.5 6v11.5c0 2.21-1.79 4-4 4s-4-1.79-4-4V5a2.5 2.5 0 015 0v10.5c0 .55-.45 1-1 1s-1-.45-1-1V6H10v9.5a2.5 2.5 0 005 0V5c0-2.21-1.79-4-4-4S7 2.79 7 5v12.5c0 3.04 2.46 5.5 5.5 5.5s5.5-2.46 5.5-5.5V6h-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/AttachMoney.js b/icons/es5/AttachMoney.js index acac54b2ad..74ad2ed4f9 100644 --- a/icons/es5/AttachMoney.js +++ b/icons/es5/AttachMoney.js @@ -7,9 +7,11 @@ function SvgAttachMoney(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z" + d: "M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z", + fill: "currentColor" })); } diff --git a/icons/es5/Attachment.js b/icons/es5/Attachment.js index 372de8c340..6da07fe384 100644 --- a/icons/es5/Attachment.js +++ b/icons/es5/Attachment.js @@ -7,9 +7,11 @@ function SvgAttachment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5a2.5 2.5 0 010 5H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9a2.5 2.5 0 000 5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z" + d: "M18.5 16H7c-2.21 0-4-1.79-4-4s1.79-4 4-4h12.5a2.5 2.5 0 010 5H9c-.55 0-1-.45-1-1s.45-1 1-1h9.5V9.5H9a2.5 2.5 0 000 5h10.5c2.21 0 4-1.79 4-4s-1.79-4-4-4H7c-3.04 0-5.5 2.46-5.5 5.5s2.46 5.5 5.5 5.5h11.5V16z", + fill: "currentColor" })); } diff --git a/icons/es5/Attractions.js b/icons/es5/Attractions.js index 9d4b5f5637..279265b986 100644 --- a/icons/es5/Attractions.js +++ b/icons/es5/Attractions.js @@ -7,9 +7,11 @@ function SvgAttractions(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.44 18.75c.37-.46.94-.75 1.57-.75s1.19.29 1.56.75c.39-.09.76-.21 1.12-.36l-1.42-3.18a3.522 3.522 0 01-2.56-.02l-1.43 3.19c.37.16.75.29 1.16.37zM5.16 10a7.06 7.06 0 00.08 4c.63.05 1.22.4 1.56.99.33.57.35 1.23.11 1.79.27.27.56.53.87.76l1.52-3.39c-.47-.58-.75-1.32-.75-2.13 0-1.89 1.55-3.41 3.46-3.41s3.46 1.53 3.46 3.41c0 .82-.29 1.57-.78 2.16l1.5 3.35c.32-.24.62-.5.9-.79-.22-.55-.2-1.2.12-1.75.33-.57.9-.92 1.52-.99a7.025 7.025 0 00.09-4.02c-.64-.04-1.26-.39-1.6-1-.36-.62-.35-1.36-.03-1.95-.91-.98-2.1-1.71-3.44-2.05C13.4 5.6 12.74 6 12.01 6s-1.39-.41-1.74-1.01a7.053 7.053 0 00-3.44 2.03c.33.6.35 1.35-.02 1.98-.36.62-.99.97-1.65 1zm-1.3-.42c-.78-.6-1.02-1.7-.51-2.58s1.58-1.23 2.49-.85a8.53 8.53 0 014.18-2.42c.13-.98.97-1.73 1.99-1.73s1.85.75 1.98 1.73c1.63.39 3.07 1.24 4.18 2.42a1.99 1.99 0 012.49.85c.51.88.27 1.98-.51 2.58.23.77.35 1.58.35 2.42s-.12 1.65-.35 2.42c.78.6 1.02 1.7.51 2.58s-1.58 1.23-2.49.85c-.4.43-.85.81-1.34 1.15l1.34 3h-1.86l-.97-2.17c-.43.18-.88.33-1.34.44-.14.98-.98 1.73-1.99 1.73s-1.85-.75-1.98-1.73c-.48-.12-.94-.27-1.38-.46L7.66 22H5.79l1.36-3.03a8.72 8.72 0 01-1.3-1.12c-.92.38-1.99.03-2.5-.85s-.27-1.98.51-2.58c-.24-.77-.35-1.58-.35-2.42s.11-1.65.35-2.42z" + d: "M10.44 18.75c.37-.46.94-.75 1.57-.75s1.19.29 1.56.75c.39-.09.76-.21 1.12-.36l-1.42-3.18a3.522 3.522 0 01-2.56-.02l-1.43 3.19c.37.16.75.29 1.16.37zM5.16 10a7.06 7.06 0 00.08 4c.63.05 1.22.4 1.56.99.33.57.35 1.23.11 1.79.27.27.56.53.87.76l1.52-3.39c-.47-.58-.75-1.32-.75-2.13 0-1.89 1.55-3.41 3.46-3.41s3.46 1.53 3.46 3.41c0 .82-.29 1.57-.78 2.16l1.5 3.35c.32-.24.62-.5.9-.79-.22-.55-.2-1.2.12-1.75.33-.57.9-.92 1.52-.99a7.025 7.025 0 00.09-4.02c-.64-.04-1.26-.39-1.6-1-.36-.62-.35-1.36-.03-1.95-.91-.98-2.1-1.71-3.44-2.05C13.4 5.6 12.74 6 12.01 6s-1.39-.41-1.74-1.01a7.053 7.053 0 00-3.44 2.03c.33.6.35 1.35-.02 1.98-.36.62-.99.97-1.65 1zm-1.3-.42c-.78-.6-1.02-1.7-.51-2.58s1.58-1.23 2.49-.85a8.53 8.53 0 014.18-2.42c.13-.98.97-1.73 1.99-1.73s1.85.75 1.98 1.73c1.63.39 3.07 1.24 4.18 2.42a1.99 1.99 0 012.49.85c.51.88.27 1.98-.51 2.58.23.77.35 1.58.35 2.42s-.12 1.65-.35 2.42c.78.6 1.02 1.7.51 2.58s-1.58 1.23-2.49.85c-.4.43-.85.81-1.34 1.15l1.34 3h-1.86l-.97-2.17c-.43.18-.88.33-1.34.44-.14.98-.98 1.73-1.99 1.73s-1.85-.75-1.98-1.73c-.48-.12-.94-.27-1.38-.46L7.66 22H5.79l1.36-3.03a8.72 8.72 0 01-1.3-1.12c-.92.38-1.99.03-2.5-.85s-.27-1.98.51-2.58c-.24-.77-.35-1.58-.35-2.42s.11-1.65.35-2.42z", + fill: "currentColor" })); } diff --git a/icons/es5/Attribution.js b/icons/es5/Attribution.js index 9c356ae431..84793fa118 100644 --- a/icons/es5/Attribution.js +++ b/icons/es5/Attribution.js @@ -7,9 +7,11 @@ function SvgAttribution(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-2.75-5.5h1.5V19h2.5v-4.5h1.5v-6h-5.5z" + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm-2.75-5.5h1.5V19h2.5v-4.5h1.5v-6h-5.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 6.5, diff --git a/icons/es5/AudioFile.js b/icons/es5/AudioFile.js index 84c4771a15..a839eff109 100644 --- a/icons/es5/AudioFile.js +++ b/icons/es5/AudioFile.js @@ -7,9 +7,11 @@ function SvgAudioFile(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm2 11h-3v3.75c0 1.24-1.01 2.25-2.25 2.25S8.5 17.99 8.5 16.75s1.01-2.25 2.25-2.25c.46 0 .89.14 1.25.38V11h4v2zm-3-4V3.5L18.5 9H13z" + d: "M14 2H4v20h16V8l-6-6zm2 11h-3v3.75c0 1.24-1.01 2.25-2.25 2.25S8.5 17.99 8.5 16.75s1.01-2.25 2.25-2.25c.46 0 .89.14 1.25.38V11h4v2zm-3-4V3.5L18.5 9H13z", + fill: "currentColor" })); } diff --git a/icons/es5/Audiotrack.js b/icons/es5/Audiotrack.js index 849f4bacd0..6f42ce263f 100644 --- a/icons/es5/Audiotrack.js +++ b/icons/es5/Audiotrack.js @@ -7,9 +7,11 @@ function SvgAudiotrack(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" + d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoAwesome.js b/icons/es5/AutoAwesome.js index 10c1462b37..aca895f017 100644 --- a/icons/es5/AutoAwesome.js +++ b/icons/es5/AutoAwesome.js @@ -7,9 +7,11 @@ function SvgAutoAwesome(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9l1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z" + d: "M19 9l1.25-2.75L23 5l-2.75-1.25L19 1l-1.25 2.75L15 5l2.75 1.25L19 9zm-7.5.5L9 4 6.5 9.5 1 12l5.5 2.5L9 20l2.5-5.5L17 12l-5.5-2.5zM19 15l-1.25 2.75L15 19l2.75 1.25L19 23l1.25-2.75L23 19l-2.75-1.25L19 15z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoAwesomeMosaic.js b/icons/es5/AutoAwesomeMosaic.js index fadbbd22b8..6ac3abd1ba 100644 --- a/icons/es5/AutoAwesomeMosaic.js +++ b/icons/es5/AutoAwesomeMosaic.js @@ -7,9 +7,11 @@ function SvgAutoAwesomeMosaic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 21h8V3H3v18zM21 3h-8v8h8V3zm-8 18h8v-8h-8v8z" + d: "M3 21h8V3H3v18zM21 3h-8v8h8V3zm-8 18h8v-8h-8v8z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoAwesomeMotion.js b/icons/es5/AutoAwesomeMotion.js index 368353c62c..1b7654630d 100644 --- a/icons/es5/AutoAwesomeMotion.js +++ b/icons/es5/AutoAwesomeMotion.js @@ -7,9 +7,11 @@ function SvgAutoAwesomeMotion(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H2v12h2V4h10V2zm4 4H6v12h2V8h10V6zm4 4H10v12h12V10z" + d: "M14 2H2v12h2V4h10V2zm4 4H6v12h2V8h10V6zm4 4H10v12h12V10z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoDelete.js b/icons/es5/AutoDelete.js index bf8c38e955..a162e3f399 100644 --- a/icons/es5/AutoDelete.js +++ b/icons/es5/AutoDelete.js @@ -7,11 +7,14 @@ function SvgAutoDelete(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v14h7.68A6.999 6.999 0 0023 16c0-3.87-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + d: "M15 2h-3.5l-1-1h-5l-1 1H1v2h14zm1 7c-.7 0-1.37.1-2 .29V5H2v14h7.68A6.999 6.999 0 0023 16c0-3.87-3.13-7-7-7zm0 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z" + d: "M16.5 12H15v5l3.6 2.1.8-1.2-2.9-1.7z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoFixHigh.js b/icons/es5/AutoFixHigh.js index 95345a5f89..91ae4f18f2 100644 --- a/icons/es5/AutoFixHigh.js +++ b/icons/es5/AutoFixHigh.js @@ -7,9 +7,11 @@ function SvgAutoFixHigh(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 7l.94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zM8.5 7l.94-2.06L11.5 4l-2.06-.94L8.5 1l-.94 2.06L5.5 4l2.06.94zM20 12.5l-.94 2.06-2.06.94 2.06.94.94 2.06.94-2.06L23 15.5l-2.06-.94zm-1.59-2.67l-4.24-4.24L1.59 18.17l4.24 4.24L18.41 9.83zm-4.2 1.38L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" + d: "M20 7l.94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zM8.5 7l.94-2.06L11.5 4l-2.06-.94L8.5 1l-.94 2.06L5.5 4l2.06.94zM20 12.5l-.94 2.06-2.06.94 2.06.94.94 2.06.94-2.06L23 15.5l-2.06-.94zm-1.59-2.67l-4.24-4.24L1.59 18.17l4.24 4.24L18.41 9.83zm-4.2 1.38L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoFixNormal.js b/icons/es5/AutoFixNormal.js index ec70c3bb04..73d0db5957 100644 --- a/icons/es5/AutoFixNormal.js +++ b/icons/es5/AutoFixNormal.js @@ -7,9 +7,11 @@ function SvgAutoFixNormal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 7l.94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-1.59 2.83l-4.24-4.24L1.59 18.17l4.24 4.24L18.41 9.83zm-4.2 1.38L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z" + d: "M20 7l.94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-1.59 2.83l-4.24-4.24L1.59 18.17l4.24 4.24L18.41 9.83zm-4.2 1.38L12.8 9.8l1.38-1.38 1.41 1.41-1.38 1.38z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoFixOff.js b/icons/es5/AutoFixOff.js index 844430817b..f73773988d 100644 --- a/icons/es5/AutoFixOff.js +++ b/icons/es5/AutoFixOff.js @@ -7,9 +7,11 @@ function SvgAutoFixOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 7l.94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-5.83 1.42l1.41 1.41-1.46 1.46 1.42 1.42 2.87-2.88-4.24-4.24-2.88 2.87 1.42 1.42zM1.39 4.22l7.07 7.07-6.87 6.88 4.24 4.24 6.88-6.87 7.07 7.07 1.41-1.42L2.81 2.81z" + d: "M20 7l.94-2.06L23 4l-2.06-.94L20 1l-.94 2.06L17 4l2.06.94zm-5.83 1.42l1.41 1.41-1.46 1.46 1.42 1.42 2.87-2.88-4.24-4.24-2.88 2.87 1.42 1.42zM1.39 4.22l7.07 7.07-6.87 6.88 4.24 4.24 6.88-6.87 7.07 7.07 1.41-1.42L2.81 2.81z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoGraph.js b/icons/es5/AutoGraph.js index 03610bc6d2..1acbb1d151 100644 --- a/icons/es5/AutoGraph.js +++ b/icons/es5/AutoGraph.js @@ -7,9 +7,11 @@ function SvgAutoGraph(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.06 9.94L12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5l1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5l6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z" + d: "M14.06 9.94L12 9l2.06-.94L15 6l.94 2.06L18 9l-2.06.94L15 12l-.94-2.06zM4 14l.94-2.06L7 11l-2.06-.94L4 8l-.94 2.06L1 11l2.06.94L4 14zm4.5-5l1.09-2.41L12 5.5 9.59 4.41 8.5 2 7.41 4.41 5 5.5l2.41 1.09L8.5 9zm-4 11.5l6-6.01 4 4L23 8.93l-1.41-1.41-7.09 7.97-4-4L3 19l1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoMode.js b/icons/es5/AutoMode.js index 772ac7717f..7c77b52e2b 100644 --- a/icons/es5/AutoMode.js +++ b/icons/es5/AutoMode.js @@ -7,11 +7,14 @@ function SvgAutoMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.03 3.56c-1.67-1.39-3.74-2.3-6.03-2.51v2.01c1.73.19 3.31.88 4.61 1.92l1.42-1.42zM11 3.06V1.05c-2.29.2-4.36 1.12-6.03 2.51l1.42 1.42A8.928 8.928 0 0111 3.06zM4.98 6.39L3.56 4.97C2.17 6.64 1.26 8.71 1.05 11h2.01c.19-1.73.88-3.31 1.92-4.61zM20.94 11h2.01c-.21-2.29-1.12-4.36-2.51-6.03l-1.42 1.42A8.928 8.928 0 0120.94 11zM7 12l3.44 1.56L12 17l1.56-3.44L17 12l-3.44-1.56L12 7l-1.56 3.44z" + d: "M19.03 3.56c-1.67-1.39-3.74-2.3-6.03-2.51v2.01c1.73.19 3.31.88 4.61 1.92l1.42-1.42zM11 3.06V1.05c-2.29.2-4.36 1.12-6.03 2.51l1.42 1.42A8.928 8.928 0 0111 3.06zM4.98 6.39L3.56 4.97C2.17 6.64 1.26 8.71 1.05 11h2.01c.19-1.73.88-3.31 1.92-4.61zM20.94 11h2.01c-.21-2.29-1.12-4.36-2.51-6.03l-1.42 1.42A8.928 8.928 0 0120.94 11zM7 12l3.44 1.56L12 17l1.56-3.44L17 12l-3.44-1.56L12 7l-1.56 3.44z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 21a8.96 8.96 0 01-7.46-4H7v-2H1v6h2v-2.7c1.99 2.84 5.27 4.7 9 4.7 4.87 0 9-3.17 10.44-7.56l-1.96-.45C19.25 18.48 15.92 21 12 21z" + d: "M12 21a8.96 8.96 0 01-7.46-4H7v-2H1v6h2v-2.7c1.99 2.84 5.27 4.7 9 4.7 4.87 0 9-3.17 10.44-7.56l-1.96-.45C19.25 18.48 15.92 21 12 21z", + fill: "currentColor" })); } diff --git a/icons/es5/AutoStories.js b/icons/es5/AutoStories.js index 42b0c19def..87e0294a72 100644 --- a/icons/es5/AutoStories.js +++ b/icons/es5/AutoStories.js @@ -7,11 +7,14 @@ function SvgAutoStories(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 4.6v12.02c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4S2.62 4.55 1 5.48V20c1.52-1.18 3.43-2 5.5-2s3.98.82 5.5 2c1.52-1.18 3.43-2 5.5-2s3.98.82 5.5 2V5.48c-.63-.36-1.3-.64-2-.88z" + d: "M21 4.6v12.02c-1.14-.41-2.31-.62-3.5-.62-1.9 0-3.78.54-5.5 1.58V5.48C10.38 4.55 8.51 4 6.5 4S2.62 4.55 1 5.48V20c1.52-1.18 3.43-2 5.5-2s3.98.82 5.5 2c1.52-1.18 3.43-2 5.5-2s3.98.82 5.5 2V5.48c-.63-.36-1.3-.64-2-.88z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M19 .5l-5 5V15l5-4.5z" + d: "M19 .5l-5 5V15l5-4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/AutofpsSelect.js b/icons/es5/AutofpsSelect.js index 85f928886e..0167ab29e3 100644 --- a/icons/es5/AutofpsSelect.js +++ b/icons/es5/AutofpsSelect.js @@ -7,11 +7,14 @@ function SvgAutofpsSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z" + d: "M12.03 6.3h-.06l-1.02 2.89h2.1zM3 17h2v5H3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z" + d: "M12 15c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.63-10h1.25l2.63 7h-1.21l-.63-1.79h-2.83L9.96 12H8.74l2.63-7zM7 17h2v5H7zm4 0h2v5h-2zm4 0h6v5h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/Autorenew.js b/icons/es5/Autorenew.js index 23c1953c70..5f0090d550 100644 --- a/icons/es5/Autorenew.js +++ b/icons/es5/Autorenew.js @@ -7,9 +7,11 @@ function SvgAutorenew(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8A5.87 5.87 0 016 12c0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z" + d: "M12 6v3l4-4-4-4v3c-4.42 0-8 3.58-8 8 0 1.57.46 3.03 1.24 4.26L6.7 14.8A5.87 5.87 0 016 12c0-3.31 2.69-6 6-6zm6.76 1.74L17.3 9.2c.44.84.7 1.79.7 2.8 0 3.31-2.69 6-6 6v-3l-4 4 4 4v-3c4.42 0 8-3.58 8-8 0-1.57-.46-3.03-1.24-4.26z", + fill: "currentColor" })); } diff --git a/icons/es5/AvTimer.js b/icons/es5/AvTimer.js index d83288dd22..92af98ce8f 100644 --- a/icons/es5/AvTimer.js +++ b/icons/es5/AvTimer.js @@ -7,9 +7,11 @@ function SvgAvTimer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9a9 9 0 000-18h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z" + d: "M11 17c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1zm0-14v4h2V5.08c3.39.49 6 3.39 6 6.92 0 3.87-3.13 7-7 7s-7-3.13-7-7c0-1.68.59-3.22 1.58-4.42L12 13l1.41-1.41-6.8-6.8v.02C4.42 6.45 3 9.05 3 12c0 4.97 4.02 9 9 9a9 9 0 000-18h-1zm7 9c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zM6 12c0 .55.45 1 1 1s1-.45 1-1-.45-1-1-1-1 .45-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/BabyChangingStation.js b/icons/es5/BabyChangingStation.js index ae41ef7fe2..b458e2c397 100644 --- a/icons/es5/BabyChangingStation.js +++ b/icons/es5/BabyChangingStation.js @@ -7,9 +7,11 @@ function SvgBabyChangingStation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63A2 2 0 016.46 6c.28 0 .56.05.84.18l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 13v-2H9v2h2v3h6v-5h-2v2h-2z" + d: "M14 8v2h-3L8.31 8.82 7 12.75V22H3V12l1.58-4.63A2 2 0 016.46 6c.28 0 .56.05.84.18l4.15 1.83L14 8zM8 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm1 18h12v-2H9v2zm10.5-3c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM13 13v-2H9v2h2v3h6v-5h-2v2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/BackHand.js b/icons/es5/BackHand.js index 662acca198..a6d267cabc 100644 --- a/icons/es5/BackHand.js +++ b/icons/es5/BackHand.js @@ -7,9 +7,11 @@ function SvgBackHand(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.21 10.47L5 9.36 7.25 15H8V2h2.5v10h1V0H14v12h1V1.5h2.5V12h1V4.5H21V16c0 4.42-3.58 8-8 8-3.26 0-6.19-1.99-7.4-5.02l-3.39-8.51z" + d: "M2.21 10.47L5 9.36 7.25 15H8V2h2.5v10h1V0H14v12h1V1.5h2.5V12h1V4.5H21V16c0 4.42-3.58 8-8 8-3.26 0-6.19-1.99-7.4-5.02l-3.39-8.51z", + fill: "currentColor" })); } diff --git a/icons/es5/Backpack.js b/icons/es5/Backpack.js index 241d96ce5c..0d0b0d222e 100644 --- a/icons/es5/Backpack.js +++ b/icons/es5/Backpack.js @@ -7,9 +7,11 @@ function SvgBackpack(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8v14H4V8c0-1.86 1.28-3.41 3-3.86V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86zM6 12v2h10v2h2v-4H6z" + d: "M20 8v14H4V8c0-1.86 1.28-3.41 3-3.86V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86zM6 12v2h10v2h2v-4H6z", + fill: "currentColor" })); } diff --git a/icons/es5/Backspace.js b/icons/es5/Backspace.js index 365a948b94..651fdcc299 100644 --- a/icons/es5/Backspace.js +++ b/icons/es5/Backspace.js @@ -7,9 +7,11 @@ function SvgBackspace(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 3H6l-6 9 6 9h18V3zm-5 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z" + d: "M24 3H6l-6 9 6 9h18V3zm-5 12.59L17.59 17 14 13.41 10.41 17 9 15.59 12.59 12 9 8.41 10.41 7 14 10.59 17.59 7 19 8.41 15.41 12 19 15.59z", + fill: "currentColor" })); } diff --git a/icons/es5/Backup.js b/icons/es5/Backup.js index 2a81ad51ed..922c32a192 100644 --- a/icons/es5/Backup.js +++ b/icons/es5/Backup.js @@ -7,9 +7,11 @@ function SvgBackup(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" + d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/BackupTable.js b/icons/es5/BackupTable.js index 0697caa68d..8d90e171e3 100644 --- a/icons/es5/BackupTable.js +++ b/icons/es5/BackupTable.js @@ -7,11 +7,14 @@ function SvgBackupTable(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 6v14H6v2h16V6z" + d: "M20 6v14H6v2h16V6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 2H2v16h16V2zM9 16H4v-5h5v5zm7 0h-5v-5h5v5zm0-7H4V4h12v5z" + d: "M18 2H2v16h16V2zM9 16H4v-5h5v5zm7 0h-5v-5h5v5zm0-7H4V4h12v5z", + fill: "currentColor" })); } diff --git a/icons/es5/Badge.js b/icons/es5/Badge.js index 5688463e56..ad04e32f41 100644 --- a/icons/es5/Badge.js +++ b/icons/es5/Badge.js @@ -7,9 +7,11 @@ function SvgBadge(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7h-7V2H9v5H2v15h20V7zM9 12c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.43c0-.6.36-1.15.92-1.39.64-.28 1.34-.43 2.08-.43s1.44.15 2.08.43c.55.24.92.78.92 1.39V18zm1-9h-2V4h2v5zm5 7.5h-4V15h4v1.5zm0-3h-4V12h4v1.5z" + d: "M22 7h-7V2H9v5H2v15h20V7zM9 12c.83 0 1.5.67 1.5 1.5S9.83 15 9 15s-1.5-.67-1.5-1.5S8.17 12 9 12zm3 6H6v-.43c0-.6.36-1.15.92-1.39.64-.28 1.34-.43 2.08-.43s1.44.15 2.08.43c.55.24.92.78.92 1.39V18zm1-9h-2V4h2v5zm5 7.5h-4V15h4v1.5zm0-3h-4V12h4v1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/BakeryDining.js b/icons/es5/BakeryDining.js index bb8c46c525..05f3f2d142 100644 --- a/icons/es5/BakeryDining.js +++ b/icons/es5/BakeryDining.js @@ -7,9 +7,11 @@ function SvgBakeryDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.36 7.58l-.86 9.41H17l3.16-7.89zM3.84 9.1L7 16.99h1.5l-.86-9.41zM10 16.99h4L15 6H9zm10.32-4.24l-1.81 4.5 1.95.96 2.06-1.22zM1.48 16.99l2.06 1.22 1.95-.96-1.81-4.5z" + d: "M16.36 7.58l-.86 9.41H17l3.16-7.89zM3.84 9.1L7 16.99h1.5l-.86-9.41zM10 16.99h4L15 6H9zm10.32-4.24l-1.81 4.5 1.95.96 2.06-1.22zM1.48 16.99l2.06 1.22 1.95-.96-1.81-4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Balance.js b/icons/es5/Balance.js index a5a71f0d37..4c339c13b8 100644 --- a/icons/es5/Balance.js +++ b/icons/es5/Balance.js @@ -7,9 +7,11 @@ function SvgBalance(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 7.83c.85-.3 1.53-.98 1.83-1.83H18l-3 7c0 1.66 1.57 3 3.5 3s3.5-1.34 3.5-3l-3-7h2V4h-6.17c-.41-1.17-1.52-2-2.83-2s-2.42.83-2.83 2H3v2h2l-3 7c0 1.66 1.57 3 3.5 3S9 14.66 9 13L6 6h3.17c.3.85.98 1.53 1.83 1.83V19H2v2h20v-2h-9V7.83zM20.37 13h-3.74l1.87-4.36L20.37 13zm-13 0H3.63L5.5 8.64 7.37 13zM12 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M13 7.83c.85-.3 1.53-.98 1.83-1.83H18l-3 7c0 1.66 1.57 3 3.5 3s3.5-1.34 3.5-3l-3-7h2V4h-6.17c-.41-1.17-1.52-2-2.83-2s-2.42.83-2.83 2H3v2h2l-3 7c0 1.66 1.57 3 3.5 3S9 14.66 9 13L6 6h3.17c.3.85.98 1.53 1.83 1.83V19H2v2h20v-2h-9V7.83zM20.37 13h-3.74l1.87-4.36L20.37 13zm-13 0H3.63L5.5 8.64 7.37 13zM12 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Balcony.js b/icons/es5/Balcony.js index 74fdebb65b..cd48cea107 100644 --- a/icons/es5/Balcony.js +++ b/icons/es5/Balcony.js @@ -7,9 +7,11 @@ function SvgBalcony(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z" + d: "M10 10v2H8v-2h2zm6 2v-2h-2v2h2zm5 2v8H3v-8h1v-4c0-4.42 3.58-8 8-8s8 3.58 8 8v4h1zM7 16H5v4h2v-4zm4 0H9v4h2v-4zm0-11.92C8.16 4.56 6 7.03 6 10v4h5V4.08zM13 14h5v-4c0-2.97-2.16-5.44-5-5.92V14zm2 2h-2v4h2v-4zm4 0h-2v4h2v-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Ballot.js b/icons/es5/Ballot.js index 83a827c777..0b27561ef1 100644 --- a/icons/es5/Ballot.js +++ b/icons/es5/Ballot.js @@ -7,9 +7,11 @@ function SvgBallot(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 9.5h5v-2h-5v2zm0 7h5v-2h-5v2zm8 4.5H3V3h18v18zM6 11h5V6H6v5zm1-4h3v3H7V7zM6 18h5v-5H6v5zm1-4h3v3H7v-3z" + d: "M13 9.5h5v-2h-5v2zm0 7h5v-2h-5v2zm8 4.5H3V3h18v18zM6 11h5V6H6v5zm1-4h3v3H7V7zM6 18h5v-5H6v5zm1-4h3v3H7v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/BarChart.js b/icons/es5/BarChart.js index 7488b8a344..f54279b027 100644 --- a/icons/es5/BarChart.js +++ b/icons/es5/BarChart.js @@ -7,9 +7,11 @@ function SvgBarChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z" + d: "M5 9.2h3V19H5V9.2zM10.6 5h2.8v14h-2.8V5zm5.6 8H19v6h-2.8v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/Barcode.js b/icons/es5/Barcode.js index ea50d874b7..3f51578a95 100644 --- a/icons/es5/Barcode.js +++ b/icons/es5/Barcode.js @@ -7,10 +7,12 @@ function SvgBarcode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M2 6h1v12H2zm2 0h2v12H4zm4 0h1v12H8zm2 0h3v12h-3zm4 0h1v12h-1zm3 0h1v12h-1zm2 0h1v12h-1zm2 0h1v12h-1z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/BatchPrediction.js b/icons/es5/BatchPrediction.js index 97986193dd..bce7fc4d4a 100644 --- a/icons/es5/BatchPrediction.js +++ b/icons/es5/BatchPrediction.js @@ -7,9 +7,11 @@ function SvgBatchPrediction(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 8H5v14h14V8zm-6 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6V5h12v1.5zm-1-3H7V2h10v1.5z" + d: "M19 8H5v14h14V8zm-6 12.5h-2V19h2v1.5zm0-2.5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5c0 2-2.5 3.5-2.5 5zm5-11.5H6V5h12v1.5zm-1-3H7V2h10v1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Bathroom.js b/icons/es5/Bathroom.js index 8b348c5e21..fc0895e2d2 100644 --- a/icons/es5/Bathroom.js +++ b/icons/es5/Bathroom.js @@ -7,9 +7,11 @@ function SvgBathroom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zM9 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-3H7v-1c0-2.76 2.24-5 5-5s5 2.24 5 5v1z" + d: "M22 2H2v20h20V2zM9 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-3H7v-1c0-2.76 2.24-5 5-5s5 2.24 5 5v1z", + fill: "currentColor" })); } diff --git a/icons/es5/Bathtub.js b/icons/es5/Bathtub.js index 907f7510fa..29d5e2e62b 100644 --- a/icons/es5/Bathtub.js +++ b/icons/es5/Bathtub.js @@ -7,13 +7,15 @@ function SvgBathtub(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 7, cy: 7, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25a.828.828 0 011.41.59V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5A2.251 2.251 0 005 12.25V13H2v8h2v1h16v-1h2v-8h-2z" + d: "M20 13V4.83C20 3.27 18.73 2 17.17 2c-.75 0-1.47.3-2 .83l-1.25 1.25c-.16-.05-.33-.08-.51-.08-.4 0-.77.12-1.08.32l2.76 2.76c.2-.31.32-.68.32-1.08 0-.18-.03-.34-.07-.51l1.25-1.25a.828.828 0 011.41.59V13h-6.85c-.3-.21-.57-.45-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5A2.251 2.251 0 005 12.25V13H2v8h2v1h16v-1h2v-8h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery0Bar.js b/icons/es5/Battery0Bar.js index 2b33504db5..d497f33aca 100644 --- a/icons/es5/Battery0Bar.js +++ b/icons/es5/Battery0Bar.js @@ -7,9 +7,11 @@ function SvgBattery0Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v14h6V6z" + d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v14h6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery1Bar.js b/icons/es5/Battery1Bar.js index f94d7ba5d7..4adb34add4 100644 --- a/icons/es5/Battery1Bar.js +++ b/icons/es5/Battery1Bar.js @@ -7,9 +7,11 @@ function SvgBattery1Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v12h6V6z" + d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v12h6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery20.js b/icons/es5/Battery20.js index 0a3cf3f878..e75d49f620 100644 --- a/icons/es5/Battery20.js +++ b/icons/es5/Battery20.js @@ -7,12 +7,15 @@ function SvgBattery20(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 17v5h10v-5H7z" + d: "M7 17v5h10v-5H7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v13h10V4z" + d: "M17 4h-3V2h-4v2H7v13h10V4z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery2Bar.js b/icons/es5/Battery2Bar.js index 5be0a7e960..8a0dde710f 100644 --- a/icons/es5/Battery2Bar.js +++ b/icons/es5/Battery2Bar.js @@ -7,9 +7,11 @@ function SvgBattery2Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v10h6V6z" + d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v10h6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery30.js b/icons/es5/Battery30.js index 4fc2c5d122..578c442903 100644 --- a/icons/es5/Battery30.js +++ b/icons/es5/Battery30.js @@ -7,12 +7,15 @@ function SvgBattery30(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v11h10V4z" + d: "M17 4h-3V2h-4v2H7v11h10V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7 15v7h10v-7H7z" + d: "M7 15v7h10v-7H7z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery3Bar.js b/icons/es5/Battery3Bar.js index 7631d6e141..e4ff59688e 100644 --- a/icons/es5/Battery3Bar.js +++ b/icons/es5/Battery3Bar.js @@ -7,9 +7,11 @@ function SvgBattery3Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v8h6V6z" + d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v8h6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery4Bar.js b/icons/es5/Battery4Bar.js index f41889164a..82bc5c5e35 100644 --- a/icons/es5/Battery4Bar.js +++ b/icons/es5/Battery4Bar.js @@ -7,9 +7,11 @@ function SvgBattery4Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v6h6V6z" + d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v6h6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery50.js b/icons/es5/Battery50.js index dc779c2bff..890a0fed8e 100644 --- a/icons/es5/Battery50.js +++ b/icons/es5/Battery50.js @@ -7,12 +7,15 @@ function SvgBattery50(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v9h10V4z" + d: "M17 4h-3V2h-4v2H7v9h10V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7 13v9h10v-9H7z" + d: "M7 13v9h10v-9H7z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery5Bar.js b/icons/es5/Battery5Bar.js index 5410fa3f88..d3a70ff147 100644 --- a/icons/es5/Battery5Bar.js +++ b/icons/es5/Battery5Bar.js @@ -7,9 +7,11 @@ function SvgBattery5Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v4h6V6z" + d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v4h6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery60.js b/icons/es5/Battery60.js index e05f6e4e7b..bb108b62d3 100644 --- a/icons/es5/Battery60.js +++ b/icons/es5/Battery60.js @@ -7,12 +7,15 @@ function SvgBattery60(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v7h10V4z" + d: "M17 4h-3V2h-4v2H7v7h10V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7 11v11h10V11H7z" + d: "M7 11v11h10V11H7z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery6Bar.js b/icons/es5/Battery6Bar.js index 750c29243e..490f217e93 100644 --- a/icons/es5/Battery6Bar.js +++ b/icons/es5/Battery6Bar.js @@ -7,9 +7,11 @@ function SvgBattery6Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v2h6V6z" + d: "M17 4v18H7V4h3V2h4v2h3zm-2 2H9v2h6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery80.js b/icons/es5/Battery80.js index 3800d5fb1c..362aa19b2e 100644 --- a/icons/es5/Battery80.js +++ b/icons/es5/Battery80.js @@ -7,12 +7,15 @@ function SvgBattery80(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v5h10V4z" + d: "M17 4h-3V2h-4v2H7v5h10V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7 9v13h10V9H7z" + d: "M7 9v13h10V9H7z", + fill: "currentColor" })); } diff --git a/icons/es5/Battery90.js b/icons/es5/Battery90.js index 146d913da4..3604ddd3e6 100644 --- a/icons/es5/Battery90.js +++ b/icons/es5/Battery90.js @@ -7,12 +7,15 @@ function SvgBattery90(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v4h10V4z" + d: "M17 4h-3V2h-4v2H7v4h10V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7 8v14h10V8H7z" + d: "M7 8v14h10V8H7z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryAlert.js b/icons/es5/BatteryAlert.js index 5a4e6f6a09..46db3203c3 100644 --- a/icons/es5/BatteryAlert.js +++ b/icons/es5/BatteryAlert.js @@ -7,9 +7,11 @@ function SvgBatteryAlert(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4h-3V2h-4v2H7v18h10V4zm-4 14h-2v-2h2v2zm0-4h-2V9h2v5z" + d: "M17 4h-3V2h-4v2H7v18h10V4zm-4 14h-2v-2h2v2zm0-4h-2V9h2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryCharging20.js b/icons/es5/BatteryCharging20.js index 43e5520c64..fcb76f52ee 100644 --- a/icons/es5/BatteryCharging20.js +++ b/icons/es5/BatteryCharging20.js @@ -7,12 +7,15 @@ function SvgBatteryCharging20(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 20v-3H7v5h10v-5h-4.4L11 20z" + d: "M11 20v-3H7v5h10v-5h-4.4L11 20z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v13h4v-2.5H9L13 7v5.5h2L12.6 17H17V4z" + d: "M17 4h-3V2h-4v2H7v13h4v-2.5H9L13 7v5.5h2L12.6 17H17V4z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryCharging30.js b/icons/es5/BatteryCharging30.js index 329d0783f3..a3e3b05cdd 100644 --- a/icons/es5/BatteryCharging30.js +++ b/icons/es5/BatteryCharging30.js @@ -7,12 +7,15 @@ function SvgBatteryCharging30(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v10.5h2L13 7v5.5h2l-1.07 2H17V4z" + d: "M17 4h-3V2h-4v2H7v10.5h2L13 7v5.5h2l-1.07 2H17V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11 20v-5.5H7V22h10v-7.5h-3.07L11 20z" + d: "M11 20v-5.5H7V22h10v-7.5h-3.07L11 20z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryCharging50.js b/icons/es5/BatteryCharging50.js index 000ac450d7..8307823fe0 100644 --- a/icons/es5/BatteryCharging50.js +++ b/icons/es5/BatteryCharging50.js @@ -7,12 +7,15 @@ function SvgBatteryCharging50(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.47 13.5L11 20v-5.5H9l.53-1H7V22h10v-8.5h-2.53z" + d: "M14.47 13.5L11 20v-5.5H9l.53-1H7V22h10v-8.5h-2.53z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v9.5h2.53L13 7v5.5h2l-.53 1H17V4z" + d: "M17 4h-3V2h-4v2H7v9.5h2.53L13 7v5.5h2l-.53 1H17V4z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryCharging60.js b/icons/es5/BatteryCharging60.js index ea686ee9ab..17d95c0afb 100644 --- a/icons/es5/BatteryCharging60.js +++ b/icons/es5/BatteryCharging60.js @@ -7,12 +7,15 @@ function SvgBatteryCharging60(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v7h3.87L13 7v4h4V4z" + d: "M17 4h-3V2h-4v2H7v7h3.87L13 7v4h4V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v11h10V11h-4v1.5z" + d: "M13 12.5h2L11 20v-5.5H9l1.87-3.5H7v11h10V11h-4v1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryCharging80.js b/icons/es5/BatteryCharging80.js index 887f5a26fb..192ae80af1 100644 --- a/icons/es5/BatteryCharging80.js +++ b/icons/es5/BatteryCharging80.js @@ -7,12 +7,15 @@ function SvgBatteryCharging80(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v5h4.93L13 7v2h4V4z" + d: "M17 4h-3V2h-4v2H7v5h4.93L13 7v2h4V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v13h10V9h-4v3.5z" + d: "M13 12.5h2L11 20v-5.5H9L11.93 9H7v13h10V9h-4v3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryCharging90.js b/icons/es5/BatteryCharging90.js index b0b05244f3..c5c33fe56a 100644 --- a/icons/es5/BatteryCharging90.js +++ b/icons/es5/BatteryCharging90.js @@ -7,12 +7,15 @@ function SvgBatteryCharging90(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M17 4h-3V2h-4v2H7v4h5.47L13 7v1h4V4z" + d: "M17 4h-3V2h-4v2H7v4h5.47L13 7v1h4V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v14h10V8h-4v4.5z" + d: "M13 12.5h2L11 20v-5.5H9L12.47 8H7v14h10V8h-4v4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryChargingFull.js b/icons/es5/BatteryChargingFull.js index e49afd9736..223fcc17ba 100644 --- a/icons/es5/BatteryChargingFull.js +++ b/icons/es5/BatteryChargingFull.js @@ -7,9 +7,11 @@ function SvgBatteryChargingFull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4h-3V2h-4v2H7v18h10V4zm-6 16v-5.5H9L13 7v5.5h2L11 20z" + d: "M17 4h-3V2h-4v2H7v18h10V4zm-6 16v-5.5H9L13 7v5.5h2L11 20z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryFull.js b/icons/es5/BatteryFull.js index e318040282..0660d6dfd0 100644 --- a/icons/es5/BatteryFull.js +++ b/icons/es5/BatteryFull.js @@ -7,9 +7,11 @@ function SvgBatteryFull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4h-3V2h-4v2H7v18h10V4z" + d: "M17 4h-3V2h-4v2H7v18h10V4z", + fill: "currentColor" })); } diff --git a/icons/es5/BatterySaver.js b/icons/es5/BatterySaver.js index 51296684e0..0566756a4e 100644 --- a/icons/es5/BatterySaver.js +++ b/icons/es5/BatterySaver.js @@ -7,9 +7,11 @@ function SvgBatterySaver(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4h-3V2h-4v2H7v18h10V4zm-2 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z" + d: "M17 4h-3V2h-4v2H7v18h10V4zm-2 10h-2v2h-2v-2H9v-2h2v-2h2v2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryStd.js b/icons/es5/BatteryStd.js index f64d9551ec..b6de14334d 100644 --- a/icons/es5/BatteryStd.js +++ b/icons/es5/BatteryStd.js @@ -7,9 +7,11 @@ function SvgBatteryStd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4h-3V2h-4v2H7v18h10V4z" + d: "M17 4h-3V2h-4v2H7v18h10V4z", + fill: "currentColor" })); } diff --git a/icons/es5/BatteryUnknown.js b/icons/es5/BatteryUnknown.js index 266cb5470d..b920f737c8 100644 --- a/icons/es5/BatteryUnknown.js +++ b/icons/es5/BatteryUnknown.js @@ -7,9 +7,11 @@ function SvgBatteryUnknown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94A1.498 1.498 0 0012 9.5c-.83 0-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z" + d: "M15.67 4H14V2h-4v2H8.33C7.6 4 7 4.6 7 5.33v15.33C7 21.4 7.6 22 8.33 22h7.33c.74 0 1.34-.6 1.34-1.33V5.33C17 4.6 16.4 4 15.67 4zM13 18h-2v-2h2v2zm1.3-5.31s-.38.42-.67.71c-.48.48-.83 1.15-.83 1.6h-1.6c0-.83.46-1.52.93-2l.93-.94A1.498 1.498 0 0012 9.5c-.83 0-1.5.67-1.5 1.5H9c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .66-.27 1.26-.7 1.69z", + fill: "currentColor" })); } diff --git a/icons/es5/Bbb.js b/icons/es5/Bbb.js index 5e7203b8bf..d60f25482d 100644 --- a/icons/es5/Bbb.js +++ b/icons/es5/Bbb.js @@ -11,7 +11,7 @@ function SvgBbb(props) { viewBox: "0 0 25 25", fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - fill: "url(#bbb_svg__pattern0)", + fill: "currentColor", d: "M.5 0h24v24.004H.5z" }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", { id: "bbb_svg__pattern0", diff --git a/icons/es5/BeachAccess.js b/icons/es5/BeachAccess.js index 5fa5690fc6..2cff2827c1 100644 --- a/icons/es5/BeachAccess.js +++ b/icons/es5/BeachAccess.js @@ -7,9 +7,11 @@ function SvgBeachAccess(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm11.47 2.85l2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.97 5.96l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3zm7.156 8.6l1.428-1.428 6.442 6.442-1.43 1.428z" + d: "M5.95 5.98c-3.94 3.95-3.93 10.35.02 14.3l2.86-2.86C5.7 14.29 4.65 9.91 5.95 5.98zm11.47 2.85l2.86-2.86c-3.95-3.95-10.35-3.96-14.3-.02 3.93-1.3 8.31-.25 11.44 2.88zM5.97 5.96l-.01.01c-.38 3.01 1.17 6.88 4.3 10.02l5.73-5.73c-3.13-3.13-7.01-4.68-10.02-4.3zm7.156 8.6l1.428-1.428 6.442 6.442-1.43 1.428z", + fill: "currentColor" })); } diff --git a/icons/es5/Bed.js b/icons/es5/Bed.js index fe05f6a06b..294cb900ee 100644 --- a/icons/es5/Bed.js +++ b/icons/es5/Bed.js @@ -7,9 +7,11 @@ function SvgBed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 10V5H3v5H2v9h2v-2h16v2h2v-9h-1zm-8-3h6v3h-6V7zm-8 3V7h6v3H5zm-1 5v-3h16v3H4z" + d: "M21 10V5H3v5H2v9h2v-2h16v2h2v-9h-1zm-8-3h6v3h-6V7zm-8 3V7h6v3H5zm-1 5v-3h16v3H4z", + fill: "currentColor" })); } diff --git a/icons/es5/BedroomBaby.js b/icons/es5/BedroomBaby.js index 10735c4580..43c12e5b9d 100644 --- a/icons/es5/BedroomBaby.js +++ b/icons/es5/BedroomBaby.js @@ -7,11 +7,14 @@ function SvgBedroomBaby(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zM12 18c-2.64 0-5.13-1.03-7-2.9l1.06-1.06c.34.34.71.65 1.1.92L8 13.5V9.51l-1.55.99-.95-1L7 7.76 6 7h3.65l1.73 3H17v1h-1v2.5l.84 1.46c.39-.28.76-.58 1.1-.92L19 15.1a9.842 9.842 0 01-7 2.9z" + d: "M22 2H2v20h20V2zM12 18c-2.64 0-5.13-1.03-7-2.9l1.06-1.06c.34.34.71.65 1.1.92L8 13.5V9.51l-1.55.99-.95-1L7 7.76 6 7h3.65l1.73 3H17v1h-1v2.5l.84 1.46c.39-.28.76-.58 1.1-.92L19 15.1a9.842 9.842 0 01-7 2.9z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14.69 14.24a7.72 7.72 0 01-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79l-.03-.06-.81-1.41z" + d: "M14.69 14.24a7.72 7.72 0 01-5.4 0l-.81 1.41-.03.06c1.1.52 2.28.79 3.53.79s2.45-.28 3.55-.79l-.03-.06-.81-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/BedroomChild.js b/icons/es5/BedroomChild.js index 101f51d75b..5ac833cb86 100644 --- a/icons/es5/BedroomChild.js +++ b/icons/es5/BedroomChild.js @@ -7,11 +7,14 @@ function SvgBedroomChild(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 8.5h6v2H9zM7.51 12h9v2h-9z" + d: "M9 8.5h6v2H9zM7.51 12h9v2h-9z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zm-4 15h-1.5v-1.5h-9V17H6v-6.32l1.5-.01V7h9v3.67H18V17z" + d: "M22 2H2v20h20V2zm-4 15h-1.5v-1.5h-9V17H6v-6.32l1.5-.01V7h9v3.67H18V17z", + fill: "currentColor" })); } diff --git a/icons/es5/BedroomParent.js b/icons/es5/BedroomParent.js index acfc281b88..c5486455f7 100644 --- a/icons/es5/BedroomParent.js +++ b/icons/es5/BedroomParent.js @@ -7,11 +7,14 @@ function SvgBedroomParent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.5 12h11v2h-11zm.75-3.5h4v2h-4zm5.5 0h4v2h-4z" + d: "M6.5 12h11v2h-11zm.75-3.5h4v2h-4zm5.5 0h4v2h-4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zm-3 15h-1.5v-1.5h-11V17H5v-5l.65-.55V7H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h5.35v4.45L19 12v5z" + d: "M22 2H2v20h20V2zm-3 15h-1.5v-1.5h-11V17H5v-5l.65-.55V7H11c.37 0 .72.12 1 .32.28-.2.63-.32 1-.32h5.35v4.45L19 12v5z", + fill: "currentColor" })); } diff --git a/icons/es5/Bedtime.js b/icons/es5/Bedtime.js index 1067b3179a..e5ade30a7d 100644 --- a/icons/es5/Bedtime.js +++ b/icons/es5/Bedtime.js @@ -7,9 +7,11 @@ function SvgBedtime(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.34 2.02C6.59 1.82 2 6.42 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96z" + d: "M12.34 2.02C6.59 1.82 2 6.42 2 12c0 5.52 4.48 10 10 10 3.71 0 6.93-2.02 8.66-5.02-7.51-.25-12.09-8.43-8.32-14.96z", + fill: "currentColor" })); } diff --git a/icons/es5/BedtimeOff.js b/icons/es5/BedtimeOff.js index 8fb5bf4d49..167eafe9ec 100644 --- a/icons/es5/BedtimeOff.js +++ b/icons/es5/BedtimeOff.js @@ -7,9 +7,11 @@ function SvgBedtimeOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.19 21.19L2.81 2.81 1.39 4.22l2.27 2.27A9.959 9.959 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.62 5.51-1.66l2.27 2.27 1.41-1.42zM12.34 2.02c-2.18-.07-4.19.55-5.85 1.64l4.59 4.59c-.27-2.05.1-4.22 1.26-6.23z" + d: "M21.19 21.19L2.81 2.81 1.39 4.22l2.27 2.27A9.959 9.959 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.62 5.51-1.66l2.27 2.27 1.41-1.42zM12.34 2.02c-2.18-.07-4.19.55-5.85 1.64l4.59 4.59c-.27-2.05.1-4.22 1.26-6.23z", + fill: "currentColor" })); } diff --git a/icons/es5/Beenhere.js b/icons/es5/Beenhere.js index 2f64252797..d7fa393d77 100644 --- a/icons/es5/Beenhere.js +++ b/icons/es5/Beenhere.js @@ -7,9 +7,11 @@ function SvgBeenhere(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.01 1L3 17l9 6 8.99-6L21 1H3.01zM10 16l-5-5 1.41-1.42L10 13.17l7.59-7.59L19 7l-9 9z" + d: "M3.01 1L3 17l9 6 8.99-6L21 1H3.01zM10 16l-5-5 1.41-1.42L10 13.17l7.59-7.59L19 7l-9 9z", + fill: "currentColor" })); } diff --git a/icons/es5/Bento.js b/icons/es5/Bento.js index 16da41e1d8..1b17284ccf 100644 --- a/icons/es5/Bento.js +++ b/icons/es5/Bento.js @@ -7,9 +7,11 @@ function SvgBento(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 11V5h6v6h-6zm0 8h6v-6h-6v6zM14 5v14H2V5h12zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z" + d: "M16 11V5h6v6h-6zm0 8h6v-6h-6v6zM14 5v14H2V5h12zm-4.5 7c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5.67 1.5 1.5 1.5 1.5-.67 1.5-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/BikeScooter.js b/icons/es5/BikeScooter.js index 1fc9abdf3b..942c9a953a 100644 --- a/icons/es5/BikeScooter.js +++ b/icons/es5/BikeScooter.js @@ -7,11 +7,14 @@ function SvgBikeScooter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 14h.74L8.47 4H3v2h3.87l1.42 6.25h-.01A6.008 6.008 0 004.09 17H0v2h6v-1c0-2.21 1.79-4 4-4zm8.18-6l-1.83-5H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zm.82 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" + d: "M10 14h.74L8.47 4H3v2h3.87l1.42 6.25h-.01A6.008 6.008 0 004.09 17H0v2h6v-1c0-2.21 1.79-4 4-4zm8.18-6l-1.83-5H11v2h3.96l1.1 3H10.4l.46 2H15c-.43.58-.75 1.25-.9 2h-2.79l.46 2h2.33c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zm.82 8c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M10 15c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Biotech.js b/icons/es5/Biotech.js index 9d42c16190..600296e0ab 100644 --- a/icons/es5/Biotech.js +++ b/icons/es5/Biotech.js @@ -7,11 +7,14 @@ function SvgBiotech(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 19v-2h5v-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.46-2.56C8.17 9.03 8 8.54 8 8c0-.21.04-.42.09-.62A5.01 5.01 0 005 12c0 2.76 2.24 5 5 5v2H5v2h14v-2h-6z" + d: "M13 19v-2h5v-2h-8c-1.66 0-3-1.34-3-3 0-1.09.59-2.04 1.46-2.56C8.17 9.03 8 8.54 8 8c0-.21.04-.42.09-.62A5.01 5.01 0 005 12c0 2.76 2.24 5 5 5v2H5v2h14v-2h-6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M10.56 5.51C11.91 5.54 13 6.64 13 8c0 .75-.33 1.41-.85 1.87l.59 1.62.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.53-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.54z" + d: "M10.56 5.51C11.91 5.54 13 6.64 13 8c0 .75-.33 1.41-.85 1.87l.59 1.62.94-.34.34.94 1.88-.68-.34-.94.94-.34-2.74-7.53-.94.34-.34-.94-1.88.68.34.94-.94.35.56 1.54z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 10.5, cy: 8, diff --git a/icons/es5/Blender.js b/icons/es5/Blender.js index 47ef4a0013..a2b13283ab 100644 --- a/icons/es5/Blender.js +++ b/icons/es5/Blender.js @@ -7,9 +7,11 @@ function SvgBlender(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 3h-4V2h-4v1H3v8h4.23l.64 4.13L6 17v5h12v-5l-1.87-1.87L18 3zM5 9V5h1.31l.62 4H5zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.29-5H9.72L8.33 5h7.34l-1.38 9z" + d: "M18 3h-4V2h-4v1H3v8h4.23l.64 4.13L6 17v5h12v-5l-1.87-1.87L18 3zM5 9V5h1.31l.62 4H5zm7 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2.29-5H9.72L8.33 5h7.34l-1.38 9z", + fill: "currentColor" })); } diff --git a/icons/es5/Blind.js b/icons/es5/Blind.js index d0112fc79a..d338b9a694 100644 --- a/icons/es5/Blind.js +++ b/icons/es5/Blind.js @@ -7,13 +7,15 @@ function SvgBlind(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 11.5, cy: 3.5, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M12.13 7.12c-.17-.35-.44-.65-.8-.85a1.98 1.98 0 00-1.93-.03v-.01L4 9.3V14h2v-3.54l1.5-.85C7.18 10.71 7 11.85 7 13v5.33L4.4 21.8 6 23l3-4 .22-3.54L11 18v5h2v-6.5l-1.97-2.81c-.04-.52-.14-1.76.45-3.4.75 1.14 1.88 1.98 3.2 2.41L20.63 23l.87-.5-5.48-9.5H17v-2c-.49 0-2.88.17-4.08-2.21" + d: "M12.13 7.12c-.17-.35-.44-.65-.8-.85a1.98 1.98 0 00-1.93-.03v-.01L4 9.3V14h2v-3.54l1.5-.85C7.18 10.71 7 11.85 7 13v5.33L4.4 21.8 6 23l3-4 .22-3.54L11 18v5h2v-6.5l-1.97-2.81c-.04-.52-.14-1.76.45-3.4.75 1.14 1.88 1.98 3.2 2.41L20.63 23l.87-.5-5.48-9.5H17v-2c-.49 0-2.88.17-4.08-2.21", + fill: "currentColor" })); } diff --git a/icons/es5/Blinds.js b/icons/es5/Blinds.js index 91dc11276a..f03c60c104 100644 --- a/icons/es5/Blinds.js +++ b/icons/es5/Blinds.js @@ -7,9 +7,11 @@ function SvgBlinds(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3H4v16H2v2h20v-2h-2zM16 9h2v2h-2V9zm-2 2H6V9h8v2zm4-4h-2V5h2v2zm-4-2v2H6V5h8zM6 19v-6h8v1.82A1.746 1.746 0 0015 18a1.746 1.746 0 001-3.18V13h2v6H6z" + d: "M20 19V3H4v16H2v2h20v-2h-2zM16 9h2v2h-2V9zm-2 2H6V9h8v2zm4-4h-2V5h2v2zm-4-2v2H6V5h8zM6 19v-6h8v1.82A1.746 1.746 0 0015 18a1.746 1.746 0 001-3.18V13h2v6H6z", + fill: "currentColor" })); } diff --git a/icons/es5/BlindsClosed.js b/icons/es5/BlindsClosed.js index 3b7551e0fb..89a49e2c28 100644 --- a/icons/es5/BlindsClosed.js +++ b/icons/es5/BlindsClosed.js @@ -7,9 +7,11 @@ function SvgBlindsClosed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3H4v16H2v2h11.25c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75H22v-2h-2zm-2-8h-2V9h2v2zm-4 0H6V9h8v2zm0 2v2H6v-2h8zm2 0h2v2h-2v-2zm2-6h-2V5h2v2zm-4-2v2H6V5h8zM6 19v-2h8v2H6zm10 0v-2h2v2h-2z" + d: "M20 19V3H4v16H2v2h11.25c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75H22v-2h-2zm-2-8h-2V9h2v2zm-4 0H6V9h8v2zm0 2v2H6v-2h8zm2 0h2v2h-2v-2zm2-6h-2V5h2v2zm-4-2v2H6V5h8zM6 19v-2h8v2H6zm10 0v-2h2v2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Block.js b/icons/es5/Block.js index 153f78d234..e30a0c28e8 100644 --- a/icons/es5/Block.js +++ b/icons/es5/Block.js @@ -7,9 +7,11 @@ function SvgBlock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9A7.902 7.902 0 014 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1A7.902 7.902 0 0120 12c0 4.42-3.58 8-8 8z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-4.42 3.58-8 8-8 1.85 0 3.55.63 4.9 1.69L5.69 16.9A7.902 7.902 0 014 12zm8 8c-1.85 0-3.55-.63-4.9-1.69L18.31 7.1A7.902 7.902 0 0120 12c0 4.42-3.58 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/Bloodtype.js b/icons/es5/Bloodtype.js index dd4a4beb4e..37a0a7a7c0 100644 --- a/icons/es5/Bloodtype.js +++ b/icons/es5/Bloodtype.js @@ -7,9 +7,11 @@ function SvgBloodtype(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm3 16H9v-2h6v2zm0-5h-2v2h-2v-2H9v-2h2V9h2v2h2v2z" + d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm3 16H9v-2h6v2zm0-5h-2v2h-2v-2H9v-2h2V9h2v2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Bluetooth.js b/icons/es5/Bluetooth.js index 02c3466e8e..8f16e82f26 100644 --- a/icons/es5/Bluetooth.js +++ b/icons/es5/Bluetooth.js @@ -7,9 +7,11 @@ function SvgBluetooth(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z" + d: "M17.71 7.71L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88z", + fill: "currentColor" })); } diff --git a/icons/es5/BluetoothAudio.js b/icons/es5/BluetoothAudio.js index 1f0e6d9992..7d54823438 100644 --- a/icons/es5/BluetoothAudio.js +++ b/icons/es5/BluetoothAudio.js @@ -7,9 +7,11 @@ function SvgBluetoothAudio(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2a9.936 9.936 0 001.54-5.31c-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" + d: "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2a9.936 9.936 0 001.54-5.31c-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z", + fill: "currentColor" })); } diff --git a/icons/es5/BluetoothConnected.js b/icons/es5/BluetoothConnected.js index 40d83d5e6a..9a43a0f01a 100644 --- a/icons/es5/BluetoothConnected.js +++ b/icons/es5/BluetoothConnected.js @@ -7,9 +7,11 @@ function SvgBluetoothConnected(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z" + d: "M7 12l-2-2-2 2 2 2 2-2zm10.71-4.29L12 2h-1v7.59L6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 5.83l1.88 1.88L13 9.59V5.83zm1.88 10.46L13 18.17v-3.76l1.88 1.88zM19 10l-2 2 2 2 2-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/BluetoothDisabled.js b/icons/es5/BluetoothDisabled.js index 023501f444..3eb737d87f 100644 --- a/icons/es5/BluetoothDisabled.js +++ b/icons/es5/BluetoothDisabled.js @@ -7,9 +7,11 @@ function SvgBluetoothDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z" + d: "M13 5.83l1.88 1.88-1.6 1.6 1.41 1.41 3.02-3.02L12 2h-1v5.03l2 2v-3.2zM5.41 4L4 5.41 10.59 12 5 17.59 6.41 19 11 14.41V22h1l4.29-4.29 2.3 2.29L20 18.59 5.41 4zM13 18.17v-3.76l1.88 1.88L13 18.17z", + fill: "currentColor" })); } diff --git a/icons/es5/BluetoothDrive.js b/icons/es5/BluetoothDrive.js index c13728cd37..5ecf2ed24c 100644 --- a/icons/es5/BluetoothDrive.js +++ b/icons/es5/BluetoothDrive.js @@ -7,11 +7,14 @@ function SvgBluetoothDrive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 10H4.81l1.04-3H15V5H4.43L2 12v9h3v-2h12v2h3v-9h-3c-1.1 0-2-.9-2-2zm-8.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M15 10H4.81l1.04-3H15V5H4.43L2 12v9h3v-2h12v2h3v-9h-3c-1.1 0-2-.9-2-2zm-8.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 3.85L19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94l.94.94-.94.94V2.91zm.94 5.23l-.94.94V7.2l.94.94z" + d: "M22 3.85L19.15 1h-.5v3.79l-2.3-2.29-.7.7L18.44 6l-2.79 2.79.7.71 2.3-2.3V11h.5L22 8.14 19.85 6 22 3.85zm-2.35-.94l.94.94-.94.94V2.91zm.94 5.23l-.94.94V7.2l.94.94z", + fill: "currentColor" })); } diff --git a/icons/es5/BluetoothSearching.js b/icons/es5/BluetoothSearching.js index 412c8c8f5c..6e0aba258e 100644 --- a/icons/es5/BluetoothSearching.js +++ b/icons/es5/BluetoothSearching.js @@ -7,9 +7,11 @@ function SvgBluetoothSearching(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2a9.936 9.936 0 001.54-5.31c-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z" + d: "M14.24 12.01l2.32 2.32c.28-.72.44-1.51.44-2.33s-.16-1.59-.43-2.31l-2.33 2.32zm5.29-5.3l-1.26 1.26c.63 1.21.98 2.57.98 4.02s-.36 2.82-.98 4.02l1.2 1.2a9.936 9.936 0 001.54-5.31c-.01-1.89-.55-3.67-1.48-5.19zm-3.82 1L10 2H9v7.59L4.41 5 3 6.41 8.59 12 3 17.59 4.41 19 9 14.41V22h1l5.71-5.71-4.3-4.29 4.3-4.29zM11 5.83l1.88 1.88L11 9.59V5.83zm1.88 10.46L11 18.17v-3.76l1.88 1.88z", + fill: "currentColor" })); } diff --git a/icons/es5/BlurCircular.js b/icons/es5/BlurCircular.js index 9436013c0a..78e50a5ae8 100644 --- a/icons/es5/BlurCircular.js +++ b/icons/es5/BlurCircular.js @@ -7,9 +7,11 @@ function SvgBlurCircular(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z" + d: "M10 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zM7 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-3-3c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm3-6c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-1.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm3 6c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-4c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm2-3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-3.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1z", + fill: "currentColor" })); } diff --git a/icons/es5/BlurLinear.js b/icons/es5/BlurLinear.js index fd8d71a7fd..fc97571bb9 100644 --- a/icons/es5/BlurLinear.js +++ b/icons/es5/BlurLinear.js @@ -7,9 +7,11 @@ function SvgBlurLinear(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z" + d: "M5 17.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 13c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zM3 21h18v-2H3v2zM5 9.5c.83 0 1.5-.67 1.5-1.5S5.83 6.5 5 6.5 3.5 7.17 3.5 8 4.17 9.5 5 9.5zm0 4c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5.67 1.5 1.5 1.5zM9 17c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm8-.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM3 3v2h18V3H3zm14 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm0 4c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM13 9c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 4c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/BlurOff.js b/icons/es5/BlurOff.js index 6acb5e7f21..a7be7110a3 100644 --- a/icons/es5/BlurOff.js +++ b/icons/es5/BlurOff.js @@ -7,13 +7,15 @@ function SvgBlurOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 14, cy: 6, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + d: "M13.8 11.48l.2.02c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5-1.5.67-1.5 1.5l.02.2c.09.67.61 1.19 1.28 1.28zM14 3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-4 0c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 18, cy: 10, @@ -23,7 +25,8 @@ function SvgBlurOff(props) { cy: 6, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z" + d: "M21 10.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 10, cy: 6, @@ -37,19 +40,22 @@ function SvgBlurOff(props) { cy: 18, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + d: "M14 20.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7-7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-18 0c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 10, cy: 18, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z" + d: "M3 9.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 11c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 6, cy: 14, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81A.875.875 0 0014 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z" + d: "M2.5 5.27L6 8.77l.28.28L6 9c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l2.81 2.81c-.71.11-1.25.73-1.25 1.47 0 .83.67 1.5 1.5 1.5.74 0 1.36-.54 1.47-1.25l2.81 2.81A.875.875 0 0014 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1c0-.1-.03-.19-.06-.28l3.78 3.78h.01l1.41-1.41L3.91 3.86 2.5 5.27z", + fill: "currentColor" })); } diff --git a/icons/es5/BlurOn.js b/icons/es5/BlurOn.js index 8c52be222f..1fc9ec1d06 100644 --- a/icons/es5/BlurOn.js +++ b/icons/es5/BlurOn.js @@ -7,9 +7,11 @@ function SvgBlurOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Bolt.js b/icons/es5/Bolt.js index 00ae28af55..a5748b87c3 100644 --- a/icons/es5/Bolt.js +++ b/icons/es5/Bolt.js @@ -7,9 +7,11 @@ function SvgBolt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 21h-1l1-7H6.74S10.42 7.54 13 3h1l-1 7h4.28L11 21z" + d: "M11 21h-1l1-7H6.74S10.42 7.54 13 3h1l-1 7h4.28L11 21z", + fill: "currentColor" })); } diff --git a/icons/es5/Book.js b/icons/es5/Book.js index 961beefaf5..9c7bea6810 100644 --- a/icons/es5/Book.js +++ b/icons/es5/Book.js @@ -7,9 +7,11 @@ function SvgBook(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z" + d: "M20 2H4v20h16V2zM6 4h5v8l-2.5-1.5L6 12V4z", + fill: "currentColor" })); } diff --git a/icons/es5/BookOnline.js b/icons/es5/BookOnline.js index ec8a9f40ee..062483f132 100644 --- a/icons/es5/BookOnline.js +++ b/icons/es5/BookOnline.js @@ -7,9 +7,11 @@ function SvgBookOnline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 1H5v22h14V1zM7 18V6h10v12H7zm9-7V8H8v3.1c.55 0 1 .45 1 1s-.45 1-1 1V16h8v-3c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z" + d: "M19 1H5v22h14V1zM7 18V6h10v12H7zm9-7V8H8v3.1c.55 0 1 .45 1 1s-.45 1-1 1V16h8v-3c-.55 0-1-.45-1-1s.45-1 1-1zm-3.5 3.5h-1v-1h1v1zm0-2h-1v-1h1v1zm0-2h-1v-1h1v1z", + fill: "currentColor" })); } diff --git a/icons/es5/BookmarkAdd.js b/icons/es5/BookmarkAdd.js index 8a52208733..1a81c45561 100644 --- a/icons/es5/BookmarkAdd.js +++ b/icons/es5/BookmarkAdd.js @@ -7,9 +7,11 @@ function SvgBookmarkAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 7h-2v2h-2V7h-2V5h2V3h2v2h2v2zm-2 14l-7-3-7 3V3h9a5.002 5.002 0 005 7.9V21z" + d: "M21 7h-2v2h-2V7h-2V5h2V3h2v2h2v2zm-2 14l-7-3-7 3V3h9a5.002 5.002 0 005 7.9V21z", + fill: "currentColor" })); } diff --git a/icons/es5/BookmarkAdded.js b/icons/es5/BookmarkAdded.js index 07c2080230..38c6eea115 100644 --- a/icons/es5/BookmarkAdded.js +++ b/icons/es5/BookmarkAdded.js @@ -7,9 +7,11 @@ function SvgBookmarkAdded(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 21l-7-3-7 3V3h9a5.002 5.002 0 005 7.9V21zM17.83 9L15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9z" + d: "M19 21l-7-3-7 3V3h9a5.002 5.002 0 005 7.9V21zM17.83 9L15 6.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L17.83 9z", + fill: "currentColor" })); } diff --git a/icons/es5/BookmarkBorder.js b/icons/es5/BookmarkBorder.js index a1520de834..4b2913118c 100644 --- a/icons/es5/BookmarkBorder.js +++ b/icons/es5/BookmarkBorder.js @@ -7,9 +7,11 @@ function SvgBookmarkBorder(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3H5v18l7-3 7 3V3zm-2 15l-5-2.18L7 18V5h10v13z" + d: "M19 3H5v18l7-3 7 3V3zm-2 15l-5-2.18L7 18V5h10v13z", + fill: "currentColor" })); } diff --git a/icons/es5/BookmarkRemove.js b/icons/es5/BookmarkRemove.js index e43e20c16d..685a8ca56f 100644 --- a/icons/es5/BookmarkRemove.js +++ b/icons/es5/BookmarkRemove.js @@ -7,9 +7,11 @@ function SvgBookmarkRemove(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 7h-6V5h6v2zm-2 3.9c-.64.13-1.32.14-2.02 0-1.91-.38-3.47-1.92-3.87-3.83A5.02 5.02 0 0114 3H5v18l7-3 7 3V10.9z" + d: "M21 7h-6V5h6v2zm-2 3.9c-.64.13-1.32.14-2.02 0-1.91-.38-3.47-1.92-3.87-3.83A5.02 5.02 0 0114 3H5v18l7-3 7 3V10.9z", + fill: "currentColor" })); } diff --git a/icons/es5/Bookmarks.js b/icons/es5/Bookmarks.js index 2723f3706e..23feb23326 100644 --- a/icons/es5/Bookmarks.js +++ b/icons/es5/Bookmarks.js @@ -7,9 +7,11 @@ function SvgBookmarks(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 18l2 1V1H7v2h12v15zM17 5H3v18l7-3 7 3V5z" + d: "M19 18l2 1V1H7v2h12v15zM17 5H3v18l7-3 7 3V5z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderAll.js b/icons/es5/BorderAll.js index 36e29132f2..ca350c2065 100644 --- a/icons/es5/BorderAll.js +++ b/icons/es5/BorderAll.js @@ -7,9 +7,11 @@ function SvgBorderAll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z" + d: "M3 3v18h18V3H3zm8 16H5v-6h6v6zm0-8H5V5h6v6zm8 8h-6v-6h6v6zm0-8h-6V5h6v6z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderBottom.js b/icons/es5/BorderBottom.js index b9484ac842..9896025a5e 100644 --- a/icons/es5/BorderBottom.js +++ b/icons/es5/BorderBottom.js @@ -7,9 +7,11 @@ function SvgBorderBottom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z" + d: "M9 11H7v2h2v-2zm4 4h-2v2h2v-2zM9 3H7v2h2V3zm4 8h-2v2h2v-2zM5 3H3v2h2V3zm8 4h-2v2h2V7zm4 4h-2v2h2v-2zm-4-8h-2v2h2V3zm4 0h-2v2h2V3zm2 10h2v-2h-2v2zm0 4h2v-2h-2v2zM5 7H3v2h2V7zm14-4v2h2V3h-2zm0 6h2V7h-2v2zM5 11H3v2h2v-2zM3 21h18v-2H3v2zm2-6H3v2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderClear.js b/icons/es5/BorderClear.js index 7a020fe19b..3c83fb412e 100644 --- a/icons/es5/BorderClear.js +++ b/icons/es5/BorderClear.js @@ -7,9 +7,11 @@ function SvgBorderClear(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z" + d: "M7 5h2V3H7v2zm0 8h2v-2H7v2zm0 8h2v-2H7v2zm4-4h2v-2h-2v2zm0 4h2v-2h-2v2zm-8 0h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2v-2H3v2zm0-4h2V7H3v2zm0-4h2V3H3v2zm8 8h2v-2h-2v2zm8 4h2v-2h-2v2zm0-4h2v-2h-2v2zm0 8h2v-2h-2v2zm0-12h2V7h-2v2zm-8 0h2V7h-2v2zm8-6v2h2V3h-2zm-8 2h2V3h-2v2zm4 16h2v-2h-2v2zm0-8h2v-2h-2v2zm0-8h2V3h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderColor.js b/icons/es5/BorderColor.js index 666bc336f3..27d0315587 100644 --- a/icons/es5/BorderColor.js +++ b/icons/es5/BorderColor.js @@ -7,9 +7,11 @@ function SvgBorderColor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 24H2v-4h20v4zM13.06 5.19l3.75 3.75L7.75 18H4v-3.75l9.06-9.06zm4.82 2.68l-3.75-3.75 2.53-2.54 3.75 3.75-2.53 2.54z" + d: "M22 24H2v-4h20v4zM13.06 5.19l3.75 3.75L7.75 18H4v-3.75l9.06-9.06zm4.82 2.68l-3.75-3.75 2.53-2.54 3.75 3.75-2.53 2.54z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderHorizontal.js b/icons/es5/BorderHorizontal.js index f326161ffa..53417c5e82 100644 --- a/icons/es5/BorderHorizontal.js +++ b/icons/es5/BorderHorizontal.js @@ -7,9 +7,11 @@ function SvgBorderHorizontal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z" + d: "M3 21h2v-2H3v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zm4 4h2v-2H7v2zM5 3H3v2h2V3zm4 0H7v2h2V3zm8 0h-2v2h2V3zm-4 4h-2v2h2V7zm0-4h-2v2h2V3zm6 14h2v-2h-2v2zm-8 4h2v-2h-2v2zm-8-8h18v-2H3v2zM19 3v2h2V3h-2zm0 6h2V7h-2v2zm-8 8h2v-2h-2v2zm4 4h2v-2h-2v2zm4 0h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderInner.js b/icons/es5/BorderInner.js index 6737893eb5..d11c74c579 100644 --- a/icons/es5/BorderInner.js +++ b/icons/es5/BorderInner.js @@ -7,9 +7,11 @@ function SvgBorderInner(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z" + d: "M3 21h2v-2H3v2zm4 0h2v-2H7v2zM5 7H3v2h2V7zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm12 0h-2v2h2V3zm2 6h2V7h-2v2zm0-6v2h2V3h-2zm-4 18h2v-2h-2v2zM13 3h-2v8H3v2h8v8h2v-8h8v-2h-8V3zm6 18h2v-2h-2v2zm0-4h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderLeft.js b/icons/es5/BorderLeft.js index 5ccb7cf7dc..f814c3ef7f 100644 --- a/icons/es5/BorderLeft.js +++ b/icons/es5/BorderLeft.js @@ -7,9 +7,11 @@ function SvgBorderLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z" + d: "M11 21h2v-2h-2v2zm0-4h2v-2h-2v2zm0-12h2V3h-2v2zm0 4h2V7h-2v2zm0 4h2v-2h-2v2zm-4 8h2v-2H7v2zM7 5h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2V3H3v18zM19 9h2V7h-2v2zm-4 12h2v-2h-2v2zm4-4h2v-2h-2v2zm0-14v2h2V3h-2zm0 10h2v-2h-2v2zm0 8h2v-2h-2v2zm-4-8h2v-2h-2v2zm0-8h2V3h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderOuter.js b/icons/es5/BorderOuter.js index aaf4795e8d..3373b5c844 100644 --- a/icons/es5/BorderOuter.js +++ b/icons/es5/BorderOuter.js @@ -7,9 +7,11 @@ function SvgBorderOuter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z" + d: "M13 7h-2v2h2V7zm0 4h-2v2h2v-2zm4 0h-2v2h2v-2zM3 3v18h18V3H3zm16 16H5V5h14v14zm-6-4h-2v2h2v-2zm-4-4H7v2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderRight.js b/icons/es5/BorderRight.js index a6dcb3689e..dec3ecea69 100644 --- a/icons/es5/BorderRight.js +++ b/icons/es5/BorderRight.js @@ -7,9 +7,11 @@ function SvgBorderRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z" + d: "M7 21h2v-2H7v2zM3 5h2V3H3v2zm4 0h2V3H7v2zm0 8h2v-2H7v2zm-4 8h2v-2H3v2zm8 0h2v-2h-2v2zm-8-8h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm8 8h2v-2h-2v2zm4-4h2v-2h-2v2zm4-10v18h2V3h-2zm-4 18h2v-2h-2v2zm0-16h2V3h-2v2zm-4 8h2v-2h-2v2zm0-8h2V3h-2v2zm0 4h2V7h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderStyle.js b/icons/es5/BorderStyle.js index d02bd2053c..15fa788665 100644 --- a/icons/es5/BorderStyle.js +++ b/icons/es5/BorderStyle.js @@ -7,9 +7,11 @@ function SvgBorderStyle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z" + d: "M15 21h2v-2h-2v2zm4 0h2v-2h-2v2zM7 21h2v-2H7v2zm4 0h2v-2h-2v2zm8-4h2v-2h-2v2zm0-4h2v-2h-2v2zM3 3v18h2V5h16V3H3zm16 6h2V7h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderTop.js b/icons/es5/BorderTop.js index 8ee753bb30..b390bdb59f 100644 --- a/icons/es5/BorderTop.js +++ b/icons/es5/BorderTop.js @@ -7,9 +7,11 @@ function SvgBorderTop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z" + d: "M7 21h2v-2H7v2zm0-8h2v-2H7v2zm4 0h2v-2h-2v2zm0 8h2v-2h-2v2zm-8-4h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2v-2H3v2zm0-4h2V7H3v2zm8 8h2v-2h-2v2zm8-8h2V7h-2v2zm0 4h2v-2h-2v2zM3 3v2h18V3H3zm16 14h2v-2h-2v2zm-4 4h2v-2h-2v2zM11 9h2V7h-2v2zm8 12h2v-2h-2v2zm-4-8h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BorderVertical.js b/icons/es5/BorderVertical.js index 6da522aedb..127ff71ad1 100644 --- a/icons/es5/BorderVertical.js +++ b/icons/es5/BorderVertical.js @@ -7,9 +7,11 @@ function SvgBorderVertical(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z" + d: "M3 9h2V7H3v2zm0-4h2V3H3v2zm4 16h2v-2H7v2zm0-8h2v-2H7v2zm-4 0h2v-2H3v2zm0 8h2v-2H3v2zm0-4h2v-2H3v2zM7 5h2V3H7v2zm12 12h2v-2h-2v2zm-8 4h2V3h-2v18zm8 0h2v-2h-2v2zm0-8h2v-2h-2v2zm0-10v2h2V3h-2zm0 6h2V7h-2v2zm-4-4h2V3h-2v2zm0 16h2v-2h-2v2zm0-8h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Boy.js b/icons/es5/Boy.js index 827cdbd5b8..3be54df870 100644 --- a/icons/es5/Boy.js +++ b/icons/es5/Boy.js @@ -7,9 +7,11 @@ function SvgBoy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7.5c.97 0 1.75-.78 1.75-1.75S12.97 4 12 4s-1.75.78-1.75 1.75S11.03 7.5 12 7.5zM14 20v-5h1v-4.5c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2V15h1v5h4z" + d: "M12 7.5c.97 0 1.75-.78 1.75-1.75S12.97 4 12 4s-1.75.78-1.75 1.75S11.03 7.5 12 7.5zM14 20v-5h1v-4.5c0-1.1-.9-2-2-2h-2c-1.1 0-2 .9-2 2V15h1v5h4z", + fill: "currentColor" })); } diff --git a/icons/es5/BrandingWatermark.js b/icons/es5/BrandingWatermark.js index 9b387a6fe3..1f364b9592 100644 --- a/icons/es5/BrandingWatermark.js +++ b/icons/es5/BrandingWatermark.js @@ -7,9 +7,11 @@ function SvgBrandingWatermark(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zm-2 16h-9v-6h9v6z" + d: "M23 3H1v18h22V3zm-2 16h-9v-6h9v6z", + fill: "currentColor" })); } diff --git a/icons/es5/BreakfastDining.js b/icons/es5/BreakfastDining.js index 15877fadb6..1cc923ad52 100644 --- a/icons/es5/BreakfastDining.js +++ b/icons/es5/BreakfastDining.js @@ -7,9 +7,11 @@ function SvgBreakfastDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.85 3H6.14C4.15 3 2.36 4.39 2.05 6.36c-.27 1.75.59 3.29 1.95 4.09V21h16V10.45a3.996 3.996 0 001.95-4.11C21.63 4.38 19.83 3 17.85 3zm-1.44 10L12 17.42 7.59 13 12 8.59 16.41 13z" + d: "M17.85 3H6.14C4.15 3 2.36 4.39 2.05 6.36c-.27 1.75.59 3.29 1.95 4.09V21h16V10.45a3.996 3.996 0 001.95-4.11C21.63 4.38 19.83 3 17.85 3zm-1.44 10L12 17.42 7.59 13 12 8.59 16.41 13z", + fill: "currentColor" })); } diff --git a/icons/es5/Brightness1.js b/icons/es5/Brightness1.js index 9d1d883a7d..87e12de225 100644 --- a/icons/es5/Brightness1.js +++ b/icons/es5/Brightness1.js @@ -7,7 +7,8 @@ function SvgBrightness1(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, diff --git a/icons/es5/Brightness2.js b/icons/es5/Brightness2.js index ece1b7a1b4..57d3c1d437 100644 --- a/icons/es5/Brightness2.js +++ b/icons/es5/Brightness2.js @@ -7,9 +7,11 @@ function SvgBrightness2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z" + d: "M10 2c-1.82 0-3.53.5-5 1.35C7.99 5.08 10 8.3 10 12s-2.01 6.92-5 8.65C6.47 21.5 8.18 22 10 22c5.52 0 10-4.48 10-10S15.52 2 10 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Brightness3.js b/icons/es5/Brightness3.js index e783160279..cf8ccb1547 100644 --- a/icons/es5/Brightness3.js +++ b/icons/es5/Brightness3.js @@ -7,9 +7,11 @@ function SvgBrightness3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z" + d: "M9 2c-1.05 0-2.05.16-3 .46 4.06 1.27 7 5.06 7 9.54s-2.94 8.27-7 9.54c.95.3 1.95.46 3 .46 5.52 0 10-4.48 10-10S14.52 2 9 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Brightness4.js b/icons/es5/Brightness4.js index 784f99fa6f..e52e13ad3b 100644 --- a/icons/es5/Brightness4.js +++ b/icons/es5/Brightness4.js @@ -7,9 +7,11 @@ function SvgBrightness4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-.89 0-1.74-.2-2.5-.55C11.56 16.5 13 14.42 13 12s-1.44-4.5-3.5-5.45C10.26 6.2 11.11 6 12 6c3.31 0 6 2.69 6 6s-2.69 6-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Brightness5.js b/icons/es5/Brightness5.js index ba14aa90d0..160c51a1be 100644 --- a/icons/es5/Brightness5.js +++ b/icons/es5/Brightness5.js @@ -7,9 +7,11 @@ function SvgBrightness5(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + d: "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Brightness6.js b/icons/es5/Brightness6.js index f619cad689..2f0521c0cc 100644 --- a/icons/es5/Brightness6.js +++ b/icons/es5/Brightness6.js @@ -7,9 +7,11 @@ function SvgBrightness6(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" + d: "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Brightness7.js b/icons/es5/Brightness7.js index c98ce6983d..61d498081f 100644 --- a/icons/es5/Brightness7.js +++ b/icons/es5/Brightness7.js @@ -7,9 +7,11 @@ function SvgBrightness7(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/BrightnessAuto.js b/icons/es5/BrightnessAuto.js index aab262fa68..dc07729eb5 100644 --- a/icons/es5/BrightnessAuto.js +++ b/icons/es5/BrightnessAuto.js @@ -7,9 +7,11 @@ function SvgBrightnessAuto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z" + d: "M10.85 12.65h2.3L12 9l-1.15 3.65zM20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM14.3 16l-.7-2h-3.2l-.7 2H7.8L11 7h2l3.2 9h-1.9z", + fill: "currentColor" })); } diff --git a/icons/es5/BrightnessHigh.js b/icons/es5/BrightnessHigh.js index 6e8da2623c..1e1ac2ec58 100644 --- a/icons/es5/BrightnessHigh.js +++ b/icons/es5/BrightnessHigh.js @@ -7,9 +7,11 @@ function SvgBrightnessHigh(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" + d: "M20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zm0-10c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/BrightnessLow.js b/icons/es5/BrightnessLow.js index d8958ab366..0efb333df4 100644 --- a/icons/es5/BrightnessLow.js +++ b/icons/es5/BrightnessLow.js @@ -7,9 +7,11 @@ function SvgBrightnessLow(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + d: "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/BrightnessMedium.js b/icons/es5/BrightnessMedium.js index bfdcf31eb5..8361bd7470 100644 --- a/icons/es5/BrightnessMedium.js +++ b/icons/es5/BrightnessMedium.js @@ -7,9 +7,11 @@ function SvgBrightnessMedium(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z" + d: "M20 15.31L23.31 12 20 8.69V4h-4.69L12 .69 8.69 4H4v4.69L.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69zM12 18V6c3.31 0 6 2.69 6 6s-2.69 6-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/BroadcastOnHome.js b/icons/es5/BroadcastOnHome.js index b355e18414..c1054e40d3 100644 --- a/icons/es5/BroadcastOnHome.js +++ b/icons/es5/BroadcastOnHome.js @@ -7,13 +7,17 @@ function SvgBroadcastOnHome(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9.76V4H4v2h16v2.59c.73.29 1.4.69 2 1.17zM9 9H2v11h7V9zm-2 9H4v-7h3v7zm10.75-1.03c.3-.23.5-.57.5-.97a1.25 1.25 0 00-2.5 0c0 .4.2.75.5.97V22h1.5v-5.03z" + d: "M22 9.76V4H4v2h16v2.59c.73.29 1.4.69 2 1.17zM9 9H2v11h7V9zm-2 9H4v-7h3v7zm10.75-1.03c.3-.23.5-.57.5-.97a1.25 1.25 0 00-2.5 0c0 .4.2.75.5.97V22h1.5v-5.03z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 13.5a2.5 2.5 0 012.5 2.5c0 .69-.28 1.31-.73 1.76l1.06 1.06C20.55 18.1 21 17.1 21 16c0-2.21-1.79-4-4-4s-4 1.79-4 4c0 1.1.45 2.1 1.17 2.83l1.06-1.06A2.5 2.5 0 0117 13.5z" + d: "M17 13.5a2.5 2.5 0 012.5 2.5c0 .69-.28 1.31-.73 1.76l1.06 1.06C20.55 18.1 21 17.1 21 16c0-2.21-1.79-4-4-4s-4 1.79-4 4c0 1.1.45 2.1 1.17 2.83l1.06-1.06A2.5 2.5 0 0117 13.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 9.5a6.5 6.5 0 00-6.5 6.5c0 1.79.73 3.42 1.9 4.6l1.06-1.06C12.56 18.63 12 17.38 12 16c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.37-.56 2.62-1.46 3.52l1.07 1.06A6.5 6.5 0 0017 9.5z" + d: "M17 9.5a6.5 6.5 0 00-6.5 6.5c0 1.79.73 3.42 1.9 4.6l1.06-1.06C12.56 18.63 12 17.38 12 16c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.37-.56 2.62-1.46 3.52l1.07 1.06A6.5 6.5 0 0017 9.5z", + fill: "currentColor" })); } diff --git a/icons/es5/BroadcastOnPersonal.js b/icons/es5/BroadcastOnPersonal.js index 86c446d406..afe622c71e 100644 --- a/icons/es5/BroadcastOnPersonal.js +++ b/icons/es5/BroadcastOnPersonal.js @@ -7,13 +7,17 @@ function SvgBroadcastOnPersonal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 8c.7 0 1.38.1 2.02.27L12 3 4 9v12h6.76A7.998 7.998 0 0117 8zm0 6.75c-.69 0-1.25.56-1.25 1.25 0 .4.2.75.5.97V22h1.5v-5.03c.3-.23.5-.57.5-.97 0-.69-.56-1.25-1.25-1.25z" + d: "M17 8c.7 0 1.38.1 2.02.27L12 3 4 9v12h6.76A7.998 7.998 0 0117 8zm0 6.75c-.69 0-1.25.56-1.25 1.25 0 .4.2.75.5.97V22h1.5v-5.03c.3-.23.5-.57.5-.97 0-.69-.56-1.25-1.25-1.25z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 12c-2.21 0-4 1.79-4 4 0 1.1.45 2.1 1.17 2.83l1.06-1.06A2.5 2.5 0 1119.5 16c0 .69-.28 1.31-.73 1.76l1.06 1.06C20.55 18.1 21 17.1 21 16c0-2.21-1.79-4-4-4z" + d: "M17 12c-2.21 0-4 1.79-4 4 0 1.1.45 2.1 1.17 2.83l1.06-1.06A2.5 2.5 0 1119.5 16c0 .69-.28 1.31-.73 1.76l1.06 1.06C20.55 18.1 21 17.1 21 16c0-2.21-1.79-4-4-4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 9.5a6.5 6.5 0 00-6.5 6.5c0 1.79.73 3.42 1.9 4.6l1.06-1.06C12.56 18.63 12 17.38 12 16c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.37-.56 2.62-1.46 3.52l1.07 1.06A6.5 6.5 0 0017 9.5z" + d: "M17 9.5a6.5 6.5 0 00-6.5 6.5c0 1.79.73 3.42 1.9 4.6l1.06-1.06C12.56 18.63 12 17.38 12 16c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.37-.56 2.62-1.46 3.52l1.07 1.06A6.5 6.5 0 0017 9.5z", + fill: "currentColor" })); } diff --git a/icons/es5/BrokenImage.js b/icons/es5/BrokenImage.js index 5ad0420ff5..06f7dbb3cb 100644 --- a/icons/es5/BrokenImage.js +++ b/icons/es5/BrokenImage.js @@ -7,9 +7,11 @@ function SvgBrokenImage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3v8.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V3h18zm-3 8.42l3 3.01V21H3v-8.58l3 2.99 4-4 4 4 4-3.99z" + d: "M21 3v8.59l-3-3.01-4 4.01-4-4-4 4-3-3.01V3h18zm-3 8.42l3 3.01V21H3v-8.58l3 2.99 4-4 4 4 4-3.99z", + fill: "currentColor" })); } diff --git a/icons/es5/BrowseGallery.js b/icons/es5/BrowseGallery.js index 2de860a46c..72294eb5b7 100644 --- a/icons/es5/BrowseGallery.js +++ b/icons/es5/BrowseGallery.js @@ -7,11 +7,14 @@ function SvgBrowseGallery(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 3a9 9 0 10.001 18.001A9 9 0 009 3zm2.79 13.21L8 12.41V7h2v4.59l3.21 3.21-1.42 1.41z" + d: "M9 3a9 9 0 10.001 18.001A9 9 0 009 3zm2.79 13.21L8 12.41V7h2v4.59l3.21 3.21-1.42 1.41z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17.99 3.52v2.16A6.99 6.99 0 0122 12c0 2.79-1.64 5.2-4.01 6.32v2.16C21.48 19.24 24 15.91 24 12s-2.52-7.24-6.01-8.48z" + d: "M17.99 3.52v2.16A6.99 6.99 0 0122 12c0 2.79-1.64 5.2-4.01 6.32v2.16C21.48 19.24 24 15.91 24 12s-2.52-7.24-6.01-8.48z", + fill: "currentColor" })); } diff --git a/icons/es5/BrowserNotSupported.js b/icons/es5/BrowserNotSupported.js index 1b4256bf0c..016e076174 100644 --- a/icons/es5/BrowserNotSupported.js +++ b/icons/es5/BrowserNotSupported.js @@ -7,9 +7,11 @@ function SvgBrowserNotSupported(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 6v10.5l2 2V4H6.5l2 2zM3.22 3.32L1.95 4.59 3 5.64V20h14.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z" + d: "M19 6v10.5l2 2V4H6.5l2 2zM3.22 3.32L1.95 4.59 3 5.64V20h14.36l2.06 2.06 1.27-1.27L3.22 3.32zM15 18H5V7.64L15.36 18H15z", + fill: "currentColor" })); } diff --git a/icons/es5/BrowserUpdated.js b/icons/es5/BrowserUpdated.js index 949c0639a1..75f5d92778 100644 --- a/icons/es5/BrowserUpdated.js +++ b/icons/es5/BrowserUpdated.js @@ -7,9 +7,11 @@ function SvgBrowserUpdated(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 13v5h-5l1 1v2H6v-2l1-1H2V3h10v2H4v11h16v-3h2zm-7 2l-5-5h4V3h2v7h4l-5 5z" + d: "M22 13v5h-5l1 1v2H6v-2l1-1H2V3h10v2H4v11h16v-3h2zm-7 2l-5-5h4V3h2v7h4l-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/BrunchDining.js b/icons/es5/BrunchDining.js index 3dd9561cc1..74b7115e9e 100644 --- a/icons/es5/BrunchDining.js +++ b/icons/es5/BrunchDining.js @@ -7,9 +7,11 @@ function SvgBrunchDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 8h2V4h-2v4zm-2 14H2v-2h14v2zm2-6.11l-.4-.42a5.852 5.852 0 01-1.6-4V2h6v9.51c0 1.46-.54 2.87-1.53 3.94l-.47.52V20h2v2h-4v-6.11zM7 16v-2h4v2h5v2H2v-2h5z" + d: "M18 8h2V4h-2v4zm-2 14H2v-2h14v2zm2-6.11l-.4-.42a5.852 5.852 0 01-1.6-4V2h6v9.51c0 1.46-.54 2.87-1.53 3.94l-.47.52V20h2v2h-4v-6.11zM7 16v-2h4v2h5v2H2v-2h5z", + fill: "currentColor" })); } diff --git a/icons/es5/Brush.js b/icons/es5/Brush.js index 70f4254812..e6b267243f 100644 --- a/icons/es5/Brush.js +++ b/icons/es5/Brush.js @@ -7,9 +7,11 @@ function SvgBrush(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm14.41-8.66l-2.75-2.75L9 12.25 11.75 15l9.66-9.66z" + d: "M7 14c-1.66 0-3 1.34-3 3 0 1.31-1.16 2-2 2 .92 1.22 2.49 2 4 2 2.21 0 4-1.79 4-4 0-1.66-1.34-3-3-3zm14.41-8.66l-2.75-2.75L9 12.25 11.75 15l9.66-9.66z", + fill: "currentColor" })); } diff --git a/icons/es5/BubbleChart.js b/icons/es5/BubbleChart.js index 436d5ec06e..b1dadba47a 100644 --- a/icons/es5/BubbleChart.js +++ b/icons/es5/BubbleChart.js @@ -7,7 +7,8 @@ function SvgBubbleChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 7.2, cy: 14.4, diff --git a/icons/es5/BugReport.js b/icons/es5/BugReport.js index fecdbbc91b..661665211e 100644 --- a/icons/es5/BugReport.js +++ b/icons/es5/BugReport.js @@ -7,9 +7,11 @@ function SvgBugReport(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8h-2.81a5.985 5.985 0 00-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z" + d: "M20 8h-2.81a5.985 5.985 0 00-1.82-1.96L17 4.41 15.59 3l-2.17 2.17C12.96 5.06 12.49 5 12 5s-.96.06-1.41.17L8.41 3 7 4.41l1.62 1.63C7.88 6.55 7.26 7.22 6.81 8H4v2h2.09c-.05.33-.09.66-.09 1v1H4v2h2v1c0 .34.04.67.09 1H4v2h2.81c1.04 1.79 2.97 3 5.19 3s4.15-1.21 5.19-3H20v-2h-2.09c.05-.33.09-.66.09-1v-1h2v-2h-2v-1c0-.34-.04-.67-.09-1H20V8zm-6 8h-4v-2h4v2zm0-4h-4v-2h4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Build.js b/icons/es5/Build.js index 6729367948..a38070c9d7 100644 --- a/icons/es5/Build.js +++ b/icons/es5/Build.js @@ -7,9 +7,11 @@ function SvgBuild(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.09 2.91C10.08.9 7.07.49 4.65 1.67l4.34 4.34-3 3-4.34-4.34C.48 7.1.89 10.09 2.9 12.1a6.507 6.507 0 006.89 1.48l9.82 9.82 3.71-3.71-9.78-9.79c.92-2.34.44-5.1-1.45-6.99z" + d: "M12.09 2.91C10.08.9 7.07.49 4.65 1.67l4.34 4.34-3 3-4.34-4.34C.48 7.1.89 10.09 2.9 12.1a6.507 6.507 0 006.89 1.48l9.82 9.82 3.71-3.71-9.78-9.79c.92-2.34.44-5.1-1.45-6.99z", + fill: "currentColor" })); } diff --git a/icons/es5/BuildCircle.js b/icons/es5/BuildCircle.js index 05e7c3b8f6..30f685f0cf 100644 --- a/icons/es5/BuildCircle.js +++ b/icons/es5/BuildCircle.js @@ -7,10 +7,12 @@ function SvgBuildCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.14 15.25l-3.76-3.76c-1.22.43-2.64.17-3.62-.81a3.468 3.468 0 01-.59-4.1l2.35 2.35 1.41-1.41-2.35-2.35c1.32-.71 2.99-.52 4.1.59.98.98 1.24 2.4.81 3.62l3.76 3.76-2.11 2.11z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/Bungalow.js b/icons/es5/Bungalow.js index 2978acae82..023be092c5 100644 --- a/icons/es5/Bungalow.js +++ b/icons/es5/Bungalow.js @@ -7,9 +7,11 @@ function SvgBungalow(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L4.2 15.5l1.7 1.06L7 14.8V21h4v-5h2v5h4v-6.21l1.1 1.77 1.7-1.06L12 3zm1 11h-2v-2h2v2z" + d: "M12 3L4.2 15.5l1.7 1.06L7 14.8V21h4v-5h2v5h4v-6.21l1.1 1.77 1.7-1.06L12 3zm1 11h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/BurstMode.js b/icons/es5/BurstMode.js index 39730c60d4..85c9a7c8a4 100644 --- a/icons/es5/BurstMode.js +++ b/icons/es5/BurstMode.js @@ -7,9 +7,11 @@ function SvgBurstMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 5h2v14H1V5zm4 0h2v14H5V5zm18 0H9v14h14V5zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z" + d: "M1 5h2v14H1V5zm4 0h2v14H5V5zm18 0H9v14h14V5zM11 17l2.5-3.15L15.29 16l2.5-3.22L21 17H11z", + fill: "currentColor" })); } diff --git a/icons/es5/BusAlert.js b/icons/es5/BusAlert.js index 96aca00d90..6087aa28af 100644 --- a/icons/es5/BusAlert.js +++ b/icons/es5/BusAlert.js @@ -7,11 +7,14 @@ function SvgBusAlert(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44V22h3v-2h8v2h3v-3.06c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm2.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" + d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5c0 .95.38 1.81 1 2.44V22h3v-2h8v2h3v-3.06c.62-.63 1-1.49 1-2.44V13c-1.91 0-3.63-.76-4.89-2H4zm2.5 6c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm8.5-1.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Business.js b/icons/es5/Business.js index 0761c939d6..fa9fdaeef4 100644 --- a/icons/es5/Business.js +++ b/icons/es5/Business.js @@ -7,9 +7,11 @@ function SvgBusiness(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/BusinessCenter.js b/icons/es5/BusinessCenter.js index f45cab6831..cb10150937 100644 --- a/icons/es5/BusinessCenter.js +++ b/icons/es5/BusinessCenter.js @@ -7,9 +7,11 @@ function SvgBusinessCenter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 16v-1H3.01v6H21v-6h-7v1h-4zm12-9h-6V5l-2-2h-4L8 5v2H2v7h8v-2h4v2h8V7zm-8 0h-4V5h4v2z" + d: "M10 16v-1H3.01v6H21v-6h-7v1h-4zm12-9h-6V5l-2-2h-4L8 5v2H2v7h8v-2h4v2h8V7zm-8 0h-4V5h4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Cabin.js b/icons/es5/Cabin.js index ff716cdec5..eb5df88235 100644 --- a/icons/es5/Cabin.js +++ b/icons/es5/Cabin.js @@ -7,9 +7,11 @@ function SvgCabin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z" + d: "M10 1c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2zm2 2L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zm1.94 4h-3.89L12 5.52 13.94 7zm-6.5 2h9.12L18 10.1v.9H6v-.9L7.44 9zM18 13v2H6v-2h12zM6 19v-2h12v2H6z", + fill: "currentColor" })); } diff --git a/icons/es5/Cable.js b/icons/es5/Cable.js index 17b9bbc3a2..2b88ab8a06 100644 --- a/icons/es5/Cable.js +++ b/icons/es5/Cable.js @@ -7,9 +7,11 @@ function SvgCable(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 5V3h-4v2h-1v5h2v9h-4V3H5v11H3v5h1v2h4v-2h1v-5H7V5h4v16h8V10h2V5h-1z" + d: "M20 5V3h-4v2h-1v5h2v9h-4V3H5v11H3v5h1v2h4v-2h1v-5H7V5h4v16h8V10h2V5h-1z", + fill: "currentColor" })); } diff --git a/icons/es5/Cached.js b/icons/es5/Cached.js index 3107bd2f4d..b0af739fb9 100644 --- a/icons/es5/Cached.js +++ b/icons/es5/Cached.js @@ -7,9 +7,11 @@ function SvgCached(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 8l-4 4h3c0 3.31-2.69 6-6 6a5.87 5.87 0 01-2.8-.7l-1.46 1.46A7.93 7.93 0 0012 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46A7.93 7.93 0 0012 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z" + d: "M19 8l-4 4h3c0 3.31-2.69 6-6 6a5.87 5.87 0 01-2.8-.7l-1.46 1.46A7.93 7.93 0 0012 20c4.42 0 8-3.58 8-8h3l-4-4zM6 12c0-3.31 2.69-6 6-6 1.01 0 1.97.25 2.8.7l1.46-1.46A7.93 7.93 0 0012 4c-4.42 0-8 3.58-8 8H1l4 4 4-4H6z", + fill: "currentColor" })); } diff --git a/icons/es5/Cake.js b/icons/es5/Cake.js index 21445b932a..f030fcd416 100644 --- a/icons/es5/Cake.js +++ b/icons/es5/Cake.js @@ -7,9 +7,11 @@ function SvgCake(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6a2 2 0 002-2c0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.53 9.92l-1-1-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V22h18v-5.61c-.75.51-1.71.75-2.74.52-.66-.14-1.25-.51-1.73-.99zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z" + d: "M12 6a2 2 0 002-2c0-.38-.1-.73-.29-1.03L12 0l-1.71 2.97c-.19.3-.29.65-.29 1.03 0 1.1.9 2 2 2zm4.53 9.92l-1-1-1.08 1.07c-1.3 1.3-3.58 1.31-4.89 0l-1.07-1.07-1.09 1.07C6.75 16.64 5.88 17 4.96 17c-.73 0-1.4-.23-1.96-.61V22h18v-5.61c-.75.51-1.71.75-2.74.52-.66-.14-1.25-.51-1.73-.99zM18 9h-5V7h-2v2H6c-1.66 0-3 1.34-3 3v1.54c0 1.08.88 1.96 1.96 1.96.52 0 1.02-.2 1.38-.57l2.14-2.13 2.13 2.13c.74.74 2.03.74 2.77 0l2.14-2.13 2.13 2.13c.37.37.86.57 1.38.57 1.08 0 1.96-.88 1.96-1.96V12C21 10.34 19.66 9 18 9z", + fill: "currentColor" })); } diff --git a/icons/es5/Calculate.js b/icons/es5/Calculate.js index 43128d209e..267e83d1c5 100644 --- a/icons/es5/Calculate.js +++ b/icons/es5/Calculate.js @@ -7,9 +7,11 @@ function SvgCalculate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-7.97 4.06L14.09 6l1.41 1.41L16.91 6l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.4-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.42zm-6.78.66h5v1.5h-5v-1.5zM11.5 16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16zm6.5 1.25h-5v-1.5h5v1.5zm0-2.5h-5v-1.5h5v1.5z" + d: "M21 3H3v18h18V3zm-7.97 4.06L14.09 6l1.41 1.41L16.91 6l1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.4-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.42zm-6.78.66h5v1.5h-5v-1.5zM11.5 16h-2v2H8v-2H6v-1.5h2v-2h1.5v2h2V16zm6.5 1.25h-5v-1.5h5v1.5zm0-2.5h-5v-1.5h5v1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/CalendarMonth.js b/icons/es5/CalendarMonth.js index 29c3d09d70..69f3469b2b 100644 --- a/icons/es5/CalendarMonth.js +++ b/icons/es5/CalendarMonth.js @@ -7,9 +7,11 @@ function SvgCalendarMonth(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 002 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z" + d: "M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20a2 2 0 002 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/CalendarToday.js b/icons/es5/CalendarToday.js index cb7c8b4c5b..7f8a5b9a08 100644 --- a/icons/es5/CalendarToday.js +++ b/icons/es5/CalendarToday.js @@ -7,9 +7,11 @@ function SvgCalendarToday(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 3h-3V1h-2v2H7V1H5v2H2v20h20V3zm-2 18H4V8h16v13z" + d: "M22 3h-3V1h-2v2H7V1H5v2H2v20h20V3zm-2 18H4V8h16v13z", + fill: "currentColor" })); } diff --git a/icons/es5/CalendarViewDay.js b/icons/es5/CalendarViewDay.js index 772788034b..15b824c2c9 100644 --- a/icons/es5/CalendarViewDay.js +++ b/icons/es5/CalendarViewDay.js @@ -7,9 +7,11 @@ function SvgCalendarViewDay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 17h18v2H3v-2zm0-7h18v5H3v-5zm0-4h18v2H3V6z" + d: "M3 17h18v2H3v-2zm0-7h18v5H3v-5zm0-4h18v2H3V6z", + fill: "currentColor" })); } diff --git a/icons/es5/CalendarViewMonth.js b/icons/es5/CalendarViewMonth.js index 9358503cf0..cc11b9981c 100644 --- a/icons/es5/CalendarViewMonth.js +++ b/icons/es5/CalendarViewMonth.js @@ -7,9 +7,11 @@ function SvgCalendarViewMonth(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z" + d: "M22 4H2v16h20V4zM8 11H4V6h4v5zm6 0h-4V6h4v5zm6 0h-4V6h4v5zM8 18H4v-5h4v5zm6 0h-4v-5h4v5zm6 0h-4v-5h4v5z", + fill: "currentColor" })); } diff --git a/icons/es5/CalendarViewWeek.js b/icons/es5/CalendarViewWeek.js index ba0c3859c8..eaef8ac341 100644 --- a/icons/es5/CalendarViewWeek.js +++ b/icons/es5/CalendarViewWeek.js @@ -7,9 +7,11 @@ function SvgCalendarViewWeek(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zm-9 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z" + d: "M22 4H2v16h20V4zm-9 2h2.5v12H13V6zm-2 12H8.5V6H11v12zM4 6h2.5v12H4V6zm16 12h-2.5V6H20v12z", + fill: "currentColor" })); } diff --git a/icons/es5/Call.js b/icons/es5/Call.js index 409d270db3..1341a08c64 100644 --- a/icons/es5/Call.js +++ b/icons/es5/Call.js @@ -7,9 +7,11 @@ function SvgCall(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 15.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" + d: "M21 15.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z", + fill: "currentColor" })); } diff --git a/icons/es5/CallEnd.js b/icons/es5/CallEnd.js index 21255091bc..51b0c27a51 100644 --- a/icons/es5/CallEnd.js +++ b/icons/es5/CallEnd.js @@ -7,9 +7,11 @@ function SvgCallEnd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.68 16.07l3.92-3.11V9.59c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 12.39c-6.41-7.19-17.59-7.19-24 0l3.68 3.68z" + d: "M3.68 16.07l3.92-3.11V9.59c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 12.39c-6.41-7.19-17.59-7.19-24 0l3.68 3.68z", + fill: "currentColor" })); } diff --git a/icons/es5/CallMade.js b/icons/es5/CallMade.js index 04c516d0d8..54132614f7 100644 --- a/icons/es5/CallMade.js +++ b/icons/es5/CallMade.js @@ -7,9 +7,11 @@ function SvgCallMade(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z", + fill: "currentColor" })); } diff --git a/icons/es5/CallMerge.js b/icons/es5/CallMerge.js index b31a772c9e..68c646c402 100644 --- a/icons/es5/CallMerge.js +++ b/icons/es5/CallMerge.js @@ -7,9 +7,11 @@ function SvgCallMerge(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" + d: "M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z", + fill: "currentColor" })); } diff --git a/icons/es5/CallMissed.js b/icons/es5/CallMissed.js index 54b634e673..8c0593d1ed 100644 --- a/icons/es5/CallMissed.js +++ b/icons/es5/CallMissed.js @@ -7,9 +7,11 @@ function SvgCallMissed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z" + d: "M19.59 7L12 14.59 6.41 9H11V7H3v8h2v-4.59l7 7 9-9L19.59 7z", + fill: "currentColor" })); } diff --git a/icons/es5/CallMissedOutgoing.js b/icons/es5/CallMissedOutgoing.js index 33a0402493..6054559289 100644 --- a/icons/es5/CallMissedOutgoing.js +++ b/icons/es5/CallMissedOutgoing.js @@ -7,9 +7,11 @@ function SvgCallMissedOutgoing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z" + d: "M3 8.41l9 9 7-7V15h2V7h-8v2h4.59L12 14.59 4.41 7 3 8.41z", + fill: "currentColor" })); } diff --git a/icons/es5/CallReceived.js b/icons/es5/CallReceived.js index f6861f8a08..4dda860ac7 100644 --- a/icons/es5/CallReceived.js +++ b/icons/es5/CallReceived.js @@ -7,9 +7,11 @@ function SvgCallReceived(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z" + d: "M20 5.41L18.59 4 7 15.59V9H5v10h10v-2H8.41L20 5.41z", + fill: "currentColor" })); } diff --git a/icons/es5/CallSplit.js b/icons/es5/CallSplit.js index b3e7b16f09..d719434dfb 100644 --- a/icons/es5/CallSplit.js +++ b/icons/es5/CallSplit.js @@ -7,9 +7,11 @@ function SvgCallSplit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z" + d: "M14 4l2.29 2.29-2.88 2.88 1.42 1.42 2.88-2.88L20 10V4h-6zm-4 0H4v6l2.29-2.29 4.71 4.7V20h2v-8.41l-5.29-5.3L10 4z", + fill: "currentColor" })); } diff --git a/icons/es5/CallToAction.js b/icons/es5/CallToAction.js index ac5111609a..2c55219ad0 100644 --- a/icons/es5/CallToAction.js +++ b/icons/es5/CallToAction.js @@ -7,9 +7,11 @@ function SvgCallToAction(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zm-2 16H3v-3h18v3z" + d: "M23 3H1v18h22V3zm-2 16H3v-3h18v3z", + fill: "currentColor" })); } diff --git a/icons/es5/Camera.js b/icons/es5/Camera.js index ca559e2a21..9e0b4bb82a 100644 --- a/icons/es5/Camera.js +++ b/icons/es5/Camera.js @@ -7,9 +7,11 @@ function SvgCamera(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.4 10.5l4.77-8.26a9.984 9.984 0 00-8.49 2.01l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25A9.91 9.91 0 0022 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75A9.958 9.958 0 002.2 14h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0l-3.9 6.76a9.984 9.984 0 008.49-2.01l-3.66-6.35-.93 1.6z" + d: "M9.4 10.5l4.77-8.26a9.984 9.984 0 00-8.49 2.01l3.66 6.35.06-.1zM21.54 9c-.92-2.92-3.15-5.26-6-6.34L11.88 9h9.66zm.26 1h-7.49l.29.5 4.76 8.25A9.91 9.91 0 0022 12c0-.69-.07-1.35-.2-2zM8.54 12l-3.9-6.75A9.958 9.958 0 002.2 14h7.49l-1.15-2zm-6.08 3c.92 2.92 3.15 5.26 6 6.34L12.12 15H2.46zm11.27 0l-3.9 6.76a9.984 9.984 0 008.49-2.01l-3.66-6.35-.93 1.6z", + fill: "currentColor" })); } diff --git a/icons/es5/CameraAlt.js b/icons/es5/CameraAlt.js index a946edb0ab..ac3e2362bf 100644 --- a/icons/es5/CameraAlt.js +++ b/icons/es5/CameraAlt.js @@ -7,13 +7,15 @@ function SvgCameraAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, r: 3 }), /*#__PURE__*/React.createElement("path", { - d: "M16.83 4L15 2H9L7.17 4H2v16h20V4h-5.17zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + d: "M16.83 4L15 2H9L7.17 4H2v16h20V4h-5.17zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/CameraEnhance.js b/icons/es5/CameraEnhance.js index d3bfca4417..3e04581816 100644 --- a/icons/es5/CameraEnhance.js +++ b/icons/es5/CameraEnhance.js @@ -7,9 +7,11 @@ function SvgCameraEnhance(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-9l-1.25 2.75L8 13l2.75 1.25L12 17l1.25-2.75L16 13l-2.75-1.25z" + d: "M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-9l-1.25 2.75L8 13l2.75 1.25L12 17l1.25-2.75L16 13l-2.75-1.25z", + fill: "currentColor" })); } diff --git a/icons/es5/CameraFront.js b/icons/es5/CameraFront.js index 290fba8f6f..1901d157eb 100644 --- a/icons/es5/CameraFront.js +++ b/icons/es5/CameraFront.js @@ -7,9 +7,11 @@ function SvgCameraFront(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm7-8H5v18h14V0zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z" + d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zM12 8c1.1 0 2-.9 2-2s-.9-2-2-2-1.99.9-1.99 2S10.9 8 12 8zm7-8H5v18h14V0zM7 2h10v10.5c0-1.67-3.33-2.5-5-2.5s-5 .83-5 2.5V2z", + fill: "currentColor" })); } diff --git a/icons/es5/CameraIndoor.js b/icons/es5/CameraIndoor.js index 3855183433..b19981e163 100644 --- a/icons/es5/CameraIndoor.js +++ b/icons/es5/CameraIndoor.js @@ -7,9 +7,11 @@ function SvgCameraIndoor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L4 9v12h16V9l-8-6zm4 13.06L14 15v2H8v-6h6v2l2-1.06v4.12z" + d: "M12 3L4 9v12h16V9l-8-6zm4 13.06L14 15v2H8v-6h6v2l2-1.06v4.12z", + fill: "currentColor" })); } diff --git a/icons/es5/CameraOutdoor.js b/icons/es5/CameraOutdoor.js index c1f8d8f122..7904102b1f 100644 --- a/icons/es5/CameraOutdoor.js +++ b/icons/es5/CameraOutdoor.js @@ -7,9 +7,11 @@ function SvgCameraOutdoor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 14v-2h-6v6h6v-2l2 1.06v-4.12L18 14zM12 3L4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z" + d: "M18 14v-2h-6v6h6v-2l2 1.06v-4.12L18 14zM12 3L4 9v12h16v-2H6v-9l6-4.5 6 4.5v1h2V9l-8-6z", + fill: "currentColor" })); } diff --git a/icons/es5/CameraRear.js b/icons/es5/CameraRear.js index 78d56e0b1c..52b7f18453 100644 --- a/icons/es5/CameraRear.js +++ b/icons/es5/CameraRear.js @@ -7,9 +7,11 @@ function SvgCameraRear(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm5-20H5v18h14V0zm-7 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z" + d: "M10 20H5v2h5v2l3-3-3-3v2zm4 0v2h5v-2h-5zm5-20H5v18h14V0zm-7 6c-1.11 0-2-.9-2-2s.89-2 1.99-2 2 .9 2 2C14 5.1 13.1 6 12 6z", + fill: "currentColor" })); } diff --git a/icons/es5/CameraRoll.js b/icons/es5/CameraRoll.js index 71cb317c2e..e83a139d67 100644 --- a/icons/es5/CameraRoll.js +++ b/icons/es5/CameraRoll.js @@ -7,9 +7,11 @@ function SvgCameraRoll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 5V3h-3V1H5v2H2v19h12v-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z" + d: "M14 5V3h-3V1H5v2H2v19h12v-2h8V5h-8zm-2 13h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2zm4 9h-2v-2h2v2zm0-9h-2V7h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Cameraswitch.js b/icons/es5/Cameraswitch.js index 9443dc668e..32ddfddfb7 100644 --- a/icons/es5/Cameraswitch.js +++ b/icons/es5/Cameraswitch.js @@ -7,11 +7,14 @@ function SvgCameraswitch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 6h-4L9 7H6v10h12V7h-3l-1-1zm-2 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M14 6h-4L9 7H6v10h12V7h-3l-1-1zm-2 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M8.57.51l4.48 4.48V2.04c4.72.47 8.48 4.23 8.95 8.95h2C23.34 3.02 15.49-1.59 8.57.51zm2.38 21.45c-4.72-.47-8.48-4.23-8.95-8.95H0c.66 7.97 8.51 12.58 15.43 10.48l-4.48-4.48v2.95z" + d: "M8.57.51l4.48 4.48V2.04c4.72.47 8.48 4.23 8.95 8.95h2C23.34 3.02 15.49-1.59 8.57.51zm2.38 21.45c-4.72-.47-8.48-4.23-8.95-8.95H0c.66 7.97 8.51 12.58 15.43 10.48l-4.48-4.48v2.95z", + fill: "currentColor" })); } diff --git a/icons/es5/Campaign.js b/icons/es5/Campaign.js index 447da46cc2..13cd599b53 100644 --- a/icons/es5/Campaign.js +++ b/icons/es5/Campaign.js @@ -7,9 +7,11 @@ function SvgCampaign(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM8 9H2v6h3v4h2v-4h1l5 3V6L8 9zm7.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z" + d: "M18 11v2h4v-2h-4zm-2 6.61c.96.71 2.21 1.65 3.2 2.39.4-.53.8-1.07 1.2-1.6-.99-.74-2.24-1.68-3.2-2.4-.4.54-.8 1.08-1.2 1.61zM20.4 5.6c-.4-.53-.8-1.07-1.2-1.6-.99.74-2.24 1.68-3.2 2.4.4.53.8 1.07 1.2 1.6.96-.72 2.21-1.65 3.2-2.4zM8 9H2v6h3v4h2v-4h1l5 3V6L8 9zm7.5 3c0-1.33-.58-2.53-1.5-3.35v6.69c.92-.81 1.5-2.01 1.5-3.34z", + fill: "currentColor" })); } diff --git a/icons/es5/CancelPresentation.js b/icons/es5/CancelPresentation.js index f234e445b7..cc618291ea 100644 --- a/icons/es5/CancelPresentation.js +++ b/icons/es5/CancelPresentation.js @@ -7,9 +7,11 @@ function SvgCancelPresentation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 3v18h22V3H1zm20 16H3V5h18v14zM9.41 16L12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59z" + d: "M1 3v18h22V3H1zm20 16H3V5h18v14zM9.41 16L12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8 12 10.59 9.41 8 8 9.41 10.59 12 8 14.59z", + fill: "currentColor" })); } diff --git a/icons/es5/CancelScheduleSend.js b/icons/es5/CancelScheduleSend.js index ea50510245..84ccf1406f 100644 --- a/icons/es5/CancelScheduleSend.js +++ b/icons/es5/CancelScheduleSend.js @@ -7,11 +7,14 @@ function SvgCancelScheduleSend(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l9 2-9 2 .01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zm0 13c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z" + d: "M16.5 9c-.42 0-.83.04-1.24.11L1.01 3 1 10l9 2-9 2 .01 7 8.07-3.46C9.59 21.19 12.71 24 16.5 24c4.14 0 7.5-3.36 7.5-7.5S20.64 9 16.5 9zm0 13c-3.03 0-5.5-2.47-5.5-5.5s2.47-5.5 5.5-5.5 5.5 2.47 5.5 5.5-2.47 5.5-5.5 5.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18.27 14.03l-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z" + d: "M18.27 14.03l-1.77 1.76-1.77-1.76-.7.7 1.76 1.77-1.76 1.77.7.7 1.77-1.76 1.77 1.76.7-.7-1.76-1.77 1.76-1.77z", + fill: "currentColor" })); } diff --git a/icons/es5/CandlestickChart.js b/icons/es5/CandlestickChart.js index 33ec72a15f..e174aae609 100644 --- a/icons/es5/CandlestickChart.js +++ b/icons/es5/CandlestickChart.js @@ -7,9 +7,11 @@ function SvgCandlestickChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 4H7v2H5v12h2v2h2v-2h2V6H9zm10 4h-2V4h-2v4h-2v7h2v5h2v-5h2z" + d: "M9 4H7v2H5v12h2v2h2v-2h2V6H9zm10 4h-2V4h-2v4h-2v7h2v5h2v-5h2z", + fill: "currentColor" })); } diff --git a/icons/es5/CarCrash.js b/icons/es5/CarCrash.js index 373307fb4f..3eb216b6a5 100644 --- a/icons/es5/CarCrash.js +++ b/icons/es5/CarCrash.js @@ -7,9 +7,11 @@ function SvgCarCrash(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 6h-1V3h1v4zm0 1v1h-1V8h1zm-.59 5c.06.16.09.33.09.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.39.15-.74.39-1.01A7.032 7.032 0 0111.68 9H5.81l1.04-3H11c0-.69.1-1.37.29-2H5.41L3 11v9h3v-2h12v2h3v-7.68c-1.05.51-2.16.69-3.09.68zM7.5 15c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15z" + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 6h-1V3h1v4zm0 1v1h-1V8h1zm-.59 5c.06.16.09.33.09.5 0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5c0-.39.15-.74.39-1.01A7.032 7.032 0 0111.68 9H5.81l1.04-3H11c0-.69.1-1.37.29-2H5.41L3 11v9h3v-2h12v2h3v-7.68c-1.05.51-2.16.69-3.09.68zM7.5 15c-.83 0-1.5-.67-1.5-1.5S6.67 12 7.5 12s1.5.67 1.5 1.5S8.33 15 7.5 15z", + fill: "currentColor" })); } diff --git a/icons/es5/CarRental.js b/icons/es5/CarRental.js index 5163441d5e..4c1dc6038d 100644 --- a/icons/es5/CarRental.js +++ b/icons/es5/CarRental.js @@ -7,9 +7,11 @@ function SvgCarRental(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.83 3A3.01 3.01 0 008 1C6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9.11 4H6.89L5 14.69V22h2v-2h10v2h2v-7.31L17.11 9zM9 17.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7.67 13l.66-2h7.34l.66 2H7.67z" + d: "M10.83 3A3.01 3.01 0 008 1C6.34 1 5 2.34 5 4c0 1.65 1.34 3 3 3 1.3 0 2.41-.84 2.83-2H16v2h2V5h1V3h-8.17zM8 5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm9.11 4H6.89L5 14.69V22h2v-2h10v2h2v-7.31L17.11 9zM9 17.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7.67 13l.66-2h7.34l.66 2H7.67z", + fill: "currentColor" })); } diff --git a/icons/es5/CarRepair.js b/icons/es5/CarRepair.js index a1d2b16543..b61492ce8f 100644 --- a/icons/es5/CarRepair.js +++ b/icons/es5/CarRepair.js @@ -7,9 +7,11 @@ function SvgCarRepair(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 17.01V19h7v3h2v-3h7v-1.99H4zM7 14h10v2h2V8.69L17.11 3H6.89L5 8.69V16h2v-2zm2-2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8.33 5h7.34l.66 2H7.67l.66-2z" + d: "M4 17.01V19h7v3h2v-3h7v-1.99H4zM7 14h10v2h2V8.69L17.11 3H6.89L5 8.69V16h2v-2zm2-2.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8.33 5h7.34l.66 2H7.67l.66-2z", + fill: "currentColor" })); } diff --git a/icons/es5/CardGiftcard.js b/icons/es5/CardGiftcard.js index 1edaeb9e3d..5c8e2d6014 100644 --- a/icons/es5/CardGiftcard.js +++ b/icons/es5/CardGiftcard.js @@ -7,9 +7,11 @@ function SvgCardGiftcard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6h-4.18c.11-.31.18-.65.18-1a2.996 2.996 0 00-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2.01v15H22V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" + d: "M22 6h-4.18c.11-.31.18-.65.18-1a2.996 2.996 0 00-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2.01v15H22V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z", + fill: "currentColor" })); } diff --git a/icons/es5/CardMembership.js b/icons/es5/CardMembership.js index 6226ffd7ac..d62b92d02a 100644 --- a/icons/es5/CardMembership.js +++ b/icons/es5/CardMembership.js @@ -7,9 +7,11 @@ function SvgCardMembership(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v15h6v5l4-2 4 2v-5h6V2zm-2 13H4v-2h16v2zm0-5H4V4h16v6z" + d: "M22 2H2v15h6v5l4-2 4 2v-5h6V2zm-2 13H4v-2h16v2zm0-5H4V4h16v6z", + fill: "currentColor" })); } diff --git a/icons/es5/CardTravel.js b/icons/es5/CardTravel.js index f533a18634..249c7211cc 100644 --- a/icons/es5/CardTravel.js +++ b/icons/es5/CardTravel.js @@ -7,9 +7,11 @@ function SvgCardTravel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6h-5V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H2v15h20V6zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z" + d: "M22 6h-5V4c0-1.1-.9-2-2-2H9c-1.1 0-2 .9-2 2v2H2v15h20V6zM9 4h6v2H9V4zm11 15H4v-2h16v2zm0-5H4V8h3v2h2V8h6v2h2V8h3v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Carpenter.js b/icons/es5/Carpenter.js index 6456b3c0cb..b0d5e68c8a 100644 --- a/icons/es5/Carpenter.js +++ b/icons/es5/Carpenter.js @@ -7,9 +7,11 @@ function SvgCarpenter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 1.5L3.11 5.39l8.13 11.67-1.41 1.41 4.24 4.24 7.07-7.07L7 1.5zm5.66 16.97l4.24-4.24 1.41 1.41-4.24 4.24-1.41-1.41z" + d: "M7 1.5L3.11 5.39l8.13 11.67-1.41 1.41 4.24 4.24 7.07-7.07L7 1.5zm5.66 16.97l4.24-4.24 1.41 1.41-4.24 4.24-1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/Cases.js b/icons/es5/Cases.js index feebe81dd9..53e8855749 100644 --- a/icons/es5/Cases.js +++ b/icons/es5/Cases.js @@ -7,9 +7,11 @@ function SvgCases(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 5V1h-8v4H5v13h18V5h-5zm-2 0h-4V3h4v2zM3 9H1v13h18v-2H3V9z" + d: "M18 5V1h-8v4H5v13h18V5h-5zm-2 0h-4V3h4v2zM3 9H1v13h18v-2H3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/Casino.js b/icons/es5/Casino.js index eac1e17a54..f337b1ec0d 100644 --- a/icons/es5/Casino.js +++ b/icons/es5/Casino.js @@ -7,9 +7,11 @@ function SvgCasino(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z" + d: "M21 3H3v18h18V3zM7.5 18c-.83 0-1.5-.67-1.5-1.5S6.67 15 7.5 15s1.5.67 1.5 1.5S8.33 18 7.5 18zm0-9C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 4.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm0-9c-.83 0-1.5-.67-1.5-1.5S15.67 6 16.5 6s1.5.67 1.5 1.5S17.33 9 16.5 9z", + fill: "currentColor" })); } diff --git a/icons/es5/Cast.js b/icons/es5/Cast.js index 727bd1e6c8..21b28b53a2 100644 --- a/icons/es5/Cast.js +++ b/icons/es5/Cast.js @@ -7,9 +7,11 @@ function SvgCast(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2a9 9 0 019 9h2c0-6.08-4.93-11-11-11z" + d: "M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2a9 9 0 019 9h2c0-6.08-4.93-11-11-11z", + fill: "currentColor" })); } diff --git a/icons/es5/CastConnected.js b/icons/es5/CastConnected.js index 324f357288..b728195111 100644 --- a/icons/es5/CastConnected.js +++ b/icons/es5/CastConnected.js @@ -7,9 +7,11 @@ function SvgCastConnected(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2a9 9 0 019 9h2c0-6.08-4.93-11-11-11zm22-7H1v5h2V5h18v14h-7v2h9V3z" + d: "M1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm18-7H5v1.63c3.96 1.28 7.09 4.41 8.37 8.37H19V7zM1 10v2a9 9 0 019 9h2c0-6.08-4.93-11-11-11zm22-7H1v5h2V5h18v14h-7v2h9V3z", + fill: "currentColor" })); } diff --git a/icons/es5/CastForEducation.js b/icons/es5/CastForEducation.js index 53163c31c6..977ffb04e2 100644 --- a/icons/es5/CastForEducation.js +++ b/icons/es5/CastForEducation.js @@ -7,9 +7,11 @@ function SvgCastForEducation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2a9 9 0 019 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z" + d: "M23 3H1v5h2V5h18v14h-7v2h9V3zM1 18v3h3c0-1.66-1.34-3-3-3zm0-4v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0-4v2a9 9 0 019 9h2c0-6.08-4.93-11-11-11zm10 1.09v2L14.5 15l3.5-1.91v-2L14.5 13 11 11.09zM14.5 6L9 9l5.5 3L20 9l-5.5-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Castle.js b/icons/es5/Castle.js index 6489766b63..726f198992 100644 --- a/icons/es5/Castle.js +++ b/icons/es5/Castle.js @@ -7,9 +7,11 @@ function SvgCastle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-5h4v5h9V9h-2zm-10 3H9V9h2v3zm4 0h-2V9h2v3z" + d: "M21 9v2h-2V3h-2v2h-2V3h-2v2h-2V3H9v2H7V3H5v8H3V9H1v12h9v-5h4v5h9V9h-2zm-10 3H9V9h2v3zm4 0h-2V9h2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/CatchingPokemon.js b/icons/es5/CatchingPokemon.js index 2b6e173f84..1ec9a2cac3 100644 --- a/icons/es5/CatchingPokemon.js +++ b/icons/es5/CatchingPokemon.js @@ -7,9 +7,11 @@ function SvgCatchingPokemon(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.5 12a2.5 2.5 0 01-5 0 2.5 2.5 0 015 0zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z" + d: "M14.5 12a2.5 2.5 0 01-5 0 2.5 2.5 0 015 0zm7.5 0c0 5.52-4.48 10-10 10S2 17.52 2 12 6.48 2 12 2s10 4.48 10 10zm-2 0h-4c0-2.21-1.79-4-4-4s-4 1.79-4 4H4c0 4.41 3.59 8 8 8s8-3.59 8-8z", + fill: "currentColor" })); } diff --git a/icons/es5/Category.js b/icons/es5/Category.js index 51620a06bc..8883096d57 100644 --- a/icons/es5/Category.js +++ b/icons/es5/Category.js @@ -7,15 +7,18 @@ function SvgCategory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2l-5.5 9h11z" + d: "M12 2l-5.5 9h11z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 17.5, cy: 17.5, r: 4.5 }), /*#__PURE__*/React.createElement("path", { - d: "M3 13.5h8v8H3z" + d: "M3 13.5h8v8H3z", + fill: "currentColor" })); } diff --git a/icons/es5/Celebration.js b/icons/es5/Celebration.js index 07dfa74512..215b538af1 100644 --- a/icons/es5/Celebration.js +++ b/icons/es5/Celebration.js @@ -7,11 +7,14 @@ function SvgCelebration(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 22l14-5-9-9zm12.53-9.47L21 6.05l1.48 1.48 1.06-1.06L21 3.93l-7.53 7.53 1.06 1.07zM10.94 6L9.47 7.47l1.06 1.06 2.54-2.54-2.54-2.53-1.06 1.07L10.94 6zm8.03 3.97l-3.5 3.5 1.06 1.06L19 12.06l2.5 2.49 1.06-1.06-3.59-3.52z" + d: "M2 22l14-5-9-9zm12.53-9.47L21 6.05l1.48 1.48 1.06-1.06L21 3.93l-7.53 7.53 1.06 1.07zM10.94 6L9.47 7.47l1.06 1.06 2.54-2.54-2.54-2.53-1.06 1.07L10.94 6zm8.03 3.97l-3.5 3.5 1.06 1.06L19 12.06l2.5 2.49 1.06-1.06-3.59-3.52z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15.97 4.97l-4.5 4.5 1.06 1.06L18.07 5l-3.53-3.53-1.06 1.06 2.49 2.44z" + d: "M15.97 4.97l-4.5 4.5 1.06 1.06L18.07 5l-3.53-3.53-1.06 1.06 2.49 2.44z", + fill: "currentColor" })); } diff --git a/icons/es5/CellTower.js b/icons/es5/CellTower.js index 82a81c45be..46880970b3 100644 --- a/icons/es5/CellTower.js +++ b/icons/es5/CellTower.js @@ -7,11 +7,14 @@ function SvgCellTower(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.3 14.7l1.2-1.2c-1-1-1.5-2.3-1.5-3.5 0-1.3.5-2.6 1.5-3.5L7.3 5.3c-1.3 1.3-2 3-2 4.7s.7 3.4 2 4.7zM19.1 2.9l-1.2 1.2c1.6 1.6 2.4 3.8 2.4 5.9 0 2.1-.8 4.3-2.4 5.9l1.2 1.2c2-2 2.9-4.5 2.9-7.1 0-2.6-1-5.1-2.9-7.1z" + d: "M7.3 14.7l1.2-1.2c-1-1-1.5-2.3-1.5-3.5 0-1.3.5-2.6 1.5-3.5L7.3 5.3c-1.3 1.3-2 3-2 4.7s.7 3.4 2 4.7zM19.1 2.9l-1.2 1.2c1.6 1.6 2.4 3.8 2.4 5.9 0 2.1-.8 4.3-2.4 5.9l1.2 1.2c2-2 2.9-4.5 2.9-7.1 0-2.6-1-5.1-2.9-7.1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6.1 4.1L4.9 2.9C3 4.9 2 7.4 2 10c0 2.6 1 5.1 2.9 7.1l1.2-1.2c-1.6-1.6-2.4-3.8-2.4-5.9 0-2.1.8-4.3 2.4-5.9zm10.6 10.6c1.3-1.3 2-3 2-4.7-.1-1.7-.7-3.4-2-4.7l-1.2 1.2c1 1 1.5 2.3 1.5 3.5 0 1.3-.5 2.6-1.5 3.5l1.2 1.2zM14.5 10a2.5 2.5 0 00-5 0c0 .76.34 1.42.87 1.88L7 22h2l.67-2h4.67l.66 2h2l-3.37-10.12c.53-.46.87-1.12.87-1.88zm-4.17 8L12 13l1.67 5h-3.34z" + d: "M6.1 4.1L4.9 2.9C3 4.9 2 7.4 2 10c0 2.6 1 5.1 2.9 7.1l1.2-1.2c-1.6-1.6-2.4-3.8-2.4-5.9 0-2.1.8-4.3 2.4-5.9zm10.6 10.6c1.3-1.3 2-3 2-4.7-.1-1.7-.7-3.4-2-4.7l-1.2 1.2c1 1 1.5 2.3 1.5 3.5 0 1.3-.5 2.6-1.5 3.5l1.2 1.2zM14.5 10a2.5 2.5 0 00-5 0c0 .76.34 1.42.87 1.88L7 22h2l.67-2h4.67l.66 2h2l-3.37-10.12c.53-.46.87-1.12.87-1.88zm-4.17 8L12 13l1.67 5h-3.34z", + fill: "currentColor" })); } diff --git a/icons/es5/CellWifi.js b/icons/es5/CellWifi.js index b78aa82212..126c718e87 100644 --- a/icons/es5/CellWifi.js +++ b/icons/es5/CellWifi.js @@ -7,9 +7,11 @@ function SvgCellWifi(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22L3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93a2.74 2.74 0 013.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5a6.374 6.374 0 019 0l-1.28 1.29z" + d: "M6 22h16V5.97L6 22zm14-2h-2v-7.22l2-2V20zM5.22 7.22L3.93 5.93c3.9-3.91 10.24-3.91 14.15 0l-1.29 1.29c-3.19-3.19-8.38-3.19-11.57 0zm7.71 3.85L11 13l-1.93-1.93a2.74 2.74 0 013.86 0zm1.29-1.28c-1.78-1.77-4.66-1.77-6.43 0L6.5 8.5a6.374 6.374 0 019 0l-1.28 1.29z", + fill: "currentColor" })); } diff --git a/icons/es5/CenterFocusStrong.js b/icons/es5/CenterFocusStrong.js index a8bf90c161..410f57fed8 100644 --- a/icons/es5/CenterFocusStrong.js +++ b/icons/es5/CenterFocusStrong.js @@ -7,9 +7,11 @@ function SvgCenterFocusStrong(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4z" + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm-7 7H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/CenterFocusWeak.js b/icons/es5/CenterFocusWeak.js index 31fe72ec73..cce52ffdb4 100644 --- a/icons/es5/CenterFocusWeak.js +++ b/icons/es5/CenterFocusWeak.js @@ -7,9 +7,11 @@ function SvgCenterFocusWeak(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Chair.js b/icons/es5/Chair.js index da4eb3b638..57e777f84d 100644 --- a/icons/es5/Chair.js +++ b/icons/es5/Chair.js @@ -7,11 +7,14 @@ function SvgChair(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 13h10V7h3V3H4v4h3z" + d: "M7 13h10V7h3V3H4v4h3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M23 9h-4v6H5V9H1v10h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1h3V9z" + d: "M23 9h-4v6H5V9H1v10h3v1c0 .55.45 1 1 1s1-.45 1-1v-1h12v1c0 .55.45 1 1 1s1-.45 1-1v-1h3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/ChairAlt.js b/icons/es5/ChairAlt.js index 199241b448..10e3795b79 100644 --- a/icons/es5/ChairAlt.js +++ b/icons/es5/ChairAlt.js @@ -7,9 +7,11 @@ function SvgChairAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 10h3V3H5v7h3v2H5v9h2v-3h10v3h2v-9h-3v-2zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z" + d: "M16 10h3V3H5v7h3v2H5v9h2v-3h10v3h2v-9h-3v-2zM7 8V5h10v3H7zm10 8H7v-2h10v2zm-3-4h-4v-2h4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Chalet.js b/icons/es5/Chalet.js index 1f784ac7fb..557b7555cb 100644 --- a/icons/es5/Chalet.js +++ b/icons/es5/Chalet.js @@ -7,9 +7,11 @@ function SvgChalet(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 7.5l7.5 7.5-1.41 1.41L15 15.33V20h-4v-5H9v5H5v-4.67l-1.09 1.09L2.5 15 10 7.5zm12-1h-1.19l.75-.75-.71-.71-1.46 1.46h-.89v-.89l1.45-1.45-.71-.71-.74.74V3h-1v1.19l-.75-.75-.71.71 1.45 1.45v.9h-.89l-1.45-1.45-.71.71.75.75H14v1h1.19l-.75.75.71.71 1.45-1.45h.89v.89l-1.45 1.45.71.71.75-.75V11h1V9.81l.75.75.71-.71-1.46-1.46V7.5h.89l1.45 1.45.71-.71-.74-.74H22v-1z" + d: "M10 7.5l7.5 7.5-1.41 1.41L15 15.33V20h-4v-5H9v5H5v-4.67l-1.09 1.09L2.5 15 10 7.5zm12-1h-1.19l.75-.75-.71-.71-1.46 1.46h-.89v-.89l1.45-1.45-.71-.71-.74.74V3h-1v1.19l-.75-.75-.71.71 1.45 1.45v.9h-.89l-1.45-1.45-.71.71.75.75H14v1h1.19l-.75.75.71.71 1.45-1.45h.89v.89l-1.45 1.45.71.71.75-.75V11h1V9.81l.75.75.71-.71-1.46-1.46V7.5h.89l1.45 1.45.71-.71-.74-.74H22v-1z", + fill: "currentColor" })); } diff --git a/icons/es5/ChangeCircle.js b/icons/es5/ChangeCircle.js index ac34979426..d136011ec3 100644 --- a/icons/es5/ChangeCircle.js +++ b/icons/es5/ChangeCircle.js @@ -7,9 +7,11 @@ function SvgChangeCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.06 17v-2.01H12c-1.28 0-2.56-.49-3.54-1.46a5.006 5.006 0 01-.64-6.29l1.1 1.1c-.71 1.33-.53 3.01.59 4.13.7.7 1.62 1.03 2.54 1.01v-2.14l2.83 2.83L12.06 19zm4.11-4.24l-1.1-1.1c.71-1.33.53-3.01-.59-4.13A3.482 3.482 0 0012 8.5h-.06v2.15L9.11 7.83 11.94 5v2.02c1.3-.02 2.61.45 3.6 1.45 1.7 1.7 1.91 4.35.63 6.29z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.06 17v-2.01H12c-1.28 0-2.56-.49-3.54-1.46a5.006 5.006 0 01-.64-6.29l1.1 1.1c-.71 1.33-.53 3.01.59 4.13.7.7 1.62 1.03 2.54 1.01v-2.14l2.83 2.83L12.06 19zm4.11-4.24l-1.1-1.1c.71-1.33.53-3.01-.59-4.13A3.482 3.482 0 0012 8.5h-.06v2.15L9.11 7.83 11.94 5v2.02c1.3-.02 2.61.45 3.6 1.45 1.7 1.7 1.91 4.35.63 6.29z", + fill: "currentColor" })); } diff --git a/icons/es5/ChangeHistory.js b/icons/es5/ChangeHistory.js index 7a6286518c..ec3917a6f2 100644 --- a/icons/es5/ChangeHistory.js +++ b/icons/es5/ChangeHistory.js @@ -7,9 +7,11 @@ function SvgChangeHistory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z" + d: "M12 7.77L18.39 18H5.61L12 7.77M12 4L2 20h20L12 4z", + fill: "currentColor" })); } diff --git a/icons/es5/ChargingStation.js b/icons/es5/ChargingStation.js index a1fba797c1..45a4aa429a 100644 --- a/icons/es5/ChargingStation.js +++ b/icons/es5/ChargingStation.js @@ -7,9 +7,11 @@ function SvgChargingStation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.5 11l-3 6v-4h-2l3-6v4h2zM5 1h14v22H5V1zm2 5v12h10V6H7z" + d: "M14.5 11l-3 6v-4h-2l3-6v4h2zM5 1h14v22H5V1zm2 5v12h10V6H7z", + fill: "currentColor" })); } diff --git a/icons/es5/Chat.js b/icons/es5/Chat.js index 0f2445abc1..d77773e1ac 100644 --- a/icons/es5/Chat.js +++ b/icons/es5/Chat.js @@ -7,9 +7,11 @@ function SvgChat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2.01L2 22l4-4h16V2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z" + d: "M22 2H2.01L2 22l4-4h16V2zM6 9h12v2H6V9zm8 5H6v-2h8v2zm4-6H6V6h12v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ChatBubble.js b/icons/es5/ChatBubble.js index 9238b0a678..897f8aa5d9 100644 --- a/icons/es5/ChatBubble.js +++ b/icons/es5/ChatBubble.js @@ -7,9 +7,11 @@ function SvgChatBubble(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2z" + d: "M22 2H2v20l4-4h16V2z", + fill: "currentColor" })); } diff --git a/icons/es5/ChatBubbleOutline.js b/icons/es5/ChatBubbleOutline.js index 443dce980a..fa70d12fe2 100644 --- a/icons/es5/ChatBubbleOutline.js +++ b/icons/es5/ChatBubbleOutline.js @@ -7,9 +7,11 @@ function SvgChatBubbleOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2zm-2 14H6l-2 2V4h16v12z" + d: "M22 2H2v20l4-4h16V2zm-2 14H6l-2 2V4h16v12z", + fill: "currentColor" })); } diff --git a/icons/es5/Checklist.js b/icons/es5/Checklist.js index 86c3e743a1..1733526fac 100644 --- a/icons/es5/Checklist.js +++ b/icons/es5/Checklist.js @@ -7,9 +7,11 @@ function SvgChecklist(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7h-9v2h9V7zm0 8h-9v2h9v-2zM5.54 11L2 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L5.54 11zm0 8L2 15.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L5.54 19z" + d: "M22 7h-9v2h9V7zm0 8h-9v2h9v-2zM5.54 11L2 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L5.54 11zm0 8L2 15.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L5.54 19z", + fill: "currentColor" })); } diff --git a/icons/es5/ChecklistRtl.js b/icons/es5/ChecklistRtl.js index 87555ea102..557d2fa6aa 100644 --- a/icons/es5/ChecklistRtl.js +++ b/icons/es5/ChecklistRtl.js @@ -7,9 +7,11 @@ function SvgChecklistRtl(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 7H2v2h9V7zm0 8H2v2h9v-2zm5.34-4L12.8 7.46l1.41-1.41 2.12 2.12 4.24-4.24L22 5.34 16.34 11zm0 8l-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L22 13.34 16.34 19z" + d: "M11 7H2v2h9V7zm0 8H2v2h9v-2zm5.34-4L12.8 7.46l1.41-1.41 2.12 2.12 4.24-4.24L22 5.34 16.34 11zm0 8l-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L22 13.34 16.34 19z", + fill: "currentColor" })); } diff --git a/icons/es5/Checkroom.js b/icons/es5/Checkroom.js index 1323f56923..3986bd6f53 100644 --- a/icons/es5/Checkroom.js +++ b/icons/es5/Checkroom.js @@ -7,9 +7,11 @@ function SvgCheckroom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.6 18.2L13 11.75v-.91a3.496 3.496 0 00-.18-6.75A3.51 3.51 0 008.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5H11v2.75L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z" + d: "M21.6 18.2L13 11.75v-.91a3.496 3.496 0 00-.18-6.75A3.51 3.51 0 008.5 7.5h2c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5c0 .84-.69 1.52-1.53 1.5H11v2.75L2.4 18.2c-.77.58-.36 1.8.6 1.8h18c.96 0 1.37-1.22.6-1.8zM6 18l6-4.5 6 4.5H6z", + fill: "currentColor" })); } diff --git a/icons/es5/ChildCare.js b/icons/es5/ChildCare.js index f40132110a..0bcead8ce8 100644 --- a/icons/es5/ChildCare.js +++ b/icons/es5/ChildCare.js @@ -7,7 +7,8 @@ function SvgChildCare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 14.5, cy: 10.5, @@ -17,7 +18,8 @@ function SvgChildCare(props) { cy: 10.5, r: 1.25 }), /*#__PURE__*/React.createElement("path", { - d: "M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66a4.008 4.008 0 00-2.81-3.17 9.114 9.114 0 00-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91a3.994 3.994 0 00-2.81 3.17c-.04.21-.06.43-.06.66 0 .23.02.45.06.66a4.008 4.008 0 002.81 3.17 8.977 8.977 0 002.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89a3.998 3.998 0 002.8-3.17c.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z" + d: "M12 17c2.01 0 3.74-1.23 4.5-3h-9c.76 1.77 2.49 3 4.5 3zm10.94-5.66a4.008 4.008 0 00-2.81-3.17 9.114 9.114 0 00-2.19-2.91C16.36 3.85 14.28 3 12 3s-4.36.85-5.94 2.26c-.92.81-1.67 1.8-2.19 2.91a3.994 3.994 0 00-2.81 3.17c-.04.21-.06.43-.06.66 0 .23.02.45.06.66a4.008 4.008 0 002.81 3.17 8.977 8.977 0 002.17 2.89C7.62 20.14 9.71 21 12 21s4.38-.86 5.97-2.28c.9-.8 1.65-1.79 2.17-2.89a3.998 3.998 0 002.8-3.17c.04-.21.06-.43.06-.66 0-.23-.02-.45-.06-.66zM19 14c-.1 0-.19-.02-.29-.03-.2.67-.49 1.29-.86 1.86C16.6 17.74 14.45 19 12 19s-4.6-1.26-5.85-3.17c-.37-.57-.66-1.19-.86-1.86-.1.01-.19.03-.29.03-1.1 0-2-.9-2-2s.9-2 2-2c.1 0 .19.02.29.03.2-.67.49-1.29.86-1.86C7.4 6.26 9.55 5 12 5s4.6 1.26 5.85 3.17c.37.57.66 1.19.86 1.86.1-.01.19-.03.29-.03 1.1 0 2 .9 2 2s-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/ChildFriendly.js b/icons/es5/ChildFriendly.js index a740fd8041..141a3bb272 100644 --- a/icons/es5/ChildFriendly.js +++ b/icons/es5/ChildFriendly.js @@ -7,9 +7,11 @@ function SvgChildFriendly(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89A7.948 7.948 0 0021 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z" + d: "M13 2v8h8c0-4.42-3.58-8-8-8zm6.32 13.89A7.948 7.948 0 0021 11H6.44l-.95-2H2v2h2.22s1.89 4.07 2.12 4.42c-1.1.59-1.84 1.75-1.84 3.08C4.5 20.43 6.07 22 8 22c1.76 0 3.22-1.3 3.46-3h2.08c.24 1.7 1.7 3 3.46 3 1.93 0 3.5-1.57 3.5-3.5 0-1.04-.46-1.97-1.18-2.61zM8 20c-.83 0-1.5-.67-1.5-1.5S7.17 17 8 17s1.5.67 1.5 1.5S8.83 20 8 20zm9 0c-.83 0-1.5-.67-1.5-1.5S16.17 17 17 17s1.5.67 1.5 1.5S17.83 20 17 20z", + fill: "currentColor" })); } diff --git a/icons/es5/ChromeReaderMode.js b/icons/es5/ChromeReaderMode.js index 6261c94de9..f2fadfacea 100644 --- a/icons/es5/ChromeReaderMode.js +++ b/icons/es5/ChromeReaderMode.js @@ -7,9 +7,11 @@ function SvgChromeReaderMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 12h7v1.5h-7V12zm0-2.5h7V11h-7V9.5zm0 5h7V16h-7v-1.5zM23 4H1v17h22V4zm-2 15h-9V6h9v13z" + d: "M13 12h7v1.5h-7V12zm0-2.5h7V11h-7V9.5zm0 5h7V16h-7v-1.5zM23 4H1v17h22V4zm-2 15h-9V6h9v13z", + fill: "currentColor" })); } diff --git a/icons/es5/Church.js b/icons/es5/Church.js index 7c06566ff7..2b64d97387 100644 --- a/icons/es5/Church.js +++ b/icons/es5/Church.js @@ -7,9 +7,11 @@ function SvgChurch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6 9v3.22L2 14v8h8v-5h4v5h8v-8l-4-1.78zm-6 1.28c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M18 12.22V9l-5-2.5V5h2V3h-2V1h-2v2H9v2h2v1.5L6 9v3.22L2 14v8h8v-5h4v5h8v-8l-4-1.78zm-6 1.28c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Circle.js b/icons/es5/Circle.js index e25872da96..a3b4189bda 100644 --- a/icons/es5/Circle.js +++ b/icons/es5/Circle.js @@ -7,9 +7,11 @@ function SvgCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z" + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2z", + fill: "currentColor" })); } diff --git a/icons/es5/CircleNotifications.js b/icons/es5/CircleNotifications.js index 8b4ab60531..0a340274be 100644 --- a/icons/es5/CircleNotifications.js +++ b/icons/es5/CircleNotifications.js @@ -7,9 +7,11 @@ function SvgCircleNotifications(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-2h1v-3c0-1.86 1.28-3.41 3-3.86V5.5h2v1.64c1.72.45 3 2 3 3.86v3h1v2z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 16.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm5-2.5H7v-2h1v-3c0-1.86 1.28-3.41 3-3.86V5.5h2v1.64c1.72.45 3 2 3 3.86v3h1v2z", + fill: "currentColor" })); } diff --git a/icons/es5/CleanHands.js b/icons/es5/CleanHands.js index c62ce3b936..ce10b7cbe4 100644 --- a/icons/es5/CleanHands.js +++ b/icons/es5/CleanHands.js @@ -7,9 +7,11 @@ function SvgCleanHands(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.99 7l1.37-.63.63-1.37.63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7zM20 14c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2zM1 22h4V11H1v11zM9.24 9.5L15 11.65V11a5 5 0 00-4-4.9V4h2c.57 0 1.1.17 1.55.45l1.43-1.43A4.899 4.899 0 0013 2H7.5v2H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h3.99zM22 17h-9l-2.09-.73.33-.94L13 16h4v-2l-8.03-3H7v9.02L14 22l8-3v-2z" + d: "M14.99 7l1.37-.63.63-1.37.63 1.37 1.37.63-1.37.63L16.99 9l-.63-1.37L14.99 7zM20 14c1.1 0 2-.9 2-2s-2-4-2-4-2 2.9-2 4 .9 2 2 2zM1 22h4V11H1v11zM9.24 9.5L15 11.65V11a5 5 0 00-4-4.9V4h2c.57 0 1.1.17 1.55.45l1.43-1.43A4.899 4.899 0 0013 2H7.5v2H9v2.11c-1.78.37-3.2 1.68-3.75 3.39h3.99zM22 17h-9l-2.09-.73.33-.94L13 16h4v-2l-8.03-3H7v9.02L14 22l8-3v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/CleaningServices.js b/icons/es5/CleaningServices.js index 63337dd944..050d97d0f4 100644 --- a/icons/es5/CleaningServices.js +++ b/icons/es5/CleaningServices.js @@ -7,9 +7,11 @@ function SvgCleaningServices(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 11V1H9v10H3v12h18V11h-6zm4 10h-2v-4h-2v4h-2v-4h-2v4H9v-4H7v4H5v-8h14v8z" + d: "M15 11V1H9v10H3v12h18V11h-6zm4 10h-2v-4h-2v4h-2v-4h-2v4H9v-4H7v4H5v-8h14v8z", + fill: "currentColor" })); } diff --git a/icons/es5/Clear.js b/icons/es5/Clear.js index 449abf5181..d7edb23d76 100644 --- a/icons/es5/Clear.js +++ b/icons/es5/Clear.js @@ -7,9 +7,11 @@ function SvgClear(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z" + d: "M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12 19 6.41z", + fill: "currentColor" })); } diff --git a/icons/es5/ClearAll.js b/icons/es5/ClearAll.js index a6450753c5..85e2b5ee66 100644 --- a/icons/es5/ClearAll.js +++ b/icons/es5/ClearAll.js @@ -7,9 +7,11 @@ function SvgClearAll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z" + d: "M5 13h14v-2H5v2zm-2 4h14v-2H3v2zM7 7v2h14V7H7z", + fill: "currentColor" })); } diff --git a/icons/es5/CloseFullscreen.js b/icons/es5/CloseFullscreen.js index 9af0b66313..41dcafba61 100644 --- a/icons/es5/CloseFullscreen.js +++ b/icons/es5/CloseFullscreen.js @@ -7,9 +7,11 @@ function SvgCloseFullscreen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 3.41L16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z" + d: "M22 3.41L16.71 8.7 20 12h-8V4l3.29 3.29L20.59 2 22 3.41zM3.41 22l5.29-5.29L12 20v-8H4l3.29 3.29L2 20.59 3.41 22z", + fill: "currentColor" })); } diff --git a/icons/es5/ClosedCaption.js b/icons/es5/ClosedCaption.js index 939dd82de1..b67802be57 100644 --- a/icons/es5/ClosedCaption.js +++ b/icons/es5/ClosedCaption.js @@ -7,9 +7,11 @@ function SvgClosedCaption(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z" + d: "M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ClosedCaptionDisabled.js b/icons/es5/ClosedCaptionDisabled.js index ff9b70e8f1..6be6526604 100644 --- a/icons/es5/ClosedCaptionDisabled.js +++ b/icons/es5/ClosedCaptionDisabled.js @@ -7,9 +7,11 @@ function SvgClosedCaptionDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.83 4H21v14.17L17.83 15H18v-2h-1.5v.5h-.17l-1.83-1.83V10.5h2v.5H18V9h-5v1.17L6.83 4zm12.95 18.61L17.17 20H3V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM11 13.83l-.83-.83H9.5v.5h-2v-3h.17L6.17 9H6v6h5v-1.17z" + d: "M6.83 4H21v14.17L17.83 15H18v-2h-1.5v.5h-.17l-1.83-1.83V10.5h2v.5H18V9h-5v1.17L6.83 4zm12.95 18.61L17.17 20H3V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM11 13.83l-.83-.83H9.5v.5h-2v-3h.17L6.17 9H6v6h5v-1.17z", + fill: "currentColor" })); } diff --git a/icons/es5/ClosedCaptionOff.js b/icons/es5/ClosedCaptionOff.js index 2f158ae8c8..8dd05aa991 100644 --- a/icons/es5/ClosedCaptionOff.js +++ b/icons/es5/ClosedCaptionOff.js @@ -7,9 +7,11 @@ function SvgClosedCaptionOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z" + d: "M21 4H3v16h18V4zm-10 7H9.5v-.5h-2v3h2V13H11v2H6V9h5v2zm7 0h-1.5v-.5h-2v3h2V13H18v2h-5V9h5v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Cloud.js b/icons/es5/Cloud.js index 108bb57436..53b38ddf74 100644 --- a/icons/es5/Cloud.js +++ b/icons/es5/Cloud.js @@ -7,9 +7,11 @@ function SvgCloud(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z" + d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96z", + fill: "currentColor" })); } diff --git a/icons/es5/CloudCircle.js b/icons/es5/CloudCircle.js index ed48c3ec07..c639f1fab8 100644 --- a/icons/es5/CloudCircle.js +++ b/icons/es5/CloudCircle.js @@ -7,9 +7,11 @@ function SvgCloudCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3h.14c.44-1.73 1.99-3 3.86-3 2.21 0 4 1.79 4 4h.5a2.5 2.5 0 010 5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.5 14H8c-1.66 0-3-1.34-3-3s1.34-3 3-3h.14c.44-1.73 1.99-3 3.86-3 2.21 0 4 1.79 4 4h.5a2.5 2.5 0 010 5z", + fill: "currentColor" })); } diff --git a/icons/es5/CloudDone.js b/icons/es5/CloudDone.js index 55630d3152..980247889f 100644 --- a/icons/es5/CloudDone.js +++ b/icons/es5/CloudDone.js @@ -7,9 +7,11 @@ function SvgCloudDone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18 15.18 9l1.41 1.41L10 17z" + d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM10 17l-3.5-3.5 1.41-1.41L10 14.18 15.18 9l1.41 1.41L10 17z", + fill: "currentColor" })); } diff --git a/icons/es5/CloudDownload.js b/icons/es5/CloudDownload.js index b8efa8a825..5c733aeafc 100644 --- a/icons/es5/CloudDownload.js +++ b/icons/es5/CloudDownload.js @@ -7,9 +7,11 @@ function SvgCloudDownload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z" + d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM17 13l-5 5-5-5h3V9h4v4h3z", + fill: "currentColor" })); } diff --git a/icons/es5/CloudOff.js b/icons/es5/CloudOff.js index 574bddb40b..86d5d36389 100644 --- a/icons/es5/CloudOff.js +++ b/icons/es5/CloudOff.js @@ -7,9 +7,11 @@ function SvgCloudOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 15c0-2.64-2.05-4.78-4.65-4.96A7.49 7.49 0 0012 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19a2.996 2.996 0 011.79 5.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86L3 5.27l2.77 2.77h-.42A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z" + d: "M24 15c0-2.64-2.05-4.78-4.65-4.96A7.49 7.49 0 0012 4c-1.33 0-2.57.36-3.65.97l1.49 1.49C10.51 6.17 11.23 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19a2.996 2.996 0 011.79 5.4l1.41 1.41c1.09-.92 1.8-2.27 1.8-3.81zM4.41 3.86L3 5.27l2.77 2.77h-.42A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h11.73l2 2 1.41-1.41L4.41 3.86zM6 18c-2.21 0-4-1.79-4-4s1.79-4 4-4h1.73l8 8H6z", + fill: "currentColor" })); } diff --git a/icons/es5/CloudQueue.js b/icons/es5/CloudQueue.js index e994f66bd9..9dab6d9df5 100644 --- a/icons/es5/CloudQueue.js +++ b/icons/es5/CloudQueue.js @@ -7,9 +7,11 @@ function SvgCloudQueue(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z" + d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4h.71C7.37 7.69 9.48 6 12 6c3.04 0 5.5 2.46 5.5 5.5v.5H19c1.66 0 3 1.34 3 3s-1.34 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/CloudSync.js b/icons/es5/CloudSync.js index 82e5d20d8f..675ff08a4e 100644 --- a/icons/es5/CloudSync.js +++ b/icons/es5/CloudSync.js @@ -7,9 +7,11 @@ function SvgCloudSync(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.5 14.98c-.02 0-.03 0-.05.01A3.49 3.49 0 0018 12c-1.4 0-2.6.83-3.16 2.02A2.988 2.988 0 0012 17c0 1.66 1.34 3 3 3l6.5-.02a2.5 2.5 0 000-5zM10 4.26v2.09C7.67 7.18 6 9.39 6 12c0 1.77.78 3.34 2 4.44V14h2v6H4v-2h2.73A7.942 7.942 0 014 12c0-3.73 2.55-6.85 6-7.74zM20 6h-2.73a7.98 7.98 0 012.66 5h-2.02c-.23-1.36-.93-2.55-1.91-3.44V10h-2V4h6v2z" + d: "M21.5 14.98c-.02 0-.03 0-.05.01A3.49 3.49 0 0018 12c-1.4 0-2.6.83-3.16 2.02A2.988 2.988 0 0012 17c0 1.66 1.34 3 3 3l6.5-.02a2.5 2.5 0 000-5zM10 4.26v2.09C7.67 7.18 6 9.39 6 12c0 1.77.78 3.34 2 4.44V14h2v6H4v-2h2.73A7.942 7.942 0 014 12c0-3.73 2.55-6.85 6-7.74zM20 6h-2.73a7.98 7.98 0 012.66 5h-2.02c-.23-1.36-.93-2.55-1.91-3.44V10h-2V4h6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/CloudUpload.js b/icons/es5/CloudUpload.js index c513cb26ce..07e973f3ed 100644 --- a/icons/es5/CloudUpload.js +++ b/icons/es5/CloudUpload.js @@ -7,9 +7,11 @@ function SvgCloudUpload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z" + d: "M19.35 10.04A7.49 7.49 0 0012 4C9.11 4 6.6 5.64 5.35 8.04A5.994 5.994 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM14 13v4h-4v-4H7l5-5 5 5h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Co2.js b/icons/es5/Co2.js index b8fc728490..ce6930bb69 100644 --- a/icons/es5/Co2.js +++ b/icons/es5/Co2.js @@ -7,9 +7,11 @@ function SvgCo2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 9h-5v6h5V9zm-1.5 4.5h-2v-3h2v3zM8 13v2H3V9h5v2H6.5v-.5h-2v3h2V13H8zm10.5 2.5v1h3V18H17v-3.5h3v-1h-3V12h4.5v3.5h-3z" + d: "M15 9h-5v6h5V9zm-1.5 4.5h-2v-3h2v3zM8 13v2H3V9h5v2H6.5v-.5h-2v3h2V13H8zm10.5 2.5v1h3V18H17v-3.5h3v-1h-3V12h4.5v3.5h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/CoPresent.js b/icons/es5/CoPresent.js index 1061ffcd6b..4fb6b0881b 100644 --- a/icons/es5/CoPresent.js +++ b/icons/es5/CoPresent.js @@ -7,15 +7,18 @@ function SvgCoPresent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v10h2V5h18v16h2z" + d: "M23 3H1v10h2V5h18v16h2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 10, r: 4 }), /*#__PURE__*/React.createElement("path", { - d: "M15.39 16.56C13.71 15.7 11.53 15 9 15s-4.71.7-6.39 1.56A2.97 2.97 0 001 19.22V22h16v-2.78c0-1.12-.61-2.15-1.61-2.66z" + d: "M15.39 16.56C13.71 15.7 11.53 15 9 15s-4.71.7-6.39 1.56A2.97 2.97 0 001 19.22V22h16v-2.78c0-1.12-.61-2.15-1.61-2.66z", + fill: "currentColor" })); } diff --git a/icons/es5/Code.js b/icons/es5/Code.js index 5c2f4abb86..512e13e47f 100644 --- a/icons/es5/Code.js +++ b/icons/es5/Code.js @@ -7,9 +7,11 @@ function SvgCode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z" + d: "M9.4 16.6L4.8 12l4.6-4.6L8 6l-6 6 6 6 1.4-1.4zm5.2 0l4.6-4.6-4.6-4.6L16 6l6 6-6 6-1.4-1.4z", + fill: "currentColor" })); } diff --git a/icons/es5/CodeOff.js b/icons/es5/CodeOff.js index 7fd9093341..bab1686389 100644 --- a/icons/es5/CodeOff.js +++ b/icons/es5/CodeOff.js @@ -7,9 +7,11 @@ function SvgCodeOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.17 12l-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z" + d: "M19.17 12l-4.58-4.59L16 6l6 6-3.59 3.59L17 14.17 19.17 12zM1.39 4.22l4.19 4.19L2 12l6 6 1.41-1.41L4.83 12 7 9.83l12.78 12.78 1.41-1.41L2.81 2.81 1.39 4.22z", + fill: "currentColor" })); } diff --git a/icons/es5/Coffee.js b/icons/es5/Coffee.js index 88f4beb99c..11df13bb2e 100644 --- a/icons/es5/Coffee.js +++ b/icons/es5/Coffee.js @@ -7,9 +7,11 @@ function SvgCoffee(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.5 3H4v8c0 3.87 3.13 7 7 7s7-3.13 7-7v-1h.4c1.67 0 3.19-1.13 3.52-2.77A3.494 3.494 0 0018.5 3zM16 5v3H6V5h10zm2.5 3H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM4 19h16v2H4v-2z" + d: "M18.5 3H4v8c0 3.87 3.13 7 7 7s7-3.13 7-7v-1h.4c1.67 0 3.19-1.13 3.52-2.77A3.494 3.494 0 0018.5 3zM16 5v3H6V5h10zm2.5 3H18V5h.5c.83 0 1.5.67 1.5 1.5S19.33 8 18.5 8zM4 19h16v2H4v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/CoffeeMaker.js b/icons/es5/CoffeeMaker.js index 15152aa804..63057519e2 100644 --- a/icons/es5/CoffeeMaker.js +++ b/icons/es5/CoffeeMaker.js @@ -7,9 +7,11 @@ function SvgCoffeeMaker(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 7V4h2V2H4v20h16v-2h-4.03A4.966 4.966 0 0018 16v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v3h10z" + d: "M18 7V4h2V2H4v20h16v-2h-4.03A4.966 4.966 0 0018 16v-5H8v5c0 1.64.81 3.09 2.03 4H6V4h2v3h10z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 13, cy: 9, diff --git a/icons/es5/Collections.js b/icons/es5/Collections.js index fbdc07f181..bb24aec693 100644 --- a/icons/es5/Collections.js +++ b/icons/es5/Collections.js @@ -7,9 +7,11 @@ function SvgCollections(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 18V2H6v16h16zm-11-6l2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z" + d: "M22 18V2H6v16h16zm-11-6l2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z", + fill: "currentColor" })); } diff --git a/icons/es5/CollectionsBookmark.js b/icons/es5/CollectionsBookmark.js index f53f1276cb..1941f7c376 100644 --- a/icons/es5/CollectionsBookmark.js +++ b/icons/es5/CollectionsBookmark.js @@ -7,9 +7,11 @@ function SvgCollectionsBookmark(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-2 10l-2.5-1.5L15 12V4h5v8z" + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-2 10l-2.5-1.5L15 12V4h5v8z", + fill: "currentColor" })); } diff --git a/icons/es5/ColorLens.js b/icons/es5/ColorLens.js index 55bbe5dc7a..279f01eba6 100644 --- a/icons/es5/ColorLens.js +++ b/icons/es5/ColorLens.js @@ -7,9 +7,11 @@ function SvgColorLens(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3a9 9 0 000 18c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M12 3a9 9 0 000 18c.83 0 1.5-.67 1.5-1.5 0-.39-.15-.74-.39-1.01-.23-.26-.38-.61-.38-.99 0-.83.67-1.5 1.5-1.5H16c2.76 0 5-2.24 5-5 0-4.42-4.03-8-9-8zm-5.5 9c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm3-4C8.67 8 8 7.33 8 6.5S8.67 5 9.5 5s1.5.67 1.5 1.5S10.33 8 9.5 8zm5 0c-.83 0-1.5-.67-1.5-1.5S13.67 5 14.5 5s1.5.67 1.5 1.5S15.33 8 14.5 8zm3 4c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Colorize.js b/icons/es5/Colorize.js index 36e7dd6f9b..a683524cc2 100644 --- a/icons/es5/Colorize.js +++ b/icons/es5/Colorize.js @@ -7,9 +7,11 @@ function SvgColorize(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.42 6.34l-3.75-3.75-3.82 3.82-1.94-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.84-3.83zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z" + d: "M21.42 6.34l-3.75-3.75-3.82 3.82-1.94-1.91-1.41 1.41 1.42 1.42L3 16.25V21h4.75l8.92-8.92 1.42 1.42 1.41-1.41-1.92-1.92 3.84-3.83zM6.92 19L5 17.08l8.06-8.06 1.92 1.92L6.92 19z", + fill: "currentColor" })); } diff --git a/icons/es5/Comment.js b/icons/es5/Comment.js index 2fcac42ae8..caad9b4756 100644 --- a/icons/es5/Comment.js +++ b/icons/es5/Comment.js @@ -7,9 +7,11 @@ function SvgComment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.99 2H2v16h16l4 4-.01-20zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" + d: "M21.99 2H2v16h16l4 4-.01-20zM18 14H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", + fill: "currentColor" })); } diff --git a/icons/es5/CommentBank.js b/icons/es5/CommentBank.js index ea3531c0e1..97f5282586 100644 --- a/icons/es5/CommentBank.js +++ b/icons/es5/CommentBank.js @@ -7,9 +7,11 @@ function SvgCommentBank(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 2v20l4-4h16V2H2zm17 11l-2.5-1.5L14 13V5h5v8z" + d: "M2 2v20l4-4h16V2H2zm17 11l-2.5-1.5L14 13V5h5v8z", + fill: "currentColor" })); } diff --git a/icons/es5/CommentsDisabled.js b/icons/es5/CommentsDisabled.js index b824a10a20..8ed4f8902d 100644 --- a/icons/es5/CommentsDisabled.js +++ b/icons/es5/CommentsDisabled.js @@ -7,9 +7,11 @@ function SvgCommentsDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.83 14H18v-2h-3.17l-1-1H18V9h-6.17l-1-1H18V6H8.83l-4-4H22v17.17L16.83 14zM2.1 2.1L.69 3.51 2 4.83V18h13.17l5.31 5.31 1.41-1.41L2.1 2.1zM6 9h.17l2 2H6V9zm0 5v-2h3.17l2 2H6z" + d: "M16.83 14H18v-2h-3.17l-1-1H18V9h-6.17l-1-1H18V6H8.83l-4-4H22v17.17L16.83 14zM2.1 2.1L.69 3.51 2 4.83V18h13.17l5.31 5.31 1.41-1.41L2.1 2.1zM6 9h.17l2 2H6V9zm0 5v-2h3.17l2 2H6z", + fill: "currentColor" })); } diff --git a/icons/es5/Commit.js b/icons/es5/Commit.js index 0918b8e122..68a8a56678 100644 --- a/icons/es5/Commit.js +++ b/icons/es5/Commit.js @@ -7,9 +7,11 @@ function SvgCommit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.9 11a5 5 0 00-9.8 0H2v2h5.1a5 5 0 009.8 0H22v-2h-5.1zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + d: "M16.9 11a5 5 0 00-9.8 0H2v2h5.1a5 5 0 009.8 0H22v-2h-5.1zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/Commute.js b/icons/es5/Commute.js index 1a65e6ba48..d07c6ffbec 100644 --- a/icons/es5/Commute.js +++ b/icons/es5/Commute.js @@ -7,9 +7,11 @@ function SvgCommute(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M12 4H5C3.34 4 2 5.34 2 7v8c0 1.66 1.34 3 3 3l-1 1v1h1l2-2h2v-5H4V6h9v2h2V7c0-1.66-1.34-3-3-3zM5 14c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm15.57-4.34c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66l-1.42 4.11v5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V18h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Compare.js b/icons/es5/Compare.js index 527a7acb43..5606244933 100644 --- a/icons/es5/Compare.js +++ b/icons/es5/Compare.js @@ -7,9 +7,11 @@ function SvgCompare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 3H3v18h7v2h2V1h-2v2zm0 15H5l5-6v6zM21 3h-7v2h5v13l-5-6v9h7V3z" + d: "M10 3H3v18h7v2h2V1h-2v2zm0 15H5l5-6v6zM21 3h-7v2h5v13l-5-6v9h7V3z", + fill: "currentColor" })); } diff --git a/icons/es5/CompareArrows.js b/icons/es5/CompareArrows.js index 90dca4867b..f9d75c23ca 100644 --- a/icons/es5/CompareArrows.js +++ b/icons/es5/CompareArrows.js @@ -7,9 +7,11 @@ function SvgCompareArrows(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z" + d: "M9.01 14H2v2h7.01v3L13 15l-3.99-4v3zm5.98-1v-3H22V8h-7.01V5L11 9l3.99 4z", + fill: "currentColor" })); } diff --git a/icons/es5/CompassCalibration.js b/icons/es5/CompassCalibration.js index c27cc39204..897b119e23 100644 --- a/icons/es5/CompassCalibration.js +++ b/icons/es5/CompassCalibration.js @@ -7,13 +7,15 @@ function SvgCompassCalibration(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 17, r: 4 }), /*#__PURE__*/React.createElement("path", { - d: "M12 3C8.1 3 4.56 4.59 2 7.15l5 5a7.06 7.06 0 0110-.01l5-5C19.44 4.59 15.9 3 12 3z" + d: "M12 3C8.1 3 4.56 4.59 2 7.15l5 5a7.06 7.06 0 0110-.01l5-5C19.44 4.59 15.9 3 12 3z", + fill: "currentColor" })); } diff --git a/icons/es5/Compost.js b/icons/es5/Compost.js index 6393ed57ef..7572ffa18b 100644 --- a/icons/es5/Compost.js +++ b/icons/es5/Compost.js @@ -7,9 +7,11 @@ function SvgCompost(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.87 11.81A2.5 2.5 0 0115 8h1c1.51 0 2-1 2-1s.55 6-3 6c-.49 0-.94-.14-1.32-.38-.24.64-.59 1.76-.76 2.96 1.26.22 2.28.89 2.77 1.77A6.505 6.505 0 0018.5 12h3c0 5.24-4.26 9.5-9.5 9.5S2.5 17.24 2.5 12 6.76 2.5 12 2.5V0l4 4-4 4V5.5c-3.58 0-6.5 2.92-6.5 6.5 0 2.21 1.11 4.17 2.81 5.35.51-.92 1.63-1.62 2.98-1.8-.09-.69-.26-1.42-.49-2.03-.35.3-.8.48-1.3.48-1.1 0-2-.9-2-2v-.99c0-.56-.19-1.09-.5-1.51 0 0 4.45-.23 4.5 2.5 0 .29-.06.56-.17.8-.42-.32-.86-.6-1.33-.8.58.43 1.37 1.37 2 2.6.67-1.62 1.68-3.27 3-4.6-.76.52-1.47 1.12-2.13 1.81z" + d: "M12.87 11.81A2.5 2.5 0 0115 8h1c1.51 0 2-1 2-1s.55 6-3 6c-.49 0-.94-.14-1.32-.38-.24.64-.59 1.76-.76 2.96 1.26.22 2.28.89 2.77 1.77A6.505 6.505 0 0018.5 12h3c0 5.24-4.26 9.5-9.5 9.5S2.5 17.24 2.5 12 6.76 2.5 12 2.5V0l4 4-4 4V5.5c-3.58 0-6.5 2.92-6.5 6.5 0 2.21 1.11 4.17 2.81 5.35.51-.92 1.63-1.62 2.98-1.8-.09-.69-.26-1.42-.49-2.03-.35.3-.8.48-1.3.48-1.1 0-2-.9-2-2v-.99c0-.56-.19-1.09-.5-1.51 0 0 4.45-.23 4.5 2.5 0 .29-.06.56-.17.8-.42-.32-.86-.6-1.33-.8.58.43 1.37 1.37 2 2.6.67-1.62 1.68-3.27 3-4.6-.76.52-1.47 1.12-2.13 1.81z", + fill: "currentColor" })); } diff --git a/icons/es5/Compress.js b/icons/es5/Compress.js index 1f34208df9..83bf8f4919 100644 --- a/icons/es5/Compress.js +++ b/icons/es5/Compress.js @@ -7,9 +7,11 @@ function SvgCompress(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 9h16v2H4zm12-5h-3V1h-2v3H8l4 4zM8 19h3v3h2v-3h3l-4-4zm-4-7h16v2H4z" + d: "M4 9h16v2H4zm12-5h-3V1h-2v3H8l4 4zM8 19h3v3h2v-3h3l-4-4zm-4-7h16v2H4z", + fill: "currentColor" })); } diff --git a/icons/es5/Computer.js b/icons/es5/Computer.js index b086a39a69..199ff912f8 100644 --- a/icons/es5/Computer.js +++ b/icons/es5/Computer.js @@ -7,9 +7,11 @@ function SvgComputer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 18l2-2V4H2v12l2 2H0v2h24v-2h-4zM4 6h16v10H4V6z" + d: "M20 18l2-2V4H2v12l2 2H0v2h24v-2h-4zM4 6h16v10H4V6z", + fill: "currentColor" })); } diff --git a/icons/es5/ConfirmationNumber.js b/icons/es5/ConfirmationNumber.js index e06aafc5de..130563286a 100644 --- a/icons/es5/ConfirmationNumber.js +++ b/icons/es5/ConfirmationNumber.js @@ -7,9 +7,11 @@ function SvgConfirmationNumber(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 10V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z" + d: "M22 10V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2s.9-2 2-2zm-9 7.5h-2v-2h2v2zm0-4.5h-2v-2h2v2zm0-4.5h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ConnectWithoutContact.js b/icons/es5/ConnectWithoutContact.js index 22c9345032..69da9eb205 100644 --- a/icons/es5/ConnectWithoutContact.js +++ b/icons/es5/ConnectWithoutContact.js @@ -7,9 +7,11 @@ function SvgConnectWithoutContact(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 14H9a9 9 0 019-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2A2.99 2.99 0 016.5 7H2v4h6V8.74a4.97 4.97 0 003.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm-1.5 1a2.99 2.99 0 01-2.95-2.5h-2A4.97 4.97 0 0016 19.74V22h6v-4h-4.5z" + d: "M11 14H9a9 9 0 019-9v2c-3.87 0-7 3.13-7 7zm7-3V9c-2.76 0-5 2.24-5 5h2c0-1.66 1.34-3 3-3zM7 4c0-1.11-.89-2-2-2s-2 .89-2 2 .89 2 2 2 2-.89 2-2zm4.45.5h-2A2.99 2.99 0 016.5 7H2v4h6V8.74a4.97 4.97 0 003.45-4.24zM19 17c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm-1.5 1a2.99 2.99 0 01-2.95-2.5h-2A4.97 4.97 0 0016 19.74V22h6v-4h-4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/ConnectedTv.js b/icons/es5/ConnectedTv.js index 8ed4d3d4e0..e2deb74218 100644 --- a/icons/es5/ConnectedTv.js +++ b/icons/es5/ConnectedTv.js @@ -7,13 +7,17 @@ function SvgConnectedTv(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.57 16H10c0-2.76-2.24-5-5-5v1.43c1.97 0 3.57 1.6 3.57 3.57z" + d: "M8.57 16H10c0-2.76-2.24-5-5-5v1.43c1.97 0 3.57 1.6 3.57 3.57z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11.55 16H13c0-4.42-3.59-8-8-8v1.45c3.61 0 6.55 2.93 6.55 6.55zM5 14v2h2c0-1.11-.89-2-2-2z" + d: "M11.55 16H13c0-4.42-3.59-8-8-8v1.45c3.61 0 6.55 2.93 6.55 6.55zM5 14v2h2c0-1.11-.89-2-2-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 3H2v16h6v2h8v-2h6V3zm-2 14H4V5h16v12z" + d: "M22 3H2v16h6v2h8v-2h6V3zm-2 14H4V5h16v12z", + fill: "currentColor" })); } diff --git a/icons/es5/ConnectingAirports.js b/icons/es5/ConnectingAirports.js index d8360cdf3f..821414c69e 100644 --- a/icons/es5/ConnectingAirports.js +++ b/icons/es5/ConnectingAirports.js @@ -7,9 +7,11 @@ function SvgConnectingAirports(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.4 17l1.3 4.4h-1.1L13 17h-3c-.55 0-1-.45-1-1s.45-1 1-1h3l2.6-4.4h1.1L15.4 15h2.85l.75-1h1l-.6 2 .6 2h-1l-.75-1H15.4zM5.75 7L5 6H4l.6 2-.6 2h1l.75-1H8.6l-1.3 4.4h1.1L11 9h3c.55 0 1-.45 1-1s-.45-1-1-1h-3L8.4 2.6H7.3L8.6 7H5.75z" + d: "M15.4 17l1.3 4.4h-1.1L13 17h-3c-.55 0-1-.45-1-1s.45-1 1-1h3l2.6-4.4h1.1L15.4 15h2.85l.75-1h1l-.6 2 .6 2h-1l-.75-1H15.4zM5.75 7L5 6H4l.6 2-.6 2h1l.75-1H8.6l-1.3 4.4h1.1L11 9h3c.55 0 1-.45 1-1s-.45-1-1-1h-3L8.4 2.6H7.3L8.6 7H5.75z", + fill: "currentColor" })); } diff --git a/icons/es5/Construction.js b/icons/es5/Construction.js index 4ebe247d36..495396e86e 100644 --- a/icons/es5/Construction.js +++ b/icons/es5/Construction.js @@ -7,9 +7,11 @@ function SvgConstruction(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.783 15.172l2.121-2.121 5.996 5.996-2.121 2.121zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49a3 3 0 00-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z" + d: "M13.783 15.172l2.121-2.121 5.996 5.996-2.121 2.121zM17.5 10c1.93 0 3.5-1.57 3.5-3.5 0-.58-.16-1.12-.41-1.6l-2.7 2.7-1.49-1.49 2.7-2.7c-.48-.25-1.02-.41-1.6-.41C15.57 3 14 4.57 14 6.5c0 .41.08.8.21 1.16l-1.85 1.85-1.78-1.78.71-.71-1.41-1.41L12 3.49a3 3 0 00-4.24 0L4.22 7.03l1.41 1.41H2.81l-.71.71 3.54 3.54.71-.71V9.15l1.41 1.41.71-.71 1.78 1.78-7.41 7.41 2.12 2.12L16.34 9.79c.36.13.75.21 1.16.21z", + fill: "currentColor" })); } diff --git a/icons/es5/ContactEmergency.js b/icons/es5/ContactEmergency.js index 0f83fcf203..7c686ec910 100644 --- a/icons/es5/ContactEmergency.js +++ b/icons/es5/ContactEmergency.js @@ -7,9 +7,11 @@ function SvgContactEmergency(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23.99 3H0v18h23.99V3zM9 8c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM2.08 19c1.38-2.39 3.96-4 6.92-4s5.54 1.61 6.92 4H2.08zm18.89-9.15l-.75 1.3-1.47-.85V12h-1.5v-1.7l-1.47.85-.75-1.3L16.5 9l-1.47-.85.75-1.3 1.47.85V6h1.5v1.7l1.47-.85.75 1.3L19.5 9l1.47.85z" + d: "M23.99 3H0v18h23.99V3zM9 8c1.65 0 3 1.35 3 3s-1.35 3-3 3-3-1.35-3-3 1.35-3 3-3zM2.08 19c1.38-2.39 3.96-4 6.92-4s5.54 1.61 6.92 4H2.08zm18.89-9.15l-.75 1.3-1.47-.85V12h-1.5v-1.7l-1.47.85-.75-1.3L16.5 9l-1.47-.85.75-1.3 1.47.85V6h1.5v1.7l1.47-.85.75 1.3L19.5 9l1.47.85z", + fill: "currentColor" })); } diff --git a/icons/es5/ContactPage.js b/icons/es5/ContactPage.js index a30ae8aa4a..7d3111031c 100644 --- a/icons/es5/ContactPage.js +++ b/icons/es5/ContactPage.js @@ -7,9 +7,11 @@ function SvgContactPage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm-2 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0116 17.43V18z" + d: "M14 2H4v20h16V8l-6-6zm-2 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0116 17.43V18z", + fill: "currentColor" })); } diff --git a/icons/es5/ContactPhone.js b/icons/es5/ContactPhone.js index 40be151549..77474a0b59 100644 --- a/icons/es5/ContactPhone.js +++ b/icons/es5/ContactPhone.js @@ -7,9 +7,11 @@ function SvgContactPhone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23.99 3H0v18h24l-.01-18zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99A7.512 7.512 0 0116.28 14c-.18-.64-.28-1.31-.28-2s.1-1.36.28-2a7.474 7.474 0 012.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z" + d: "M23.99 3H0v18h24l-.01-18zM8 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H2v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1zm3.85-4h1.64L21 16l-1.99 1.99A7.512 7.512 0 0116.28 14c-.18-.64-.28-1.31-.28-2s.1-1.36.28-2a7.474 7.474 0 012.73-3.99L21 8l-1.51 2h-1.64c-.22.63-.35 1.3-.35 2s.13 1.37.35 2z", + fill: "currentColor" })); } diff --git a/icons/es5/ContactSupport.js b/icons/es5/ContactSupport.js index 3f3e60b96b..fb41c1a881 100644 --- a/icons/es5/ContactSupport.js +++ b/icons/es5/ContactSupport.js @@ -7,9 +7,11 @@ function SvgContactSupport(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z" + d: "M11.5 2C6.81 2 3 5.81 3 10.5S6.81 19 11.5 19h.5v3c4.86-2.34 8-7 8-11.5C20 5.81 16.19 2 11.5 2zm1 14.5h-2v-2h2v2zm0-3.5h-2c0-3.25 3-3 3-5 0-1.1-.9-2-2-2s-2 .9-2 2h-2c0-2.21 1.79-4 4-4s4 1.79 4 4c0 2.5-3 2.75-3 5z", + fill: "currentColor" })); } diff --git a/icons/es5/Contactless.js b/icons/es5/Contactless.js index ecc30dca1c..236d4de21d 100644 --- a/icons/es5/Contactless.js +++ b/icons/es5/Contactless.js @@ -7,9 +7,11 @@ function SvgContactless(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8.46 14.45l-1.36-.62c.28-.61.41-1.24.4-1.86a4.42 4.42 0 00-.4-1.8l1.36-.63c.35.75.53 1.56.54 2.4.01.86-.17 1.7-.54 2.51zm3.07 1.56l-1.3-.74c.52-.92.78-1.98.78-3.15 0-1.19-.27-2.33-.8-3.4l1.34-.67c.64 1.28.96 2.65.96 4.07 0 1.43-.33 2.74-.98 3.89zm3.14 1.32l-1.35-.66c.78-1.6 1.18-3.18 1.18-4.69 0-1.51-.4-3.07-1.18-4.64l1.34-.67c.9 1.78 1.34 3.56 1.34 5.31 0 1.74-.44 3.54-1.33 5.35z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8.46 14.45l-1.36-.62c.28-.61.41-1.24.4-1.86a4.42 4.42 0 00-.4-1.8l1.36-.63c.35.75.53 1.56.54 2.4.01.86-.17 1.7-.54 2.51zm3.07 1.56l-1.3-.74c.52-.92.78-1.98.78-3.15 0-1.19-.27-2.33-.8-3.4l1.34-.67c.64 1.28.96 2.65.96 4.07 0 1.43-.33 2.74-.98 3.89zm3.14 1.32l-1.35-.66c.78-1.6 1.18-3.18 1.18-4.69 0-1.51-.4-3.07-1.18-4.64l1.34-.67c.9 1.78 1.34 3.56 1.34 5.31 0 1.74-.44 3.54-1.33 5.35z", + fill: "currentColor" })); } diff --git a/icons/es5/Contacts.js b/icons/es5/Contacts.js index be51e9cb48..f631e88d7a 100644 --- a/icons/es5/Contacts.js +++ b/icons/es5/Contacts.js @@ -7,9 +7,11 @@ function SvgContacts(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 0H4v2h16V0zM4 24h16v-2H4v2zM22 4H2v16h20V4zM12 6.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z" + d: "M20 0H4v2h16V0zM4 24h16v-2H4v2zM22 4H2v16h20V4zM12 6.75c1.24 0 2.25 1.01 2.25 2.25s-1.01 2.25-2.25 2.25S9.75 10.24 9.75 9 10.76 6.75 12 6.75zM17 17H7v-1.5c0-1.67 3.33-2.5 5-2.5s5 .83 5 2.5V17z", + fill: "currentColor" })); } diff --git a/icons/es5/ContentCopy.js b/icons/es5/ContentCopy.js index c0d23bf716..ccbed29aa5 100644 --- a/icons/es5/ContentCopy.js +++ b/icons/es5/ContentCopy.js @@ -7,9 +7,11 @@ function SvgContentCopy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 1H2v16h2V3h12V1zm5 4H6v18h15V5zm-2 16H8V7h11v14z" + d: "M16 1H2v16h2V3h12V1zm5 4H6v18h15V5zm-2 16H8V7h11v14z", + fill: "currentColor" })); } diff --git a/icons/es5/ContentCut.js b/icons/es5/ContentCut.js index 01329f547a..af1fb911c9 100644 --- a/icons/es5/ContentCut.js +++ b/icons/es5/ContentCut.js @@ -7,9 +7,11 @@ function SvgContentCut(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z" + d: "M9.64 7.64c.23-.5.36-1.05.36-1.64 0-2.21-1.79-4-4-4S2 3.79 2 6s1.79 4 4 4c.59 0 1.14-.13 1.64-.36L10 12l-2.36 2.36C7.14 14.13 6.59 14 6 14c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4c0-.59-.13-1.14-.36-1.64L12 14l7 7h3v-1L9.64 7.64zM6 8c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm0 12c-1.1 0-2-.89-2-2s.9-2 2-2 2 .89 2 2-.9 2-2 2zm6-7.5c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zM19 3l-6 6 2 2 7-7V3h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/ContentPaste.js b/icons/es5/ContentPaste.js index 4a1e1dcb70..55b8c36dac 100644 --- a/icons/es5/ContentPaste.js +++ b/icons/es5/ContentPaste.js @@ -7,9 +7,11 @@ function SvgContentPaste(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 2h-6.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H3v20h18V2zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z" + d: "M21 2h-6.18C14.4.84 13.3 0 12 0S9.6.84 9.18 2H3v20h18V2zm-9 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm7 18H5V4h2v3h10V4h2v16z", + fill: "currentColor" })); } diff --git a/icons/es5/ContentPasteGo.js b/icons/es5/ContentPasteGo.js index 97ad7ad5ad..1e068266fa 100644 --- a/icons/es5/ContentPasteGo.js +++ b/icons/es5/ContentPasteGo.js @@ -7,11 +7,14 @@ function SvgContentPasteGo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 5h2v3h10V5h2v6h2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h7v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + d: "M5 5h2v3h10V5h2v6h2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h7v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18.01 13l-1.42 1.41 1.58 1.58H12v2h6.17l-1.58 1.59 1.42 1.41 3.99-4z" + d: "M18.01 13l-1.42 1.41 1.58 1.58H12v2h6.17l-1.58 1.59 1.42 1.41 3.99-4z", + fill: "currentColor" })); } diff --git a/icons/es5/ContentPasteOff.js b/icons/es5/ContentPasteOff.js index 19c09aab68..c44ca1de4e 100644 --- a/icons/es5/ContentPasteOff.js +++ b/icons/es5/ContentPasteOff.js @@ -7,9 +7,11 @@ function SvgContentPasteOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.19 21.19L2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + d: "M21.19 21.19L2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.42zM5 19V7.83L16.17 19H5zM17 8V5h2v11.17l2 2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H5.83l5 5H17zm-5-5c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + fill: "currentColor" })); } diff --git a/icons/es5/ContentPasteSearch.js b/icons/es5/ContentPasteSearch.js index 7947b1792f..586ac5421c 100644 --- a/icons/es5/ContentPasteSearch.js +++ b/icons/es5/ContentPasteSearch.js @@ -7,11 +7,14 @@ function SvgContentPasteSearch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 5h2v3h10V5h2v5h2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h7v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + d: "M5 5h2v3h10V5h2v5h2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h7v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20.3 18.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S12 14 12 16.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l2.7 2.7 1.4-1.4-2.7-2.7zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5z" + d: "M20.3 18.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S12 14 12 16.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l2.7 2.7 1.4-1.4-2.7-2.7zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Contrast.js b/icons/es5/Contrast.js index 1e98134530..bbddbecfc4 100644 --- a/icons/es5/Contrast.js +++ b/icons/es5/Contrast.js @@ -7,9 +7,11 @@ function SvgContrast(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm1-17.93c3.94.49 7 3.85 7 7.93s-3.05 7.44-7 7.93V4.07z" + d: "M12 22c5.52 0 10-4.48 10-10S17.52 2 12 2 2 6.48 2 12s4.48 10 10 10zm1-17.93c3.94.49 7 3.85 7 7.93s-3.05 7.44-7 7.93V4.07z", + fill: "currentColor" })); } diff --git a/icons/es5/ControlCamera.js b/icons/es5/ControlCamera.js index 629e60f8bd..7b1e35e15f 100644 --- a/icons/es5/ControlCamera.js +++ b/icons/es5/ControlCamera.js @@ -7,9 +7,11 @@ function SvgControlCamera(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm12.92 0l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zM8.46 5.54l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z" + d: "M5.54 8.46L2 12l3.54 3.54 1.76-1.77L5.54 12l1.76-1.77zm12.92 0l-1.76 1.77L18.46 12l-1.76 1.77 1.76 1.77L22 12zm-6.46 10l-1.77-1.76-1.77 1.76L12 22l3.54-3.54-1.77-1.76zM8.46 5.54l1.77 1.76L12 5.54l1.77 1.76 1.77-1.76L12 2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, diff --git a/icons/es5/ControlPoint.js b/icons/es5/ControlPoint.js index aa95a0d2f6..44532abdb3 100644 --- a/icons/es5/ControlPoint.js +++ b/icons/es5/ControlPoint.js @@ -7,9 +7,11 @@ function SvgControlPoint(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-1-5C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/ControlPointDuplicate.js b/icons/es5/ControlPointDuplicate.js index 2dc85a6a3c..0348f7bc52 100644 --- a/icons/es5/ControlPointDuplicate.js +++ b/icons/es5/ControlPointDuplicate.js @@ -7,9 +7,11 @@ function SvgControlPointDuplicate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16A6.99 6.99 0 012 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z" + d: "M16 8h-2v3h-3v2h3v3h2v-3h3v-2h-3V8zM2 12c0-2.79 1.64-5.2 4.01-6.32V3.52C2.52 4.76 0 8.09 0 12s2.52 7.24 6.01 8.48v-2.16A6.99 6.99 0 012 12zm13-9c-4.96 0-9 4.04-9 9s4.04 9 9 9 9-4.04 9-9-4.04-9-9-9zm0 16c-3.86 0-7-3.14-7-7s3.14-7 7-7 7 3.14 7 7-3.14 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Cookie.js b/icons/es5/Cookie.js index d347610113..ddd4ed9cfb 100644 --- a/icons/es5/Cookie.js +++ b/icons/es5/Cookie.js @@ -7,9 +7,11 @@ function SvgCookie(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.95 10.99c-1.79-.03-3.7-1.95-2.68-4.22-2.98 1-5.77-1.59-5.19-4.56C6.95.71 2 6.58 2 12c0 5.52 4.48 10 10 10 5.89 0 10.54-5.08 9.95-11.01zM8.5 15c-.83 0-1.5-.67-1.5-1.5S7.67 12 8.5 12s1.5.67 1.5 1.5S9.33 15 8.5 15zm2-5C9.67 10 9 9.33 9 8.5S9.67 7 10.5 7s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M21.95 10.99c-1.79-.03-3.7-1.95-2.68-4.22-2.98 1-5.77-1.59-5.19-4.56C6.95.71 2 6.58 2 12c0 5.52 4.48 10 10 10 5.89 0 10.54-5.08 9.95-11.01zM8.5 15c-.83 0-1.5-.67-1.5-1.5S7.67 12 8.5 12s1.5.67 1.5 1.5S9.33 15 8.5 15zm2-5C9.67 10 9 9.33 9 8.5S9.67 7 10.5 7s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4.5 6c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/CopyAll.js b/icons/es5/CopyAll.js index bd038bdcad..21b8a380a4 100644 --- a/icons/es5/CopyAll.js +++ b/icons/es5/CopyAll.js @@ -7,9 +7,11 @@ function SvgCopyAll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H7v16h13V2zm-2 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22H3v-2h2v2zm3.5 0h-2v-2h2v2zm7 0h-2v-2h2v2zM3 6h2v2H3V6z" + d: "M20 2H7v16h13V2zm-2 14H9V4h9v12zM3 15v-2h2v2H3zm0-5.5h2v2H3v-2zM10 20h2v2h-2v-2zm-7-1.5v-2h2v2H3zM5 22H3v-2h2v2zm3.5 0h-2v-2h2v2zm7 0h-2v-2h2v2zM3 6h2v2H3V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Copyright.js b/icons/es5/Copyright.js index 1258b2a313..4668a8e2d7 100644 --- a/icons/es5/Copyright.js +++ b/icons/es5/Copyright.js @@ -7,9 +7,11 @@ function SvgCopyright(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + d: "M10.08 10.86c.05-.33.16-.62.3-.87s.34-.46.59-.62c.24-.15.54-.22.91-.23.23.01.44.05.63.13.2.09.38.21.52.36s.25.33.34.53.13.42.14.64h1.79c-.02-.47-.11-.9-.28-1.29s-.4-.73-.7-1.01-.66-.5-1.08-.66-.88-.23-1.39-.23c-.65 0-1.22.11-1.7.34s-.88.53-1.2.92-.56.84-.71 1.36S8 11.29 8 11.87v.27c0 .58.08 1.12.23 1.64s.39.97.71 1.35.72.69 1.2.91c.48.22 1.05.34 1.7.34.47 0 .91-.08 1.32-.23s.77-.36 1.08-.63.56-.58.74-.94.29-.74.3-1.15h-1.79c-.01.21-.06.4-.15.58s-.21.33-.36.46-.32.23-.52.3c-.19.07-.39.09-.6.1-.36-.01-.66-.08-.89-.23-.25-.16-.45-.37-.59-.62s-.25-.55-.3-.88-.08-.67-.08-1v-.27c0-.35.03-.68.08-1.01zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/Coronavirus.js b/icons/es5/Coronavirus.js index f82a2bd884..26f7a63dcf 100644 --- a/icons/es5/Coronavirus.js +++ b/icons/es5/Coronavirus.js @@ -7,9 +7,11 @@ function SvgCoronavirus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.5 10.5v.75h-1.54a6.978 6.978 0 00-1.52-3.65l1.09-1.09.01.01.53.53 1.06-1.06-2.12-2.12-1.06 1.06.52.52-1.09 1.09a7.015 7.015 0 00-3.64-1.51V3.5h.76V2h-3v1.5h.74v1.54c-1.37.15-2.62.7-3.64 1.52L6.51 5.47l.01-.01.53-.53-1.06-1.06-2.12 2.12 1.06 1.06.52-.52 1.09 1.09a6.89 6.89 0 00-1.5 3.63H3.5v-.75H2v3h1.5v-.75h1.54c.15 1.37.69 2.61 1.5 3.63l-1.09 1.09-.52-.52-1.06 1.06 2.12 2.12 1.06-1.06-.53-.53-.01-.01 1.09-1.09c1.02.82 2.26 1.36 3.63 1.51v1.54h-.73V22h3v-1.5h-.76v-1.54c1.37-.14 2.62-.69 3.64-1.51l1.09 1.09-.52.52 1.06 1.06L20.13 18l-1.06-1.06-.53.53-.01.01-1.09-1.09a7.025 7.025 0 001.52-3.65h1.54v.75H22v-3h-1.5zM13.75 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-3.5 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M20.5 10.5v.75h-1.54a6.978 6.978 0 00-1.52-3.65l1.09-1.09.01.01.53.53 1.06-1.06-2.12-2.12-1.06 1.06.52.52-1.09 1.09a7.015 7.015 0 00-3.64-1.51V3.5h.76V2h-3v1.5h.74v1.54c-1.37.15-2.62.7-3.64 1.52L6.51 5.47l.01-.01.53-.53-1.06-1.06-2.12 2.12 1.06 1.06.52-.52 1.09 1.09a6.89 6.89 0 00-1.5 3.63H3.5v-.75H2v3h1.5v-.75h1.54c.15 1.37.69 2.61 1.5 3.63l-1.09 1.09-.52-.52-1.06 1.06 2.12 2.12 1.06-1.06-.53-.53-.01-.01 1.09-1.09c1.02.82 2.26 1.36 3.63 1.51v1.54h-.73V22h3v-1.5h-.76v-1.54c1.37-.14 2.62-.69 3.64-1.51l1.09 1.09-.52.52 1.06 1.06L20.13 18l-1.06-1.06-.53.53-.01.01-1.09-1.09a7.025 7.025 0 001.52-3.65h1.54v.75H22v-3h-1.5zM13.75 8c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-3.5 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM8.5 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm1.75-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/CorporateFare.js b/icons/es5/CorporateFare.js index 17061032a7..d796cb50ee 100644 --- a/icons/es5/CorporateFare.js +++ b/icons/es5/CorporateFare.js @@ -7,9 +7,11 @@ function SvgCorporateFare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z" + d: "M12 7V3H2v18h20V7H12zm-2 12H4v-2h6v2zm0-4H4v-2h6v2zm0-4H4V9h6v2zm0-4H4V5h6v2zm10 12h-8V9h8v10zm-2-8h-4v2h4v-2zm0 4h-4v2h4v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Cottage.js b/icons/es5/Cottage.js index a20bb88ab0..b5fe5c8b84 100644 --- a/icons/es5/Cottage.js +++ b/icons/es5/Cottage.js @@ -7,9 +7,11 @@ function SvgCottage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h7v-6h2v6h7v-9.38l1.79 1.36L23 11.4 12 3zm-2-2c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z" + d: "M12 3L6 7.58V6H4v3.11L1 11.4l1.21 1.59L4 11.62V21h7v-6h2v6h7v-9.38l1.79 1.36L23 11.4 12 3zm-2-2c0 1.66-1.34 3-3 3-.55 0-1 .45-1 1H4c0-1.66 1.34-3 3-3 .55 0 1-.45 1-1h2z", + fill: "currentColor" })); } diff --git a/icons/es5/Countertops.js b/icons/es5/Countertops.js index e95a90fa73..993b20e6a8 100644 --- a/icons/es5/Countertops.js +++ b/icons/es5/Countertops.js @@ -7,9 +7,11 @@ function SvgCountertops(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 10V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2h-4zm-5 8h-2v-6h2v6z" + d: "M18 10V7c0-1.66-1.34-3-3-3s-3 1.34-3 3h2c0-.55.45-1 1-1s1 .45 1 1v3H8c1.1 0 2-.9 2-2V4H4v4c0 1.1.9 2 2 2H2v2h2v8h16v-8h2v-2h-4zm-5 8h-2v-6h2v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Create.js b/icons/es5/Create.js index 5005ed36ad..012311b4fc 100644 --- a/icons/es5/Create.js +++ b/icons/es5/Create.js @@ -7,9 +7,11 @@ function SvgCreate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z", + fill: "currentColor" })); } diff --git a/icons/es5/CreateNewFolder.js b/icons/es5/CreateNewFolder.js index c3dc05fddb..edf9db826b 100644 --- a/icons/es5/CreateNewFolder.js +++ b/icons/es5/CreateNewFolder.js @@ -7,9 +7,11 @@ function SvgCreateNewFolder(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H12l-2-2H2v16h20V6zm-3 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z" + d: "M22 6H12l-2-2H2v16h20V6zm-3 8h-3v3h-2v-3h-3v-2h3V9h2v3h3v2z", + fill: "currentColor" })); } diff --git a/icons/es5/CreditCard.js b/icons/es5/CreditCard.js index 6fd588de5f..feb5f5e697 100644 --- a/icons/es5/CreditCard.js +++ b/icons/es5/CreditCard.js @@ -7,9 +7,11 @@ function SvgCreditCard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2.01L2 20h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z" + d: "M22 4H2.01L2 20h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z", + fill: "currentColor" })); } diff --git a/icons/es5/CreditCardOff.js b/icons/es5/CreditCardOff.js index 19a9278749..41900bef3f 100644 --- a/icons/es5/CreditCardOff.js +++ b/icons/es5/CreditCardOff.js @@ -7,9 +7,11 @@ function SvgCreditCardOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.83 4H22v15.17L14.83 12H20V8h-9.17l-4-4zm13.66 19.31L17.17 20H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM9.17 12l-4-4H4v4h5.17z" + d: "M6.83 4H22v15.17L14.83 12H20V8h-9.17l-4-4zm13.66 19.31L17.17 20H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM9.17 12l-4-4H4v4h5.17z", + fill: "currentColor" })); } diff --git a/icons/es5/CreditScore.js b/icons/es5/CreditScore.js index af95add505..655a7b7c94 100644 --- a/icons/es5/CreditScore.js +++ b/icons/es5/CreditScore.js @@ -7,9 +7,11 @@ function SvgCreditScore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 4v16h7v-2H4v-6h18V4H2zm18 4H4V6h16v2zm-5.07 11.17l-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z" + d: "M2 4v16h7v-2H4v-6h18V4H2zm18 4H4V6h16v2zm-5.07 11.17l-2.83-2.83-1.41 1.41L14.93 22 22 14.93l-1.41-1.41-5.66 5.65z", + fill: "currentColor" })); } diff --git a/icons/es5/Crib.js b/icons/es5/Crib.js index 24be277a60..d48bde2e2f 100644 --- a/icons/es5/Crib.js +++ b/icons/es5/Crib.js @@ -7,9 +7,11 @@ function SvgCrib(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 9h-8V4H8C5.79 4 4 5.79 4 8v8h4v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h4V9zm-6 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75z" + d: "M20 9h-8V4H8C5.79 4 4 5.79 4 8v8h4v2.93c-.61-.35-1.16-.78-1.65-1.27l-1.42 1.42C6.74 20.88 9.24 22 12 22c2.76 0 5.26-1.12 7.07-2.93l-1.42-1.42c-.49.49-1.05.92-1.65 1.27V16h4V9zm-6 10.75c-.64.16-1.31.25-2 .25s-1.36-.09-2-.25V16h4v3.75z", + fill: "currentColor" })); } diff --git a/icons/es5/CrisisAlert.js b/icons/es5/CrisisAlert.js index f0336eb984..0a42c1a8b5 100644 --- a/icons/es5/CrisisAlert.js +++ b/icons/es5/CrisisAlert.js @@ -7,9 +7,11 @@ function SvgCrisisAlert(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.5 2.5c0 1.06-.75 3.64-1.19 5.04a1.375 1.375 0 01-2.62 0C10.25 6.14 9.5 3.56 9.5 2.5a2.5 2.5 0 015 0zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4.08-4.89c.18-.75.33-1.47.39-2.06A9.996 9.996 0 0122 12c0 5.52-4.48 10-10 10S2 17.52 2 12c0-3.92 2.25-7.31 5.53-8.95.07.59.21 1.32.39 2.06A8.028 8.028 0 004 12c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.93-1.58-5.49-3.92-6.89zM18 12c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2 .98-3.77 2.48-4.86.23.81.65 2.07.65 2.07C8.43 9.93 8 10.92 8 12c0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.08-.43-2.07-1.13-2.79 0 0 .41-1.22.65-2.07A5.998 5.998 0 0118 12z" + d: "M14.5 2.5c0 1.06-.75 3.64-1.19 5.04a1.375 1.375 0 01-2.62 0C10.25 6.14 9.5 3.56 9.5 2.5a2.5 2.5 0 015 0zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4.08-4.89c.18-.75.33-1.47.39-2.06A9.996 9.996 0 0122 12c0 5.52-4.48 10-10 10S2 17.52 2 12c0-3.92 2.25-7.31 5.53-8.95.07.59.21 1.32.39 2.06A8.028 8.028 0 004 12c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.93-1.58-5.49-3.92-6.89zM18 12c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2 .98-3.77 2.48-4.86.23.81.65 2.07.65 2.07C8.43 9.93 8 10.92 8 12c0 2.21 1.79 4 4 4s4-1.79 4-4c0-1.08-.43-2.07-1.13-2.79 0 0 .41-1.22.65-2.07A5.998 5.998 0 0118 12z", + fill: "currentColor" })); } diff --git a/icons/es5/Crop.js b/icons/es5/Crop.js index c36d935a4e..5d48ea2da2 100644 --- a/icons/es5/Crop.js +++ b/icons/es5/Crop.js @@ -7,9 +7,11 @@ function SvgCrop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 15h2V5H9v2h8v8zM7 17V1H5v4H1v2h4v12h12v4h2v-4h4v-2H7z" + d: "M17 15h2V5H9v2h8v8zM7 17V1H5v4H1v2h4v12h12v4h2v-4h4v-2H7z", + fill: "currentColor" })); } diff --git a/icons/es5/Crop169.js b/icons/es5/Crop169.js index 49fbfcdf6d..aa65cb4e67 100644 --- a/icons/es5/Crop169.js +++ b/icons/es5/Crop169.js @@ -7,9 +7,11 @@ function SvgCrop169(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 6H3v12h18V6zm-2 10H5V8h14v8z" + d: "M21 6H3v12h18V6zm-2 10H5V8h14v8z", + fill: "currentColor" })); } diff --git a/icons/es5/Crop32.js b/icons/es5/Crop32.js index 88e9e64d78..c0cfbb990e 100644 --- a/icons/es5/Crop32.js +++ b/icons/es5/Crop32.js @@ -7,9 +7,11 @@ function SvgCrop32(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 4H3v16h18V4zm-2 14H5V6h14v12z" + d: "M21 4H3v16h18V4zm-2 14H5V6h14v12z", + fill: "currentColor" })); } diff --git a/icons/es5/Crop54.js b/icons/es5/Crop54.js index 5a92f1835c..38aa5ca944 100644 --- a/icons/es5/Crop54.js +++ b/icons/es5/Crop54.js @@ -7,9 +7,11 @@ function SvgCrop54(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5H3v14h18V5zm-2 12H5V7h14v10z" + d: "M21 5H3v14h18V5zm-2 12H5V7h14v10z", + fill: "currentColor" })); } diff --git a/icons/es5/Crop75.js b/icons/es5/Crop75.js index 4c669fb46b..deb54fb55b 100644 --- a/icons/es5/Crop75.js +++ b/icons/es5/Crop75.js @@ -7,9 +7,11 @@ function SvgCrop75(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 7H3v10h18V7zm-2 8H5V9h14v6z" + d: "M21 7H3v10h18V7zm-2 8H5V9h14v6z", + fill: "currentColor" })); } diff --git a/icons/es5/CropDin.js b/icons/es5/CropDin.js index 20096eb0d6..b109171c86 100644 --- a/icons/es5/CropDin.js +++ b/icons/es5/CropDin.js @@ -7,9 +7,11 @@ function SvgCropDin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-2 16H5V5h14v14z" + d: "M21 3H3v18h18V3zm-2 16H5V5h14v14z", + fill: "currentColor" })); } diff --git a/icons/es5/CropFree.js b/icons/es5/CropFree.js index 0ae8088d64..0b39491eaa 100644 --- a/icons/es5/CropFree.js +++ b/icons/es5/CropFree.js @@ -7,9 +7,11 @@ function SvgCropFree(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v6h2V5h4V3H3zm2 12H3v6h6v-2H5v-4zm14 4h-4v2h6v-6h-2v4zm2-16h-6v2h4v4h2V3z" + d: "M3 3v6h2V5h4V3H3zm2 12H3v6h6v-2H5v-4zm14 4h-4v2h6v-6h-2v4zm2-16h-6v2h4v4h2V3z", + fill: "currentColor" })); } diff --git a/icons/es5/CropLandscape.js b/icons/es5/CropLandscape.js index ca0e57460d..e48868344b 100644 --- a/icons/es5/CropLandscape.js +++ b/icons/es5/CropLandscape.js @@ -7,9 +7,11 @@ function SvgCropLandscape(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5H3v14h18V5zm-2 12H5V7h14v10z" + d: "M21 5H3v14h18V5zm-2 12H5V7h14v10z", + fill: "currentColor" })); } diff --git a/icons/es5/CropOriginal.js b/icons/es5/CropOriginal.js index 349053e641..0d7b1176a4 100644 --- a/icons/es5/CropOriginal.js +++ b/icons/es5/CropOriginal.js @@ -7,9 +7,11 @@ function SvgCropOriginal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-2 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z" + d: "M21 3H3v18h18V3zm-2 16H5V5h14v14zm-5.04-6.71l-2.75 3.54-1.96-2.36L6.5 17h11l-3.54-4.71z", + fill: "currentColor" })); } diff --git a/icons/es5/CropPortrait.js b/icons/es5/CropPortrait.js index 61ab004432..aee321ff13 100644 --- a/icons/es5/CropPortrait.js +++ b/icons/es5/CropPortrait.js @@ -7,9 +7,11 @@ function SvgCropPortrait(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3H5v18h14V3zm-2 16H7V5h10v14z" + d: "M19 3H5v18h14V3zm-2 16H7V5h10v14z", + fill: "currentColor" })); } diff --git a/icons/es5/CropRotate.js b/icons/es5/CropRotate.js index dd6e941fa4..c6caa32e25 100644 --- a/icons/es5/CropRotate.js +++ b/icons/es5/CropRotate.js @@ -7,9 +7,11 @@ function SvgCropRotate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V6h-8v2h6v6zm-8 2V4H6v2H4v2h2v10h10v2h2v-2h2v-2H8z" + d: "M7.47 21.49C4.2 19.93 1.86 16.76 1.5 13H0c.51 6.16 5.66 11 11.95 11 .23 0 .44-.02.66-.03L8.8 20.15l-1.33 1.34zM12.05 0c-.23 0-.44.02-.66.04l3.81 3.81 1.33-1.33C19.8 4.07 22.14 7.24 22.5 11H24c-.51-6.16-5.66-11-11.95-11zM16 14h2V6h-8v2h6v6zm-8 2V4H6v2H4v2h2v10h10v2h2v-2h2v-2H8z", + fill: "currentColor" })); } diff --git a/icons/es5/CropSquare.js b/icons/es5/CropSquare.js index 4827d36961..18e3dcec9c 100644 --- a/icons/es5/CropSquare.js +++ b/icons/es5/CropSquare.js @@ -7,9 +7,11 @@ function SvgCropSquare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 4H4v16h16V4zm-2 14H6V6h12v12z" + d: "M20 4H4v16h16V4zm-2 14H6V6h12v12z", + fill: "currentColor" })); } diff --git a/icons/es5/CrueltyFree.js b/icons/es5/CrueltyFree.js index 6c0b445d10..1e6d8ce82c 100644 --- a/icons/es5/CrueltyFree.js +++ b/icons/es5/CrueltyFree.js @@ -7,9 +7,11 @@ function SvgCrueltyFree(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.84 14.52c-.26-.19-.62-.63-.79-.84C17.24 12.01 19 8.87 19 5c0-1.95-.74-3-2-3-1.54 0-3.96 2.06-5 5.97C10.96 4.06 8.54 2 7 2 5.74 2 5 3.05 5 5c0 3.87 1.76 7.01 2.95 8.68-.17.21-.53.65-.79.84-.5.41-1.66 1.37-1.66 2.98 0 2.21 1.79 4 4 4 1.55 0 2.5-.56 2.5-.56s.95.56 2.5.56c2.21 0 4-1.79 4-4 0-1.61-1.16-2.57-1.66-2.98zM9.35 12.2C8.34 10.7 7 8.12 7 5c0-.49.06-.8.12-.97.94.31 3.24 2.71 3.38 7.64-.47.12-.84.3-1.15.53zm1.15 4.55c-.28 0-.5-.34-.5-.75s.22-.75.5-.75.5.34.5.75-.22.75-.5.75zM12 19.5c-.55 0-1-.72-1-1s.45-.5 1-.5 1 .22 1 .5-.45 1-1 1zm1.5-2.75c-.28 0-.5-.34-.5-.75s.22-.75.5-.75.5.34.5.75-.22.75-.5.75zm0-5.08c.14-4.93 2.44-7.33 3.38-7.64.06.17.12.48.12.97 0 3.12-1.34 5.7-2.35 7.2-.31-.23-.68-.41-1.15-.53z" + d: "M16.84 14.52c-.26-.19-.62-.63-.79-.84C17.24 12.01 19 8.87 19 5c0-1.95-.74-3-2-3-1.54 0-3.96 2.06-5 5.97C10.96 4.06 8.54 2 7 2 5.74 2 5 3.05 5 5c0 3.87 1.76 7.01 2.95 8.68-.17.21-.53.65-.79.84-.5.41-1.66 1.37-1.66 2.98 0 2.21 1.79 4 4 4 1.55 0 2.5-.56 2.5-.56s.95.56 2.5.56c2.21 0 4-1.79 4-4 0-1.61-1.16-2.57-1.66-2.98zM9.35 12.2C8.34 10.7 7 8.12 7 5c0-.49.06-.8.12-.97.94.31 3.24 2.71 3.38 7.64-.47.12-.84.3-1.15.53zm1.15 4.55c-.28 0-.5-.34-.5-.75s.22-.75.5-.75.5.34.5.75-.22.75-.5.75zM12 19.5c-.55 0-1-.72-1-1s.45-.5 1-.5 1 .22 1 .5-.45 1-1 1zm1.5-2.75c-.28 0-.5-.34-.5-.75s.22-.75.5-.75.5.34.5.75-.22.75-.5.75zm0-5.08c.14-4.93 2.44-7.33 3.38-7.64.06.17.12.48.12.97 0 3.12-1.34 5.7-2.35 7.2-.31-.23-.68-.41-1.15-.53z", + fill: "currentColor" })); } diff --git a/icons/es5/Css.js b/icons/es5/Css.js index 9bee3b37d9..3a5a2a5483 100644 --- a/icons/es5/Css.js +++ b/icons/es5/Css.js @@ -7,9 +7,11 @@ function SvgCss(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.5 15v-2H11v.5h2v-1H9.5V9h5v2H13v-.5h-2v1h3.5V15h-5zm6.5 0h5v-3.5h-3.5v-1h2v.5H21V9h-5v3.5h3.5v1h-2V13H16v2zm-8-4V9H3v6h5v-2H6.5v.5h-2v-3h2v.5H8z" + d: "M9.5 15v-2H11v.5h2v-1H9.5V9h5v2H13v-.5h-2v1h3.5V15h-5zm6.5 0h5v-3.5h-3.5v-1h2v.5H21V9h-5v3.5h3.5v1h-2V13H16v2zm-8-4V9H3v6h5v-2H6.5v.5h-2v-3h2v.5H8z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyBitcoin.js b/icons/es5/CurrencyBitcoin.js index f5c6b53ac8..2bc6629f1c 100644 --- a/icons/es5/CurrencyBitcoin.js +++ b/icons/es5/CurrencyBitcoin.js @@ -7,9 +7,11 @@ function SvgCurrencyBitcoin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.06 11.57c.59-.69.94-1.59.94-2.57 0-1.86-1.27-3.43-3-3.87V3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2c2.21 0 4-1.79 4-4 0-1.45-.78-2.73-1.94-3.43zM10 7h4c1.1 0 2 .9 2 2s-.9 2-2 2h-4V7zm5 10h-5v-4h5c1.1 0 2 .9 2 2s-.9 2-2 2z" + d: "M17.06 11.57c.59-.69.94-1.59.94-2.57 0-1.86-1.27-3.43-3-3.87V3h-2v2h-2V3H9v2H6v2h2v10H6v2h3v2h2v-2h2v2h2v-2c2.21 0 4-1.79 4-4 0-1.45-.78-2.73-1.94-3.43zM10 7h4c1.1 0 2 .9 2 2s-.9 2-2 2h-4V7zm5 10h-5v-4h5c1.1 0 2 .9 2 2s-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyExchange.js b/icons/es5/CurrencyExchange.js index 76944b22ef..49d27853c3 100644 --- a/icons/es5/CurrencyExchange.js +++ b/icons/es5/CurrencyExchange.js @@ -7,9 +7,11 @@ function SvgCurrencyExchange(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.89 11.1c-1.78-.59-2.64-.96-2.64-1.9 0-1.02 1.11-1.39 1.81-1.39 1.31 0 1.79.99 1.9 1.34l1.58-.67c-.15-.45-.82-1.92-2.54-2.24V5h-2v1.26c-2.48.56-2.49 2.86-2.49 2.96 0 2.27 2.25 2.91 3.35 3.31 1.58.56 2.28 1.07 2.28 2.03 0 1.13-1.05 1.61-1.98 1.61-1.82 0-2.34-1.87-2.4-2.09l-1.66.67c.63 2.19 2.28 2.78 2.9 2.96V19h2v-1.24c.4-.09 2.9-.59 2.9-3.22 0-1.39-.61-2.61-3.01-3.44zM3 21H1v-6h6v2H4.52c1.61 2.41 4.36 4 7.48 4a9 9 0 009-9h2c0 6.08-4.92 11-11 11-3.72 0-7.01-1.85-9-4.67V21zm-2-9C1 5.92 5.92 1 12 1c3.72 0 7.01 1.85 9 4.67V3h2v6h-6V7h2.48C17.87 4.59 15.12 3 12 3a9 9 0 00-9 9H1z" + d: "M12.89 11.1c-1.78-.59-2.64-.96-2.64-1.9 0-1.02 1.11-1.39 1.81-1.39 1.31 0 1.79.99 1.9 1.34l1.58-.67c-.15-.45-.82-1.92-2.54-2.24V5h-2v1.26c-2.48.56-2.49 2.86-2.49 2.96 0 2.27 2.25 2.91 3.35 3.31 1.58.56 2.28 1.07 2.28 2.03 0 1.13-1.05 1.61-1.98 1.61-1.82 0-2.34-1.87-2.4-2.09l-1.66.67c.63 2.19 2.28 2.78 2.9 2.96V19h2v-1.24c.4-.09 2.9-.59 2.9-3.22 0-1.39-.61-2.61-3.01-3.44zM3 21H1v-6h6v2H4.52c1.61 2.41 4.36 4 7.48 4a9 9 0 009-9h2c0 6.08-4.92 11-11 11-3.72 0-7.01-1.85-9-4.67V21zm-2-9C1 5.92 5.92 1 12 1c3.72 0 7.01 1.85 9 4.67V3h2v6h-6V7h2.48C17.87 4.59 15.12 3 12 3a9 9 0 00-9 9H1z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyFranc.js b/icons/es5/CurrencyFranc.js index 70cbb6f5b7..d4e71cd1b3 100644 --- a/icons/es5/CurrencyFranc.js +++ b/icons/es5/CurrencyFranc.js @@ -7,9 +7,11 @@ function SvgCurrencyFranc(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 5V3H7v13H5v2h2v3h2v-3h4v-2H9v-3h8v-2H9V5z" + d: "M18 5V3H7v13H5v2h2v3h2v-3h4v-2H9v-3h8v-2H9V5z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyLira.js b/icons/es5/CurrencyLira.js index 307a2d4eb6..8346264a6a 100644 --- a/icons/es5/CurrencyLira.js +++ b/icons/es5/CurrencyLira.js @@ -7,9 +7,11 @@ function SvgCurrencyLira(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 8.76V3h2v4.51L15 5v2.36l-4 2.51.01 2.35L15 9.72v2.36l-4 2.51V19c2.76 0 5-2.24 5-5h2c0 3.87-3.13 7-7 7H9v-5.16l-3 1.88v-2.36l3-1.88v-2.36L6 13v-2.36l3-1.88z" + d: "M9 8.76V3h2v4.51L15 5v2.36l-4 2.51.01 2.35L15 9.72v2.36l-4 2.51V19c2.76 0 5-2.24 5-5h2c0 3.87-3.13 7-7 7H9v-5.16l-3 1.88v-2.36l3-1.88v-2.36L6 13v-2.36l3-1.88z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyPound.js b/icons/es5/CurrencyPound.js index 3015757380..737fc762d6 100644 --- a/icons/es5/CurrencyPound.js +++ b/icons/es5/CurrencyPound.js @@ -7,9 +7,11 @@ function SvgCurrencyPound(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 21c1.93 0 3.62-1.17 4-3l-1.75-.88C16 18.21 15.33 19 14 19H9.1c.83-1 1.5-2.34 1.5-4 0-.35-.03-.69-.08-1H14v-2H9.82C9 10.42 8 9.6 8 8a3.5 3.5 0 016.78-1.22L16.63 6c-.8-2.05-2.79-3.5-5.13-3.5C8.46 2.5 6 4.96 6 8c0 1.78.79 2.9 1.49 4H6v2h2.47c.08.31.13.64.13 1 0 2.7-2.6 4-2.6 4v2h8z" + d: "M14 21c1.93 0 3.62-1.17 4-3l-1.75-.88C16 18.21 15.33 19 14 19H9.1c.83-1 1.5-2.34 1.5-4 0-.35-.03-.69-.08-1H14v-2H9.82C9 10.42 8 9.6 8 8a3.5 3.5 0 016.78-1.22L16.63 6c-.8-2.05-2.79-3.5-5.13-3.5C8.46 2.5 6 4.96 6 8c0 1.78.79 2.9 1.49 4H6v2h2.47c.08.31.13.64.13 1 0 2.7-2.6 4-2.6 4v2h8z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyRuble.js b/icons/es5/CurrencyRuble.js index edd56b390a..1518933058 100644 --- a/icons/es5/CurrencyRuble.js +++ b/icons/es5/CurrencyRuble.js @@ -7,9 +7,11 @@ function SvgCurrencyRuble(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5 3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04 0 5.5-2.46 5.5-5.5S16.54 3 13.5 3zm0 9H9V5h4.5C15.43 5 17 6.57 17 8.5S15.43 12 13.5 12z" + d: "M13.5 3H7v9H5v2h2v2H5v2h2v3h2v-3h4v-2H9v-2h4.5c3.04 0 5.5-2.46 5.5-5.5S16.54 3 13.5 3zm0 9H9V5h4.5C15.43 5 17 6.57 17 8.5S15.43 12 13.5 12z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyRupee.js b/icons/es5/CurrencyRupee.js index 0513a8bf93..0f84b685c7 100644 --- a/icons/es5/CurrencyRupee.js +++ b/icons/es5/CurrencyRupee.js @@ -7,9 +7,11 @@ function SvgCurrencyRupee(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.66 7c-.56-1.18-1.76-2-3.16-2H6V3h12v2h-3.26c.48.58.84 1.26 1.05 2H18v2h-2.02c-.25 2.8-2.61 5-5.48 5h-.73l6.73 7h-2.77L7 14v-2h3.5c1.76 0 3.22-1.3 3.46-3H6V7h7.66z" + d: "M13.66 7c-.56-1.18-1.76-2-3.16-2H6V3h12v2h-3.26c.48.58.84 1.26 1.05 2H18v2h-2.02c-.25 2.8-2.61 5-5.48 5h-.73l6.73 7h-2.77L7 14v-2h3.5c1.76 0 3.22-1.3 3.46-3H6V7h7.66z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyYen.js b/icons/es5/CurrencyYen.js index 92b2d18c0b..3140f7b602 100644 --- a/icons/es5/CurrencyYen.js +++ b/icons/es5/CurrencyYen.js @@ -7,9 +7,11 @@ function SvgCurrencyYen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.92 11H18v2h-5v2h5v2h-5v4h-2v-4H6v-2h5v-2H6v-2h4.08L5 3h2.37L12 10.29 16.63 3H19z" + d: "M13.92 11H18v2h-5v2h5v2h-5v4h-2v-4H6v-2h5v-2H6v-2h4.08L5 3h2.37L12 10.29 16.63 3H19z", + fill: "currentColor" })); } diff --git a/icons/es5/CurrencyYuan.js b/icons/es5/CurrencyYuan.js index fd7ab0589d..efd72a2018 100644 --- a/icons/es5/CurrencyYuan.js +++ b/icons/es5/CurrencyYuan.js @@ -7,9 +7,11 @@ function SvgCurrencyYuan(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.28 12H18v2h-5v7h-2v-7H6v-2h4.72L5 3h2.37L12 10.29 16.63 3H19z" + d: "M13.28 12H18v2h-5v7h-2v-7H6v-2h4.72L5 3h2.37L12 10.29 16.63 3H19z", + fill: "currentColor" })); } diff --git a/icons/es5/Curtains.js b/icons/es5/Curtains.js index 0a522b4963..938cde7e0c 100644 --- a/icons/es5/Curtains.js +++ b/icons/es5/Curtains.js @@ -7,9 +7,11 @@ function SvgCurtains(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3H4v16H2v2h20v-2h-2zM8.19 12c2.04-1.35 3.5-3.94 3.76-7h.09c.26 3.06 1.72 5.65 3.76 7-2.04 1.35-3.5 3.94-3.76 7h-.09c-.26-3.06-1.72-5.65-3.76-7z" + d: "M20 19V3H4v16H2v2h20v-2h-2zM8.19 12c2.04-1.35 3.5-3.94 3.76-7h.09c.26 3.06 1.72 5.65 3.76 7-2.04 1.35-3.5 3.94-3.76 7h-.09c-.26-3.06-1.72-5.65-3.76-7z", + fill: "currentColor" })); } diff --git a/icons/es5/CurtainsClosed.js b/icons/es5/CurtainsClosed.js index e3a67e3991..38dbb26be9 100644 --- a/icons/es5/CurtainsClosed.js +++ b/icons/es5/CurtainsClosed.js @@ -7,9 +7,11 @@ function SvgCurtainsClosed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3H4v16H2v2h20v-2h-2zM11 5h2v14h-2V5z" + d: "M20 19V3H4v16H2v2h20v-2h-2zM11 5h2v14h-2V5z", + fill: "currentColor" })); } diff --git a/icons/es5/Cyclone.js b/icons/es5/Cyclone.js index bd775b718b..8aee660e16 100644 --- a/icons/es5/Cyclone.js +++ b/icons/es5/Cyclone.js @@ -7,11 +7,14 @@ function SvgCyclone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 7.47V5.35C20.05 4.77 16.56 4 12 4c-2.15 0-4.11.86-5.54 2.24.13-.85.4-2.4 1.01-4.24H5.35C4.77 3.95 4 7.44 4 12c0 2.15.86 4.11 2.24 5.54-.85-.14-2.4-.4-4.24-1.01v2.12C3.95 19.23 7.44 20 12 20c2.15 0 4.11-.86 5.54-2.24-.14.85-.4 2.4-1.01 4.24h2.12c.58-1.95 1.35-5.44 1.35-10 0-2.15-.86-4.11-2.24-5.54.85.13 2.4.4 4.24 1.01zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + d: "M22 7.47V5.35C20.05 4.77 16.56 4 12 4c-2.15 0-4.11.86-5.54 2.24.13-.85.4-2.4 1.01-4.24H5.35C4.77 3.95 4 7.44 4 12c0 2.15.86 4.11 2.24 5.54-.85-.14-2.4-.4-4.24-1.01v2.12C3.95 19.23 7.44 20 12 20c2.15 0 4.11-.86 5.54-2.24-.14.85-.4 2.4-1.01 4.24h2.12c.58-1.95 1.35-5.44 1.35-10 0-2.15-.86-4.11-2.24-5.54.85.13 2.4.4 4.24 1.01zM12 18c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Dangerous.js b/icons/es5/Dangerous.js index e6fadcb393..bc9e4e4889 100644 --- a/icons/es5/Dangerous.js +++ b/icons/es5/Dangerous.js @@ -7,9 +7,11 @@ function SvgDangerous(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zm.51 11.83l-1.41 1.41L12 13.41l-2.83 2.83-1.41-1.41L10.59 12 7.76 9.17l1.41-1.41L12 10.59l2.83-2.83 1.41 1.41L13.41 12l2.83 2.83z" + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zm.51 11.83l-1.41 1.41L12 13.41l-2.83 2.83-1.41-1.41L10.59 12 7.76 9.17l1.41-1.41L12 10.59l2.83-2.83 1.41 1.41L13.41 12l2.83 2.83z", + fill: "currentColor" })); } diff --git a/icons/es5/DarkMode.js b/icons/es5/DarkMode.js index 5bef419875..5df4729cba 100644 --- a/icons/es5/DarkMode.js +++ b/icons/es5/DarkMode.js @@ -7,9 +7,11 @@ function SvgDarkMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3a9 9 0 109 9c0-.46-.04-.92-.1-1.36a5.389 5.389 0 01-4.4 2.26 5.403 5.403 0 01-3.14-9.8c-.44-.06-.9-.1-1.36-.1z" + d: "M12 3a9 9 0 109 9c0-.46-.04-.92-.1-1.36a5.389 5.389 0 01-4.4 2.26 5.403 5.403 0 01-3.14-9.8c-.44-.06-.9-.1-1.36-.1z", + fill: "currentColor" })); } diff --git a/icons/es5/Dashboard.js b/icons/es5/Dashboard.js index 606b1c916f..092931dac5 100644 --- a/icons/es5/Dashboard.js +++ b/icons/es5/Dashboard.js @@ -7,9 +7,11 @@ function SvgDashboard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z" + d: "M3 13h8V3H3v10zm0 8h8v-6H3v6zm10 0h8V11h-8v10zm0-18v6h8V3h-8z", + fill: "currentColor" })); } diff --git a/icons/es5/DashboardCustomize.js b/icons/es5/DashboardCustomize.js index a4e5ed98f7..a57988358e 100644 --- a/icons/es5/DashboardCustomize.js +++ b/icons/es5/DashboardCustomize.js @@ -7,9 +7,11 @@ function SvgDashboardCustomize(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z" + d: "M3 3h8v8H3V3zm10 0h8v8h-8V3zM3 13h8v8H3v-8zm15 0h-2v3h-3v2h3v3h2v-3h3v-2h-3v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/DataArray.js b/icons/es5/DataArray.js index 7bc7efa01f..84dea3124a 100644 --- a/icons/es5/DataArray.js +++ b/icons/es5/DataArray.js @@ -7,9 +7,11 @@ function SvgDataArray(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 4v2h3v12h-3v2h5V4zM4 20h5v-2H6V6h3V4H4z" + d: "M15 4v2h3v12h-3v2h5V4zM4 20h5v-2H6V6h3V4H4z", + fill: "currentColor" })); } diff --git a/icons/es5/DataExploration.js b/icons/es5/DataExploration.js index 2f309d08f5..e461d6d43b 100644 --- a/icons/es5/DataExploration.js +++ b/icons/es5/DataExploration.js @@ -7,9 +7,11 @@ function SvgDataExploration(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12c0 1.33.26 2.61.74 3.77L8 10.5l3.3 2.78L14.58 10H13V8h5v5h-2v-1.58L11.41 16l-3.29-2.79-4.4 4.4A9.996 9.996 0 0012 22h10V12c0-5.52-4.48-10-10-10zm7.5 18.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M12 2C6.48 2 2 6.48 2 12c0 1.33.26 2.61.74 3.77L8 10.5l3.3 2.78L14.58 10H13V8h5v5h-2v-1.58L11.41 16l-3.29-2.79-4.4 4.4A9.996 9.996 0 0012 22h10V12c0-5.52-4.48-10-10-10zm7.5 18.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/DataObject.js b/icons/es5/DataObject.js index 238d9322a8..af448806c9 100644 --- a/icons/es5/DataObject.js +++ b/icons/es5/DataObject.js @@ -7,9 +7,11 @@ function SvgDataObject(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 10H2v4h2v6h6v-2H6v-5.5H4v-1h2V6h4V4H4zm16 0V4h-6v2h4v5.5h2v1h-2V18h-4v2h6v-6h2v-4z" + d: "M4 10H2v4h2v6h6v-2H6v-5.5H4v-1h2V6h4V4H4zm16 0V4h-6v2h4v5.5h2v1h-2V18h-4v2h6v-6h2v-4z", + fill: "currentColor" })); } diff --git a/icons/es5/DataSaverOff.js b/icons/es5/DataSaverOff.js index 0d7778298d..00beb8e4a6 100644 --- a/icons/es5/DataSaverOff.js +++ b/icons/es5/DataSaverOff.js @@ -7,9 +7,11 @@ function SvgDataSaverOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53A6.95 6.95 0 0112 19z" + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53A6.95 6.95 0 0112 19z", + fill: "currentColor" })); } diff --git a/icons/es5/DataSaverOn.js b/icons/es5/DataSaverOn.js index 8de5099282..e0946706d7 100644 --- a/icons/es5/DataSaverOn.js +++ b/icons/es5/DataSaverOn.js @@ -7,9 +7,11 @@ function SvgDataSaverOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53A6.95 6.95 0 0112 19z" + d: "M11 8v3H8v2h3v3h2v-3h3v-2h-3V8h-2zm2-5.95v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53A6.95 6.95 0 0112 19z", + fill: "currentColor" })); } diff --git a/icons/es5/DataThresholding.js b/icons/es5/DataThresholding.js index dd20d14eff..f382d221ae 100644 --- a/icons/es5/DataThresholding.js +++ b/icons/es5/DataThresholding.js @@ -7,9 +7,11 @@ function SvgDataThresholding(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM10.67 8.17l2 2 3.67-3.67 1.41 1.41L12.67 13l-2-2-3 3-1.41-1.41 4.41-4.42zM5 16h1.72L5 17.72V16zm.84 3l3-3h1.83l-3 3H5.84zm3.96 0l3-3h1.62l-3 3H9.8zm3.73 0l3-3h1.62l-3 3h-1.62zM19 19h-1.73L19 17.27V19z" + d: "M21 3H3v18h18V3zM10.67 8.17l2 2 3.67-3.67 1.41 1.41L12.67 13l-2-2-3 3-1.41-1.41 4.41-4.42zM5 16h1.72L5 17.72V16zm.84 3l3-3h1.83l-3 3H5.84zm3.96 0l3-3h1.62l-3 3H9.8zm3.73 0l3-3h1.62l-3 3h-1.62zM19 19h-1.73L19 17.27V19z", + fill: "currentColor" })); } diff --git a/icons/es5/DataUsage.js b/icons/es5/DataUsage.js index 636f198021..69049220b2 100644 --- a/icons/es5/DataUsage.js +++ b/icons/es5/DataUsage.js @@ -7,9 +7,11 @@ function SvgDataUsage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53A6.95 6.95 0 0112 19z" + d: "M13 2.05v3.03c3.39.49 6 3.39 6 6.92 0 .9-.18 1.75-.48 2.54l2.6 1.53c.56-1.24.88-2.62.88-4.07 0-5.18-3.95-9.45-9-9.95zM12 19c-3.87 0-7-3.13-7-7 0-3.53 2.61-6.43 6-6.92V2.05c-5.06.5-9 4.76-9 9.95 0 5.52 4.47 10 9.99 10 3.31 0 6.24-1.61 8.06-4.09l-2.6-1.53A6.95 6.95 0 0112 19z", + fill: "currentColor" })); } diff --git a/icons/es5/Dataset.js b/icons/es5/Dataset.js index b04f337fa6..2760e8a3fa 100644 --- a/icons/es5/Dataset.js +++ b/icons/es5/Dataset.js @@ -7,9 +7,11 @@ function SvgDataset(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM11 17H7v-4h4v4zm0-6H7V7h4v4zm6 6h-4v-4h4v4zm0-6h-4V7h4v4z" + d: "M21 3H3v18h18V3zM11 17H7v-4h4v4zm0-6H7V7h4v4zm6 6h-4v-4h4v4zm0-6h-4V7h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/DatasetLinked.js b/icons/es5/DatasetLinked.js index 75c8dee13b..961079446e 100644 --- a/icons/es5/DatasetLinked.js +++ b/icons/es5/DatasetLinked.js @@ -7,13 +7,17 @@ function SvgDatasetLinked(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.09 17H7v-4h3.69c.95-.63 2.09-1 3.31-1h6c.34 0 .67.04 1 .09V3H3v18h5.81C8.3 20.12 8 19.09 8 18c0-.34.04-.67.09-1zM13 7h4v4h-4V7zM7 7h4v4H7V7z" + d: "M8.09 17H7v-4h3.69c.95-.63 2.09-1 3.31-1h6c.34 0 .67.04 1 .09V3H3v18h5.81C8.3 20.12 8 19.09 8 18c0-.34.04-.67.09-1zM13 7h4v4h-4V7zM7 7h4v4H7V7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 18c0-1.1.9-2 2-2h2v-2h-2c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2h-2c-1.1 0-2-.9-2-2zm8-4h-2v2h2c1.1 0 2 .9 2 2s-.9 2-2 2h-2v2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" + d: "M12 18c0-1.1.9-2 2-2h2v-2h-2c-2.21 0-4 1.79-4 4s1.79 4 4 4h2v-2h-2c-1.1 0-2-.9-2-2zm8-4h-2v2h2c1.1 0 2 .9 2 2s-.9 2-2 2h-2v2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14 17h6v2h-6z" + d: "M14 17h6v2h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/Deblur.js b/icons/es5/Deblur.js index a4cfce9793..6d065968b4 100644 --- a/icons/es5/Deblur.js +++ b/icons/es5/Deblur.js @@ -7,9 +7,11 @@ function SvgDeblur(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3v18a9 9 0 000-18z" + d: "M12 3v18a9 9 0 000-18z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 6, cy: 14, diff --git a/icons/es5/Deck.js b/icons/es5/Deck.js index e142da1c85..ca0cb4e635 100644 --- a/icons/es5/Deck.js +++ b/icons/es5/Deck.js @@ -7,11 +7,14 @@ function SvgDeck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9L12 2 2 9h9v13h2V9z" + d: "M22 9L12 2 2 9h9v13h2V9z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M4.14 12l-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z" + d: "M4.14 12l-1.96.37.82 4.37V22h2l.02-4H7v4h2v-6H4.9zm14.96 4H15v6h2v-4h1.98l.02 4h2v-5.26l.82-4.37-1.96-.37z", + fill: "currentColor" })); } diff --git a/icons/es5/Dehaze.js b/icons/es5/Dehaze.js index 00d4df499d..6507381cfa 100644 --- a/icons/es5/Dehaze.js +++ b/icons/es5/Dehaze.js @@ -7,9 +7,11 @@ function SvgDehaze(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z" + d: "M2 16v2h20v-2H2zm0-5v2h20v-2H2zm0-5v2h20V6H2z", + fill: "currentColor" })); } diff --git a/icons/es5/DeleteForever.js b/icons/es5/DeleteForever.js index cddb09b776..c102b51c1f 100644 --- a/icons/es5/DeleteForever.js +++ b/icons/es5/DeleteForever.js @@ -7,9 +7,11 @@ function SvgDeleteForever(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 21h12V7H6v14zm2.46-9.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5z" + d: "M6 21h12V7H6v14zm2.46-9.12l1.41-1.41L12 12.59l2.12-2.12 1.41 1.41L13.41 14l2.12 2.12-1.41 1.41L12 15.41l-2.12 2.12-1.41-1.41L10.59 14l-2.13-2.12zM15.5 4l-1-1h-5l-1 1H5v2h14V4h-3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/DeleteOutline.js b/icons/es5/DeleteOutline.js index 19330f5cbe..ecf3496816 100644 --- a/icons/es5/DeleteOutline.js +++ b/icons/es5/DeleteOutline.js @@ -7,9 +7,11 @@ function SvgDeleteOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 21h12V7H6v14zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z" + d: "M6 21h12V7H6v14zM8 9h8v10H8V9zm7.5-5l-1-1h-5l-1 1H5v2h14V4h-3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/DeleteSweep.js b/icons/es5/DeleteSweep.js index d2b0d9ce47..83cded175f 100644 --- a/icons/es5/DeleteSweep.js +++ b/icons/es5/DeleteSweep.js @@ -7,9 +7,11 @@ function SvgDeleteSweep(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 16h4v2h-4v-2zm0-8h7v2h-7V8zm0 4h6v2h-6v-2zM3 20h10V8H3v12zM14 5h-3l-1-1H6L5 5H2v2h12V5z" + d: "M15 16h4v2h-4v-2zm0-8h7v2h-7V8zm0 4h6v2h-6v-2zM3 20h10V8H3v12zM14 5h-3l-1-1H6L5 5H2v2h12V5z", + fill: "currentColor" })); } diff --git a/icons/es5/DeliveryDining.js b/icons/es5/DeliveryDining.js index d0549c575d..2e9218e2c9 100644 --- a/icons/es5/DeliveryDining.js +++ b/icons/es5/DeliveryDining.js @@ -7,11 +7,14 @@ function SvgDeliveryDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 10.35V5h-5v2h3v2.65L13.52 14H10V9H2v7h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" + d: "M19 10.35V5h-5v2h3v2.65L13.52 14H10V9H2v7h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/DensityLarge.js b/icons/es5/DensityLarge.js index 6b4f22e3db..a6170c05d9 100644 --- a/icons/es5/DensityLarge.js +++ b/icons/es5/DensityLarge.js @@ -7,9 +7,11 @@ function SvgDensityLarge(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3h18v2H3zm0 16h18v2H3z" + d: "M3 3h18v2H3zm0 16h18v2H3z", + fill: "currentColor" })); } diff --git a/icons/es5/DensityMedium.js b/icons/es5/DensityMedium.js index abb1a14376..73cbb9189b 100644 --- a/icons/es5/DensityMedium.js +++ b/icons/es5/DensityMedium.js @@ -7,9 +7,11 @@ function SvgDensityMedium(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3h18v2H3zm0 16h18v2H3zm0-8h18v2H3z" + d: "M3 3h18v2H3zm0 16h18v2H3zm0-8h18v2H3z", + fill: "currentColor" })); } diff --git a/icons/es5/DensitySmall.js b/icons/es5/DensitySmall.js index 4a53b01acc..986c182e35 100644 --- a/icons/es5/DensitySmall.js +++ b/icons/es5/DensitySmall.js @@ -7,9 +7,11 @@ function SvgDensitySmall(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 2h18v2H3zm0 18h18v2H3zm0-6h18v2H3zm0-6h18v2H3z" + d: "M3 2h18v2H3zm0 18h18v2H3zm0-6h18v2H3zm0-6h18v2H3z", + fill: "currentColor" })); } diff --git a/icons/es5/DepartureBoard.js b/icons/es5/DepartureBoard.js index 66d8a6d8b2..c662fb4a29 100644 --- a/icons/es5/DepartureBoard.js +++ b/icons/es5/DepartureBoard.js @@ -7,9 +7,11 @@ function SvgDepartureBoard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.34 1.13c-2.94-.55-5.63.75-7.12 2.92.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V23h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22v-3.08c3.72-.54 6.5-3.98 5.92-7.97-.42-2.9-2.7-5.29-5.58-5.82zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68V4z" + d: "M17.34 1.13c-2.94-.55-5.63.75-7.12 2.92.01-.01.01-.02.02-.03C9.84 4 9.42 4 9 4c-4.42 0-8 .5-8 4v10c0 .88.39 1.67 1 2.22V23h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22v-3.08c3.72-.54 6.5-3.98 5.92-7.97-.42-2.9-2.7-5.29-5.58-5.82zM4.5 19c-.83 0-1.5-.67-1.5-1.5S3.67 16 4.5 16s1.5.67 1.5 1.5S5.33 19 4.5 19zM3 13V8h6c0 1.96.81 3.73 2.11 5H3zm10.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm.5-9H15v5l3.62 2.16.75-1.23-2.87-1.68V4z", + fill: "currentColor" })); } diff --git a/icons/es5/Description.js b/icons/es5/Description.js index a0a8ad9192..e0b68b3b55 100644 --- a/icons/es5/Description.js +++ b/icons/es5/Description.js @@ -7,9 +7,11 @@ function SvgDescription(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z" + d: "M14 2H4v20h16V8l-6-6zm2 16H8v-2h8v2zm0-4H8v-2h8v2zm-3-5V3.5L18.5 9H13z", + fill: "currentColor" })); } diff --git a/icons/es5/Deselect.js b/icons/es5/Deselect.js index 1838e66d8f..4d5ad7fdbf 100644 --- a/icons/es5/Deselect.js +++ b/icons/es5/Deselect.js @@ -7,9 +7,11 @@ function SvgDeselect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 13h2v-2H3v2zm4 8h2v-2H7v2zm6-18h-2v2h2V3zm6 0v2h2V3h-2zM5 21v-2H3v2h2zm-2-4h2v-2H3v2zm8 4h2v-2h-2v2zm8-8h2v-2h-2v2zm0-4h2V7h-2v2zm-4-4h2V3h-2v2zM7.83 5L7 4.17V3h2v2H7.83zm12 12l-.83-.83V15h2v2h-1.17zm1.36 4.19L2.81 2.81 1.39 4.22 4.17 7H3v2h2V7.83l2 2V17h7.17l2 2H15v2h2v-1.17l2.78 2.78 1.41-1.42zM9 15v-3.17L12.17 15H9zm6-2.83V9h-3.17l-2-2H17v7.17l-2-2z" + d: "M3 13h2v-2H3v2zm4 8h2v-2H7v2zm6-18h-2v2h2V3zm6 0v2h2V3h-2zM5 21v-2H3v2h2zm-2-4h2v-2H3v2zm8 4h2v-2h-2v2zm8-8h2v-2h-2v2zm0-4h2V7h-2v2zm-4-4h2V3h-2v2zM7.83 5L7 4.17V3h2v2H7.83zm12 12l-.83-.83V15h2v2h-1.17zm1.36 4.19L2.81 2.81 1.39 4.22 4.17 7H3v2h2V7.83l2 2V17h7.17l2 2H15v2h2v-1.17l2.78 2.78 1.41-1.42zM9 15v-3.17L12.17 15H9zm6-2.83V9h-3.17l-2-2H17v7.17l-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/DesignServices.js b/icons/es5/DesignServices.js index 9c96c3f834..ae501a0a28 100644 --- a/icons/es5/DesignServices.js +++ b/icons/es5/DesignServices.js @@ -7,9 +7,11 @@ function SvgDesignServices(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.79 17.06l-5.55-5.55 1.57-1.57-3.75-3.75-1.57 1.57-5.55-5.55-4.73 4.73 5.55 5.55L3 17.25V21h3.75l4.76-4.76 5.55 5.55 4.73-4.73zM9.18 11.07L5.04 6.94l1.9-1.9 1.27 1.27L7.02 7.5l1.41 1.41 1.19-1.19 1.45 1.45-1.89 1.9zm3.75 3.75l1.9-1.9 1.45 1.45-1.19 1.19 1.41 1.41 1.19-1.19 1.27 1.27-1.9 1.9-4.13-4.13zm2.203-9.697l2.538-2.539 3.748 3.748-2.538 2.539z" + d: "M21.79 17.06l-5.55-5.55 1.57-1.57-3.75-3.75-1.57 1.57-5.55-5.55-4.73 4.73 5.55 5.55L3 17.25V21h3.75l4.76-4.76 5.55 5.55 4.73-4.73zM9.18 11.07L5.04 6.94l1.9-1.9 1.27 1.27L7.02 7.5l1.41 1.41 1.19-1.19 1.45 1.45-1.89 1.9zm3.75 3.75l1.9-1.9 1.45 1.45-1.19 1.19 1.41 1.41 1.19-1.19 1.27 1.27-1.9 1.9-4.13-4.13zm2.203-9.697l2.538-2.539 3.748 3.748-2.538 2.539z", + fill: "currentColor" })); } diff --git a/icons/es5/Desk.js b/icons/es5/Desk.js index c8b09ffaa6..ac72f1cd66 100644 --- a/icons/es5/Desk.js +++ b/icons/es5/Desk.js @@ -7,9 +7,11 @@ function SvgDesk(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 6v12h2V8h10v10h2v-2h4v2h2V6H2zm18 2v2h-4V8h4zm-4 6v-2h4v2h-4z" + d: "M2 6v12h2V8h10v10h2v-2h4v2h2V6H2zm18 2v2h-4V8h4zm-4 6v-2h4v2h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/DesktopAccessDisabled.js b/icons/es5/DesktopAccessDisabled.js index f0a51b72ff..4adebb154f 100644 --- a/icons/es5/DesktopAccessDisabled.js +++ b/icons/es5/DesktopAccessDisabled.js @@ -7,9 +7,11 @@ function SvgDesktopAccessDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1.41 1.69L0 3.1l1 .99V18h9v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h2.44V2z" + d: "M1.41 1.69L0 3.1l1 .99V18h9v2H8v2h8v-2h-2v-2h.9l6 6 1.41-1.41-20.9-20.9zM2.99 16V6.09L12.9 16H2.99zM4.55 2l2 2H21v12h-2.45l2 2h2.44V2z", + fill: "currentColor" })); } diff --git a/icons/es5/DesktopMac.js b/icons/es5/DesktopMac.js index d6228a3cd9..5daef2f57e 100644 --- a/icons/es5/DesktopMac.js +++ b/icons/es5/DesktopMac.js @@ -7,9 +7,11 @@ function SvgDesktopMac(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 2H1v16h9l-2 3v1h8v-1l-2-3h9V2zm-2 12H3V4h18v10z" + d: "M23 2H1v16h9l-2 3v1h8v-1l-2-3h9V2zm-2 12H3V4h18v10z", + fill: "currentColor" })); } diff --git a/icons/es5/DesktopWindows.js b/icons/es5/DesktopWindows.js index 592016770d..620c98ad59 100644 --- a/icons/es5/DesktopWindows.js +++ b/icons/es5/DesktopWindows.js @@ -7,9 +7,11 @@ function SvgDesktopWindows(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 2H1v16h9v2H8v2h8v-2h-2v-2h9V2zm-2 14H3V4h18v12z" + d: "M23 2H1v16h9v2H8v2h8v-2h-2v-2h9V2zm-2 14H3V4h18v12z", + fill: "currentColor" })); } diff --git a/icons/es5/Details.js b/icons/es5/Details.js index bf6f30a9fe..c969a5c40a 100644 --- a/icons/es5/Details.js +++ b/icons/es5/Details.js @@ -7,9 +7,11 @@ function SvgDetails(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z" + d: "M12 3L2 21h20L12 3zm1 5.92L18.6 19H13V8.92zm-2 0V19H5.4L11 8.92z", + fill: "currentColor" })); } diff --git a/icons/es5/DeveloperBoard.js b/icons/es5/DeveloperBoard.js index 3832cc3c9b..83b9c6f056 100644 --- a/icons/es5/DeveloperBoard.js +++ b/icons/es5/DeveloperBoard.js @@ -7,9 +7,11 @@ function SvgDeveloperBoard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9V7h-2V3H2v18h18v-4h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z" + d: "M22 9V7h-2V3H2v18h18v-4h2v-2h-2v-2h2v-2h-2V9h2zm-4 10H4V5h14v14zM6 13h5v4H6v-4zm6-6h4v3h-4V7zM6 7h5v5H6V7zm6 4h4v6h-4v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/DeveloperBoardOff.js b/icons/es5/DeveloperBoardOff.js index c2bc3686e1..a582a99801 100644 --- a/icons/es5/DeveloperBoardOff.js +++ b/icons/es5/DeveloperBoardOff.js @@ -7,9 +7,11 @@ function SvgDeveloperBoardOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V3H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zm4.34 10l2.31 2.31 1.41-1.41L2.1 2.1.69 3.51 2 4.83V21h16.17zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z" + d: "M7.83 5H18v10.17L19.83 17H22v-2h-2v-2h2v-2h-2V9h2V7h-2V3H5.83l2 2zM12 9.17V7h4v3h-3.17L12 9.17zM9.83 7H11v1.17L9.83 7zm4 4H16v2.17L13.83 11zm4.34 10l2.31 2.31 1.41-1.41L2.1 2.1.69 3.51 2 4.83V21h16.17zM4 19V6.83l2 2V12h3.17l1 1H6v4h5v-3.17l1 1V17h2.17l2 2H4z", + fill: "currentColor" })); } diff --git a/icons/es5/DeveloperMode.js b/icons/es5/DeveloperMode.js index 5fdce72b02..623271e1d1 100644 --- a/icons/es5/DeveloperMode.js +++ b/icons/es5/DeveloperMode.js @@ -7,9 +7,11 @@ function SvgDeveloperMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 5h10v2h2V1.01L5 1v6h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v6h14v-6h-2v2z" + d: "M7 5h10v2h2V1.01L5 1v6h2V5zm8.41 11.59L20 12l-4.59-4.59L14 8.83 17.17 12 14 15.17l1.41 1.42zM10 15.17L6.83 12 10 8.83 8.59 7.41 4 12l4.59 4.59L10 15.17zM17 19H7v-2H5v6h14v-6h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/DeviceHub.js b/icons/es5/DeviceHub.js index 75974a56f1..3588714e20 100644 --- a/icons/es5/DeviceHub.js +++ b/icons/es5/DeviceHub.js @@ -7,9 +7,11 @@ function SvgDeviceHub(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z" + d: "M17 16l-4-4V8.82C14.16 8.4 15 7.3 15 6c0-1.66-1.34-3-3-3S9 4.34 9 6c0 1.3.84 2.4 2 2.82V12l-4 4H3v5h5v-3.05l4-4.2 4 4.2V21h5v-5h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/DeviceThermostat.js b/icons/es5/DeviceThermostat.js index e7cbe1757b..9559fc22aa 100644 --- a/icons/es5/DeviceThermostat.js +++ b/icons/es5/DeviceThermostat.js @@ -7,9 +7,11 @@ function SvgDeviceThermostat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z" + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-2V5c0-.55.45-1 1-1s1 .45 1 1v1h-1v1h1v2h-1v1h1v1h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/DeviceUnknown.js b/icons/es5/DeviceUnknown.js index ed33f74d54..9f71c91b7d 100644 --- a/icons/es5/DeviceUnknown.js +++ b/icons/es5/DeviceUnknown.js @@ -7,9 +7,11 @@ function SvgDeviceUnknown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 1H5v22h14V1zm-2 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z" + d: "M19 1H5v22h14V1zm-2 18H7V5h10v14zM12 6.72c-1.96 0-3.5 1.52-3.5 3.47h1.75c0-.93.82-1.75 1.75-1.75s1.75.82 1.75 1.75c0 1.75-2.63 1.57-2.63 4.45h1.76c0-1.96 2.62-2.19 2.62-4.45 0-1.96-1.54-3.47-3.5-3.47zM11 16h2v2h-2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Devices.js b/icons/es5/Devices.js index 150a5fcf8d..cc4e1a073c 100644 --- a/icons/es5/Devices.js +++ b/icons/es5/Devices.js @@ -7,9 +7,11 @@ function SvgDevices(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z" + d: "M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z", + fill: "currentColor" })); } diff --git a/icons/es5/DevicesFold.js b/icons/es5/DevicesFold.js index 476b6e930b..fea17e6a11 100644 --- a/icons/es5/DevicesFold.js +++ b/icons/es5/DevicesFold.js @@ -7,9 +7,11 @@ function SvgDevicesFold(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 3V-.03l-7 3V21h12V3h-5zm3 16h-5.33L17 18V5h3v14zM2 3h2v2H2zm0 16h2v2H2zm0-4h2v2H2zm0-4h2v2H2zm0-4h2v2H2zm4-4h2v2H6zm0 16h2v2H6z" + d: "M17 3V-.03l-7 3V21h12V3h-5zm3 16h-5.33L17 18V5h3v14zM2 3h2v2H2zm0 16h2v2H2zm0-4h2v2H2zm0-4h2v2H2zm0-4h2v2H2zm4-4h2v2H6zm0 16h2v2H6z", + fill: "currentColor" })); } diff --git a/icons/es5/DevicesOther.js b/icons/es5/DevicesOther.js index 8d5d75b05c..679f84e583 100644 --- a/icons/es5/DevicesOther.js +++ b/icons/es5/DevicesOther.js @@ -7,9 +7,11 @@ function SvgDevicesOther(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 6h18V4H1v16h6v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM23 8h-8v12h8V8zm-2 10h-4v-8h4v8z" + d: "M3 6h18V4H1v16h6v-2H3V6zm10 6H9v1.78c-.61.55-1 1.33-1 2.22 0 .89.39 1.67 1 2.22V20h4v-1.78c.61-.55 1-1.34 1-2.22s-.39-1.67-1-2.22V12zm-2 5.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM23 8h-8v12h8V8zm-2 10h-4v-8h4v8z", + fill: "currentColor" })); } diff --git a/icons/es5/DialerSip.js b/icons/es5/DialerSip.js index f77432751f..ba8dc43c64 100644 --- a/icons/es5/DialerSip.js +++ b/icons/es5/DialerSip.js @@ -7,9 +7,11 @@ function SvgDialerSip(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm1 10.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" + d: "M16 3h1v5h-1zm-1 2h-2V4h2V3h-3v3h2v1h-2v1h3zm3-2v5h1V6h2V3h-3zm2 2h-1V4h1v1zm1 10.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z", + fill: "currentColor" })); } diff --git a/icons/es5/Dialpad.js b/icons/es5/Dialpad.js index aa0900271f..d315c6f167 100644 --- a/icons/es5/Dialpad.js +++ b/icons/es5/Dialpad.js @@ -7,9 +7,11 @@ function SvgDialpad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + d: "M12 19c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-6 0c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Diamond.js b/icons/es5/Diamond.js index 70459557c5..6abd06ee50 100644 --- a/icons/es5/Diamond.js +++ b/icons/es5/Diamond.js @@ -7,9 +7,11 @@ function SvgDiamond(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.16 3h-.32L9.21 8.25h5.58zm4.3 5.25h5.16L19 3h-5.16zm4.92 1.5h-8.63V20.1zM11.25 20.1V9.75H2.62zM7.54 8.25L10.16 3H5L2.38 8.25z" + d: "M12.16 3h-.32L9.21 8.25h5.58zm4.3 5.25h5.16L19 3h-5.16zm4.92 1.5h-8.63V20.1zM11.25 20.1V9.75H2.62zM7.54 8.25L10.16 3H5L2.38 8.25z", + fill: "currentColor" })); } diff --git a/icons/es5/Difference.js b/icons/es5/Difference.js index 9cfe74211e..30fed29b23 100644 --- a/icons/es5/Difference.js +++ b/icons/es5/Difference.js @@ -7,9 +7,11 @@ function SvgDifference(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 23H2V7h2v14h14v2zM15 1H6.01L6 19h15V7l-6-6zm1.5 14h-6v-2h6v2zm0-6h-2v2h-2V9h-2V7h2V5h2v2h2v2z" + d: "M18 23H2V7h2v14h14v2zM15 1H6.01L6 19h15V7l-6-6zm1.5 14h-6v-2h6v2zm0-6h-2v2h-2V9h-2V7h2V5h2v2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Dining.js b/icons/es5/Dining.js index e8ca435b45..ab4dc71f44 100644 --- a/icons/es5/Dining.js +++ b/icons/es5/Dining.js @@ -7,9 +7,11 @@ function SvgDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zm-11 8.3c0 .93-.64 1.71-1.5 1.93V19H8v-6.77c-.86-.22-1.5-1-1.5-1.93V6h1v3h.75V6h1v3H10V6h1v4.3zm4.58 2.29l-.08.03V19H14v-6.38l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4 1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18z" + d: "M22 2H2v20h20V2zm-11 8.3c0 .93-.64 1.71-1.5 1.93V19H8v-6.77c-.86-.22-1.5-1-1.5-1.93V6h1v3h.75V6h1v3H10V6h1v4.3zm4.58 2.29l-.08.03V19H14v-6.38l-.08-.04c-.97-.47-1.67-1.7-1.67-3.18 0-1.88 1.13-3.4 2.5-3.4 1.38 0 2.5 1.53 2.5 3.41 0 1.48-.7 2.71-1.67 3.18z", + fill: "currentColor" })); } diff --git a/icons/es5/DinnerDining.js b/icons/es5/DinnerDining.js index 5308236b81..0b8cd13453 100644 --- a/icons/es5/DinnerDining.js +++ b/icons/es5/DinnerDining.js @@ -7,9 +7,11 @@ function SvgDinnerDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 19l2 2h16l2-2zm1-1h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h4V6.75h9v-1.5h-9V3H3v1.5h1v.75H3v1.5h1v.75H3V9h1v7.39c-.44.46-.78 1-1 1.61zM8 7.5v-.75h2v.75H8zm2-2.25H8V4.5h2v.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM6.5 9v6.06c-.35.06-.68.17-1 .3V9h1z" + d: "M2 19l2 2h16l2-2zm1-1h16.97c.29-3.26-2.28-6-5.48-6-2.35 0-4.35 1.48-5.14 3.55-.41-.23-.87-.38-1.35-.47V9h4V6.75h9v-1.5h-9V3H3v1.5h1v.75H3v1.5h1v.75H3V9h1v7.39c-.44.46-.78 1-1 1.61zM8 7.5v-.75h2v.75H8zm2-2.25H8V4.5h2v.75zM5.5 4.5h1v.75h-1V4.5zm0 2.25h1v.75h-1v-.75zM6.5 9v6.06c-.35.06-.68.17-1 .3V9h1z", + fill: "currentColor" })); } diff --git a/icons/es5/Directions.js b/icons/es5/Directions.js index 4bc46712b6..56d9a508ee 100644 --- a/icons/es5/Directions.js +++ b/icons/es5/Directions.js @@ -7,9 +7,11 @@ function SvgDirections(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22.41 12L12 1.59 1.59 11.99 12 22.41 22.41 12zM14 14.5V12h-4v3H8v-5h6V7.5l3.5 3.5-3.5 3.5z" + d: "M22.41 12L12 1.59 1.59 11.99 12 22.41 22.41 12zM14 14.5V12h-4v3H8v-5h6V7.5l3.5 3.5-3.5 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsBike.js b/icons/es5/DirectionsBike.js index a9e1275e09..88008399a4 100644 --- a/icons/es5/DirectionsBike.js +++ b/icons/es5/DirectionsBike.js @@ -7,9 +7,11 @@ function SvgDirectionsBike(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L6.31 9.9 11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z" + d: "M15.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5zm5.8-10l2.4-2.4.8.8c1.3 1.3 3 2.1 5.1 2.1V9c-1.5 0-2.7-.6-3.6-1.5l-1.9-1.9c-.5-.4-1-.6-1.6-.6s-1.1.2-1.4.6L6.31 9.9 11 14v5h2v-6.2l-2.2-2.3zM19 12c-2.8 0-5 2.2-5 5s2.2 5 5 5 5-2.2 5-5-2.2-5-5-5zm0 8.5c-1.9 0-3.5-1.6-3.5-3.5s1.6-3.5 3.5-3.5 3.5 1.6 3.5 3.5-1.6 3.5-3.5 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsBoat.js b/icons/es5/DirectionsBoat.js index d68bb64b89..8dd787ea49 100644 --- a/icons/es5/DirectionsBoat.js +++ b/icons/es5/DirectionsBoat.js @@ -7,9 +7,11 @@ function SvgDirectionsBoat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99a8.752 8.752 0 008 0c1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" + d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99a8.752 8.752 0 008 0c1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsBoatFilled.js b/icons/es5/DirectionsBoatFilled.js index 4270302b5d..65e051366b 100644 --- a/icons/es5/DirectionsBoatFilled.js +++ b/icons/es5/DirectionsBoatFilled.js @@ -7,9 +7,11 @@ function SvgDirectionsBoatFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99a8.752 8.752 0 008 0c1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z" + d: "M20 21c-1.39 0-2.78-.47-4-1.32-2.44 1.71-5.56 1.71-8 0C6.78 20.53 5.39 21 4 21H2v2h2c1.38 0 2.74-.35 4-.99a8.752 8.752 0 008 0c1.26.65 2.62.99 4 .99h2v-2h-2zM3.95 19H4c1.6 0 3.02-.88 4-2 .98 1.12 2.4 2 4 2s3.02-.88 4-2c.98 1.12 2.4 2 4 2h.05l2.18-7.65-2.23-.73V4h-5V1H9v3H4v6.62l-2.23.73L3.95 19zM6 6h12v3.97L12 8 6 9.97V6z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsBus.js b/icons/es5/DirectionsBus.js index b21cee264b..f6d41b2c48 100644 --- a/icons/es5/DirectionsBus.js +++ b/icons/es5/DirectionsBus.js @@ -7,9 +7,11 @@ function SvgDirectionsBus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 16c0 .88.39 1.67 1 2.22V21h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z" + d: "M4 16c0 .88.39 1.67 1 2.22V21h3v-2h8v2h3v-2.78c.61-.55 1-1.34 1-2.22V6c0-3.5-3.58-4-8-4s-8 .5-8 4v10zm3.5 1c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6H6V6h12v5z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsBusFilled.js b/icons/es5/DirectionsBusFilled.js index 40cf6daeb5..8905b6149a 100644 --- a/icons/es5/DirectionsBusFilled.js +++ b/icons/es5/DirectionsBusFilled.js @@ -7,9 +7,11 @@ function SvgDirectionsBusFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V21h3v-2h8v2h3v-3.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm7 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6H6V7h12v3z" + d: "M12 2c-4 0-8 .5-8 4v9.5c0 .95.38 1.81 1 2.44V21h3v-2h8v2h3v-3.06c.62-.63 1-1.49 1-2.44V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm7 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6H6V7h12v3z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsCar.js b/icons/es5/DirectionsCar.js index d7a42ab6fb..bd3d822b63 100644 --- a/icons/es5/DirectionsCar.js +++ b/icons/es5/DirectionsCar.js @@ -7,9 +7,11 @@ function SvgDirectionsCar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.58 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" + d: "M18.58 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsCarFilled.js b/icons/es5/DirectionsCarFilled.js index 692f1f1c03..49909d38ab 100644 --- a/icons/es5/DirectionsCarFilled.js +++ b/icons/es5/DirectionsCarFilled.js @@ -7,9 +7,11 @@ function SvgDirectionsCarFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.57 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.43-7zM7.5 16c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.81 10l1.04-3h10.29l1.04 3H5.81z" + d: "M18.57 5H5.43L3 12v9h3v-2h12v2h3v-9l-2.43-7zM7.5 16c-.83 0-1.5-.67-1.5-1.5S6.67 13 7.5 13s1.5.67 1.5 1.5S8.33 16 7.5 16zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.81 10l1.04-3h10.29l1.04 3H5.81z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsOff.js b/icons/es5/DirectionsOff.js index 55c8929f91..57c53ac394 100644 --- a/icons/es5/DirectionsOff.js +++ b/icons/es5/DirectionsOff.js @@ -7,9 +7,11 @@ function SvgDirectionsOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 7.5l3.5 3.5-1.33 1.34 3.45 3.45L22.41 12 12.01 1.58l-3.8 3.8L13 10.17zM1.39 4.22l3.99 3.99L1.59 12l10.42 10.4 3.79-3.79 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm8.6 8.6V15h-2v-4.18l2 2z" + d: "M13 7.5l3.5 3.5-1.33 1.34 3.45 3.45L22.41 12 12.01 1.58l-3.8 3.8L13 10.17zM1.39 4.22l3.99 3.99L1.59 12l10.42 10.4 3.79-3.79 3.99 3.99 1.41-1.41L2.81 2.81 1.39 4.22zm8.6 8.6V15h-2v-4.18l2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsRailway.js b/icons/es5/DirectionsRailway.js index a31da611a1..fe54b502a9 100644 --- a/icons/es5/DirectionsRailway.js +++ b/icons/es5/DirectionsRailway.js @@ -7,9 +7,11 @@ function SvgDirectionsRailway(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z" + d: "M4 15.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V5c0-3.5-3.58-4-8-4s-8 .5-8 4v10.5zm8 1.5c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm6-7H6V5h12v5z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsRailwayFilled.js b/icons/es5/DirectionsRailwayFilled.js index 15e95ef50c..02165c89bc 100644 --- a/icons/es5/DirectionsRailwayFilled.js +++ b/icons/es5/DirectionsRailwayFilled.js @@ -7,9 +7,11 @@ function SvgDirectionsRailwayFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 14c-.83 0-1.5-.67-1.5-1.5S11.17 13 12 13s1.5.67 1.5 1.5S12.83 16 12 16zm6-6H6V7h12v3z" + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zm0 14c-.83 0-1.5-.67-1.5-1.5S11.17 13 12 13s1.5.67 1.5 1.5S12.83 16 12 16zm6-6H6V7h12v3z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsRun.js b/icons/es5/DirectionsRun.js index 1be9a54adb..3bd4d06b3f 100644 --- a/icons/es5/DirectionsRun.js +++ b/icons/es5/DirectionsRun.js @@ -7,9 +7,11 @@ function SvgDirectionsRun(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z" + d: "M13.49 5.48c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-3.6 13.9l1-4.4 2.1 2v6h2v-7.5l-2.1-2 .6-3c1.3 1.5 3.3 2.5 5.5 2.5v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6c-.4-.6-1-1-1.7-1-.3 0-.5.1-.8.1l-5.2 2.2v4.7h2v-3.4l1.8-.7-1.6 8.1-4.9-1-.4 2 7 1.4z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsSubway.js b/icons/es5/DirectionsSubway.js index 3cf524e882..aa11c3a301 100644 --- a/icons/es5/DirectionsSubway.js +++ b/icons/es5/DirectionsSubway.js @@ -7,9 +7,11 @@ function SvgDirectionsSubway(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" + d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsSubwayFilled.js b/icons/es5/DirectionsSubwayFilled.js index b38a3f60eb..d8792bbeb6 100644 --- a/icons/es5/DirectionsSubwayFilled.js +++ b/icons/es5/DirectionsSubwayFilled.js @@ -7,9 +7,11 @@ function SvgDirectionsSubwayFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsTransit.js b/icons/es5/DirectionsTransit.js index b14f969a61..2f00c44041 100644 --- a/icons/es5/DirectionsTransit.js +++ b/icons/es5/DirectionsTransit.js @@ -7,9 +7,11 @@ function SvgDirectionsTransit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z" + d: "M12 2c-4.42 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h12v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-6H6V6h5v5zm5.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-6h-5V6h5v5z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsTransitFilled.js b/icons/es5/DirectionsTransitFilled.js index 2269de0202..fdada04a84 100644 --- a/icons/es5/DirectionsTransitFilled.js +++ b/icons/es5/DirectionsTransitFilled.js @@ -7,9 +7,11 @@ function SvgDirectionsTransitFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z" + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-3.58-4-8-4zM8.5 16c-.83 0-1.5-.67-1.5-1.5S7.67 13 8.5 13s1.5.67 1.5 1.5S9.33 16 8.5 16zm2.5-6H6V7h5v3zm4.5 6c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm2.5-6h-5V7h5v3z", + fill: "currentColor" })); } diff --git a/icons/es5/DirectionsWalk.js b/icons/es5/DirectionsWalk.js index 0ee72d8860..1f00d03714 100644 --- a/icons/es5/DirectionsWalk.js +++ b/icons/es5/DirectionsWalk.js @@ -7,9 +7,11 @@ function SvgDirectionsWalk(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6a2.145 2.145 0 00-2.65-.84L6 8.3V13h2V9.6l1.8-.7" + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6a2.145 2.145 0 00-2.65-.84L6 8.3V13h2V9.6l1.8-.7", + fill: "currentColor" })); } diff --git a/icons/es5/DirtyLens.js b/icons/es5/DirtyLens.js index a958995180..2c54960eee 100644 --- a/icons/es5/DirtyLens.js +++ b/icons/es5/DirtyLens.js @@ -7,9 +7,11 @@ function SvgDirtyLens(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 5h-5.17L15 3H9L7.17 5H2v16h20V5zm-5.34 11.58c-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33 0 .47-.38.85-.85.85s-.86-.38-.86-.85c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12zm1.48 1.43c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z" + d: "M22 5h-5.17L15 3H9L7.17 5H2v16h20V5zm-5.34 11.58c-1.14 1.86-3-1.03-3.81.09-.39.57-.09 1.49.13 2.33 0 .47-.38.85-.85.85s-.86-.38-.86-.85c.14-.98.42-2.05-.16-2.43-.89-.59-1.27 2.06-2.8 1.35-1.39-1.12 1.05-1.29.5-3.27-.22-.79-2.28.36-2.4-1.24-.08-1 1.49-.74 1.51-1.49.03-.75-1.03-1.05-.25-1.91.22-.24.71-.26.91-.19.79.27 1.55 1.82 2.51 1.19 1.03-.66-1.88-2.35 0-2.86 1.64-.44 1.31 2.08 2.65 2.44 1.94.52 2.65-4.55 4.41-2.33 1.85 2.33-3.43 2.27-2.85 4.01.34 1.01 2.15-1.2 2.76.53.64 1.83-3.09.82-3.04 1.66.06.83 2.41.55 1.64 2.12zm1.48 1.43c-.47 0-.86-.38-.86-.86s.38-.86.86-.86c.47 0 .86.38.86.86s-.38.86-.86.86z", + fill: "currentColor" })); } diff --git a/icons/es5/DisabledByDefault.js b/icons/es5/DisabledByDefault.js index 25b42bd069..99835f71c2 100644 --- a/icons/es5/DisabledByDefault.js +++ b/icons/es5/DisabledByDefault.js @@ -7,9 +7,11 @@ function SvgDisabledByDefault(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z" + d: "M3 3v18h18V3H3zm14 12.59L15.59 17 12 13.41 8.41 17 7 15.59 10.59 12 7 8.41 8.41 7 12 10.59 15.59 7 17 8.41 13.41 12 17 15.59z", + fill: "currentColor" })); } diff --git a/icons/es5/DisabledVisible.js b/icons/es5/DisabledVisible.js index 9e62c3a8fd..1b6e43a54e 100644 --- a/icons/es5/DisabledVisible.js +++ b/icons/es5/DisabledVisible.js @@ -7,9 +7,11 @@ function SvgDisabledVisible(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.99 12.34c.01-.11.01-.23.01-.34 0-5.52-4.48-10-10-10S2 6.48 2 12c0 5.17 3.93 9.43 8.96 9.95a9.343 9.343 0 01-2.32-2.68A8.01 8.01 0 014 12c0-1.85.63-3.55 1.69-4.9l5.66 5.66c.56-.4 1.17-.73 1.82-1L7.1 5.69A7.902 7.902 0 0112 4c4.24 0 7.7 3.29 7.98 7.45.71.22 1.39.52 2.01.89zM17 13c-3.18 0-5.9 1.87-7 4.5 1.1 2.63 3.82 4.5 7 4.5s5.9-1.87 7-4.5c-1.1-2.63-3.82-4.5-7-4.5zm0 7a2.5 2.5 0 010-5 2.5 2.5 0 010 5zm1.5-2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z" + d: "M21.99 12.34c.01-.11.01-.23.01-.34 0-5.52-4.48-10-10-10S2 6.48 2 12c0 5.17 3.93 9.43 8.96 9.95a9.343 9.343 0 01-2.32-2.68A8.01 8.01 0 014 12c0-1.85.63-3.55 1.69-4.9l5.66 5.66c.56-.4 1.17-.73 1.82-1L7.1 5.69A7.902 7.902 0 0112 4c4.24 0 7.7 3.29 7.98 7.45.71.22 1.39.52 2.01.89zM17 13c-3.18 0-5.9 1.87-7 4.5 1.1 2.63 3.82 4.5 7 4.5s5.9-1.87 7-4.5c-1.1-2.63-3.82-4.5-7-4.5zm0 7a2.5 2.5 0 010-5 2.5 2.5 0 010 5zm1.5-2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/DiscFull.js b/icons/es5/DiscFull.js index 2f46d8ce65..b6cad847cf 100644 --- a/icons/es5/DiscFull.js +++ b/icons/es5/DiscFull.js @@ -7,9 +7,11 @@ function SvgDiscFull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M20 16h2v-2h-2v2zm0-9v5h2V7h-2zM10 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Discord.js b/icons/es5/Discord.js index 3fdcad29f6..79378e8ef8 100644 --- a/icons/es5/Discord.js +++ b/icons/es5/Discord.js @@ -7,9 +7,11 @@ function SvgDiscord(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.27 5.33C17.94 4.71 16.5 4.26 15 4a.09.09 0 00-.07.03c-.18.33-.39.76-.53 1.09a16.09 16.09 0 00-4.8 0c-.14-.34-.35-.76-.54-1.09-.01-.02-.04-.03-.07-.03-1.5.26-2.93.71-4.27 1.33-.01 0-.02.01-.03.02-2.72 4.07-3.47 8.03-3.1 11.95 0 .02.01.04.03.05 1.8 1.32 3.53 2.12 5.24 2.65.03.01.06 0 .07-.02.4-.55.76-1.13 1.07-1.74.02-.04 0-.08-.04-.09-.57-.22-1.11-.48-1.64-.78-.04-.02-.04-.08-.01-.11.11-.08.22-.17.33-.25.02-.02.05-.02.07-.01 3.44 1.57 7.15 1.57 10.55 0 .02-.01.05-.01.07.01.11.09.22.17.33.26.04.03.04.09-.01.11-.52.31-1.07.56-1.64.78-.04.01-.05.06-.04.09.32.61.68 1.19 1.07 1.74.03.01.06.02.09.01 1.72-.53 3.45-1.33 5.25-2.65.02-.01.03-.03.03-.05.44-4.53-.73-8.46-3.1-11.95-.01-.01-.02-.02-.04-.02zM8.52 14.91c-1.03 0-1.89-.95-1.89-2.12s.84-2.12 1.89-2.12c1.06 0 1.9.96 1.89 2.12 0 1.17-.84 2.12-1.89 2.12zm6.97 0c-1.03 0-1.89-.95-1.89-2.12s.84-2.12 1.89-2.12c1.06 0 1.9.96 1.89 2.12 0 1.17-.83 2.12-1.89 2.12z" + d: "M19.27 5.33C17.94 4.71 16.5 4.26 15 4a.09.09 0 00-.07.03c-.18.33-.39.76-.53 1.09a16.09 16.09 0 00-4.8 0c-.14-.34-.35-.76-.54-1.09-.01-.02-.04-.03-.07-.03-1.5.26-2.93.71-4.27 1.33-.01 0-.02.01-.03.02-2.72 4.07-3.47 8.03-3.1 11.95 0 .02.01.04.03.05 1.8 1.32 3.53 2.12 5.24 2.65.03.01.06 0 .07-.02.4-.55.76-1.13 1.07-1.74.02-.04 0-.08-.04-.09-.57-.22-1.11-.48-1.64-.78-.04-.02-.04-.08-.01-.11.11-.08.22-.17.33-.25.02-.02.05-.02.07-.01 3.44 1.57 7.15 1.57 10.55 0 .02-.01.05-.01.07.01.11.09.22.17.33.26.04.03.04.09-.01.11-.52.31-1.07.56-1.64.78-.04.01-.05.06-.04.09.32.61.68 1.19 1.07 1.74.03.01.06.02.09.01 1.72-.53 3.45-1.33 5.25-2.65.02-.01.03-.03.03-.05.44-4.53-.73-8.46-3.1-11.95-.01-.01-.02-.02-.04-.02zM8.52 14.91c-1.03 0-1.89-.95-1.89-2.12s.84-2.12 1.89-2.12c1.06 0 1.9.96 1.89 2.12 0 1.17-.84 2.12-1.89 2.12zm6.97 0c-1.03 0-1.89-.95-1.89-2.12s.84-2.12 1.89-2.12c1.06 0 1.9.96 1.89 2.12 0 1.17-.83 2.12-1.89 2.12z", + fill: "currentColor" })); } diff --git a/icons/es5/Discount.js b/icons/es5/Discount.js index 199d6b5de0..f1e53644d0 100644 --- a/icons/es5/Discount.js +++ b/icons/es5/Discount.js @@ -7,11 +7,14 @@ function SvgDiscount(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.79 21L3 11.21v2.83l9.79 9.79 9.04-9.04-1.42-1.41z" + d: "M12.79 21L3 11.21v2.83l9.79 9.79 9.04-9.04-1.42-1.41z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 9.04l9.79 9.79 9.04-9.04L12.04 0H3v9.04zM7.25 3a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5z" + d: "M3 9.04l9.79 9.79 9.04-9.04L12.04 0H3v9.04zM7.25 3a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5z", + fill: "currentColor" })); } diff --git a/icons/es5/DisplaySettings.js b/icons/es5/DisplaySettings.js index 49308e4f82..f3cff23553 100644 --- a/icons/es5/DisplaySettings.js +++ b/icons/es5/DisplaySettings.js @@ -7,11 +7,14 @@ function SvgDisplaySettings(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 3H2v16h6v2h8v-2h6V3zm-2 14H4V5h16v12z" + d: "M22 3H2v16h6v2h8v-2h6V3zm-2 14H4V5h16v12z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6 8.25h8v1.5H6zm10.5 1.5H18v-1.5h-1.5V7H15v4h1.5zm-6.5 2.5h8v1.5h-8zM7.5 15H9v-4H7.5v1.25H6v1.5h1.5z" + d: "M6 8.25h8v1.5H6zm10.5 1.5H18v-1.5h-1.5V7H15v4h1.5zm-6.5 2.5h8v1.5h-8zM7.5 15H9v-4H7.5v1.25H6v1.5h1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Diversity1.js b/icons/es5/Diversity1.js index f1bd45ea36..c5ab95be65 100644 --- a/icons/es5/Diversity1.js +++ b/icons/es5/Diversity1.js @@ -7,21 +7,25 @@ function SvgDiversity1(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 4, cy: 14, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M1.22 17.58A2.01 2.01 0 000 19.43V21h4.5v-1.61c0-.83.23-1.61.63-2.29-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58z" + d: "M1.22 17.58A2.01 2.01 0 000 19.43V21h4.5v-1.61c0-.83.23-1.61.63-2.29-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 20, cy: 14, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M22.78 17.58A6.95 6.95 0 0020 17c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V21H24v-1.57c0-.81-.48-1.53-1.22-1.85zm-6.54-.93c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9A2.988 2.988 0 006 19.39V21h12v-1.61c0-1.18-.68-2.26-1.76-2.74zM9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" + d: "M22.78 17.58A6.95 6.95 0 0020 17c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V21H24v-1.57c0-.81-.48-1.53-1.22-1.85zm-6.54-.93c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9A2.988 2.988 0 006 19.39V21h12v-1.61c0-1.18-.68-2.26-1.76-2.74zM9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M2.48 10.86C2.17 10.1 2 9.36 2 8.6 2 6.02 4.02 4 6.6 4c2.68 0 3.82 1.74 5.4 3.59C13.57 5.76 14.7 4 17.4 4 19.98 4 22 6.02 22 8.6c0 .76-.17 1.5-.48 2.26.65.31 1.18.82 1.53 1.44.6-1.2.95-2.42.95-3.7C24 4.9 21.1 2 17.4 2c-2.09 0-4.09.97-5.4 2.51C10.69 2.97 8.69 2 6.6 2 2.9 2 0 4.9 0 8.6c0 1.28.35 2.5.96 3.7.35-.62.88-1.13 1.52-1.44z" + d: "M2.48 10.86C2.17 10.1 2 9.36 2 8.6 2 6.02 4.02 4 6.6 4c2.68 0 3.82 1.74 5.4 3.59C13.57 5.76 14.7 4 17.4 4 19.98 4 22 6.02 22 8.6c0 .76-.17 1.5-.48 2.26.65.31 1.18.82 1.53 1.44.6-1.2.95-2.42.95-3.7C24 4.9 21.1 2 17.4 2c-2.09 0-4.09.97-5.4 2.51C10.69 2.97 8.69 2 6.6 2 2.9 2 0 4.9 0 8.6c0 1.28.35 2.5.96 3.7.35-.62.88-1.13 1.52-1.44z", + fill: "currentColor" })); } diff --git a/icons/es5/Diversity2.js b/icons/es5/Diversity2.js index 1205fc5a52..da30baf988 100644 --- a/icons/es5/Diversity2.js +++ b/icons/es5/Diversity2.js @@ -7,13 +7,17 @@ function SvgDiversity2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.1 15.9l1.42-1.42C8.79 12.05 7 10.41 7 8.85 7 7.8 7.8 7 8.85 7c1.11 0 1.54.65 2.68 2h.93c1.12-1.31 1.53-2 2.68-2 .87 0 1.55.54 1.77 1.32.35-.04.68-.06 1-.06.36 0 .7.03 1.03.08C18.7 6.43 17.13 5 15.15 5c-.12 0-.23.03-.35.04.12-.33.2-.67.2-1.04 0-1.66-1.34-3-3-3S9 2.34 9 4c0 .37.08.71.2 1.04-.12-.01-.23-.04-.35-.04C6.69 5 5 6.69 5 8.85c0 2.42 2.04 4.31 5.1 7.05z" + d: "M10.1 15.9l1.42-1.42C8.79 12.05 7 10.41 7 8.85 7 7.8 7.8 7 8.85 7c1.11 0 1.54.65 2.68 2h.93c1.12-1.31 1.53-2 2.68-2 .87 0 1.55.54 1.77 1.32.35-.04.68-.06 1-.06.36 0 .7.03 1.03.08C18.7 6.43 17.13 5 15.15 5c-.12 0-.23.03-.35.04.12-.33.2-.67.2-1.04 0-1.66-1.34-3-3-3S9 2.34 9 4c0 .37.08.71.2 1.04-.12-.01-.23-.04-.35-.04C6.69 5 5 6.69 5 8.85c0 2.42 2.04 4.31 5.1 7.05z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22.5 16.24c-.32-.18-.66-.29-1-.35.07-.1.15-.18.21-.28 1.08-1.87.46-4.18-1.41-5.26-2.09-1.21-4.76-.39-8.65.9l.52 1.94c3.47-1.14 5.79-1.88 7.14-1.1.91.53 1.2 1.61.68 2.53-.56.96-1.33 1-3.07 1.32l-.47.81c.58 1.62.97 2.33.39 3.32-.53.91-1.61 1.2-2.53.68-.06-.03-.11-.09-.17-.13-.3.67-.64 1.24-1.03 1.73.07.04.13.09.2.14 1.87 1.08 4.18.46 5.26-1.41.06-.1.09-.21.14-.32.22.27.48.51.8.69 1.43.83 3.27.34 4.1-1.1s.32-3.29-1.11-4.11z" + d: "M22.5 16.24c-.32-.18-.66-.29-1-.35.07-.1.15-.18.21-.28 1.08-1.87.46-4.18-1.41-5.26-2.09-1.21-4.76-.39-8.65.9l.52 1.94c3.47-1.14 5.79-1.88 7.14-1.1.91.53 1.2 1.61.68 2.53-.56.96-1.33 1-3.07 1.32l-.47.81c.58 1.62.97 2.33.39 3.32-.53.91-1.61 1.2-2.53.68-.06-.03-.11-.09-.17-.13-.3.67-.64 1.24-1.03 1.73.07.04.13.09.2.14 1.87 1.08 4.18.46 5.26-1.41.06-.1.09-.21.14-.32.22.27.48.51.8.69 1.43.83 3.27.34 4.1-1.1s.32-3.29-1.11-4.11z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12.32 14.01c-.74 3.58-1.27 5.95-2.62 6.73-.91.53-2 .24-2.53-.68-.56-.96-.2-1.66.39-3.32l-.46-.81c-1.7-.31-2.5-.33-3.07-1.32-.53-.91-.24-2 .68-2.53.09-.05.19-.08.29-.11-.35-.56-.64-1.17-.82-1.85-.16.07-.32.14-.48.23-1.87 1.08-2.49 3.39-1.41 5.26.06.1.14.18.21.28-.34.06-.68.17-1 .35-1.43.83-1.93 2.66-1.1 4.1s2.66 1.93 4.1 1.1c.32-.18.58-.42.8-.69.05.11.08.22.14.32 1.08 1.87 3.39 2.49 5.26 1.41 2.09-1.21 2.71-3.93 3.55-7.94l-1.93-.53z" + d: "M12.32 14.01c-.74 3.58-1.27 5.95-2.62 6.73-.91.53-2 .24-2.53-.68-.56-.96-.2-1.66.39-3.32l-.46-.81c-1.7-.31-2.5-.33-3.07-1.32-.53-.91-.24-2 .68-2.53.09-.05.19-.08.29-.11-.35-.56-.64-1.17-.82-1.85-.16.07-.32.14-.48.23-1.87 1.08-2.49 3.39-1.41 5.26.06.1.14.18.21.28-.34.06-.68.17-1 .35-1.43.83-1.93 2.66-1.1 4.1s2.66 1.93 4.1 1.1c.32-.18.58-.42.8-.69.05.11.08.22.14.32 1.08 1.87 3.39 2.49 5.26 1.41 2.09-1.21 2.71-3.93 3.55-7.94l-1.93-.53z", + fill: "currentColor" })); } diff --git a/icons/es5/Diversity3.js b/icons/es5/Diversity3.js index ab17913be5..7254efa1b5 100644 --- a/icons/es5/Diversity3.js +++ b/icons/es5/Diversity3.js @@ -7,11 +7,14 @@ function SvgDiversity3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.32 13.01c.96.02 1.85.5 2.45 1.34A3.961 3.961 0 0012 16c1.29 0 2.5-.62 3.23-1.66.6-.84 1.49-1.32 2.45-1.34-.72-1.22-3.6-2-5.68-2-2.07 0-4.96.78-5.68 2.01zM4 13c1.66 0 3-1.34 3-3S5.66 7 4 7s-3 1.34-3 3 1.34 3 3 3zm16 0c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8-3c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" + d: "M6.32 13.01c.96.02 1.85.5 2.45 1.34A3.961 3.961 0 0012 16c1.29 0 2.5-.62 3.23-1.66.6-.84 1.49-1.32 2.45-1.34-.72-1.22-3.6-2-5.68-2-2.07 0-4.96.78-5.68 2.01zM4 13c1.66 0 3-1.34 3-3S5.66 7 4 7s-3 1.34-3 3 1.34 3 3 3zm16 0c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm-8-3c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21 14h-3.27c-.77 0-1.35.45-1.68.92-.04.06-1.36 2.08-4.05 2.08-1.43 0-3.03-.64-4.05-2.08-.39-.55-1-.92-1.68-.92H3c-1.1 0-2 .9-2 2v4h7v-2.26c1.15.8 2.54 1.26 4 1.26s2.85-.46 4-1.26V20h7v-4c0-1.1-.9-2-2-2z" + d: "M21 14h-3.27c-.77 0-1.35.45-1.68.92-.04.06-1.36 2.08-4.05 2.08-1.43 0-3.03-.64-4.05-2.08-.39-.55-1-.92-1.68-.92H3c-1.1 0-2 .9-2 2v4h7v-2.26c1.15.8 2.54 1.26 4 1.26s2.85-.46 4-1.26V20h7v-4c0-1.1-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Divide.js b/icons/es5/Divide.js index bfbf102553..ec076e8feb 100644 --- a/icons/es5/Divide.js +++ b/icons/es5/Divide.js @@ -7,9 +7,11 @@ function SvgDivide(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 11h14v2H5zm7.002-7a2 2 0 10-.004 4 2 2 0 00.004-4zm0 12a2 2 0 10-.004 4 2 2 0 00.004-4z" + d: "M5 11h14v2H5zm7.002-7a2 2 0 10-.004 4 2 2 0 00.004-4zm0 12a2 2 0 10-.004 4 2 2 0 00.004-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Dns.js b/icons/es5/Dns.js index 49b07a5adc..01bbb8ceeb 100644 --- a/icons/es5/Dns.js +++ b/icons/es5/Dns.js @@ -7,9 +7,11 @@ function SvgDns(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 13H3v8h18v-8zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM21 3H3v8h18V3zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M21 13H3v8h18v-8zM7 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM21 3H3v8h18V3zM7 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/DoDisturb.js b/icons/es5/DoDisturb.js index 21929b5fc3..374bd74acb 100644 --- a/icons/es5/DoDisturb.js +++ b/icons/es5/DoDisturb.js @@ -7,9 +7,11 @@ function SvgDoDisturb(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31A7.902 7.902 0 0112 20zm6.31-3.1L7.1 5.69A7.902 7.902 0 0112 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31A7.902 7.902 0 0112 20zm6.31-3.1L7.1 5.69A7.902 7.902 0 0112 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z", + fill: "currentColor" })); } diff --git a/icons/es5/DoDisturbAlt.js b/icons/es5/DoDisturbAlt.js index feb2bb8ea5..8e7ea99afb 100644 --- a/icons/es5/DoDisturbAlt.js +++ b/icons/es5/DoDisturbAlt.js @@ -7,9 +7,11 @@ function SvgDoDisturbAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/DoDisturbOff.js b/icons/es5/DoDisturbOff.js index e2782f8cc6..a86e4c8931 100644 --- a/icons/es5/DoDisturbOff.js +++ b/icons/es5/DoDisturbOff.js @@ -7,9 +7,11 @@ function SvgDoDisturbOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 11v2h-.88l4.33 4.33A9.9 9.9 0 0022 12c0-5.52-4.48-10-10-10a9.9 9.9 0 00-5.33 1.55L14.12 11H17zM2.41 2.13L1 3.54l2.78 2.78A9.92 9.92 0 002 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM7 13v-2h1.46l2 2H7z" + d: "M17 11v2h-.88l4.33 4.33A9.9 9.9 0 0022 12c0-5.52-4.48-10-10-10a9.9 9.9 0 00-5.33 1.55L14.12 11H17zM2.41 2.13L1 3.54l2.78 2.78A9.92 9.92 0 002 12c0 5.52 4.48 10 10 10 2.11 0 4.07-.66 5.68-1.78L20.46 23l1.41-1.41L2.41 2.13zM7 13v-2h1.46l2 2H7z", + fill: "currentColor" })); } diff --git a/icons/es5/DoDisturbOn.js b/icons/es5/DoDisturbOn.js index e775ded597..9662d0643d 100644 --- a/icons/es5/DoDisturbOn.js +++ b/icons/es5/DoDisturbOn.js @@ -7,9 +7,11 @@ function SvgDoDisturbOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/DoNotDisturb.js b/icons/es5/DoNotDisturb.js index 748d2572ef..48ffbe730b 100644 --- a/icons/es5/DoNotDisturb.js +++ b/icons/es5/DoNotDisturb.js @@ -7,9 +7,11 @@ function SvgDoNotDisturb(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31A7.902 7.902 0 0112 20zm6.31-3.1L7.1 5.69A7.902 7.902 0 0112 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31A7.902 7.902 0 0112 20zm6.31-3.1L7.1 5.69A7.902 7.902 0 0112 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z", + fill: "currentColor" })); } diff --git a/icons/es5/DoNotDisturbAlt.js b/icons/es5/DoNotDisturbAlt.js index 76f868ecb6..c70df95870 100644 --- a/icons/es5/DoNotDisturbAlt.js +++ b/icons/es5/DoNotDisturbAlt.js @@ -7,9 +7,11 @@ function SvgDoNotDisturbAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z" + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM4 12c0-4.4 3.6-8 8-8 1.8 0 3.5.6 4.9 1.7L5.7 16.9C4.6 15.5 4 13.8 4 12zm8 8c-1.8 0-3.5-.6-4.9-1.7L18.3 7.1C19.4 8.5 20 10.2 20 12c0 4.4-3.6 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/DoNotDisturbOff.js b/icons/es5/DoNotDisturbOff.js index ae124f2f57..7e6505e9d2 100644 --- a/icons/es5/DoNotDisturbOff.js +++ b/icons/es5/DoNotDisturbOff.js @@ -7,9 +7,11 @@ function SvgDoNotDisturbOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 11v2h-1.17l4.51 4.51A9.91 9.91 0 0022 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66L13.83 11H17zM1.39 4.22l2.27 2.27A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81 1.39 4.22zM7 11h1.17l2 2H7v-2z" + d: "M17 11v2h-1.17l4.51 4.51A9.91 9.91 0 0022 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66L13.83 11H17zM1.39 4.22l2.27 2.27A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81 1.39 4.22zM7 11h1.17l2 2H7v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/DoNotDisturbOn.js b/icons/es5/DoNotDisturbOn.js index f5b86305d9..c88063b1f9 100644 --- a/icons/es5/DoNotDisturbOn.js +++ b/icons/es5/DoNotDisturbOn.js @@ -7,9 +7,11 @@ function SvgDoNotDisturbOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5 11H7v-2h10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/DoNotDisturbOnTotalSilence.js b/icons/es5/DoNotDisturbOnTotalSilence.js index c160a1236e..ea7eda4f4a 100644 --- a/icons/es5/DoNotDisturbOnTotalSilence.js +++ b/icons/es5/DoNotDisturbOnTotalSilence.js @@ -7,9 +7,11 @@ function SvgDoNotDisturbOnTotalSilence(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-3.3 0-6 2.7-6 6s2.7 6 6 6 6-2.7 6-6-2.6-6-6-6zm3 7H9v-2h6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/DoNotStep.js b/icons/es5/DoNotStep.js index 8337b3ee73..5a2b260486 100644 --- a/icons/es5/DoNotStep.js +++ b/icons/es5/DoNotStep.js @@ -7,9 +7,11 @@ function SvgDoNotStep(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1.39 4.22l8.24 8.24-.69.72-2.07-2.08c-.11.4-.26.78-.45 1.12l1.75 1.75-.69.72-1.63-1.63c-.24.29-.5.56-.77.8l1.63 1.63-.7.72-1.74-1.74c-1.44.96-2.93 1.35-3.27 1.45V20h9.5l3.33-3.33 5.94 5.94 1.41-1.41L2.81 2.81 1.39 4.22zm17.12 11.46l-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm2.37-6.6l-4.48 4.48-7.1-7.09L13.8 2l7.08 7.08z" + d: "M1.39 4.22l8.24 8.24-.69.72-2.07-2.08c-.11.4-.26.78-.45 1.12l1.75 1.75-.69.72-1.63-1.63c-.24.29-.5.56-.77.8l1.63 1.63-.7.72-1.74-1.74c-1.44.96-2.93 1.35-3.27 1.45V20h9.5l3.33-3.33 5.94 5.94 1.41-1.41L2.81 2.81 1.39 4.22zm17.12 11.46l-1.41-1.41 4.48-4.48L23 11.2l-4.49 4.48zm2.37-6.6l-4.48 4.48-7.1-7.09L13.8 2l7.08 7.08z", + fill: "currentColor" })); } diff --git a/icons/es5/DoNotTouch.js b/icons/es5/DoNotTouch.js index 540f13abe8..e6ef4fc93e 100644 --- a/icons/es5/DoNotTouch.js +++ b/icons/es5/DoNotTouch.js @@ -7,9 +7,11 @@ function SvgDoNotTouch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 10.17l-2.5-2.5V1H13v9.17zM20 4h-2.5v7h-1V2H14v9.17l6 6V4zM9.5 3H7.01v1.18L9.5 6.67V3zm11.69 18.19L2.81 2.81 1.39 4.22 7 9.83v4.3l-3.32-1.9L2 13.88 9.68 22h9.54l.56.61 1.41-1.42z" + d: "M13 10.17l-2.5-2.5V1H13v9.17zM20 4h-2.5v7h-1V2H14v9.17l6 6V4zM9.5 3H7.01v1.18L9.5 6.67V3zm11.69 18.19L2.81 2.81 1.39 4.22 7 9.83v4.3l-3.32-1.9L2 13.88 9.68 22h9.54l.56.61 1.41-1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/Dock.js b/icons/es5/Dock.js index 22a4cb6e50..661920a5a4 100644 --- a/icons/es5/Dock.js +++ b/icons/es5/Dock.js @@ -7,9 +7,11 @@ function SvgDock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 23h8v-2H8v2zM18 1.01L6 1v18h12V1.01zM16 15H8V5h8v10z" + d: "M8 23h8v-2H8v2zM18 1.01L6 1v18h12V1.01zM16 15H8V5h8v10z", + fill: "currentColor" })); } diff --git a/icons/es5/DocumentScanner.js b/icons/es5/DocumentScanner.js index 85f48c2341..892804d327 100644 --- a/icons/es5/DocumentScanner.js +++ b/icons/es5/DocumentScanner.js @@ -7,9 +7,11 @@ function SvgDocumentScanner(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zM19 4v16H5V4h14zm-4 4H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z" + d: "M7 3H4v3H2V1h5v2zm15 3V1h-5v2h3v3h2zM7 21H4v-3H2v5h5v-2zm13-3v3h-3v2h5v-5h-2zM19 4v16H5V4h14zm-4 4H9v2h6V8zm0 3H9v2h6v-2zm0 3H9v2h6v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Domain.js b/icons/es5/Domain.js index 54bf5c45b1..201df897dc 100644 --- a/icons/es5/Domain.js +++ b/icons/es5/Domain.js @@ -7,9 +7,11 @@ function SvgDomain(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z" + d: "M12 7V3H2v18h20V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm10 12h-8v-2h2v-2h-2v-2h2v-2h-2V9h8v10zm-2-8h-2v2h2v-2zm0 4h-2v2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/DomainAdd.js b/icons/es5/DomainAdd.js index 8c48638392..90678a14f9 100644 --- a/icons/es5/DomainAdd.js +++ b/icons/es5/DomainAdd.js @@ -7,9 +7,11 @@ function SvgDomainAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm14 12v2h-2v2h-2v-2h-2v-2h2v-2h2v2h2zm-6-8h-2v2h2v-2zm0 4h-2v2h2v-2z" + d: "M12 7V3H2v18h14v-2h-4v-2h2v-2h-2v-2h2v-2h-2V9h8v6h2V7H12zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm0-4H4V9h2v2zm0-4H4V5h2v2zm4 12H8v-2h2v2zm0-4H8v-2h2v2zm0-4H8V9h2v2zm0-4H8V5h2v2zm14 12v2h-2v2h-2v-2h-2v-2h2v-2h2v2h2zm-6-8h-2v2h2v-2zm0 4h-2v2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/DomainDisabled.js b/icons/es5/DomainDisabled.js index 9208357342..aa57ad957f 100644 --- a/icons/es5/DomainDisabled.js +++ b/icons/es5/DomainDisabled.js @@ -7,9 +7,11 @@ function SvgDomainDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z" + d: "M1.41 1.69L0 3.1l2 2V21h15.9l3 3 1.41-1.41-20.9-20.9zM6 19H4v-2h2v2zm0-4H4v-2h2v2zm-2-4V9h2v2H4zm6 8H8v-2h2v2zm-2-4v-2h2v2H8zm4 4v-2h1.9l2 2H12zM8 5h2v2h-.45L12 9.45V9h8v8.45l2 2V7H12V3H5.55L8 5.45zm8 6h2v2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/DomainVerification.js b/icons/es5/DomainVerification.js index 9a374a0883..625a209717 100644 --- a/icons/es5/DomainVerification.js +++ b/icons/es5/DomainVerification.js @@ -7,11 +7,14 @@ function SvgDomainVerification(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.6 10.88l-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z" + d: "M16.6 10.88l-1.42-1.42-4.24 4.25-2.12-2.13L7.4 13l3.54 3.54z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 4v16h18V4H3zm16 14H5V8h14v10z" + d: "M3 4v16h18V4H3zm16 14H5V8h14v10z", + fill: "currentColor" })); } diff --git a/icons/es5/Done.js b/icons/es5/Done.js index 7144fd416e..fd33f12f0d 100644 --- a/icons/es5/Done.js +++ b/icons/es5/Done.js @@ -7,9 +7,11 @@ function SvgDone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z" + d: "M9 16.2L4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4L9 16.2z", + fill: "currentColor" })); } diff --git a/icons/es5/DoneAll.js b/icons/es5/DoneAll.js index 2e613a4014..8abe25b3bc 100644 --- a/icons/es5/DoneAll.js +++ b/icons/es5/DoneAll.js @@ -7,9 +7,11 @@ function SvgDoneAll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z" + d: "M18 7l-1.41-1.41-6.34 6.34 1.41 1.41L18 7zm4.24-1.41L11.66 16.17 7.48 12l-1.41 1.41L11.66 19l12-12-1.42-1.41zM.41 13.41L6 19l1.41-1.41L1.83 12 .41 13.41z", + fill: "currentColor" })); } diff --git a/icons/es5/DoneOutline.js b/icons/es5/DoneOutline.js index ccc0cccfa8..dbe51e1490 100644 --- a/icons/es5/DoneOutline.js +++ b/icons/es5/DoneOutline.js @@ -7,9 +7,11 @@ function SvgDoneOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z" + d: "M19.77 4.93l1.4 1.4L8.43 19.07l-5.6-5.6 1.4-1.4 4.2 4.2L19.77 4.93m0-2.83L8.43 13.44l-4.2-4.2L0 13.47l8.43 8.43L24 6.33 19.77 2.1z", + fill: "currentColor" })); } diff --git a/icons/es5/DonutLarge.js b/icons/es5/DonutLarge.js index 65409f0c8b..3655c65b25 100644 --- a/icons/es5/DonutLarge.js +++ b/icons/es5/DonutLarge.js @@ -7,9 +7,11 @@ function SvgDonutLarge(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 5.08A7 7 0 0118.92 11h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13A7 7 0 0113 18.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z" + d: "M13 5.08A7 7 0 0118.92 11h3.03c-.47-4.72-4.23-8.48-8.95-8.95v3.03zM18.92 13A7 7 0 0113 18.92v3.03c4.72-.47 8.48-4.23 8.95-8.95h-3.03zM11 18.92c-3.39-.49-6-3.4-6-6.92s2.61-6.43 6-6.92V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-3.03z", + fill: "currentColor" })); } diff --git a/icons/es5/DonutSmall.js b/icons/es5/DonutSmall.js index e2b52a8c41..4542f5842e 100644 --- a/icons/es5/DonutSmall.js +++ b/icons/es5/DonutSmall.js @@ -7,9 +7,11 @@ function SvgDonutSmall(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 9.18c.85.3 1.51.97 1.82 1.82h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13zm-2 5.64C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-7.13zM14.82 13c-.3.85-.97 1.51-1.82 1.82v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13z" + d: "M13 9.18c.85.3 1.51.97 1.82 1.82h7.13c-.47-4.72-4.23-8.48-8.95-8.95v7.13zm-2 5.64C9.84 14.4 9 13.3 9 12c0-1.3.84-2.4 2-2.82V2.05c-5.05.5-9 4.76-9 9.95 0 5.19 3.95 9.45 9 9.95v-7.13zM14.82 13c-.3.85-.97 1.51-1.82 1.82v7.13c4.72-.47 8.48-4.23 8.95-8.95h-7.13z", + fill: "currentColor" })); } diff --git a/icons/es5/DoorBack.js b/icons/es5/DoorBack.js index afb03d55d2..40f5a3e6cb 100644 --- a/icons/es5/DoorBack.js +++ b/icons/es5/DoorBack.js @@ -7,9 +7,11 @@ function SvgDoorBack(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 19V3H5v16H3v2h18v-2h-2zm-8-6H9v-2h2v2z" + d: "M19 19V3H5v16H3v2h18v-2h-2zm-8-6H9v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/DoorFront.js b/icons/es5/DoorFront.js index ca382355a1..8dec7e65c9 100644 --- a/icons/es5/DoorFront.js +++ b/icons/es5/DoorFront.js @@ -7,9 +7,11 @@ function SvgDoorFront(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 19V3H5v16H3v2h18v-2h-2zm-4-6h-2v-2h2v2z" + d: "M19 19V3H5v16H3v2h18v-2h-2zm-4-6h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/DoorSliding.js b/icons/es5/DoorSliding.js index 1748ad98a4..fbb2b16d25 100644 --- a/icons/es5/DoorSliding.js +++ b/icons/es5/DoorSliding.js @@ -7,9 +7,11 @@ function SvgDoorSliding(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3h-7.25v16h-1.5V3H4v16H3v2h18v-2h-1zm-10-6H8v-2h2v2zm6 0h-2v-2h2v2z" + d: "M20 19V3h-7.25v16h-1.5V3H4v16H3v2h18v-2h-1zm-10-6H8v-2h2v2zm6 0h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Doorbell.js b/icons/es5/Doorbell.js index cfb4c59f64..3941222027 100644 --- a/icons/es5/Doorbell.js +++ b/icons/es5/Doorbell.js @@ -7,9 +7,11 @@ function SvgDoorbell(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L4 9v12h16V9l-8-6zm0 14.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm4-1.5H8v-1h1v-2.34c0-1.54.82-2.82 2.25-3.16v-1h1.5v1c1.44.34 2.25 1.62 2.25 3.16V15h1v1z" + d: "M12 3L4 9v12h16V9l-8-6zm0 14.5c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1zm4-1.5H8v-1h1v-2.34c0-1.54.82-2.82 2.25-3.16v-1h1.5v1c1.44.34 2.25 1.62 2.25 3.16V15h1v1z", + fill: "currentColor" })); } diff --git a/icons/es5/DoubleArrow.js b/icons/es5/DoubleArrow.js index 3be4dfc851..7ff6a8dfb3 100644 --- a/icons/es5/DoubleArrow.js +++ b/icons/es5/DoubleArrow.js @@ -7,11 +7,14 @@ function SvgDoubleArrow(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 5H11l5 7-5 7h4.5l5-7z" + d: "M15.5 5H11l5 7-5 7h4.5l5-7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M8.5 5H4l5 7-5 7h4.5l5-7z" + d: "M8.5 5H4l5 7-5 7h4.5l5-7z", + fill: "currentColor" })); } diff --git a/icons/es5/DownhillSkiing.js b/icons/es5/DownhillSkiing.js index c3746f8846..eec9acaffd 100644 --- a/icons/es5/DownhillSkiing.js +++ b/icons/es5/DownhillSkiing.js @@ -7,9 +7,11 @@ function SvgDownhillSkiing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4l.76.27a5.933 5.933 0 004.34-.17L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08a5.017 5.017 0 002.83 3.14l.52-1.6 1.43.46-1.12 3.45A7.029 7.029 0 0113 8.59l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z" + d: "M18.5 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2.72 16.4l.76.27a5.933 5.933 0 004.34-.17L22 22.13c-1.05.55-2.24.87-3.5.87-.86 0-1.68-.14-2.45-.41L2 17.47l.5-1.41 6.9 2.51 1.72-4.44-3.57-3.73c-.89-.94-.67-2.47.45-3.12l3.48-2.01c1.1-.64 2.52-.1 2.91 1.11l.33 1.08a5.017 5.017 0 002.83 3.14l.52-1.6 1.43.46-1.12 3.45A7.029 7.029 0 0113 8.59l-2.53 1.45 3.03 3.46-2.22 5.76 3.09 1.12 2.1-6.44c.46.18.94.31 1.44.41l-2.13 6.55z", + fill: "currentColor" })); } diff --git a/icons/es5/DownloadForOffline.js b/icons/es5/DownloadForOffline.js index d39b838ae5..c71a995e40 100644 --- a/icons/es5/DownloadForOffline.js +++ b/icons/es5/DownloadForOffline.js @@ -7,9 +7,11 @@ function SvgDownloadForOffline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2z" + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm-1 8V6h2v4h3l-4 4-4-4h3zm6 7H7v-2h10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Drafts.js b/icons/es5/Drafts.js index deea72f10a..91f693482d 100644 --- a/icons/es5/Drafts.js +++ b/icons/es5/Drafts.js @@ -7,9 +7,11 @@ function SvgDrafts(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.99 6.86L12 1 2 6.86V20h20l-.01-13.14zM12 13L3.74 7.84 12 3l8.26 4.84L12 13z" + d: "M21.99 6.86L12 1 2 6.86V20h20l-.01-13.14zM12 13L3.74 7.84 12 3l8.26 4.84L12 13z", + fill: "currentColor" })); } diff --git a/icons/es5/DragHandle.js b/icons/es5/DragHandle.js index 302f9e8b92..ad57abc9c3 100644 --- a/icons/es5/DragHandle.js +++ b/icons/es5/DragHandle.js @@ -7,9 +7,11 @@ function SvgDragHandle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 9H4v2h16V9zM4 15h16v-2H4v2z" + d: "M20 9H4v2h16V9zM4 15h16v-2H4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/DragIndicator.js b/icons/es5/DragIndicator.js index 9c385888cf..9929b79d7b 100644 --- a/icons/es5/DragIndicator.js +++ b/icons/es5/DragIndicator.js @@ -7,9 +7,11 @@ function SvgDragIndicator(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + d: "M11 18c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm-2-8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0-6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 6c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Draw.js b/icons/es5/Draw.js index 23d886ce53..22433ebd08 100644 --- a/icons/es5/Draw.js +++ b/icons/es5/Draw.js @@ -7,9 +7,11 @@ function SvgDraw(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.85 10.39l2.48-2.48-4.24-4.24-2.48 2.48 4.24 4.24zm-5.66-2.83L4 16.76V21h4.24l9.19-9.19-4.24-4.25zM19 17.5c0 2.19-2.54 3.5-5 3.5-.48 0-1-.07-1-.07V18.9s.46.1 1 .1c1.54 0 3-.73 3-1.5 0-.47-.48-.87-1.23-1.2l1.48-1.48c1.07.63 1.75 1.47 1.75 2.68zM4.58 13.35C3.61 12.79 3 12.06 3 11c0-1.8 1.89-2.63 3.56-3.36C7.59 7.18 9 6.56 9 6c0-.41-.78-1-2-1-1.24 0-2 .61-2 1H3c0-1.65 1.7-3 4-3 2.24 0 4 1.32 4 3 0 1.87-1.93 2.72-3.64 3.47C6.42 9.88 5 10.5 5 11c0 .31.43.6 1.07.86l-1.49 1.49z" + d: "M18.85 10.39l2.48-2.48-4.24-4.24-2.48 2.48 4.24 4.24zm-5.66-2.83L4 16.76V21h4.24l9.19-9.19-4.24-4.25zM19 17.5c0 2.19-2.54 3.5-5 3.5-.48 0-1-.07-1-.07V18.9s.46.1 1 .1c1.54 0 3-.73 3-1.5 0-.47-.48-.87-1.23-1.2l1.48-1.48c1.07.63 1.75 1.47 1.75 2.68zM4.58 13.35C3.61 12.79 3 12.06 3 11c0-1.8 1.89-2.63 3.56-3.36C7.59 7.18 9 6.56 9 6c0-.41-.78-1-2-1-1.24 0-2 .61-2 1H3c0-1.65 1.7-3 4-3 2.24 0 4 1.32 4 3 0 1.87-1.93 2.72-3.64 3.47C6.42 9.88 5 10.5 5 11c0 .31.43.6 1.07.86l-1.49 1.49z", + fill: "currentColor" })); } diff --git a/icons/es5/DriveEta.js b/icons/es5/DriveEta.js index 436afa383f..f8735bcc76 100644 --- a/icons/es5/DriveEta.js +++ b/icons/es5/DriveEta.js @@ -7,9 +7,11 @@ function SvgDriveEta(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.92 5.01L18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" + d: "M18.92 5.01L18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.08-5.99zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z", + fill: "currentColor" })); } diff --git a/icons/es5/DriveFileMove.js b/icons/es5/DriveFileMove.js index 3ffc635f7a..ba52e4cca7 100644 --- a/icons/es5/DriveFileMove.js +++ b/icons/es5/DriveFileMove.js @@ -7,9 +7,11 @@ function SvgDriveFileMove(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H12l-2-2H2v16h20V6zM12 17v-3H8v-2h4V9l4 4-4 4z" + d: "M22 6H12l-2-2H2v16h20V6zM12 17v-3H8v-2h4V9l4 4-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/DriveFileMoveRtl.js b/icons/es5/DriveFileMoveRtl.js index 9ed649e221..555a5a5a85 100644 --- a/icons/es5/DriveFileMoveRtl.js +++ b/icons/es5/DriveFileMoveRtl.js @@ -7,9 +7,11 @@ function SvgDriveFileMoveRtl(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H12l-2-2H2v16h20V6zM12 17l-4-4 4-4v3h4v2h-4v3z" + d: "M22 6H12l-2-2H2v16h20V6zM12 17l-4-4 4-4v3h4v2h-4v3z", + fill: "currentColor" })); } diff --git a/icons/es5/DriveFileRenameOutline.js b/icons/es5/DriveFileRenameOutline.js index 945d3d19b5..e5360324d6 100644 --- a/icons/es5/DriveFileRenameOutline.js +++ b/icons/es5/DriveFileRenameOutline.js @@ -7,9 +7,11 @@ function SvgDriveFileRenameOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 16l-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06zm1.072-1.067l2.539-2.539 3.747 3.748L16.88 9.87z" + d: "M15 16l-4 4h10v-4zm-2.94-8.81L3 16.25V20h3.75l9.06-9.06zm1.072-1.067l2.539-2.539 3.747 3.748L16.88 9.87z", + fill: "currentColor" })); } diff --git a/icons/es5/DriveFolderUpload.js b/icons/es5/DriveFolderUpload.js index ae721cf4b4..eb0dc5c576 100644 --- a/icons/es5/DriveFolderUpload.js +++ b/icons/es5/DriveFolderUpload.js @@ -7,9 +7,11 @@ function SvgDriveFolderUpload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H12l-2-2H2v16h20V6zm-9 7v4h-2v-4H8l4.01-4L16 13h-3z" + d: "M22 6H12l-2-2H2v16h20V6zm-9 7v4h-2v-4H8l4.01-4L16 13h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Dry.js b/icons/es5/Dry.js index 863d887451..79948ea07c 100644 --- a/icons/es5/Dry.js +++ b/icons/es5/Dry.js @@ -7,9 +7,11 @@ function SvgDry(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5 1 12.68zm14.65-7.82l-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" + d: "M1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5 1 12.68zm14.65-7.82l-.07-.07c-.57-.62-.82-1.41-.67-2.2L15 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L19 2h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z", + fill: "currentColor" })); } diff --git a/icons/es5/DryCleaning.js b/icons/es5/DryCleaning.js index 421ff7e087..a2c3ac1ea2 100644 --- a/icons/es5/DryCleaning.js +++ b/icons/es5/DryCleaning.js @@ -7,9 +7,11 @@ function SvgDryCleaning(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 12l-8-3.56V6h-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-8 3.56V16h4v6h10v-6h4v-4zm-2 2h-2v-1H7v1H5v-.7l7-3.11 7 3.11v.7z" + d: "M21 12l-8-3.56V6h-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1h2c0-1.84-1.66-3.3-3.56-2.95-1.18.22-2.15 1.17-2.38 2.35-.3 1.56.6 2.94 1.94 3.42v.63l-8 3.56V16h4v6h10v-6h4v-4zm-2 2h-2v-1H7v1H5v-.7l7-3.11 7 3.11v.7z", + fill: "currentColor" })); } diff --git a/icons/es5/Duo.js b/icons/es5/Duo.js index af7f3b53c4..4c32b37ad6 100644 --- a/icons/es5/Duo.js +++ b/icons/es5/Duo.js @@ -7,9 +7,11 @@ function SvgDuo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z" + d: "M20 2h-8C6.38 2 2 6.66 2 12.28 2 17.5 6.49 22 11.72 22 17.39 22 22 17.62 22 12V4c0-1.1-.9-2-2-2zm-3 13l-3-2v2H7V9h7v2l3-2v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Dvr.js b/icons/es5/Dvr.js index 78424560ed..9c2b89d6c7 100644 --- a/icons/es5/Dvr.js +++ b/icons/es5/Dvr.js @@ -7,9 +7,11 @@ function SvgDvr(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z" + d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-2-9H8v2h11V8zm0 4H8v2h11v-2zM7 8H5v2h2V8zm0 4H5v2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/DynamicFeed.js b/icons/es5/DynamicFeed.js index 7a13fae5bb..b6a1be8b33 100644 --- a/icons/es5/DynamicFeed.js +++ b/icons/es5/DynamicFeed.js @@ -7,11 +7,14 @@ function SvgDynamicFeed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 8H6v9h11v-2H8z" + d: "M8 8H6v9h11v-2H8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 3H10v10h12V3zm-2 8h-8V7h8v4zM4 12H2v9h11v-2H4z" + d: "M22 3H10v10h12V3zm-2 8h-8V7h8v4zM4 12H2v9h11v-2H4z", + fill: "currentColor" })); } diff --git a/icons/es5/DynamicForm.js b/icons/es5/DynamicForm.js index 9fc28bc64d..58e0d36d8f 100644 --- a/icons/es5/DynamicForm.js +++ b/icons/es5/DynamicForm.js @@ -7,9 +7,11 @@ function SvgDynamicForm(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 20v-9h-2V4h7l-2 5h2l-5 11zm-2-7v7H2v-7h13zm-8.75 2.75h-1.5v1.5h1.5v-1.5zM13 4v7H2V4h11zM6.25 6.75h-1.5v1.5h1.5v-1.5z" + d: "M17 20v-9h-2V4h7l-2 5h2l-5 11zm-2-7v7H2v-7h13zm-8.75 2.75h-1.5v1.5h1.5v-1.5zM13 4v7H2V4h11zM6.25 6.75h-1.5v1.5h1.5v-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/EMobiledata.js b/icons/es5/EMobiledata.js index 35fb6db9e4..fe817eb3d4 100644 --- a/icons/es5/EMobiledata.js +++ b/icons/es5/EMobiledata.js @@ -7,9 +7,11 @@ function SvgEMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z" + d: "M16 9V7H8v10h8v-2h-6v-2h6v-2h-6V9h6z", + fill: "currentColor" })); } diff --git a/icons/es5/Earbuds.js b/icons/es5/Earbuds.js index f325a0795f..266bb75fd2 100644 --- a/icons/es5/Earbuds.js +++ b/icons/es5/Earbuds.js @@ -7,11 +7,14 @@ function SvgEarbuds(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.2 3.01C4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79A3 3 0 0017.8 21c1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5s-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21c.11-1.68-1.17-3.1-2.8-3.2z" + d: "M6.2 3.01C4.44 2.89 3 4.42 3 6.19V16c0 2.76 2.24 5 5 5s5-2.24 5-5V8c0-1.66 1.34-3 3-3s3 1.34 3 3v7h-.83c-1.61 0-3.06 1.18-3.17 2.79A3 3 0 0017.8 21c1.76.12 3.2-1.42 3.2-3.18V8c0-2.76-2.24-5-5-5s-5 2.24-5 5v8c0 1.66-1.34 3-3 3s-3-1.34-3-3V9h.83C7.44 9 8.89 7.82 9 6.21c.11-1.68-1.17-3.1-2.8-3.2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6 3h3v6H6zm9 12h3v6h-3z" + d: "M6 3h3v6H6zm9 12h3v6h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/EarbudsBattery.js b/icons/es5/EarbudsBattery.js index 1bd975ca99..49dbf5850d 100644 --- a/icons/es5/EarbudsBattery.js +++ b/icons/es5/EarbudsBattery.js @@ -7,9 +7,11 @@ function SvgEarbudsBattery(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 7V6h-2v1h-2v11h6V7zM5.38 16.5c-1.04 0-1.88-.84-1.88-1.87V10H6V6H4c-1.1 0-2 .9-2 2v6.63C2 16.49 3.51 18 5.37 18s3.37-1.51 3.37-3.37V9.37c0-1.04.84-1.87 1.87-1.87 1.04 0 1.87.84 1.87 1.87V14H10v4h2c1.1 0 2-.9 2-2V9.37C14 7.51 12.49 6 10.63 6 8.76 6 7.25 7.51 7.25 9.37v5.25c0 1.04-.84 1.88-1.87 1.88z" + d: "M20 7V6h-2v1h-2v11h6V7zM5.38 16.5c-1.04 0-1.88-.84-1.88-1.87V10H6V6H4c-1.1 0-2 .9-2 2v6.63C2 16.49 3.51 18 5.37 18s3.37-1.51 3.37-3.37V9.37c0-1.04.84-1.87 1.87-1.87 1.04 0 1.87.84 1.87 1.87V14H10v4h2c1.1 0 2-.9 2-2V9.37C14 7.51 12.49 6 10.63 6 8.76 6 7.25 7.51 7.25 9.37v5.25c0 1.04-.84 1.88-1.87 1.88z", + fill: "currentColor" })); } diff --git a/icons/es5/East.js b/icons/es5/East.js index cdc4e8bd90..87488a64c2 100644 --- a/icons/es5/East.js +++ b/icons/es5/East.js @@ -7,9 +7,11 @@ function SvgEast(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 5l-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z" + d: "M15 5l-1.41 1.41L18.17 11H2v2h16.17l-4.59 4.59L15 19l7-7-7-7z", + fill: "currentColor" })); } diff --git a/icons/es5/Eco.js b/icons/es5/Eco.js index 3de57cbe55..51d7858acb 100644 --- a/icons/es5/Eco.js +++ b/icons/es5/Eco.js @@ -7,9 +7,11 @@ function SvgEco(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.05 8.05a7.001 7.001 0 00-.02 9.88c1.47-3.4 4.09-6.24 7.36-7.93A15.952 15.952 0 008 19.32c2.6 1.23 5.8.78 7.95-1.37C19.43 14.47 20 4 20 4S9.53 4.57 6.05 8.05z" + d: "M6.05 8.05a7.001 7.001 0 00-.02 9.88c1.47-3.4 4.09-6.24 7.36-7.93A15.952 15.952 0 008 19.32c2.6 1.23 5.8.78 7.95-1.37C19.43 14.47 20 4 20 4S9.53 4.57 6.05 8.05z", + fill: "currentColor" })); } diff --git a/icons/es5/EdgesensorHigh.js b/icons/es5/EdgesensorHigh.js index f9f40ef0ab..6b238f1c33 100644 --- a/icons/es5/EdgesensorHigh.js +++ b/icons/es5/EdgesensorHigh.js @@ -7,9 +7,11 @@ function SvgEdgesensorHigh(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 7h2v7H3V7zm-3 3h2v7H0v-7zm22-3h2v7h-2V7zm-3 3h2v7h-2v-7zm-1-8H6v20h12V2zm-2 15H8V7h8v10z" + d: "M3 7h2v7H3V7zm-3 3h2v7H0v-7zm22-3h2v7h-2V7zm-3 3h2v7h-2v-7zm-1-8H6v20h12V2zm-2 15H8V7h8v10z", + fill: "currentColor" })); } diff --git a/icons/es5/EdgesensorLow.js b/icons/es5/EdgesensorLow.js index df9297095c..df40402051 100644 --- a/icons/es5/EdgesensorLow.js +++ b/icons/es5/EdgesensorLow.js @@ -7,9 +7,11 @@ function SvgEdgesensorLow(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 7h2v7H2V7zm18 3h2v7h-2v-7zM6 2v20h12V2H6zm10 15H8V7h8v10z" + d: "M2 7h2v7H2V7zm18 3h2v7h-2v-7zM6 2v20h12V2H6zm10 15H8V7h8v10z", + fill: "currentColor" })); } diff --git a/icons/es5/EditAttributes.js b/icons/es5/EditAttributes.js index b0ca2af121..4e564999f2 100644 --- a/icons/es5/EditAttributes.js +++ b/icons/es5/EditAttributes.js @@ -7,9 +7,11 @@ function SvgEditAttributes(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z" + d: "M17.63 7H6.37C3.96 7 2 9.24 2 12s1.96 5 4.37 5h11.26c2.41 0 4.37-2.24 4.37-5s-1.96-5-4.37-5zM7.24 14.46l-2.57-2.57.7-.7 1.87 1.87 3.52-3.52.7.7-4.22 4.22z", + fill: "currentColor" })); } diff --git a/icons/es5/EditCalendar.js b/icons/es5/EditCalendar.js index 37544cecf8..c4266505f6 100644 --- a/icons/es5/EditCalendar.js +++ b/icons/es5/EditCalendar.js @@ -7,9 +7,11 @@ function SvgEditCalendar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 22H3V4h3V2h2v2h8V2h2v2h3v8h-2v-2H5v10h7v2zm10.13-5.01l1.41-1.41-2.12-2.12-1.41 1.41 2.12 2.12zm-.71.71l-5.3 5.3H14v-2.12l5.3-5.3 2.12 2.12z" + d: "M12 22H3V4h3V2h2v2h8V2h2v2h3v8h-2v-2H5v10h7v2zm10.13-5.01l1.41-1.41-2.12-2.12-1.41 1.41 2.12 2.12zm-.71.71l-5.3 5.3H14v-2.12l5.3-5.3 2.12 2.12z", + fill: "currentColor" })); } diff --git a/icons/es5/EditCircle.js b/icons/es5/EditCircle.js new file mode 100644 index 0000000000..4ce7f591c5 --- /dev/null +++ b/icons/es5/EditCircle.js @@ -0,0 +1,16 @@ +function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } + +import * as React from "react"; + +function SvgEditCircle(props) { + return /*#__PURE__*/React.createElement("svg", _extends({ + xmlns: "http://www.w3.org/2000/svg", + viewBox: "0 0 24 24", + fill: "none" + }, props), /*#__PURE__*/React.createElement("path", { + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2m3.1 5.07c.14 0 .28.05.4.16l1.27 1.27c.23.22.23.57 0 .78l-1 1-2.05-2.05 1-1c.1-.11.24-.16.38-.16m-1.97 1.74l2.06 2.06-6.06 6.06H7.07v-2.06l6.06-6.06z", + fill: "currentColor" + })); +} + +export default SvgEditCircle; \ No newline at end of file diff --git a/icons/es5/EditLocation.js b/icons/es5/EditLocation.js index 9586d3722b..6d0e5dd808 100644 --- a/icons/es5/EditLocation.js +++ b/icons/es5/EditLocation.js @@ -7,9 +7,11 @@ function SvgEditLocation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.11 1.77L19.78.1l2.12 2.12-1.67 1.67-2.12-2.12zm-1 1l2.12 2.12L13.12 11H11V8.89l6.11-6.12zm-1.98-.13L9.5 8.27v4.24h4.24l5.62-5.62c.41.99.64 2.1.64 3.32 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2 1.09 0 2.16.22 3.13.63z" + d: "M18.11 1.77L19.78.1l2.12 2.12-1.67 1.67-2.12-2.12zm-1 1l2.12 2.12L13.12 11H11V8.89l6.11-6.12zm-1.98-.13L9.5 8.27v4.24h4.24l5.62-5.62c.41.99.64 2.1.64 3.32 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8 0-4.98 3.8-8.2 8-8.2 1.09 0 2.16.22 3.13.63z", + fill: "currentColor" })); } diff --git a/icons/es5/EditLocationAlt.js b/icons/es5/EditLocationAlt.js index d5968b776b..c320331e2e 100644 --- a/icons/es5/EditLocationAlt.js +++ b/icons/es5/EditLocationAlt.js @@ -7,9 +7,11 @@ function SvgEditLocationAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.95 13H9V8.05l5.61-5.61A8.17 8.17 0 0012 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8l-5.6 5.6zM11 11h2.12l6.16-6.16-2.12-2.12L11 8.88V11zM19.29.59l-1.42 1.42 2.12 2.12 1.42-1.42L19.29.59z" + d: "M13.95 13H9V8.05l5.61-5.61A8.17 8.17 0 0012 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-1.01-.16-1.94-.45-2.8l-5.6 5.6zM11 11h2.12l6.16-6.16-2.12-2.12L11 8.88V11zM19.29.59l-1.42 1.42 2.12 2.12 1.42-1.42L19.29.59z", + fill: "currentColor" })); } diff --git a/icons/es5/EditNote.js b/icons/es5/EditNote.js index 316201bc57..d8b0f313d5 100644 --- a/icons/es5/EditNote.js +++ b/icons/es5/EditNote.js @@ -7,9 +7,11 @@ function SvgEditNote(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 10h11v2H3v-2zm0-2h11V6H3v2zm0 8h7v-2H3v2zm15.01-3.13l1.41-1.41 2.12 2.12-1.41 1.41-2.12-2.12zm-.71.71l-5.3 5.3V21h2.12l5.3-5.3-2.12-2.12z" + d: "M3 10h11v2H3v-2zm0-2h11V6H3v2zm0 8h7v-2H3v2zm15.01-3.13l1.41-1.41 2.12 2.12-1.41 1.41-2.12-2.12zm-.71.71l-5.3 5.3V21h2.12l5.3-5.3-2.12-2.12z", + fill: "currentColor" })); } diff --git a/icons/es5/EditNotifications.js b/icons/es5/EditNotifications.js index 46215aee56..e50ff3f9f6 100644 --- a/icons/es5/EditNotifications.js +++ b/icons/es5/EditNotifications.js @@ -7,9 +7,11 @@ function SvgEditNotifications(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.58 6.25l1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44l-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8V2h3v2.2c.82.21 1.57.59 2.21 1.09L10.6 10.4V15h4.6l2.8-2.8zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z" + d: "M17.58 6.25l1.77 1.77L14.37 13H12.6v-1.77l4.98-4.98zm3.27-.44l-1.06-1.06c-.2-.2-.51-.2-.71 0l-.85.85L20 7.37l.85-.85c.2-.2.2-.52 0-.71zM18 12.2V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8V2h3v2.2c.82.21 1.57.59 2.21 1.09L10.6 10.4V15h4.6l2.8-2.8zM10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/EditOff.js b/icons/es5/EditOff.js index 62b2d8fb0e..5dfbdb7266 100644 --- a/icons/es5/EditOff.js +++ b/icons/es5/EditOff.js @@ -7,9 +7,11 @@ function SvgEditOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.41 6.33l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54zM1.39 4.22l7.32 7.32L3 17.25V21h3.75l5.71-5.71 7.32 7.32 1.41-1.41L2.81 2.81 1.39 4.22zm16.42 5.72l-3.75-3.75-2.52 2.52 3.75 3.75 2.52-2.52z" + d: "M21.41 6.33l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54zM1.39 4.22l7.32 7.32L3 17.25V21h3.75l5.71-5.71 7.32 7.32 1.41-1.41L2.81 2.81 1.39 4.22zm16.42 5.72l-3.75-3.75-2.52 2.52 3.75 3.75 2.52-2.52z", + fill: "currentColor" })); } diff --git a/icons/es5/EditRoad.js b/icons/es5/EditRoad.js index 0d0cc3ccf8..7329144a18 100644 --- a/icons/es5/EditRoad.js +++ b/icons/es5/EditRoad.js @@ -7,9 +7,11 @@ function SvgEditRoad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41l-1.15-1.15a1.49 1.49 0 00-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z" + d: "M18 4h-2v7.9l2-2zM4 4h2v16H4zm6 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm12.56-3.41l-1.15-1.15a1.49 1.49 0 00-2.12 0L14 16.73V20h3.27l5.29-5.29c.59-.59.59-1.54 0-2.12zm-5.98 5.86h-1.03v-1.03L19 13.97 20.03 15l-3.45 3.45z", + fill: "currentColor" })); } diff --git a/icons/es5/Egg.js b/icons/es5/Egg.js index 72f1c9f85a..51bb119243 100644 --- a/icons/es5/Egg.js +++ b/icons/es5/Egg.js @@ -7,9 +7,11 @@ function SvgEgg(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3C8.5 3 5 9.33 5 14c0 3.87 3.13 7 7 7s7-3.13 7-7c0-4.67-3.5-11-7-11zm1 15c-3 0-5-1.99-5-5v-1h2v1c0 2.92 2.42 3 3 3h1v2h-1z" + d: "M12 3C8.5 3 5 9.33 5 14c0 3.87 3.13 7 7 7s7-3.13 7-7c0-4.67-3.5-11-7-11zm1 15c-3 0-5-1.99-5-5v-1h2v1c0 2.92 2.42 3 3 3h1v2h-1z", + fill: "currentColor" })); } diff --git a/icons/es5/EggAlt.js b/icons/es5/EggAlt.js index 4fea66684b..7a4c872bcf 100644 --- a/icons/es5/EggAlt.js +++ b/icons/es5/EggAlt.js @@ -7,9 +7,11 @@ function SvgEggAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9c-2-2-3.01-7-9.03-7C4.95 2 1.94 6 2 11.52 2.06 17.04 6.96 19 9.97 19c2.01 0 2.01 3 6.02 3C19 22 22 19 22 15.02 22 12 21.01 11 19 9zm-7 6.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" + d: "M19 9c-2-2-3.01-7-9.03-7C4.95 2 1.94 6 2 11.52 2.06 17.04 6.96 19 9.97 19c2.01 0 2.01 3 6.02 3C19 22 22 19 22 15.02 22 12 21.01 11 19 9zm-7 6.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Eject.js b/icons/es5/Eject.js index 411fb42c30..8bbe15e3ea 100644 --- a/icons/es5/Eject.js +++ b/icons/es5/Eject.js @@ -7,9 +7,11 @@ function SvgEject(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 17h14v2H5v-2zm7-12L5.33 15h13.34L12 5z" + d: "M5 17h14v2H5v-2zm7-12L5.33 15h13.34L12 5z", + fill: "currentColor" })); } diff --git a/icons/es5/Elderly.js b/icons/es5/Elderly.js index e94a4e90c8..3c4d21017d 100644 --- a/icons/es5/Elderly.js +++ b/icons/es5/Elderly.js @@ -7,9 +7,11 @@ function SvgElderly(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69a6.02 6.02 0 01-3.51-2.52c-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01a2 2 0 011.94.03c.36.21.63.51.8.85l.79 1.67A3.987 3.987 0 0018.5 11c.83 0 1.5.67 1.5 1.5z" + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6.5 7V23h-1V12.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5v1h-1v-.69a6.02 6.02 0 01-3.51-2.52c-.31.87-.49 1.78-.49 2.71 0 .23.02.46.03.69L15 16.5V23h-2v-5l-1.78-2.54L11 19l-3 4-1.6-1.2L9 18.33V13c0-1.15.18-2.29.5-3.39l-1.5.85V14H6V9.3l5.4-3.07v.01a2 2 0 011.94.03c.36.21.63.51.8.85l.79 1.67A3.987 3.987 0 0018.5 11c.83 0 1.5.67 1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/ElderlyWoman.js b/icons/es5/ElderlyWoman.js index fbc84840e6..7d220bf7bc 100644 --- a/icons/es5/ElderlyWoman.js +++ b/icons/es5/ElderlyWoman.js @@ -7,9 +7,11 @@ function SvgElderlyWoman(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.5 11c-1.56 0-2.92-.9-3.58-2.21l-.79-1.67C14.12 7.1 13.63 6 12.34 6 8.72 6 6 16.69 6 19h2.5l-2.1 2.8L8 23l3-4h2v4h2v-4.03L13 13l.49-2.71A6.02 6.02 0 0017 12.81v.69h1v-1c0-.28.22-.5.5-.5s.5.22.5.5V23h1V12.5c0-.83-.67-1.5-1.5-1.5zm-6.9-8.09c-.06.19-.1.38-.1.59 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2c-.21 0-.4.04-.59.1-.15-.35-.5-.6-.91-.6-.55 0-1 .45-1 1 0 .41.25.76.6.91z" + d: "M18.5 11c-1.56 0-2.92-.9-3.58-2.21l-.79-1.67C14.12 7.1 13.63 6 12.34 6 8.72 6 6 16.69 6 19h2.5l-2.1 2.8L8 23l3-4h2v4h2v-4.03L13 13l.49-2.71A6.02 6.02 0 0017 12.81v.69h1v-1c0-.28.22-.5.5-.5s.5.22.5.5V23h1V12.5c0-.83-.67-1.5-1.5-1.5zm-6.9-8.09c-.06.19-.1.38-.1.59 0 1.1.9 2 2 2s2-.9 2-2-.9-2-2-2c-.21 0-.4.04-.59.1-.15-.35-.5-.6-.91-.6-.55 0-1 .45-1 1 0 .41.25.76.6.91z", + fill: "currentColor" })); } diff --git a/icons/es5/ElectricBike.js b/icons/es5/ElectricBike.js index d836d8e9be..e6c33d751e 100644 --- a/icons/es5/ElectricBike.js +++ b/icons/es5/ElectricBike.js @@ -7,9 +7,11 @@ function SvgElectricBike(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 7h-.82L16 1h-4v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z" + d: "M19 7h-.82L16 1h-4v2h2.6l1.46 4h-4.81l-.36-1H12V4H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 6.87 0 9.2 0 12c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5C24 9.2 21.8 7 19 7zM7.82 13c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.02 0 .05-.01.08-.01 1.68 0 3 1.32 3 3s-1.32 3-3 3zm-8 5H7l6 3v-2h4l-6-3z", + fill: "currentColor" })); } diff --git a/icons/es5/ElectricBolt.js b/icons/es5/ElectricBolt.js index 79f44e4351..4256c1bbc5 100644 --- a/icons/es5/ElectricBolt.js +++ b/icons/es5/ElectricBolt.js @@ -7,9 +7,11 @@ function SvgElectricBolt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 2L2.5 13 13 14l-5 7 1 1 12.5-11L11 10l5-7z" + d: "M15 2L2.5 13 13 14l-5 7 1 1 12.5-11L11 10l5-7z", + fill: "currentColor" })); } diff --git a/icons/es5/ElectricCar.js b/icons/es5/ElectricCar.js index a05d21a3cb..78d1982b79 100644 --- a/icons/es5/ElectricCar.js +++ b/icons/es5/ElectricCar.js @@ -7,9 +7,11 @@ function SvgElectricCar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.58 1H5.43L3 8v9h3v-2h12v2h3V8l-2.42-7zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.5-4.5h11L19 7H5zm2 13h4v-2l6 3h-4v2z" + d: "M18.58 1H5.43L3 8v9h3v-2h12v2h3V8l-2.42-7zM6.5 12c-.83 0-1.5-.67-1.5-1.5S5.67 9 6.5 9 8 9.67 8 10.5 7.33 12 6.5 12zm11 0c-.83 0-1.5-.67-1.5-1.5S16.67 9 17.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 7l1.5-4.5h11L19 7H5zm2 13h4v-2l6 3h-4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ElectricMeter.js b/icons/es5/ElectricMeter.js index a43042b27a..a6c2fa0d5d 100644 --- a/icons/es5/ElectricMeter.js +++ b/icons/es5/ElectricMeter.js @@ -7,9 +7,11 @@ function SvgElectricMeter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4.96 0-9 4.04-9 9 0 3.91 2.51 7.24 6 8.47V22h2v-2.06a8.262 8.262 0 002 0V22h2v-2.53c3.49-1.24 6-4.57 6-8.47 0-4.96-4.04-9-9-9zm2.25 12l-3 3-1.5-1.5L11 14.25 9.75 13l3-3 1.5 1.5L13 12.75 14.25 14zM16 9H8V7h8v2z" + d: "M12 2c-4.96 0-9 4.04-9 9 0 3.91 2.51 7.24 6 8.47V22h2v-2.06a8.262 8.262 0 002 0V22h2v-2.53c3.49-1.24 6-4.57 6-8.47 0-4.96-4.04-9-9-9zm2.25 12l-3 3-1.5-1.5L11 14.25 9.75 13l3-3 1.5 1.5L13 12.75 14.25 14zM16 9H8V7h8v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ElectricMoped.js b/icons/es5/ElectricMoped.js index e89bb6a7bf..4afeccedc6 100644 --- a/icons/es5/ElectricMoped.js +++ b/icons/es5/ElectricMoped.js @@ -7,11 +7,14 @@ function SvgElectricMoped(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 8.35V3h-5v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" + d: "M19 8.35V3h-5v2h3v2.65L13.52 12H10V7H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 8.35zM7 15c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" + d: "M5 4h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ElectricRickshaw.js b/icons/es5/ElectricRickshaw.js index cefb625a9f..bd35a54125 100644 --- a/icons/es5/ElectricRickshaw.js +++ b/icons/es5/ElectricRickshaw.js @@ -7,9 +7,11 @@ function SvgElectricRickshaw(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11.18V9l-5-6H1v12h2.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.48 1.34 1.86 2.25 3.42 1.94 1.16-.23 2.11-1.17 2.33-2.33.31-1.56-.6-2.95-1.94-3.43zM18.4 9H16V6.12L18.4 9zM3 5h4v4H3V5zm3 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-2v-2h3V9H9V5h5v8H9zm11 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z" + d: "M21 11.18V9l-5-6H1v12h2.18C3.6 16.16 4.7 17 6 17s2.4-.84 2.82-2h8.37c.48 1.34 1.86 2.25 3.42 1.94 1.16-.23 2.11-1.17 2.33-2.33.31-1.56-.6-2.95-1.94-3.43zM18.4 9H16V6.12L18.4 9zM3 5h4v4H3V5zm3 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3-2v-2h3V9H9V5h5v8H9zm11 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM7 20h4v-2l6 3h-4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ElectricScooter.js b/icons/es5/ElectricScooter.js index dad1adf95e..cc9565748e 100644 --- a/icons/es5/ElectricScooter.js +++ b/icons/es5/ElectricScooter.js @@ -7,11 +7,14 @@ function SvgElectricScooter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74L17.49 1H12v2h3.89l1.4 6.25h-.01A6.008 6.008 0 0013.09 14H7.82a2.996 2.996 0 00-3.42-1.94c-1.18.23-2.13 1.2-2.35 2.38A3.002 3.002 0 005 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M7.82 16H15v-1c0-2.21 1.79-4 4-4h.74L17.49 1H12v2h3.89l1.4 6.25h-.01A6.008 6.008 0 0013.09 14H7.82a2.996 2.996 0 00-3.42-1.94c-1.18.23-2.13 1.2-2.35 2.38A3.002 3.002 0 005 18c1.3 0 2.4-.84 2.82-2zM5 16c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z" + d: "M19 12c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-8 4H7l6 3v-2h4l-6-3z", + fill: "currentColor" })); } diff --git a/icons/es5/ElectricalServices.js b/icons/es5/ElectricalServices.js index 507d7ded9a..86381065cb 100644 --- a/icons/es5/ElectricalServices.js +++ b/icons/es5/ElectricalServices.js @@ -7,11 +7,14 @@ function SvgElectricalServices(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 13h3v2h-3zm-6-1v2h-2v4h2v2h5v-8z" + d: "M18 13h3v2h-3zm-6-1v2h-2v4h2v2h5v-8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M5 11h7V4H4v2h6v3H3v8h6v-2H5zm13 6h3v2h-3z" + d: "M5 11h7V4H4v2h6v3H3v8h6v-2H5zm13 6h3v2h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Elevator.js b/icons/es5/Elevator.js index 68909c283a..5344b4620f 100644 --- a/icons/es5/Elevator.js +++ b/icons/es5/Elevator.js @@ -7,9 +7,11 @@ function SvgElevator(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM8.5 6a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5zm2.5 8h-1v4H7v-4H6V9.5h5V14zm4.5 3L13 13h5l-2.5 4zM13 11l2.5-4 2.5 4h-5z" + d: "M21 3H3v18h18V3zM8.5 6a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5zm2.5 8h-1v4H7v-4H6V9.5h5V14zm4.5 3L13 13h5l-2.5 4zM13 11l2.5-4 2.5 4h-5z", + fill: "currentColor" })); } diff --git a/icons/es5/Emergency.js b/icons/es5/Emergency.js index 268113bd7d..c9d86f0dde 100644 --- a/icons/es5/Emergency.js +++ b/icons/es5/Emergency.js @@ -7,9 +7,11 @@ function SvgEmergency(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.79 9.23l-2-3.46L14 8.54V3h-4v5.54L5.21 5.77l-2 3.46L8 12l-4.79 2.77 2 3.46L10 15.46V21h4v-5.54l4.79 2.77 2-3.46L16 12z" + d: "M20.79 9.23l-2-3.46L14 8.54V3h-4v5.54L5.21 5.77l-2 3.46L8 12l-4.79 2.77 2 3.46L10 15.46V21h4v-5.54l4.79 2.77 2-3.46L16 12z", + fill: "currentColor" })); } diff --git a/icons/es5/EmergencyRecording.js b/icons/es5/EmergencyRecording.js index 2312e00f76..ee5f4c5538 100644 --- a/icons/es5/EmergencyRecording.js +++ b/icons/es5/EmergencyRecording.js @@ -7,9 +7,11 @@ function SvgEmergencyRecording(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM12 12l3 1.73-1 1.73-3-1.73V17H9v-3.27l-3 1.73-1-1.73L8 12l-3-1.73 1-1.73 3 1.73V7h2v3.27l3-1.73 1 1.73L12 12z" + d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM12 12l3 1.73-1 1.73-3-1.73V17H9v-3.27l-3 1.73-1-1.73L8 12l-3-1.73 1-1.73 3 1.73V7h2v3.27l3-1.73 1 1.73L12 12z", + fill: "currentColor" })); } diff --git a/icons/es5/EmergencyShare.js b/icons/es5/EmergencyShare.js index 46bc504420..2bfbeab564 100644 --- a/icons/es5/EmergencyShare.js +++ b/icons/es5/EmergencyShare.js @@ -7,9 +7,11 @@ function SvgEmergencyShare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 9c-3.15 0-6 2.41-6 6.15 0 2.49 2 5.44 6 8.85 4-3.41 6-6.36 6-8.85C18 11.41 15.15 9 12 9zm0 7.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM12 4c1.93 0 3.68.78 4.95 2.05l-1.41 1.41a5.022 5.022 0 00-7.08 0L7.05 6.05A6.976 6.976 0 0112 4zm7.78-.77l-1.41 1.41C16.74 3.01 14.49 2 12.01 2S7.27 3.01 5.64 4.63L4.22 3.22C6.22 1.23 8.97 0 12.01 0s5.78 1.23 7.77 3.23z" + d: "M12 9c-3.15 0-6 2.41-6 6.15 0 2.49 2 5.44 6 8.85 4-3.41 6-6.36 6-8.85C18 11.41 15.15 9 12 9zm0 7.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM12 4c1.93 0 3.68.78 4.95 2.05l-1.41 1.41a5.022 5.022 0 00-7.08 0L7.05 6.05A6.976 6.976 0 0112 4zm7.78-.77l-1.41 1.41C16.74 3.01 14.49 2 12.01 2S7.27 3.01 5.64 4.63L4.22 3.22C6.22 1.23 8.97 0 12.01 0s5.78 1.23 7.77 3.23z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiEmotions.js b/icons/es5/EmojiEmotions.js index eec99c16f4..7e7ea8eaba 100644 --- a/icons/es5/EmojiEmotions.js +++ b/icons/es5/EmojiEmotions.js @@ -7,9 +7,11 @@ function SvgEmojiEmotions(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM8.5 8c.83 0 1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5 7.67 8 8.5 8zM12 18c-2.28 0-4.22-1.66-5-4h10c-.78 2.34-2.72 4-5 4zm3.5-7c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiEvents.js b/icons/es5/EmojiEvents.js index 161784233a..fdffa7b6b8 100644 --- a/icons/es5/EmojiEvents.js +++ b/icons/es5/EmojiEvents.js @@ -7,9 +7,11 @@ function SvgEmojiEvents(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94A5.01 5.01 0 0011 15.9V19H7v2h10v-2h-4v-3.1a5.01 5.01 0 003.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z" + d: "M19 5h-2V3H7v2H5c-1.1 0-2 .9-2 2v1c0 2.55 1.92 4.63 4.39 4.94A5.01 5.01 0 0011 15.9V19H7v2h10v-2h-4v-3.1a5.01 5.01 0 003.61-2.96C19.08 12.63 21 10.55 21 8V7c0-1.1-.9-2-2-2zM5 8V7h2v3.82C5.84 10.4 5 9.3 5 8zm14 0c0 1.3-.84 2.4-2 2.82V7h2v1z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiFlags.js b/icons/es5/EmojiFlags.js index 3cd892dc86..0f7f2efcba 100644 --- a/icons/es5/EmojiFlags.js +++ b/icons/es5/EmojiFlags.js @@ -7,9 +7,11 @@ function SvgEmojiFlags(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 9l-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z" + d: "M14 9l-1-2H7V5.72c.6-.34 1-.98 1-1.72 0-1.1-.9-2-2-2s-2 .9-2 2c0 .74.4 1.38 1 1.72V21h2v-4h5l1 2h7V9h-6zm4 8h-4l-1-2H7V9h5l1 2h5v6z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiFoodBeverage.js b/icons/es5/EmojiFoodBeverage.js index afd1b51fd4..b1fccd3300 100644 --- a/icons/es5/EmojiFoodBeverage.js +++ b/icons/es5/EmojiFoodBeverage.js @@ -7,9 +7,11 @@ function SvgEmojiFoodBeverage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 19h18v2H2zM20 3H9v2.4L11 7v5H6V7l2-1.6V3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3z" + d: "M2 19h18v2H2zM20 3H9v2.4L11 7v5H6V7l2-1.6V3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiNature.js b/icons/es5/EmojiNature.js index 551e2da59f..a294e397b6 100644 --- a/icons/es5/EmojiNature.js +++ b/icons/es5/EmojiNature.js @@ -7,9 +7,11 @@ function SvgEmojiNature(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.94 4.88A1.32 1.32 0 0020.68 4H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-4.51 3.51c-.43-.43-.94-.73-1.49-.93V8h-1v1.38c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17-.16.16-.3.34-.43.53L6 10.52a3.01 3.01 0 00-3.83 1.82c-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91a3.981 3.981 0 003.91 1c.29.42.68.77 1.16 1 .42.2.85.3 1.29.3.34 0 .68-.06 1.01-.17a3.007 3.007 0 001.82-3.85l-.52-1.37c.18-.13.36-.27.53-.43.87-.87 1.24-2.04 1.14-3.17H16v-1h-1.59c-.19-.55-.49-1.06-.92-1.5zm-8.82 3.78c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04a.989.989 0 01-.51-.57c-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34l-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12a.673.673 0 00-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6a1.966 1.966 0 012.67.13c.73.73.77 1.88.13 2.67z" + d: "M21.94 4.88A1.32 1.32 0 0020.68 4H19.6l-.31-.97C19.15 2.43 18.61 2 18 2s-1.15.43-1.29 1.04L16.4 4h-1.07c-.57 0-1.08.35-1.26.88-.19.56.04 1.17.56 1.48l.87.52-.4 1.24c-.23.58-.04 1.25.45 1.62.23.17.51.26.78.26.31 0 .61-.11.86-.32l.81-.7.81.7c.25.21.55.32.86.32.27 0 .55-.09.78-.26.5-.37.68-1.04.45-1.62l-.39-1.24.87-.52c.51-.31.74-.92.56-1.48zM18 7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-4.51 3.51c-.43-.43-.94-.73-1.49-.93V8h-1v1.38c-.11-.01-.23-.03-.34-.03-1.02 0-2.05.39-2.83 1.17-.16.16-.3.34-.43.53L6 10.52a3.01 3.01 0 00-3.83 1.82c-.27.75-.23 1.57.12 2.29.23.48.58.87 1 1.16-.38 1.35-.06 2.85 1 3.91a3.981 3.981 0 003.91 1c.29.42.68.77 1.16 1 .42.2.85.3 1.29.3.34 0 .68-.06 1.01-.17a3.007 3.007 0 001.82-3.85l-.52-1.37c.18-.13.36-.27.53-.43.87-.87 1.24-2.04 1.14-3.17H16v-1h-1.59c-.19-.55-.49-1.06-.92-1.5zm-8.82 3.78c-.25-.09-.45-.27-.57-.51s-.13-.51-.04-.76c.19-.52.76-.79 1.26-.61l3.16 1.19c-1.15.6-2.63 1.11-3.81.69zm6.32 5.65c-.25.09-.52.08-.76-.04a.989.989 0 01-.51-.57c-.42-1.18.09-2.65.7-3.8l1.18 3.13c.18.52-.09 1.1-.61 1.28zm1.21-5.34l-.61-1.61c0-.01-.01-.02-.02-.03l-.06-.12a.673.673 0 00-.07-.11l-.09-.09-.09-.09c-.03-.03-.07-.05-.11-.07-.04-.02-.07-.05-.12-.06-.01 0-.02-.01-.03-.02l-1.6-.6a1.966 1.966 0 012.67.13c.73.73.77 1.88.13 2.67z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiObjects.js b/icons/es5/EmojiObjects.js index f9afe424e9..7352452e5a 100644 --- a/icons/es5/EmojiObjects.js +++ b/icons/es5/EmojiObjects.js @@ -7,9 +7,11 @@ function SvgEmojiObjects(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3c-.42 0-.85.04-1.28.11-2.81.5-5.08 2.75-5.6 5.55-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V21h2.28a1.98 1.98 0 003.44 0H16v-4.31c0-.55.22-1.09.64-1.46A6.956 6.956 0 0019 10c0-3.87-3.13-7-7-7zm2 16h-4v-1h4v1zm0-2h-4v-1h4v1zm-1.5-5.59V14h-1v-2.59L9.67 9.59l.71-.71L12 10.5l1.62-1.62.71.71-1.83 1.82z" + d: "M12 3c-.42 0-.85.04-1.28.11-2.81.5-5.08 2.75-5.6 5.55-.48 2.61.48 5.01 2.22 6.56.43.38.66.91.66 1.47V21h2.28a1.98 1.98 0 003.44 0H16v-4.31c0-.55.22-1.09.64-1.46A6.956 6.956 0 0019 10c0-3.87-3.13-7-7-7zm2 16h-4v-1h4v1zm0-2h-4v-1h4v1zm-1.5-5.59V14h-1v-2.59L9.67 9.59l.71-.71L12 10.5l1.62-1.62.71.71-1.83 1.82z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiPeople.js b/icons/es5/EmojiPeople.js index ca3603caca..e4343c98d9 100644 --- a/icons/es5/EmojiPeople.js +++ b/icons/es5/EmojiPeople.js @@ -7,13 +7,15 @@ function SvgEmojiPeople(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 4, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z" + d: "M15.89 8.11C15.5 7.72 14.83 7 13.53 7h-2.54C8.24 6.99 6 4.75 6 2H4c0 3.16 2.11 5.84 5 6.71V22h2v-6h2v6h2V10.05L18.95 14l1.41-1.41-4.47-4.48z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiSymbols.js b/icons/es5/EmojiSymbols.js index f279346890..cc6fdf0c25 100644 --- a/icons/es5/EmojiSymbols.js +++ b/icons/es5/EmojiSymbols.js @@ -7,9 +7,11 @@ function SvgEmojiSymbols(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.404 9.182l7.778-7.778 1.414 1.414-7.778 7.778z" + d: "M3 2h8v2H3zm3 9h2V7h3V5H3v2h3zm6.404 9.182l7.778-7.778 1.414 1.414-7.778 7.778z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 14.5, cy: 14.5, @@ -19,7 +21,8 @@ function SvgEmojiSymbols(props) { cy: 19.5, r: 1.5 }), /*#__PURE__*/React.createElement("path", { - d: "M15.5 11A2.5 2.5 0 0018 8.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51a2.5 2.5 0 000 5zm-5.76 4.96l-1.41 1.41-.71-.71.35-.35a2.499 2.499 0 00-1.77-4.27 2.499 2.499 0 00-1.77 4.27l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36a.501.501 0 010-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15a.513.513 0 010-.71l1.06-1.06.71.71-1.07 1.06z" + d: "M15.5 11A2.5 2.5 0 0018 8.5V4h3V2h-4v4.51c-.42-.32-.93-.51-1.5-.51a2.5 2.5 0 000 5zm-5.76 4.96l-1.41 1.41-.71-.71.35-.35a2.499 2.499 0 00-1.77-4.27 2.499 2.499 0 00-1.77 4.27l.35.35-1.06 1.06c-.98.98-.98 2.56 0 3.54.5.5 1.14.74 1.78.74s1.28-.24 1.77-.73l1.06-1.06 1.41 1.41 1.41-1.41-1.41-1.41 1.41-1.41-1.41-1.43zM5.85 14.2c.12-.12.26-.15.35-.15s.23.03.35.15c.19.2.19.51 0 .71l-.35.35-.35-.36a.501.501 0 010-.7zm0 5.65c-.12.12-.26.15-.35.15s-.23-.03-.35-.15a.513.513 0 010-.71l1.06-1.06.71.71-1.07 1.06z", + fill: "currentColor" })); } diff --git a/icons/es5/EmojiTransportation.js b/icons/es5/EmojiTransportation.js index 270666c308..1b87b6d065 100644 --- a/icons/es5/EmojiTransportation.js +++ b/icons/es5/EmojiTransportation.js @@ -7,13 +7,17 @@ function SvgEmojiTransportation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M20.57 10.66c-.14-.4-.52-.66-.97-.66h-7.19c-.46 0-.83.26-.98.66L10 14.77l.01 5.51c0 .38.31.72.69.72h.62c.38 0 .68-.38.68-.76V19h8v1.24c0 .38.31.76.69.76h.61c.38 0 .69-.34.69-.72l.01-1.37v-4.14l-1.43-4.11zm-8.16.34h7.19l1.03 3h-9.25l1.03-3zM12 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm8 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z" + d: "M14 9h1V3H7v5H2v13h1V9h5V4h6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z" + d: "M5 11h2v2H5zm5-6h2v2h-2zM5 15h2v2H5zm0 4h2v2H5z", + fill: "currentColor" })); } diff --git a/icons/es5/EnergySavingsLeaf.js b/icons/es5/EnergySavingsLeaf.js index 951b7e72ac..1768b3ab75 100644 --- a/icons/es5/EnergySavingsLeaf.js +++ b/icons/es5/EnergySavingsLeaf.js @@ -7,9 +7,11 @@ function SvgEnergySavingsLeaf(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3c-4.8 0-9 3.86-9 9 0 2.12.74 4.07 1.97 5.61L3 19.59 4.41 21l1.97-1.97A9.012 9.012 0 0012 21c2.3 0 4.61-.88 6.36-2.64A8.95 8.95 0 0021 12V3h-9zm-1.5 14l-.5-.5 2.5-3.5-5-.5 6-5.5.5.5-2.5 3.5 5 .5-6 5.5z" + d: "M12 3c-4.8 0-9 3.86-9 9 0 2.12.74 4.07 1.97 5.61L3 19.59 4.41 21l1.97-1.97A9.012 9.012 0 0012 21c2.3 0 4.61-.88 6.36-2.64A8.95 8.95 0 0021 12V3h-9zm-1.5 14l-.5-.5 2.5-3.5-5-.5 6-5.5.5.5-2.5 3.5 5 .5-6 5.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Engineering.js b/icons/es5/Engineering.js index 06c55bdcbe..cde7505c4a 100644 --- a/icons/es5/Engineering.js +++ b/icons/es5/Engineering.js @@ -7,9 +7,11 @@ function SvgEngineering(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm4.75-7H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.75v1h9.5V8zM9 13c1.86 0 3.41-1.28 3.86-3H5.14c.45 1.72 2 3 3.86 3zm12.98-6.77l.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zm-.1 3.04l-.85.28c-.1-.08-.21-.14-.33-.19l-.18-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37l.66-.59-.53-.93zm-1.9 2.6c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z" + d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm4.75-7H13c0-1.48-.81-2.75-2-3.45v.95c0 .28-.22.5-.5.5s-.5-.22-.5-.5V4.14C9.68 4.06 9.35 4 9 4s-.68.06-1 .14V5.5c0 .28-.22.5-.5.5S7 5.78 7 5.5v-.95C5.81 5.25 5 6.52 5 8h-.75v1h9.5V8zM9 13c1.86 0 3.41-1.28 3.86-3H5.14c.45 1.72 2 3 3.86 3zm12.98-6.77l.93-.83-.75-1.3-1.19.39c-.14-.11-.3-.2-.47-.27L20.25 3h-1.5l-.25 1.22c-.17.07-.33.16-.48.27l-1.18-.39-.75 1.3.93.83c-.02.17-.02.35 0 .52l-.93.85.75 1.3 1.2-.38c.13.1.28.18.43.25l.28 1.23h1.5l.27-1.22c.16-.07.3-.15.44-.25l1.19.38.75-1.3-.93-.85c.03-.19.02-.36.01-.53zM19.5 7.75a1.25 1.25 0 110-2.5 1.25 1.25 0 010 2.5zm-.1 3.04l-.85.28c-.1-.08-.21-.14-.33-.19l-.18-.88h-1.07l-.18.87c-.12.05-.24.12-.34.19l-.84-.28-.54.93.66.59c-.01.13-.01.25 0 .37l-.66.61.54.93.86-.27c.1.07.2.13.31.18l.18.88h1.07l.19-.87c.11-.05.22-.11.32-.18l.85.27.54-.93-.66-.61c.01-.13.01-.25 0-.37l.66-.59-.53-.93zm-1.9 2.6c-.49 0-.89-.4-.89-.89s.4-.89.89-.89.89.4.89.89-.4.89-.89.89z", + fill: "currentColor" })); } diff --git a/icons/es5/EnhancedEncryption.js b/icons/es5/EnhancedEncryption.js index 5f4a15a331..e45a144c97 100644 --- a/icons/es5/EnhancedEncryption.js +++ b/icons/es5/EnhancedEncryption.js @@ -7,9 +7,11 @@ function SvgEnhancedEncryption(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19A4.995 4.995 0 007 6v2H4v14h16V8zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" + d: "M20 8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19A4.995 4.995 0 007 6v2H4v14h16V8zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6zM16 16h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Equalizer.js b/icons/es5/Equalizer.js index 50e05e1b6b..42e51a7425 100644 --- a/icons/es5/Equalizer.js +++ b/icons/es5/Equalizer.js @@ -7,9 +7,11 @@ function SvgEqualizer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z" + d: "M10 20h4V4h-4v16zm-6 0h4v-8H4v8zM16 9v11h4V9h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Equals.js b/icons/es5/Equals.js index 3e2e971918..112d95087a 100644 --- a/icons/es5/Equals.js +++ b/icons/es5/Equals.js @@ -7,9 +7,11 @@ function SvgEquals(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9.998H5v-2h14zm0 6H5v-2h14z" + d: "M19 9.998H5v-2h14zm0 6H5v-2h14z", + fill: "currentColor" })); } diff --git a/icons/es5/ErrorOutline.js b/icons/es5/ErrorOutline.js index 9b3b20466a..84e9a073a2 100644 --- a/icons/es5/ErrorOutline.js +++ b/icons/es5/ErrorOutline.js @@ -7,9 +7,11 @@ function SvgErrorOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + d: "M11 15h2v2h-2v-2zm0-8h2v6h-2V7zm.99-5C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/Escalator.js b/icons/es5/Escalator.js index 9aca0241c0..404abd1170 100644 --- a/icons/es5/Escalator.js +++ b/icons/es5/Escalator.js @@ -7,9 +7,11 @@ function SvgEscalator(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-2.5 6h-3.2l-5 9H5.5v-3h3.2l5-9h4.8v3z" + d: "M21 3H3v18h18V3zm-2.5 6h-3.2l-5 9H5.5v-3h3.2l5-9h4.8v3z", + fill: "currentColor" })); } diff --git a/icons/es5/EscalatorWarning.js b/icons/es5/EscalatorWarning.js index c39e38a62d..41acf06270 100644 --- a/icons/es5/EscalatorWarning.js +++ b/icons/es5/EscalatorWarning.js @@ -7,9 +7,11 @@ function SvgEscalatorWarning(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm-1.29 3.36l-.92 1.32L9.72 8c-.35-.62-1.01-1-1.73-1H3v8h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-5h-4.15c-.66 0-1.27.32-1.64.86z" + d: "M6.5 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm9 7.5c0 .83.67 1.5 1.5 1.5s1.5-.67 1.5-1.5S17.83 8 17 8s-1.5.67-1.5 1.5zm-1.29 3.36l-.92 1.32L9.72 8c-.35-.62-1.01-1-1.73-1H3v8h1.5v7h5V11.61L12.03 16h2.2l.77-1.1V22h4v-5h1v-5h-4.15c-.66 0-1.27.32-1.64.86z", + fill: "currentColor" })); } diff --git a/icons/es5/Euro.js b/icons/es5/Euro.js index 5189126387..6f3debc1c7 100644 --- a/icons/es5/Euro.js +++ b/icons/es5/Euro.js @@ -7,9 +7,11 @@ function SvgEuro(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 18.5A6.48 6.48 0 019.24 15H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24A6.491 6.491 0 0115 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.955 8.955 0 0015 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06a8.262 8.262 0 000 2H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" + d: "M15 18.5A6.48 6.48 0 019.24 15H15l1-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15l1-2H9.24A6.491 6.491 0 0115 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.955 8.955 0 0015 3c-3.92 0-7.24 2.51-8.48 6H3l-1 2h4.06a8.262 8.262 0 000 2H3l-1 2h4.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z", + fill: "currentColor" })); } diff --git a/icons/es5/EuroSymbol.js b/icons/es5/EuroSymbol.js index 9b2a749027..6824fb1769 100644 --- a/icons/es5/EuroSymbol.js +++ b/icons/es5/EuroSymbol.js @@ -7,9 +7,11 @@ function SvgEuroSymbol(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 18.5A6.48 6.48 0 019.24 15H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24A6.491 6.491 0 0115 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.955 8.955 0 0015 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06a8.262 8.262 0 000 2H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z" + d: "M15 18.5A6.48 6.48 0 019.24 15H15v-2H8.58c-.05-.33-.08-.66-.08-1s.03-.67.08-1H15V9H9.24A6.491 6.491 0 0115 5.5c1.61 0 3.09.59 4.23 1.57L21 5.3A8.955 8.955 0 0015 3c-3.92 0-7.24 2.51-8.48 6H3v2h3.06a8.262 8.262 0 000 2H3v2h3.52c1.24 3.49 4.56 6 8.48 6 2.31 0 4.41-.87 6-2.3l-1.78-1.77c-1.13.98-2.6 1.57-4.22 1.57z", + fill: "currentColor" })); } diff --git a/icons/es5/EvStation.js b/icons/es5/EvStation.js index 38c87f120c..9ce2160719 100644 --- a/icons/es5/EvStation.js +++ b/icons/es5/EvStation.js @@ -7,9 +7,11 @@ function SvgEvStation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5V21h5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z" + d: "M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5V21h5V9c0-.69-.28-1.32-.73-1.77zM18 10c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM8 18v-4.5H6L10 6v5h2l-4 7z", + fill: "currentColor" })); } diff --git a/icons/es5/EventRepeat.js b/icons/es5/EventRepeat.js index 132df3ace3..143f81fcc6 100644 --- a/icons/es5/EventRepeat.js +++ b/icons/es5/EventRepeat.js @@ -7,9 +7,11 @@ function SvgEventRepeat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 12V4h-3V2h-2v2H8V2H6v2H3v18h9v-2H5V10h14v2h2zm-5.36 8a3.504 3.504 0 006.86-1c0-1.93-1.57-3.5-3.5-3.5-.95 0-1.82.38-2.45 1H18V18h-4v-4h1.5v1.43c.9-.88 2.14-1.43 3.5-1.43 2.76 0 5 2.24 5 5a5.002 5.002 0 01-9.9 1h1.54z" + d: "M21 12V4h-3V2h-2v2H8V2H6v2H3v18h9v-2H5V10h14v2h2zm-5.36 8a3.504 3.504 0 006.86-1c0-1.93-1.57-3.5-3.5-3.5-.95 0-1.82.38-2.45 1H18V18h-4v-4h1.5v1.43c.9-.88 2.14-1.43 3.5-1.43 2.76 0 5 2.24 5 5a5.002 5.002 0 01-9.9 1h1.54z", + fill: "currentColor" })); } diff --git a/icons/es5/EventSeat.js b/icons/es5/EventSeat.js index 7fcaa6d052..13532cd216 100644 --- a/icons/es5/EventSeat.js +++ b/icons/es5/EventSeat.js @@ -7,9 +7,11 @@ function SvgEventSeat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 21h3v-3h10v3h3v-6H4v6zm15-11h3v3h-3v-3zM2 10h3v3H2v-3zm15 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z" + d: "M4 21h3v-3h10v3h3v-6H4v6zm15-11h3v3h-3v-3zM2 10h3v3H2v-3zm15 3H7V5c0-1.1.9-2 2-2h6c1.1 0 2 .9 2 2v8z", + fill: "currentColor" })); } diff --git a/icons/es5/ExitToApp.js b/icons/es5/ExitToApp.js index 0fcb24a460..f3deb0e371 100644 --- a/icons/es5/ExitToApp.js +++ b/icons/es5/ExitToApp.js @@ -7,9 +7,11 @@ function SvgExitToApp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM21 3H3v6h2V5h14v14H5v-4H3v6h18V3z" + d: "M10.09 15.59L11.5 17l5-5-5-5-1.41 1.41L12.67 11H3v2h9.67l-2.58 2.59zM21 3H3v6h2V5h14v14H5v-4H3v6h18V3z", + fill: "currentColor" })); } diff --git a/icons/es5/Expand.js b/icons/es5/Expand.js index 9f2dd77124..ba03c262e5 100644 --- a/icons/es5/Expand.js +++ b/icons/es5/Expand.js @@ -7,9 +7,11 @@ function SvgExpand(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 20h16v2H4v-2zM4 2h16v2H4V2zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3V9z" + d: "M4 20h16v2H4v-2zM4 2h16v2H4V2zm9 7h3l-4-4-4 4h3v6H8l4 4 4-4h-3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/ExpandCircleDown.js b/icons/es5/ExpandCircleDown.js index a091a95e97..fcaa9452f2 100644 --- a/icons/es5/ExpandCircleDown.js +++ b/icons/es5/ExpandCircleDown.js @@ -7,9 +7,11 @@ function SvgExpandCircleDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13.5L7.5 11l1.42-1.41L12 12.67l3.08-3.08L16.5 11 12 15.5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13.5L7.5 11l1.42-1.41L12 12.67l3.08-3.08L16.5 11 12 15.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Explicit.js b/icons/es5/Explicit.js index 237f39ca61..8c1e4cddb9 100644 --- a/icons/es5/Explicit.js +++ b/icons/es5/Explicit.js @@ -7,9 +7,11 @@ function SvgExplicit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-6 6h-4v2h4v2h-4v2h4v2H9V7h6v2z" + d: "M21 3H3v18h18V3zm-6 6h-4v2h4v2h-4v2h4v2H9V7h6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Explore.js b/icons/es5/Explore.js index 280eff2ef1..688fe14dc2 100644 --- a/icons/es5/Explore.js +++ b/icons/es5/Explore.js @@ -7,9 +7,11 @@ function SvgExplore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z" + d: "M12 10.9c-.61 0-1.1.49-1.1 1.1s.49 1.1 1.1 1.1c.61 0 1.1-.49 1.1-1.1s-.49-1.1-1.1-1.1zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm2.19 12.19L6 18l3.81-8.19L18 6l-3.81 8.19z", + fill: "currentColor" })); } diff --git a/icons/es5/ExploreOff.js b/icons/es5/ExploreOff.js index 2e05064355..a598d3264e 100644 --- a/icons/es5/ExploreOff.js +++ b/icons/es5/ExploreOff.js @@ -7,9 +7,11 @@ function SvgExploreOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 6l-2.91 6.26 5.25 5.25A9.91 9.91 0 0022 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l5.25 5.25L18 6zM2.1 4.93l1.56 1.56A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm6.81 6.81l3.35 3.35L6 18l2.91-6.26z" + d: "M18 6l-2.91 6.26 5.25 5.25A9.91 9.91 0 0022 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l5.25 5.25L18 6zM2.1 4.93l1.56 1.56A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l1.56 1.56 1.41-1.41L3.51 3.51 2.1 4.93zm6.81 6.81l3.35 3.35L6 18l2.91-6.26z", + fill: "currentColor" })); } diff --git a/icons/es5/Exposure.js b/icons/es5/Exposure.js index 9e6b175c96..6ba15584ec 100644 --- a/icons/es5/Exposure.js +++ b/icons/es5/Exposure.js @@ -7,9 +7,11 @@ function SvgExposure(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16h2z" + d: "M21 3H3v18h18V3zM6 7h5v1.5H6V7zm13 12H5L19 5v14zm-4.5-3v2H16v-2h2v-1.5h-2v-2h-1.5v2h-2V16h2z", + fill: "currentColor" })); } diff --git a/icons/es5/ExposureNeg1.js b/icons/es5/ExposureNeg1.js index 7ba869105f..30013648e5 100644 --- a/icons/es5/ExposureNeg1.js +++ b/icons/es5/ExposureNeg1.js @@ -7,9 +7,11 @@ function SvgExposureNeg1(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z" + d: "M4 11v2h8v-2H4zm15 7h-2V7.38L14 8.4V6.7L18.7 5h.3v13z", + fill: "currentColor" })); } diff --git a/icons/es5/ExposureNeg2.js b/icons/es5/ExposureNeg2.js index e89667aa2f..b64068bf01 100644 --- a/icons/es5/ExposureNeg2.js +++ b/icons/es5/ExposureNeg2.js @@ -7,9 +7,11 @@ function SvgExposureNeg2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71A5.72 5.72 0 0016.47 5c-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z" + d: "M15.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17.19-.79.19-1.18c0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71A5.72 5.72 0 0016.47 5c-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H21v-1.71h-5.95zM2 11v2h8v-2H2z", + fill: "currentColor" })); } diff --git a/icons/es5/ExposurePlus1.js b/icons/es5/ExposurePlus1.js index f3588ac4f5..bdd3ee9d73 100644 --- a/icons/es5/ExposurePlus1.js +++ b/icons/es5/ExposurePlus1.js @@ -7,9 +7,11 @@ function SvgExposurePlus1(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z" + d: "M10 7H8v4H4v2h4v4h2v-4h4v-2h-4V7zm10 11h-2V7.38L15 8.4V6.7L19.7 5h.3v13z", + fill: "currentColor" })); } diff --git a/icons/es5/ExposurePlus2.js b/icons/es5/ExposurePlus2.js index ebd1e76a87..37b50bf120 100644 --- a/icons/es5/ExposurePlus2.js +++ b/icons/es5/ExposurePlus2.js @@ -7,9 +7,11 @@ function SvgExposurePlus2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71A5.72 5.72 0 0017.47 5c-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z" + d: "M16.05 16.29l2.86-3.07c.38-.39.72-.79 1.04-1.18.32-.39.59-.78.82-1.17s.41-.78.54-1.17c.13-.39.19-.79.19-1.18 0-.53-.09-1.02-.27-1.46s-.44-.81-.78-1.11c-.34-.31-.77-.54-1.26-.71A5.72 5.72 0 0017.47 5c-.69 0-1.31.11-1.85.32-.54.21-1 .51-1.36.88-.37.37-.65.8-.84 1.3-.18.47-.27.97-.28 1.5h2.14c.01-.31.05-.6.13-.87.09-.29.23-.54.4-.75.18-.21.41-.37.68-.49s.6-.18.96-.18c.31 0 .58.05.81.15s.43.25.59.43.28.4.37.65c.08.25.13.52.13.81 0 .22-.03.43-.08.65-.06.22-.15.45-.29.7-.14.25-.32.53-.56.83-.23.3-.52.65-.88 1.03l-4.17 4.55V18H22v-1.71h-5.95zM8 7H6v4H2v2h4v4h2v-4h4v-2H8V7z", + fill: "currentColor" })); } diff --git a/icons/es5/ExposureZero.js b/icons/es5/ExposureZero.js index 4721343181..ded4f87c38 100644 --- a/icons/es5/ExposureZero.js +++ b/icons/es5/ExposureZero.js @@ -7,9 +7,11 @@ function SvgExposureZero(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z" + d: "M16.14 12.5c0 1-.1 1.85-.3 2.55s-.48 1.27-.83 1.7c-.36.44-.79.75-1.3.95s-1.07.3-1.7.3c-.62 0-1.18-.1-1.69-.3-.51-.2-.95-.51-1.31-.95s-.65-1.01-.85-1.7c-.2-.7-.3-1.55-.3-2.55v-2.04c0-1 .1-1.85.3-2.55.2-.7.48-1.26.84-1.69.36-.43.8-.74 1.31-.93C10.81 5.1 11.38 5 12 5c.63 0 1.19.1 1.7.29.51.19.95.5 1.31.93.36.43.64.99.84 1.69.2.7.3 1.54.3 2.55v2.04h-.01zm-2.11-2.36c0-.64-.05-1.18-.13-1.62-.09-.44-.22-.79-.4-1.06-.17-.27-.39-.46-.64-.58-.25-.13-.54-.19-.86-.19s-.61.06-.86.18-.47.31-.64.58-.31.62-.4 1.06-.13.98-.13 1.62v2.67c0 .64.05 1.18.14 1.62.09.45.23.81.4 1.09s.39.48.64.61.54.19.87.19.62-.06.87-.19.46-.33.63-.61.3-.64.39-1.09.13-.99.13-1.62v-2.66h-.01z", + fill: "currentColor" })); } diff --git a/icons/es5/Extension.js b/icons/es5/Extension.js index b349454d63..4d53a20b7e 100644 --- a/icons/es5/Extension.js +++ b/icons/es5/Extension.js @@ -7,9 +7,11 @@ function SvgExtension(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.36 11H19V5h-6V3.64c0-1.31-.94-2.5-2.24-2.63A2.5 2.5 0 008 3.5V5H2.01v5.8H3.4c1.31 0 2.5.88 2.75 2.16.33 1.72-.98 3.24-2.65 3.24H2V22h5.8v-1.4c0-1.31.88-2.5 2.16-2.75 1.72-.33 3.24.98 3.24 2.65V22H19v-6h1.5a2.5 2.5 0 002.49-2.76c-.13-1.3-1.33-2.24-2.63-2.24z" + d: "M20.36 11H19V5h-6V3.64c0-1.31-.94-2.5-2.24-2.63A2.5 2.5 0 008 3.5V5H2.01v5.8H3.4c1.31 0 2.5.88 2.75 2.16.33 1.72-.98 3.24-2.65 3.24H2V22h5.8v-1.4c0-1.31.88-2.5 2.16-2.75 1.72-.33 3.24.98 3.24 2.65V22H19v-6h1.5a2.5 2.5 0 002.49-2.76c-.13-1.3-1.33-2.24-2.63-2.24z", + fill: "currentColor" })); } diff --git a/icons/es5/ExtensionOff.js b/icons/es5/ExtensionOff.js index e1e9c510fa..851a720e1d 100644 --- a/icons/es5/ExtensionOff.js +++ b/icons/es5/ExtensionOff.js @@ -7,9 +7,11 @@ function SvgExtensionOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.78 22.61l-1.63-1.63c-.05 0-.1.02-.15.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H3v-5.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm.22-5.44V15a2.5 2.5 0 000-5V4h-6a2.5 2.5 0 00-5 0H6.83L20 17.17z" + d: "M19.78 22.61l-1.63-1.63c-.05 0-.1.02-.15.02h-3.8c0-2.71-2.16-3-2.7-3s-2.7.29-2.7 3H3v-5.8c2.71 0 3-2.16 3-2.7s-.3-2.7-2.99-2.7V6c0-.05.02-.09.02-.14L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zm.22-5.44V15a2.5 2.5 0 000-5V4h-6a2.5 2.5 0 00-5 0H6.83L20 17.17z", + fill: "currentColor" })); } diff --git a/icons/es5/Face.js b/icons/es5/Face.js index 003ec80046..efec4def1e 100644 --- a/icons/es5/Face.js +++ b/icons/es5/Face.js @@ -7,9 +7,11 @@ function SvgFace(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 11.75a1.25 1.25 0 100 2.5 1.25 1.25 0 000-2.5zm6 0a1.25 1.25 0 100 2.5 1.25 1.25 0 000-2.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37a9.974 9.974 0 0010.41 3.97c.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z" + d: "M9 11.75a1.25 1.25 0 100 2.5 1.25 1.25 0 000-2.5zm6 0a1.25 1.25 0 100 2.5 1.25 1.25 0 000-2.5zM12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.29.02-.58.05-.86 2.36-1.05 4.23-2.98 5.21-5.37a9.974 9.974 0 0010.41 3.97c.21.71.33 1.47.33 2.26 0 4.41-3.59 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/Face2.js b/icons/es5/Face2.js index c60cdfbbee..cbe60c732c 100644 --- a/icons/es5/Face2.js +++ b/icons/es5/Face2.js @@ -7,9 +7,11 @@ function SvgFace2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.97 13.52v-.04C23.21 12.38 24 10.78 24 9c0-3.31-2.69-6-6-6-.26 0-.52.02-.78.06a5.98 5.98 0 00-10.44 0C6.52 3.02 6.26 3 6 3 2.69 3 0 5.69 0 9c0 1.78.79 3.38 2.02 4.48v.04A6.008 6.008 0 000 18c0 3.31 2.69 6 6 6 1.39 0 2.67-.48 3.69-1.28.74.18 1.51.28 2.31.28s1.57-.1 2.31-.28c1.02.8 2.3 1.28 3.69 1.28 3.31 0 6-2.69 6-6 0-1.78-.79-3.38-2.03-4.48zM12 21c-4.41 0-8-3.59-8-8 0-3.72 2.56-6.85 6-7.74v.05c0 3.34 2.72 6.06 6.06 6.06 1.26 0 2.45-.39 3.45-1.09.31.86.49 1.77.49 2.72 0 4.41-3.59 8-8 8z" + d: "M21.97 13.52v-.04C23.21 12.38 24 10.78 24 9c0-3.31-2.69-6-6-6-.26 0-.52.02-.78.06a5.98 5.98 0 00-10.44 0C6.52 3.02 6.26 3 6 3 2.69 3 0 5.69 0 9c0 1.78.79 3.38 2.02 4.48v.04A6.008 6.008 0 000 18c0 3.31 2.69 6 6 6 1.39 0 2.67-.48 3.69-1.28.74.18 1.51.28 2.31.28s1.57-.1 2.31-.28c1.02.8 2.3 1.28 3.69 1.28 3.31 0 6-2.69 6-6 0-1.78-.79-3.38-2.03-4.48zM12 21c-4.41 0-8-3.59-8-8 0-3.72 2.56-6.85 6-7.74v.05c0 3.34 2.72 6.06 6.06 6.06 1.26 0 2.45-.39 3.45-1.09.31.86.49 1.77.49 2.72 0 4.41-3.59 8-8 8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 14, diff --git a/icons/es5/Face3.js b/icons/es5/Face3.js index eebd8fb10d..96475bf968 100644 --- a/icons/es5/Face3.js +++ b/icons/es5/Face3.js @@ -7,7 +7,8 @@ function SvgFace3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 13, @@ -17,7 +18,8 @@ function SvgFace3(props) { cy: 13, r: 1.25 }), /*#__PURE__*/React.createElement("path", { - d: "M22.91 11.96c-.54-5.93-5.75-10.41-11.8-9.92-5.38.42-9.56 4.9-10.05 10.28L0 24h24l-1.09-12.04zM4.54 9.13c.87.55 1.89.87 2.96.87 1.86 0 3.5-.93 4.5-2.35C13 9.07 14.64 10 16.5 10c1.07 0 2.09-.32 2.96-.87.34.89.54 1.86.54 2.87 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-1.01.2-1.98.54-2.87z" + d: "M22.91 11.96c-.54-5.93-5.75-10.41-11.8-9.92-5.38.42-9.56 4.9-10.05 10.28L0 24h24l-1.09-12.04zM4.54 9.13c.87.55 1.89.87 2.96.87 1.86 0 3.5-.93 4.5-2.35C13 9.07 14.64 10 16.5 10c1.07 0 2.09-.32 2.96-.87.34.89.54 1.86.54 2.87 0 4.41-3.59 8-8 8s-8-3.59-8-8c0-1.01.2-1.98.54-2.87z", + fill: "currentColor" })); } diff --git a/icons/es5/Face4.js b/icons/es5/Face4.js index 448ad85527..ded46cc0d1 100644 --- a/icons/es5/Face4.js +++ b/icons/es5/Face4.js @@ -7,9 +7,11 @@ function SvgFace4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-.96 0-1.88.14-2.75.39A4.986 4.986 0 005 0C2.24 0 0 2.24 0 5c0 1.8.96 3.37 2.39 4.25C2.14 10.12 2 11.04 2 12c0 5.52 4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.05.01-.1.01-.15 2.6-.98 4.68-2.99 5.74-5.55a9.942 9.942 0 009.92 3.46c.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z" + d: "M12 2c-.96 0-1.88.14-2.75.39A4.986 4.986 0 005 0C2.24 0 0 2.24 0 5c0 1.8.96 3.37 2.39 4.25C2.14 10.12 2 11.04 2 12c0 5.52 4.48 10 10 10s10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-.05.01-.1.01-.15 2.6-.98 4.68-2.99 5.74-5.55a9.942 9.942 0 009.92 3.46c.21.71.33 1.46.33 2.24 0 4.41-3.59 8-8 8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 13, diff --git a/icons/es5/Face5.js b/icons/es5/Face5.js index 1875f3f27d..250361f437 100644 --- a/icons/es5/Face5.js +++ b/icons/es5/Face5.js @@ -7,9 +7,11 @@ function SvgFace5(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-1.12.23-2.18.65-3.15a.495.495 0 00.85-.35c0-.25-.19-.45-.43-.49.15-.26.32-.51.49-.75-.03.08-.06.15-.06.24 0 .28.22.5.5.5s.5-.22.5-.5S6.28 7 6 7c-.13 0-.25.05-.34.13.52-.68 1.15-1.28 1.86-1.76A.495.495 0 008 6a.495.495 0 00.1-.98c.16-.09.32-.17.49-.25.09.14.24.23.41.23.28 0 .5-.22.5-.5 0-.03-.01-.06-.02-.09.39-.13.79-.23 1.21-.3-.11.1-.19.23-.19.39 0 .28.22.5.5.5s.5-.22.5-.5a.51.51 0 00-.3-.46c.26-.03.53-.04.8-.04s.54.01.8.04c-.18.08-.3.25-.3.46 0 .28.22.5.5.5s.5-.22.5-.5c0-.16-.08-.29-.19-.38.41.07.82.17 1.21.3-.01.02-.02.05-.02.08 0 .28.22.5.5.5.17 0 .32-.09.41-.23.17.08.33.16.49.25A.495.495 0 0016 6c.28 0 .5-.22.5-.5 0-.05-.01-.09-.03-.13.71.48 1.34 1.08 1.86 1.76a.495.495 0 00-.83.37c0 .28.22.5.5.5s.5-.22.5-.5c0-.09-.03-.16-.07-.23.18.24.34.49.49.75-.23.03-.42.23-.42.48a.495.495 0 00.85.35c.42.97.65 2.03.65 3.15 0 4.41-3.59 8-8 8z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8 0-1.12.23-2.18.65-3.15a.495.495 0 00.85-.35c0-.25-.19-.45-.43-.49.15-.26.32-.51.49-.75-.03.08-.06.15-.06.24 0 .28.22.5.5.5s.5-.22.5-.5S6.28 7 6 7c-.13 0-.25.05-.34.13.52-.68 1.15-1.28 1.86-1.76A.495.495 0 008 6a.495.495 0 00.1-.98c.16-.09.32-.17.49-.25.09.14.24.23.41.23.28 0 .5-.22.5-.5 0-.03-.01-.06-.02-.09.39-.13.79-.23 1.21-.3-.11.1-.19.23-.19.39 0 .28.22.5.5.5s.5-.22.5-.5a.51.51 0 00-.3-.46c.26-.03.53-.04.8-.04s.54.01.8.04c-.18.08-.3.25-.3.46 0 .28.22.5.5.5s.5-.22.5-.5c0-.16-.08-.29-.19-.38.41.07.82.17 1.21.3-.01.02-.02.05-.02.08 0 .28.22.5.5.5.17 0 .32-.09.41-.23.17.08.33.16.49.25A.495.495 0 0016 6c.28 0 .5-.22.5-.5 0-.05-.01-.09-.03-.13.71.48 1.34 1.08 1.86 1.76a.495.495 0 00-.83.37c0 .28.22.5.5.5s.5-.22.5-.5c0-.09-.03-.16-.07-.23.18.24.34.49.49.75-.23.03-.42.23-.42.48a.495.495 0 00.85.35c.42.97.65 2.03.65 3.15 0 4.41-3.59 8-8 8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 13, diff --git a/icons/es5/Face6.js b/icons/es5/Face6.js index 19a4fd071f..436bec66ea 100644 --- a/icons/es5/Face6.js +++ b/icons/es5/Face6.js @@ -7,9 +7,11 @@ function SvgFace6(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8h2.62l2-4h6.76l2 4H20c0 4.41-3.59 8-8 8z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8h2.62l2-4h6.76l2 4H20c0 4.41-3.59 8-8 8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 13, diff --git a/icons/es5/FaceRetouchingNatural.js b/icons/es5/FaceRetouchingNatural.js index 6c90e88314..04e3fe8b57 100644 --- a/icons/es5/FaceRetouchingNatural.js +++ b/icons/es5/FaceRetouchingNatural.js @@ -7,19 +7,22 @@ function SvgFaceRetouchingNatural(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 13, r: 1.25 }), /*#__PURE__*/React.createElement("path", { - d: "M19.85 10.59C20.79 15.4 17.01 20 12 20c-4.41 0-8-3.59-8-8 0-.39 3.87-1.12 5.74-5.69 3.42 4.19 8.07 3.73 9.09 3.59l-1.48-3.25-4.72-2.15 3.5-1.59C9.51-.14 2 4.77 2 12c0 5.52 4.48 10 10 10 7.21 0 12.12-7.45 9.1-14.13l-1.25 2.72z" + d: "M19.85 10.59C20.79 15.4 17.01 20 12 20c-4.41 0-8-3.59-8-8 0-.39 3.87-1.12 5.74-5.69 3.42 4.19 8.07 3.73 9.09 3.59l-1.48-3.25-4.72-2.15 3.5-1.59C9.51-.14 2 4.77 2 12c0 5.52 4.48 10 10 10 7.21 0 12.12-7.45 9.1-14.13l-1.25 2.72z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 15, cy: 13, r: 1.25 }), /*#__PURE__*/React.createElement("path", { - d: "M20.6 5.6L19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5l-2.4 1.1z" + d: "M20.6 5.6L19.5 8l-1.1-2.4L16 4.5l2.4-1.1L19.5 1l1.1 2.4L23 4.5l-2.4 1.1z", + fill: "currentColor" })); } diff --git a/icons/es5/FaceRetouchingOff.js b/icons/es5/FaceRetouchingOff.js index 8a8e6f03df..38eb8ac938 100644 --- a/icons/es5/FaceRetouchingOff.js +++ b/icons/es5/FaceRetouchingOff.js @@ -7,13 +7,15 @@ function SvgFaceRetouchingOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 13, r: 1.25 }), /*#__PURE__*/React.createElement("path", { - d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49A9.981 9.981 0 0022 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zM1.89 3.72l2.19 2.19A9.958 9.958 0 002 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77A7.91 7.91 0 0112 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14a9.946 9.946 0 003.64-2.39l9.02 9.02z" + d: "M17.5 10c.75 0 1.47-.09 2.17-.24.21.71.33 1.46.33 2.24 0 1.22-.28 2.37-.77 3.4l1.49 1.49A9.981 9.981 0 0022 12c0-5.52-4.48-10-10-10-1.78 0-3.44.47-4.89 1.28l5.33 5.33c1.49.88 3.21 1.39 5.06 1.39zM1.89 3.72l2.19 2.19A9.958 9.958 0 002 12c0 5.52 4.48 10 10 10 2.29 0 4.4-.78 6.09-2.08l2.19 2.19 1.41-1.41L3.31 2.31 1.89 3.72zm14.77 14.77A7.91 7.91 0 0112 20c-4.41 0-8-3.59-8-8 0-.05.01-.1 0-.14a9.946 9.946 0 003.64-2.39l9.02 9.02z", + fill: "currentColor" })); } diff --git a/icons/es5/Facebook.js b/icons/es5/Facebook.js index c59c098991..0d9699d76b 100644 --- a/icons/es5/Facebook.js +++ b/icons/es5/Facebook.js @@ -7,9 +7,11 @@ function SvgFacebook(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z" + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z", + fill: "currentColor" })); } diff --git a/icons/es5/FacebookCircle.js b/icons/es5/FacebookCircle.js index 9f99e773fe..614a07f44c 100644 --- a/icons/es5/FacebookCircle.js +++ b/icons/es5/FacebookCircle.js @@ -11,7 +11,7 @@ function SvgFacebookCircle(props) { xmlns: "http://www.w3.org/2000/svg" }, props), /*#__PURE__*/React.createElement("path", { d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 4.84 3.44 8.87 8 9.8V15H8v-3h2V9.5C10 7.57 11.57 6 13.5 6H16v3h-2c-.55 0-1 .45-1 1v2h3v3h-3v6.95c5.05-.5 9-4.76 9-9.95z", - fill: "#00262B" + fill: "currentColor" })); } diff --git a/icons/es5/FactCheck.js b/icons/es5/FactCheck.js index 99c9fb0b52..0a797184df 100644 --- a/icons/es5/FactCheck.js +++ b/icons/es5/FactCheck.js @@ -7,10 +7,12 @@ function SvgFactCheck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M2 3v18h20V3H2zm8 14H5v-2h5v2zm0-4H5v-2h5v2zm0-4H5V7h5v2zm4.82 6L12 12.16l1.41-1.41 1.41 1.42L17.99 9l1.42 1.42L14.82 15z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/Factory.js b/icons/es5/Factory.js index dda20a3ed5..3fc5af7c62 100644 --- a/icons/es5/Factory.js +++ b/icons/es5/Factory.js @@ -7,9 +7,11 @@ function SvgFactory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 10v12H2V10l7-3v2l5-2v3h8zm-4.8-1.5L18 2h3l.8 6.5h-4.6zM11 18h2v-4h-2v4zm-4 0h2v-4H7v4zm10-4h-2v4h2v-4z" + d: "M22 10v12H2V10l7-3v2l5-2v3h8zm-4.8-1.5L18 2h3l.8 6.5h-4.6zM11 18h2v-4h-2v4zm-4 0h2v-4H7v4zm10-4h-2v4h2v-4z", + fill: "currentColor" })); } diff --git a/icons/es5/FamilyRestroom.js b/icons/es5/FamilyRestroom.js index 48630024f3..ad8a2606d8 100644 --- a/icons/es5/FamilyRestroom.js +++ b/icons/es5/FamilyRestroom.js @@ -7,9 +7,11 @@ function SvgFamilyRestroom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-3-9h-3l-1.17 3.5H17V22h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V7H2v8h1.5v7h4zm6.5 0v-4h1v-5.5h-5V18h1v4h3z" + d: "M16 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm4 18v-6h2.5l-3-9h-3l-1.17 3.5H17V22h3zm-7.5-10.5c.83 0 1.5-.67 1.5-1.5s-.67-1.5-1.5-1.5S11 9.17 11 10s.67 1.5 1.5 1.5zM5.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm2 16v-7H9V7H2v8h1.5v7h4zm6.5 0v-4h1v-5.5h-5V18h1v4h3z", + fill: "currentColor" })); } diff --git a/icons/es5/FastForward.js b/icons/es5/FastForward.js index 1dff5b483f..c23bed453d 100644 --- a/icons/es5/FastForward.js +++ b/icons/es5/FastForward.js @@ -7,9 +7,11 @@ function SvgFastForward(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z" + d: "M4 18l8.5-6L4 6v12zm9-12v12l8.5-6L13 6z", + fill: "currentColor" })); } diff --git a/icons/es5/FastRewind.js b/icons/es5/FastRewind.js index d8b00c1b7f..50f0ad7494 100644 --- a/icons/es5/FastRewind.js +++ b/icons/es5/FastRewind.js @@ -7,9 +7,11 @@ function SvgFastRewind(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 18V6l-8.5 6 8.5 6zm.5-6l8.5 6V6l-8.5 6z" + d: "M11 18V6l-8.5 6 8.5 6zm.5-6l8.5 6V6l-8.5 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Fastfood.js b/icons/es5/Fastfood.js index 1367834ecc..00b54b5409 100644 --- a/icons/es5/Fastfood.js +++ b/icons/es5/Fastfood.js @@ -7,9 +7,11 @@ function SvgFastfood(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 5V1h-2v4h-5l.23 2.31C14.9 8.16 18 10.77 18 15l.02 8h3.18L23 5h-5zM1 21h15v2H1zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM1 17h15v2H1z" + d: "M18 5V1h-2v4h-5l.23 2.31C14.9 8.16 18 10.77 18 15l.02 8h3.18L23 5h-5zM1 21h15v2H1zM8.5 8.99C4.75 8.99 1 11 1 15h15c0-4-3.75-6.01-7.5-6.01zM1 17h15v2H1z", + fill: "currentColor" })); } diff --git a/icons/es5/Fax.js b/icons/es5/Fax.js index cf0756e539..f8752e00fd 100644 --- a/icons/es5/Fax.js +++ b/icons/es5/Fax.js @@ -7,9 +7,11 @@ function SvgFax(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9h-4V4H8v16h14V9zM10 6h6v3h-6V6zm4 11h-4v-5h4v5zm2 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM2 8h5v13H2z" + d: "M22 9h-4V4H8v16h14V9zM10 6h6v3h-6V6zm4 11h-4v-5h4v5zm2 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm3 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zM2 8h5v13H2z", + fill: "currentColor" })); } diff --git a/icons/es5/FeaturedPlayList.js b/icons/es5/FeaturedPlayList.js index 1e32acf460..7c8666a2a6 100644 --- a/icons/es5/FeaturedPlayList.js +++ b/icons/es5/FeaturedPlayList.js @@ -7,9 +7,11 @@ function SvgFeaturedPlayList(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zm-11 8H3V9h9v2zm0-4H3V5h9v2z" + d: "M23 3H1v18h22V3zm-11 8H3V9h9v2zm0-4H3V5h9v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FeaturedVideo.js b/icons/es5/FeaturedVideo.js index 3c4d6ca075..a07e84f03e 100644 --- a/icons/es5/FeaturedVideo.js +++ b/icons/es5/FeaturedVideo.js @@ -7,9 +7,11 @@ function SvgFeaturedVideo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zm-11 9H3V5h9v7z" + d: "M23 3H1v18h22V3zm-11 9H3V5h9v7z", + fill: "currentColor" })); } diff --git a/icons/es5/Feed.js b/icons/es5/Feed.js index 2f1a69d655..144bd254ed 100644 --- a/icons/es5/Feed.js +++ b/icons/es5/Feed.js @@ -7,9 +7,11 @@ function SvgFeed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 3H3v18h18V8l-5-5zM7 7h5v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2zm-2-4V5l4 4h-4z" + d: "M16 3H3v18h18V8l-5-5zM7 7h5v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2zm-2-4V5l4 4h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Feedback.js b/icons/es5/Feedback.js index 5899ae4ba0..4c26780dd2 100644 --- a/icons/es5/Feedback.js +++ b/icons/es5/Feedback.js @@ -7,9 +7,11 @@ function SvgFeedback(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2.01L2 22l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z" + d: "M22 2H2.01L2 22l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/FeedbackOutline.js b/icons/es5/FeedbackOutline.js new file mode 100644 index 0000000000..abf9f4c1e1 --- /dev/null +++ b/icons/es5/FeedbackOutline.js @@ -0,0 +1,15 @@ +function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } +import * as React from "react"; +function SvgFeedbackOutline(props) { + return /*#__PURE__*/React.createElement("svg", _extends({ + width: 24, + height: 24, + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg" + }, props), /*#__PURE__*/React.createElement("path", { + d: "M22 2H2.01v2L2 22l4-4h16V4 2zm-2 14H5.17l-.59.59-.58.58V4h16v12zm-9-4h2v2h-2v-2zm0-6h2v4h-2V6z", + fill: "currentColor" + })); +} +export default SvgFeedbackOutline; \ No newline at end of file diff --git a/icons/es5/Female.js b/icons/es5/Female.js index 737560b426..8e90998e0a 100644 --- a/icons/es5/Female.js +++ b/icons/es5/Female.js @@ -7,9 +7,11 @@ function SvgFemale(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z" + d: "M17.5 9.5C17.5 6.46 15.04 4 12 4S6.5 6.46 6.5 9.5c0 2.7 1.94 4.93 4.5 5.4V17H9v2h2v2h2v-2h2v-2h-2v-2.1c2.56-.47 4.5-2.7 4.5-5.4zm-9 0C8.5 7.57 10.07 6 12 6s3.5 1.57 3.5 3.5S13.93 13 12 13s-3.5-1.57-3.5-3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Fence.js b/icons/es5/Fence.js index 27f05953c8..c69ea4b8ae 100644 --- a/icons/es5/Fence.js +++ b/icons/es5/Fence.js @@ -7,9 +7,11 @@ function SvgFence(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17l1 1V10h-2V7.83l.41-.41.59-.59zm-4 0l.59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z" + d: "M21 12v-2h-2V7l-3-3-2 2-2-2-2 2-2-2-3 3v3H3v2h2v2H3v2h2v4h14v-4h2v-2h-2v-2h2zm-5-5.17l1 1V10h-2V7.83l.41-.41.59-.59zm-4 0l.59.59.41.41V10h-2V7.83l.41-.41.59-.59zM11 14v-2h2v2h-2zm2 2v2h-2v-2h2zM7 7.83l1-1 .59.59.41.41V10H7V7.83zM7 12h2v2H7v-2zm0 4h2v2H7v-2zm10 2h-2v-2h2v2zm0-4h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Festival.js b/icons/es5/Festival.js index 0a2f415ec5..d2414b0316 100644 --- a/icons/es5/Festival.js +++ b/icons/es5/Festival.js @@ -7,9 +7,11 @@ function SvgFestival(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 11V9c-6-2-11-7-11-7S7 7 1 9v2c0 1.49.93 2.75 2.24 3.26C3.2 16.76 2.92 19.69 2 22h20c-.92-2.31-1.2-5.24-1.24-7.74A3.496 3.496 0 0023 11zM12 4.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM13 11h3c0 .83-.67 1.5-1.5 1.5S13 11.83 13 11zm-3.5 1.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zM6 11c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11h3zm-1.34 9c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.1 1.87-.26 4-.52 5.93H4.66zm4.69 0c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm7.32 0c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z" + d: "M23 11V9c-6-2-11-7-11-7S7 7 1 9v2c0 1.49.93 2.75 2.24 3.26C3.2 16.76 2.92 19.69 2 22h20c-.92-2.31-1.2-5.24-1.24-7.74A3.496 3.496 0 0023 11zM12 4.71c1.33 1.14 3.49 2.84 6.11 4.29H5.89C8.51 7.55 10.67 5.85 12 4.71zM13 11h3c0 .83-.67 1.5-1.5 1.5S13 11.83 13 11zm-3.5 1.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zM6 11c0 .83-.67 1.5-1.5 1.5S3 11.83 3 11h3zm-1.34 9c.39-1.86.54-3.82.57-5.58.68-.15 1.29-.49 1.76-.98.25.25.54.45.85.62-.1 1.87-.26 4-.52 5.93H4.66zm4.69 0c.24-1.83.39-3.78.48-5.53.84-.08 1.61-.45 2.17-1.02.56.57 1.32.94 2.17 1.02.1 1.75.24 3.7.48 5.53h-5.3zm7.32 0c-.27-1.94-.43-4.07-.52-5.93.31-.17.61-.37.85-.62.47.48 1.08.83 1.76.98.03 1.76.18 3.72.57 5.58h-2.66zm2.83-7.5c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/FiberDvr.js b/icons/es5/FiberDvr.js index 3710a30f92..018816fa4f 100644 --- a/icons/es5/FiberDvr.js +++ b/icons/es5/FiberDvr.js @@ -7,9 +7,11 @@ function SvgFiberDvr(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.5 10.5h2v1h-2v-1zm-13 0h2v3h-2v-3zM23 3H1v18h22V3zM8 13.5c0 .85-.65 1.5-1.5 1.5H3V9h3.5c.85 0 1.5.65 1.5 1.5v3zm4.62 1.5h-1.5L9.37 9h1.5l1 3.43 1-3.43h1.5l-1.75 6zM21 12.9h-.9L21 15h-1.5l-.85-2H17.5v2H16V9h5v3.9z" + d: "M17.5 10.5h2v1h-2v-1zm-13 0h2v3h-2v-3zM23 3H1v18h22V3zM8 13.5c0 .85-.65 1.5-1.5 1.5H3V9h3.5c.85 0 1.5.65 1.5 1.5v3zm4.62 1.5h-1.5L9.37 9h1.5l1 3.43 1-3.43h1.5l-1.75 6zM21 12.9h-.9L21 15h-1.5l-.85-2H17.5v2H16V9h5v3.9z", + fill: "currentColor" })); } diff --git a/icons/es5/FiberManualRecord.js b/icons/es5/FiberManualRecord.js index 4f9887852e..0b3d4f5762 100644 --- a/icons/es5/FiberManualRecord.js +++ b/icons/es5/FiberManualRecord.js @@ -7,7 +7,8 @@ function SvgFiberManualRecord(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, diff --git a/icons/es5/FiberNew.js b/icons/es5/FiberNew.js index 76e7410c26..685d9e2dde 100644 --- a/icons/es5/FiberNew.js +++ b/icons/es5/FiberNew.js @@ -7,9 +7,11 @@ function SvgFiberNew(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM8.5 15H7.3l-2.55-3.5V15H3.5V9h1.25l2.5 3.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7 4.74h-6V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v6z" + d: "M22 4H2v16h20V4zM8.5 15H7.3l-2.55-3.5V15H3.5V9h1.25l2.5 3.5V9H8.5v6zm5-4.74H11v1.12h2.5v1.26H11v1.11h2.5V15h-4V9h4v1.26zm7 4.74h-6V9h1.25v4.51h1.13V9.99h1.25v3.51h1.12V9h1.25v6z", + fill: "currentColor" })); } diff --git a/icons/es5/FiberPin.js b/icons/es5/FiberPin.js index 6212863dba..6896b05e06 100644 --- a/icons/es5/FiberPin.js +++ b/icons/es5/FiberPin.js @@ -7,9 +7,11 @@ function SvgFiberPin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.5 10.5h2v1h-2v-1zM22 4H2v16h20V4zM9 13H5.5v2H4V9h5v4zm3.5 2H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z" + d: "M5.5 10.5h2v1h-2v-1zM22 4H2v16h20V4zM9 13H5.5v2H4V9h5v4zm3.5 2H11V9h1.5v6zm7.5 0h-1.2l-2.55-3.5V15H15V9h1.25l2.5 3.5V9H20v6z", + fill: "currentColor" })); } diff --git a/icons/es5/FiberSmartRecord.js b/icons/es5/FiberSmartRecord.js index f87fbb7661..d91424f50f 100644 --- a/icons/es5/FiberSmartRecord.js +++ b/icons/es5/FiberSmartRecord.js @@ -7,13 +7,15 @@ function SvgFiberSmartRecord(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 12, r: 8 }), /*#__PURE__*/React.createElement("path", { - d: "M17 4.26v2.09a5.99 5.99 0 010 11.3v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z" + d: "M17 4.26v2.09a5.99 5.99 0 010 11.3v2.09c3.45-.89 6-4.01 6-7.74s-2.55-6.85-6-7.74z", + fill: "currentColor" })); } diff --git a/icons/es5/FileCopy.js b/icons/es5/FileCopy.js index 05dfa26868..b2c0656303 100644 --- a/icons/es5/FileCopy.js +++ b/icons/es5/FileCopy.js @@ -7,9 +7,11 @@ function SvgFileCopy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 1H2v16h2V3h12V1zm-1 4l6 6v12H6V5h9zm-1 7h5.5L14 6.5V12z" + d: "M16 1H2v16h2V3h12V1zm-1 4l6 6v12H6V5h9zm-1 7h5.5L14 6.5V12z", + fill: "currentColor" })); } diff --git a/icons/es5/FileDownload.js b/icons/es5/FileDownload.js index d3840780f5..dd22b0a8a3 100644 --- a/icons/es5/FileDownload.js +++ b/icons/es5/FileDownload.js @@ -7,9 +7,11 @@ function SvgFileDownload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" + d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z", + fill: "currentColor" })); } diff --git a/icons/es5/FileDownloadDone.js b/icons/es5/FileDownloadDone.js index f3c2ea4cdf..5c733b1cef 100644 --- a/icons/es5/FileDownloadDone.js +++ b/icons/es5/FileDownloadDone.js @@ -7,9 +7,11 @@ function SvgFileDownloadDone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.13 5.41L18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z" + d: "M20.13 5.41L18.72 4l-9.19 9.19-4.25-4.24-1.41 1.41 5.66 5.66zM5 18h14v2H5z", + fill: "currentColor" })); } diff --git a/icons/es5/FileDownloadOff.js b/icons/es5/FileDownloadOff.js index 8d79423c24..d4fea7e152 100644 --- a/icons/es5/FileDownloadOff.js +++ b/icons/es5/FileDownloadOff.js @@ -7,9 +7,11 @@ function SvgFileDownloadOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 6.17V3h6v6h4l-3.59 3.59L9 6.17zm12.19 15.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z" + d: "M9 6.17V3h6v6h4l-3.59 3.59L9 6.17zm12.19 15.02L2.81 2.81 1.39 4.22 6.17 9H5l7 7 .59-.59L15.17 18H5v2h12.17l2.61 2.61 1.41-1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/FileOpen.js b/icons/es5/FileOpen.js index a1f1aeca1b..d984befc1f 100644 --- a/icons/es5/FileOpen.js +++ b/icons/es5/FileOpen.js @@ -7,9 +7,11 @@ function SvgFileOpen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h11v-8h5V8l-6-6zm-1 7V3.5L18.5 9H13zm4 12.66V16h5.66v2h-2.24l2.95 2.95-1.41 1.41L19 19.41v2.24h-2z" + d: "M14 2H4v20h11v-8h5V8l-6-6zm-1 7V3.5L18.5 9H13zm4 12.66V16h5.66v2h-2.24l2.95 2.95-1.41 1.41L19 19.41v2.24h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/FilePresent.js b/icons/es5/FilePresent.js index 4324ac24d7..8d26d19f03 100644 --- a/icons/es5/FilePresent.js +++ b/icons/es5/FilePresent.js @@ -7,9 +7,11 @@ function SvgFilePresent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm2 13c0 2.21-1.79 4-4 4s-4-1.79-4-4V9.5a2.5 2.5 0 015 0V15h-2V9.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4zm-2-7V4l4 4h-4z" + d: "M14 2H4v20h16V8l-6-6zm2 13c0 2.21-1.79 4-4 4s-4-1.79-4-4V9.5a2.5 2.5 0 015 0V15h-2V9.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5V15c0 1.1.9 2 2 2s2-.9 2-2v-4h2v4zm-2-7V4l4 4h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/FileUpload.js b/icons/es5/FileUpload.js index 3456b0e47c..3eee96c937 100644 --- a/icons/es5/FileUpload.js +++ b/icons/es5/FileUpload.js @@ -7,9 +7,11 @@ function SvgFileUpload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 10h4v6h6v-6h4l-7-7-7 7zm0 8v2h14v-2H5z" + d: "M5 10h4v6h6v-6h4l-7-7-7 7zm0 8v2h14v-2H5z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter.js b/icons/es5/Filter.js index 448e787fdc..382affc111 100644 --- a/icons/es5/Filter.js +++ b/icons/es5/Filter.js @@ -7,9 +7,11 @@ function SvgFilter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z" + d: "M15.96 10.29l-2.75 3.54-1.96-2.36L8.5 15h11l-3.54-4.71zM3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter1.js b/icons/es5/Filter1.js index d9329c276f..575be962c8 100644 --- a/icons/es5/Filter1.js +++ b/icons/es5/Filter1.js @@ -7,9 +7,11 @@ function SvgFilter1(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm11 10h2V5h-4v2h2v8zm9-14H5v18h18V1zm-2 16H7V3h14v14z" + d: "M3 5H1v18h18v-2H3V5zm11 10h2V5h-4v2h2v8zm9-14H5v18h18V1zm-2 16H7V3h14v14z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter2.js b/icons/es5/Filter2.js index 16dd580d93..9c4279ffda 100644 --- a/icons/es5/Filter2.js +++ b/icons/es5/Filter2.js @@ -7,9 +7,11 @@ function SvgFilter2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-4-4h-4v-2h4V5h-6v2h4v2h-4v6h6v-2z" + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-4-4h-4v-2h4V5h-6v2h4v2h-4v6h6v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter3.js b/icons/es5/Filter3.js index eb0b99cbce..ec9bb88a89 100644 --- a/icons/es5/Filter3.js +++ b/icons/es5/Filter3.js @@ -7,9 +7,11 @@ function SvgFilter3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V5h-6v2h4v2h-2v2h2v2h-4v2h6z" + d: "M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V5h-6v2h4v2h-2v2h2v2h-4v2h6z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter4.js b/icons/es5/Filter4.js index 3cf2d60f42..8a60480eb0 100644 --- a/icons/es5/Filter4.js +++ b/icons/es5/Filter4.js @@ -7,9 +7,11 @@ function SvgFilter4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm8-14H5v18h18V1zm-2 16H7V3h14v14z" + d: "M3 5H1v18h18v-2H3V5zm12 10h2V5h-2v4h-2V5h-2v6h4v4zm8-14H5v18h18V1zm-2 16H7V3h14v14z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter5.js b/icons/es5/Filter5.js index f3693e9845..931a318dd2 100644 --- a/icons/es5/Filter5.js +++ b/icons/es5/Filter5.js @@ -7,9 +7,11 @@ function SvgFilter5(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V9h-4V7h4V5h-6v6h4v2h-4v2h6z" + d: "M23 1H5v18h18V1zm-2 16H7V3h14v14zM3 5H1v18h18v-2H3V5zm14 10V9h-4V7h4V5h-6v6h4v2h-4v2h6z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter6.js b/icons/es5/Filter6.js index 867ea62945..ff5f15f837 100644 --- a/icons/es5/Filter6.js +++ b/icons/es5/Filter6.js @@ -7,9 +7,11 @@ function SvgFilter6(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-10-2h6V9h-4V7h4V5h-6v10zm2-4h2v2h-2v-2z" + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-10-2h6V9h-4V7h4V5h-6v10zm2-4h2v2h-2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter7.js b/icons/es5/Filter7.js index d90216feaf..bb502c4165 100644 --- a/icons/es5/Filter7.js +++ b/icons/es5/Filter7.js @@ -7,9 +7,11 @@ function SvgFilter7(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z" + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2l4-8V5h-6v2h4l-4 8h2z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter8.js b/icons/es5/Filter8.js index 5e75ad5d23..ee69d0fcf7 100644 --- a/icons/es5/Filter8.js +++ b/icons/es5/Filter8.js @@ -7,9 +7,11 @@ function SvgFilter8(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2h2a2 2 0 002-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7a2 2 0 00-2-2h-2a2 2 0 00-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13a2 2 0 002 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z" + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zm-8-2h2a2 2 0 002-2v-1.5c0-.83-.67-1.5-1.5-1.5.83 0 1.5-.67 1.5-1.5V7a2 2 0 00-2-2h-2a2 2 0 00-2 2v1.5c0 .83.67 1.5 1.5 1.5-.83 0-1.5.67-1.5 1.5V13a2 2 0 002 2zm0-8h2v2h-2V7zm0 4h2v2h-2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter9.js b/icons/es5/Filter9.js index 0db2cf922c..32518aa478 100644 --- a/icons/es5/Filter9.js +++ b/icons/es5/Filter9.js @@ -7,9 +7,11 @@ function SvgFilter9(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zM17 5h-6v6h4v2h-4v2h6V5zm-2 4h-2V7h2v2z" + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14zM17 5h-6v6h4v2h-4v2h6V5zm-2 4h-2V7h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Filter9Plus.js b/icons/es5/Filter9Plus.js index 13424de929..590ada2d19 100644 --- a/icons/es5/Filter9Plus.js +++ b/icons/es5/Filter9Plus.js @@ -7,9 +7,11 @@ function SvgFilter9Plus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm11 9V6H9v5h3v1H9v2h5zm-3-5V8h1v1h-1zm12-8H5v18h18V1zm-2 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z" + d: "M3 5H1v18h18v-2H3V5zm11 9V6H9v5h3v1H9v2h5zm-3-5V8h1v1h-1zm12-8H5v18h18V1zm-2 8h-2V7h-2v2h-2v2h2v2h2v-2h2v6H7V3h14v6z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterAlt.js b/icons/es5/FilterAlt.js index 375cc24858..50c75f8a47 100644 --- a/icons/es5/FilterAlt.js +++ b/icons/es5/FilterAlt.js @@ -7,9 +7,11 @@ function SvgFilterAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 4c2.01 2.59 7 9 7 9v7h4v-7s4.98-6.41 7-9H3z" + d: "M3 4c2.01 2.59 7 9 7 9v7h4v-7s4.98-6.41 7-9H3z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterAltOff.js b/icons/es5/FilterAltOff.js index 499afde634..edff3e9bb3 100644 --- a/icons/es5/FilterAltOff.js +++ b/icons/es5/FilterAltOff.js @@ -7,9 +7,11 @@ function SvgFilterAltOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.05 4H6.83l7.97 7.97zM2.81 2.81L1.39 4.22 10 13v7h4v-3.17l5.78 5.78 1.41-1.42z" + d: "M21.05 4H6.83l7.97 7.97zM2.81 2.81L1.39 4.22 10 13v7h4v-3.17l5.78 5.78 1.41-1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterBAndW.js b/icons/es5/FilterBAndW.js index 59a298f895..9336f57f98 100644 --- a/icons/es5/FilterBAndW.js +++ b/icons/es5/FilterBAndW.js @@ -7,9 +7,11 @@ function SvgFilterBAndW(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-2 16l-7-8v8H5l7-8V5h7v14z" + d: "M21 3H3v18h18V3zm-2 16l-7-8v8H5l7-8V5h7v14z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterCenterFocus.js b/icons/es5/FilterCenterFocus.js index 419e151196..cccc9e04fb 100644 --- a/icons/es5/FilterCenterFocus.js +++ b/icons/es5/FilterCenterFocus.js @@ -7,9 +7,11 @@ function SvgFilterCenterFocus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + d: "M5 15H3v6h6v-2H5v-4zM5 5h4V3H3v6h2V5zm16-2h-6v2h4v4h2V3zm-2 16h-4v2h6v-6h-2v4zM12 9c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterDrama.js b/icons/es5/FilterDrama.js index 166ad4de19..96fb830911 100644 --- a/icons/es5/FilterDrama.js +++ b/icons/es5/FilterDrama.js @@ -7,9 +7,11 @@ function SvgFilterDrama(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.35 10.04A7.49 7.49 0 0012 4a7.48 7.48 0 00-6.64 4.04A5.996 5.996 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z" + d: "M19.35 10.04A7.49 7.49 0 0012 4a7.48 7.48 0 00-6.64 4.04A5.996 5.996 0 000 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.65-4.96zM19 18H6c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4h2c0-2.76-1.86-5.08-4.4-5.78C8.61 6.88 10.2 6 12 6c3.03 0 5.5 2.47 5.5 5.5v.5H19c1.65 0 3 1.35 3 3s-1.35 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterFrames.js b/icons/es5/FilterFrames.js index 190db52608..6fe1dfb19e 100644 --- a/icons/es5/FilterFrames.js +++ b/icons/es5/FilterFrames.js @@ -7,9 +7,11 @@ function SvgFilterFrames(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4h-6l-4-4-4 4H2v18h20V4zm-2 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12" + d: "M22 4h-6l-4-4-4 4H2v18h20V4zm-2 16H4V6h4.52l3.52-3.5L15.52 6H20v14zM18 8H6v10h12", + fill: "currentColor" })); } diff --git a/icons/es5/FilterHdr.js b/icons/es5/FilterHdr.js index 97182b293a..8d99e74822 100644 --- a/icons/es5/FilterHdr.js +++ b/icons/es5/FilterHdr.js @@ -7,9 +7,11 @@ function SvgFilterHdr(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" + d: "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterList.js b/icons/es5/FilterList.js index 557a476833..a2c3875c1c 100644 --- a/icons/es5/FilterList.js +++ b/icons/es5/FilterList.js @@ -7,9 +7,11 @@ function SvgFilterList(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z" + d: "M10 18h4v-2h-4v2zM3 6v2h18V6H3zm3 7h12v-2H6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterListOff.js b/icons/es5/FilterListOff.js index a8f1f882bb..1508af28bd 100644 --- a/icons/es5/FilterListOff.js +++ b/icons/es5/FilterListOff.js @@ -7,9 +7,11 @@ function SvgFilterListOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.83 8H21V6H8.83l2 2zm5 5H18v-2h-4.17l2 2zM14 16.83V18h-4v-2h3.17l-3-3H6v-2h2.17l-3-3H3V6h.17L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L14 16.83z" + d: "M10.83 8H21V6H8.83l2 2zm5 5H18v-2h-4.17l2 2zM14 16.83V18h-4v-2h3.17l-3-3H6v-2h2.17l-3-3H3V6h.17L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L14 16.83z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterNone.js b/icons/es5/FilterNone.js index 346a088fa8..9448b2c904 100644 --- a/icons/es5/FilterNone.js +++ b/icons/es5/FilterNone.js @@ -7,9 +7,11 @@ function SvgFilterNone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z" + d: "M3 5H1v18h18v-2H3V5zm20-4H5v18h18V1zm-2 16H7V3h14v14z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterTiltShift.js b/icons/es5/FilterTiltShift.js index d0c90e15e8..36c893b256 100644 --- a/icons/es5/FilterTiltShift.js +++ b/icons/es5/FilterTiltShift.js @@ -7,9 +7,11 @@ function SvgFilterTiltShift(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69A7.941 7.941 0 0111 4.07zm7.32.19A9.949 9.949 0 0013 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1a7.941 7.941 0 011.62 3.9zM5.69 7.1L4.26 5.68A9.949 9.949 0 002.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43A7.868 7.868 0 014.07 13zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43a9.981 9.981 0 002.21-5.32h-2.02a7.945 7.945 0 01-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19A9.981 9.981 0 0011 21.95v-2.02a7.941 7.941 0 01-3.9-1.62l-1.42 1.43z" + d: "M11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69A7.941 7.941 0 0111 4.07zm7.32.19A9.949 9.949 0 0013 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zM19.93 11h2.02c-.2-2.01-1-3.84-2.21-5.32L18.31 7.1a7.941 7.941 0 011.62 3.9zM5.69 7.1L4.26 5.68A9.949 9.949 0 002.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43A7.868 7.868 0 014.07 13zM15 12c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm3.31 4.9l1.43 1.43a9.981 9.981 0 002.21-5.32h-2.02a7.945 7.945 0 01-1.62 3.89zM13 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.43-1.43c-1.1.86-2.43 1.44-3.89 1.62zm-7.32-.19A9.981 9.981 0 0011 21.95v-2.02a7.941 7.941 0 01-3.9-1.62l-1.42 1.43z", + fill: "currentColor" })); } diff --git a/icons/es5/FilterVintage.js b/icons/es5/FilterVintage.js index 76a83e5a39..ad926baf41 100644 --- a/icons/es5/FilterVintage.js +++ b/icons/es5/FilterVintage.js @@ -7,9 +7,11 @@ function SvgFilterVintage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.7 12.4a6.06 6.06 0 00-.86-.4c.29-.11.58-.24.86-.4a6.012 6.012 0 003-5.19 6.007 6.007 0 00-6 0c-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55a6.008 6.008 0 00-6 0 5.97 5.97 0 003 5.19c.28.16.57.29.86.4-.29.11-.58.24-.86.4a6.012 6.012 0 00-3 5.19 6.007 6.007 0 006 0c.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54a6.008 6.008 0 006 0 6.012 6.012 0 00-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + d: "M18.7 12.4a6.06 6.06 0 00-.86-.4c.29-.11.58-.24.86-.4a6.012 6.012 0 003-5.19 6.007 6.007 0 00-6 0c-.28.16-.54.35-.78.54.05-.31.08-.63.08-.95 0-2.22-1.21-4.15-3-5.19C10.21 1.85 9 3.78 9 6c0 .32.03.64.08.95-.24-.2-.5-.39-.78-.55a6.008 6.008 0 00-6 0 5.97 5.97 0 003 5.19c.28.16.57.29.86.4-.29.11-.58.24-.86.4a6.012 6.012 0 00-3 5.19 6.007 6.007 0 006 0c.28-.16.54-.35.78-.54-.05.32-.08.64-.08.96 0 2.22 1.21 4.15 3 5.19 1.79-1.04 3-2.97 3-5.19 0-.32-.03-.64-.08-.95.24.2.5.38.78.54a6.008 6.008 0 006 0 6.012 6.012 0 00-3-5.19zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/FindInPage.js b/icons/es5/FindInPage.js index dd5e2ef6b4..a4e91ecf06 100644 --- a/icons/es5/FindInPage.js +++ b/icons/es5/FindInPage.js @@ -7,9 +7,11 @@ function SvgFindInPage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19.59V8l-6-6H4v20l15.57-.02-4.81-4.81c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" + d: "M20 19.59V8l-6-6H4v20l15.57-.02-4.81-4.81c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L20 19.59zM9 13c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/FindReplace.js b/icons/es5/FindReplace.js index d820aba054..f6cb6f976d 100644 --- a/icons/es5/FindReplace.js +++ b/icons/es5/FindReplace.js @@ -7,9 +7,11 @@ function SvgFindReplace(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05A6.976 6.976 0 0011 4c-3.53 0-6.43 2.61-6.92 6H6.1A5 5 0 0111 6zm5.64 9.14A6.89 6.89 0 0017.92 12H15.9a5 5 0 01-4.9 4c-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05A6.976 6.976 0 0011 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z" + d: "M11 6c1.38 0 2.63.56 3.54 1.46L12 10h6V4l-2.05 2.05A6.976 6.976 0 0011 4c-3.53 0-6.43 2.61-6.92 6H6.1A5 5 0 0111 6zm5.64 9.14A6.89 6.89 0 0017.92 12H15.9a5 5 0 01-4.9 4c-1.38 0-2.63-.56-3.54-1.46L10 12H4v6l2.05-2.05A6.976 6.976 0 0011 18c1.55 0 2.98-.51 4.14-1.36L20 21.49 21.49 20l-4.85-4.86z", + fill: "currentColor" })); } diff --git a/icons/es5/Fingerprint.js b/icons/es5/Fingerprint.js index ba1ab73400..515578a03f 100644 --- a/icons/es5/Fingerprint.js +++ b/icons/es5/Fingerprint.js @@ -7,9 +7,11 @@ function SvgFingerprint(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2a.506.506 0 01.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67a.49.49 0 01-.44.28zM3.5 9.72a.499.499 0 01-.41-.79c.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25a.5.5 0 01-.12.7c-.23.16-.54.11-.7-.12a9.388 9.388 0 00-3.39-2.94c-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07a.47.47 0 01-.35-.15c-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1a7.297 7.297 0 01-2.17-5.22c0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29a11.14 11.14 0 01-.73-3.96c0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z" + d: "M17.81 4.47c-.08 0-.16-.02-.23-.06C15.66 3.42 14 3 12.01 3c-1.98 0-3.86.47-5.57 1.41-.24.13-.54.04-.68-.2a.506.506 0 01.2-.68C7.82 2.52 9.86 2 12.01 2c2.13 0 3.99.47 6.03 1.52.25.13.34.43.21.67a.49.49 0 01-.44.28zM3.5 9.72a.499.499 0 01-.41-.79c.99-1.4 2.25-2.5 3.75-3.27C9.98 4.04 14 4.03 17.15 5.65c1.5.77 2.76 1.86 3.75 3.25a.5.5 0 01-.12.7c-.23.16-.54.11-.7-.12a9.388 9.388 0 00-3.39-2.94c-2.87-1.47-6.54-1.47-9.4.01-1.36.7-2.5 1.7-3.4 2.96-.08.14-.23.21-.39.21zm6.25 12.07a.47.47 0 01-.35-.15c-.87-.87-1.34-1.43-2.01-2.64-.69-1.23-1.05-2.73-1.05-4.34 0-2.97 2.54-5.39 5.66-5.39s5.66 2.42 5.66 5.39c0 .28-.22.5-.5.5s-.5-.22-.5-.5c0-2.42-2.09-4.39-4.66-4.39s-4.66 1.97-4.66 4.39c0 1.44.32 2.77.93 3.85.64 1.15 1.08 1.64 1.85 2.42.19.2.19.51 0 .71-.11.1-.24.15-.37.15zm7.17-1.85c-1.19 0-2.24-.3-3.1-.89-1.49-1.01-2.38-2.65-2.38-4.39 0-.28.22-.5.5-.5s.5.22.5.5c0 1.41.72 2.74 1.94 3.56.71.48 1.54.71 2.54.71.24 0 .64-.03 1.04-.1.27-.05.53.13.58.41.05.27-.13.53-.41.58-.57.11-1.07.12-1.21.12zM14.91 22c-.04 0-.09-.01-.13-.02-1.59-.44-2.63-1.03-3.72-2.1a7.297 7.297 0 01-2.17-5.22c0-1.62 1.38-2.94 3.08-2.94s3.08 1.32 3.08 2.94c0 1.07.93 1.94 2.08 1.94s2.08-.87 2.08-1.94c0-3.77-3.25-6.83-7.25-6.83-2.84 0-5.44 1.58-6.61 4.03-.39.81-.59 1.76-.59 2.8 0 .78.07 2.01.67 3.61.1.26-.03.55-.29.64-.26.1-.55-.04-.64-.29a11.14 11.14 0 01-.73-3.96c0-1.2.23-2.29.68-3.24 1.33-2.79 4.28-4.6 7.51-4.6 4.55 0 8.25 3.51 8.25 7.83 0 1.62-1.38 2.94-3.08 2.94s-3.08-1.32-3.08-2.94c0-1.07-.93-1.94-2.08-1.94s-2.08.87-2.08 1.94c0 1.71.66 3.31 1.87 4.51.95.94 1.86 1.46 3.27 1.85.27.07.42.35.35.61-.05.23-.26.38-.47.38z", + fill: "currentColor" })); } diff --git a/icons/es5/FireExtinguisher.js b/icons/es5/FireExtinguisher.js index 1480be8c8e..a65af21c83 100644 --- a/icons/es5/FireExtinguisher.js +++ b/icons/es5/FireExtinguisher.js @@ -7,9 +7,11 @@ function SvgFireExtinguisher(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 19h10v3H7v-3zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z" + d: "M7 19h10v3H7v-3zm0-1h10v-5H7v5zM17 3v6l-3.15-.66c-.01 0-.01.01-.02.02 1.55.62 2.72 1.98 3.07 3.64H7.1c.34-1.66 1.52-3.02 3.07-3.64-.33-.26-.6-.58-.8-.95L5 6.5v-1l4.37-.91C9.87 3.65 10.86 3 12 3c.7 0 1.34.25 1.85.66L17 3zm-4 3c-.03-.59-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1z", + fill: "currentColor" })); } diff --git a/icons/es5/FireHydrantAlt.js b/icons/es5/FireHydrantAlt.js index af1a84a0f2..b4872d92d9 100644 --- a/icons/es5/FireHydrantAlt.js +++ b/icons/es5/FireHydrantAlt.js @@ -7,9 +7,11 @@ function SvgFireHydrantAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11h-3V8h2V6h-2.35a5.99 5.99 0 00-11.3 0H4v2h2v3H3v6h3v3H4v2h16v-2h-2v-3h3v-6zm-9 6.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z" + d: "M21 11h-3V8h2V6h-2.35a5.99 5.99 0 00-11.3 0H4v2h2v3H3v6h3v3H4v2h16v-2h-2v-3h3v-6zm-9 6.5c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 14, diff --git a/icons/es5/FireTruck.js b/icons/es5/FireTruck.js index 68e6a7813b..ed231dd1f0 100644 --- a/icons/es5/FireTruck.js +++ b/icons/es5/FireTruck.js @@ -7,11 +7,14 @@ function SvgFireTruck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 11l-2-6h-2V3h-3v2h-4v6H1v7h3c0 1.66 1.34 3 3 3s3-1.34 3-3h4c0 1.66 1.34 3 3 3s3-1.34 3-3h3v-7zM7 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-3-8V7h5.56l1.33 4H14z" + d: "M23 11l-2-6h-2V3h-3v2h-4v6H1v7h3c0 1.66 1.34 3 3 3s3-1.34 3-3h4c0 1.66 1.34 3 3 3s3-1.34 3-3h3v-7zM7 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm10 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-3-8V7h5.56l1.33 4H14z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11 8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5zm-5.75 0H3.5v-2h1.75v2zm3.25 0H6.75v-2H8.5v2z" + d: "M11 8.5h-1v-2h1V5H1v1.5h1v2H1V10h10V8.5zm-5.75 0H3.5v-2h1.75v2zm3.25 0H6.75v-2H8.5v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Fireplace.js b/icons/es5/Fireplace.js index 8624bdb442..c4236315f5 100644 --- a/icons/es5/Fireplace.js +++ b/icons/es5/Fireplace.js @@ -7,9 +7,11 @@ function SvgFireplace(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 2v20h20V2H2zm11.2 11.74c-.08-.46-.07-.85.08-1.28.54 1.21 2.15 1.64 1.98 3.18-.19 1.69-2.11 2.37-3.39 1.32.76-.24 1.4-1.04 1.53-1.63.12-.55-.11-1.04-.2-1.59zM20 20h-2v-2h-2.02A4.98 4.98 0 0017 15c0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z" + d: "M2 2v20h20V2H2zm11.2 11.74c-.08-.46-.07-.85.08-1.28.54 1.21 2.15 1.64 1.98 3.18-.19 1.69-2.11 2.37-3.39 1.32.76-.24 1.4-1.04 1.53-1.63.12-.55-.11-1.04-.2-1.59zM20 20h-2v-2h-2.02A4.98 4.98 0 0017 15c0-1.89-1.09-2.85-1.85-3.37C12.2 9.61 13 7 13 7c-6.73 3.57-6.02 7.47-6 8 .03.96.49 2.07 1.23 3H6v2H4V4h16v16z", + fill: "currentColor" })); } diff --git a/icons/es5/FirstPage.js b/icons/es5/FirstPage.js index 574d47b90c..3d49047838 100644 --- a/icons/es5/FirstPage.js +++ b/icons/es5/FirstPage.js @@ -7,9 +7,11 @@ function SvgFirstPage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z" + d: "M18.41 16.59L13.82 12l4.59-4.59L17 6l-6 6 6 6 1.41-1.41zM6 6h2v12H6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/FitScreen.js b/icons/es5/FitScreen.js index 1c206d28a5..a0e8c9c9b8 100644 --- a/icons/es5/FitScreen.js +++ b/icons/es5/FitScreen.js @@ -7,9 +7,11 @@ function SvgFitScreen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4h5v5h-2V6h-3V4zM4 9V6h3V4H2v5h2zm16 6v3h-3v2h5v-5h-2zM7 18H4v-3H2v5h5v-2zM18 8H6v8h12V8z" + d: "M17 4h5v5h-2V6h-3V4zM4 9V6h3V4H2v5h2zm16 6v3h-3v2h5v-5h-2zM7 18H4v-3H2v5h5v-2zM18 8H6v8h12V8z", + fill: "currentColor" })); } diff --git a/icons/es5/Fitbit.js b/icons/es5/Fitbit.js index f5d40bb055..1076fe87ce 100644 --- a/icons/es5/Fitbit.js +++ b/icons/es5/Fitbit.js @@ -7,9 +7,11 @@ function SvgFitbit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.89 13.89c1.04 0 1.89-.85 1.89-1.89s-.85-1.89-1.89-1.89S18 10.96 18 12s.85 1.89 1.89 1.89zm-4.24-.21c.93 0 1.68-.75 1.68-1.68s-.75-1.68-1.68-1.68c-.93 0-1.68.75-1.68 1.68s.75 1.68 1.68 1.68zm0-4.26c.93 0 1.68-.75 1.68-1.68 0-.93-.75-1.68-1.68-1.68-.93 0-1.68.75-1.68 1.68 0 .93.75 1.68 1.68 1.68zm0 8.51c.93 0 1.68-.75 1.68-1.68 0-.93-.75-1.68-1.68-1.68-.93 0-1.68.75-1.68 1.68 0 .92.75 1.68 1.68 1.68zm-4.24-4.46c.81 0 1.47-.66 1.47-1.47s-.66-1.47-1.47-1.47c-.81 0-1.47.66-1.47 1.47s.65 1.47 1.47 1.47zm0-4.26c.81 0 1.47-.66 1.47-1.47s-.66-1.47-1.47-1.47c-.81 0-1.47.66-1.47 1.47s.65 1.47 1.47 1.47zm0 8.52c.81 0 1.47-.66 1.47-1.47 0-.81-.66-1.47-1.47-1.47-.81 0-1.47.66-1.47 1.47-.01.81.65 1.47 1.47 1.47zm0 4.27c.81 0 1.47-.66 1.47-1.47 0-.81-.66-1.47-1.47-1.47-.81 0-1.47.66-1.47 1.47-.01.81.65 1.47 1.47 1.47zm0-17.06c.81 0 1.47-.66 1.47-1.47S12.22 2 11.41 2c-.81 0-1.47.66-1.47 1.47s.65 1.47 1.47 1.47zm-4.25 8.32c.7 0 1.26-.57 1.26-1.26s-.57-1.26-1.26-1.26a1.261 1.261 0 000 2.52zm0 4.25a1.261 1.261 0 000-2.52 1.261 1.261 0 000 2.52zm0-8.49a1.261 1.261 0 000-2.52 1.261 1.261 0 000 2.52zm-3.87 4.03a1.05 1.05 0 100-2.1 1.05 1.05 0 000 2.1z" + d: "M19.89 13.89c1.04 0 1.89-.85 1.89-1.89s-.85-1.89-1.89-1.89S18 10.96 18 12s.85 1.89 1.89 1.89zm-4.24-.21c.93 0 1.68-.75 1.68-1.68s-.75-1.68-1.68-1.68c-.93 0-1.68.75-1.68 1.68s.75 1.68 1.68 1.68zm0-4.26c.93 0 1.68-.75 1.68-1.68 0-.93-.75-1.68-1.68-1.68-.93 0-1.68.75-1.68 1.68 0 .93.75 1.68 1.68 1.68zm0 8.51c.93 0 1.68-.75 1.68-1.68 0-.93-.75-1.68-1.68-1.68-.93 0-1.68.75-1.68 1.68 0 .92.75 1.68 1.68 1.68zm-4.24-4.46c.81 0 1.47-.66 1.47-1.47s-.66-1.47-1.47-1.47c-.81 0-1.47.66-1.47 1.47s.65 1.47 1.47 1.47zm0-4.26c.81 0 1.47-.66 1.47-1.47s-.66-1.47-1.47-1.47c-.81 0-1.47.66-1.47 1.47s.65 1.47 1.47 1.47zm0 8.52c.81 0 1.47-.66 1.47-1.47 0-.81-.66-1.47-1.47-1.47-.81 0-1.47.66-1.47 1.47-.01.81.65 1.47 1.47 1.47zm0 4.27c.81 0 1.47-.66 1.47-1.47 0-.81-.66-1.47-1.47-1.47-.81 0-1.47.66-1.47 1.47-.01.81.65 1.47 1.47 1.47zm0-17.06c.81 0 1.47-.66 1.47-1.47S12.22 2 11.41 2c-.81 0-1.47.66-1.47 1.47s.65 1.47 1.47 1.47zm-4.25 8.32c.7 0 1.26-.57 1.26-1.26s-.57-1.26-1.26-1.26a1.261 1.261 0 000 2.52zm0 4.25a1.261 1.261 0 000-2.52 1.261 1.261 0 000 2.52zm0-8.49a1.261 1.261 0 000-2.52 1.261 1.261 0 000 2.52zm-3.87 4.03a1.05 1.05 0 100-2.1 1.05 1.05 0 000 2.1z", + fill: "currentColor" })); } diff --git a/icons/es5/FitnessCenter.js b/icons/es5/FitnessCenter.js index ed0ccbd24e..d7c1487ef8 100644 --- a/icons/es5/FitnessCenter.js +++ b/icons/es5/FitnessCenter.js @@ -7,9 +7,11 @@ function SvgFitnessCenter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z" + d: "M20.57 14.86L22 13.43 20.57 12 17 15.57 8.43 7 12 3.43 10.57 2 9.14 3.43 7.71 2 5.57 4.14 4.14 2.71 2.71 4.14l1.43 1.43L2 7.71l1.43 1.43L2 10.57 3.43 12 7 8.43 15.57 17 12 20.57 13.43 22l1.43-1.43L16.29 22l2.14-2.14 1.43 1.43 1.43-1.43-1.43-1.43L22 16.29l-1.43-1.43z", + fill: "currentColor" })); } diff --git a/icons/es5/FlagCircle.js b/icons/es5/FlagCircle.js index 526677c99e..5878885513 100644 --- a/icons/es5/FlagCircle.js +++ b/icons/es5/FlagCircle.js @@ -7,9 +7,11 @@ function SvgFlagCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 13h-5l-1-2H9.5v5H8V7h6l1 2h3v6z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 13h-5l-1-2H9.5v5H8V7h6l1 2h3v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Flaky.js b/icons/es5/Flaky.js index 87cd86a796..04de31ca0c 100644 --- a/icons/es5/Flaky.js +++ b/icons/es5/Flaky.js @@ -7,10 +7,12 @@ function SvgFlaky(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M14.05 17.58l-.01.01-2.4-2.4 1.06-1.06 1.35 1.35L16.54 13l1.06 1.06-3.54 3.54-.01-.02zM12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zM7.34 6.28l1.41 1.41 1.41-1.41 1.06 1.06-1.41 1.41 1.41 1.41-1.06 1.06-1.41-1.41-1.41 1.41-1.06-1.06 1.41-1.41-1.41-1.41 1.06-1.06zM12 20c-2.2 0-4.2-.9-5.7-2.3L17.7 6.3C19.1 7.8 20 9.8 20 12c0 4.4-3.6 8-8 8z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/Flare.js b/icons/es5/Flare.js index 2f2ee01e70..be2f7299d2 100644 --- a/icons/es5/Flare.js +++ b/icons/es5/Flare.js @@ -7,9 +7,11 @@ function SvgFlare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z" + d: "M7 11H1v2h6v-2zm2.17-3.24L7.05 5.64 5.64 7.05l2.12 2.12 1.41-1.41zM13 1h-2v6h2V1zm5.36 6.05l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM17 11v2h6v-2h-6zm-5-2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm2.83 7.24l2.12 2.12 1.41-1.41-2.12-2.12-1.41 1.41zm-9.19.71l1.41 1.41 2.12-2.12-1.41-1.41-2.12 2.12zM11 23h2v-6h-2v6z", + fill: "currentColor" })); } diff --git a/icons/es5/FlashAuto.js b/icons/es5/FlashAuto.js index 7ae46136c7..41d27d267a 100644 --- a/icons/es5/FlashAuto.js +++ b/icons/es5/FlashAuto.js @@ -7,9 +7,11 @@ function SvgFlashAuto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z" + d: "M3 2v12h3v9l7-12H9l4-9H3zm16 0h-2l-3.2 9h1.9l.7-2h3.2l.7 2h1.9L19 2zm-2.15 5.65L18 4l1.15 3.65h-2.3z", + fill: "currentColor" })); } diff --git a/icons/es5/FlashOff.js b/icons/es5/FlashOff.js index 31041e8a93..16730a6f97 100644 --- a/icons/es5/FlashOff.js +++ b/icons/es5/FlashOff.js @@ -7,9 +7,11 @@ function SvgFlashOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z" + d: "M17 10h-3.61l2.28 2.28zm0-8H7v1.61l6.13 6.13zm-13.59.86L2 4.27l5 5V13h3v9l3.58-6.15L17.73 20l1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/FlashOn.js b/icons/es5/FlashOn.js index 854151570c..f0c7719078 100644 --- a/icons/es5/FlashOn.js +++ b/icons/es5/FlashOn.js @@ -7,9 +7,11 @@ function SvgFlashOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 2v11h3v9l7-12h-4l3-8z" + d: "M7 2v11h3v9l7-12h-4l3-8z", + fill: "currentColor" })); } diff --git a/icons/es5/FlashlightOff.js b/icons/es5/FlashlightOff.js index de5cbf4d57..cfe5aa7f37 100644 --- a/icons/es5/FlashlightOff.js +++ b/icons/es5/FlashlightOff.js @@ -7,9 +7,11 @@ function SvgFlashlightOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 5V2H6v1.17L7.83 5zm-2 6l2-3V7H9.83L16 13.17zM2.81 2.81L1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81z" + d: "M18 5V2H6v1.17L7.83 5zm-2 6l2-3V7H9.83L16 13.17zM2.81 2.81L1.39 4.22 8 10.83V22h8v-3.17l3.78 3.78 1.41-1.41L2.81 2.81z", + fill: "currentColor" })); } diff --git a/icons/es5/FlashlightOn.js b/icons/es5/FlashlightOn.js index 82e865c44e..534ee72c40 100644 --- a/icons/es5/FlashlightOn.js +++ b/icons/es5/FlashlightOn.js @@ -7,9 +7,11 @@ function SvgFlashlightOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 2h12v3H6zm0 5v1l2 3v11h8V11l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M6 2h12v3H6zm0 5v1l2 3v11h8V11l2-3V7H6zm6 8.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Flatware.js b/icons/es5/Flatware.js index ddc12a3779..84d6a35a1d 100644 --- a/icons/es5/Flatware.js +++ b/icons/es5/Flatware.js @@ -7,9 +7,11 @@ function SvgFlatware(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3h-.72v4h-.84V3H5.28v4h-.84V3H3v8h2v10h2V11h2V3h-.72z" + d: "M16 7.08c0 1.77-.84 3.25-2 3.82V21h-2V10.9c-1.16-.57-2-2.05-2-3.82C10.01 4.83 11.35 3 13 3c1.66 0 3 1.83 3 4.08zM17 3v18h2v-8h2V7c0-1.76-1.24-4-4-4zM8.28 3h-.72v4h-.84V3H5.28v4h-.84V3H3v8h2v10h2V11h2V3h-.72z", + fill: "currentColor" })); } diff --git a/icons/es5/Flight.js b/icons/es5/Flight.js index 70595370d4..ee5f3394f2 100644 --- a/icons/es5/Flight.js +++ b/icons/es5/Flight.js @@ -7,9 +7,11 @@ function SvgFlight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z" + d: "M21 16v-2l-8-5V3.5c0-.83-.67-1.5-1.5-1.5S10 2.67 10 3.5V9l-8 5v2l8-2.5V19l-2 1.5V22l3.5-1 3.5 1v-1.5L13 19v-5.5l8 2.5z", + fill: "currentColor" })); } diff --git a/icons/es5/FlightClass.js b/icons/es5/FlightClass.js index 4f36b71910..0f8bb536b9 100644 --- a/icons/es5/FlightClass.js +++ b/icons/es5/FlightClass.js @@ -7,9 +7,11 @@ function SvgFlightClass(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4h-6v9h6V4zM9.5 16H18v2H8L5 8V4h2v4l2.5 8zM8 19h10v2H8v-2z" + d: "M18 4h-6v9h6V4zM9.5 16H18v2H8L5 8V4h2v4l2.5 8zM8 19h10v2H8v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/FlightLand.js b/icons/es5/FlightLand.js index dbd8c7cab9..9ec93b0394 100644 --- a/icons/es5/FlightLand.js +++ b/icons/es5/FlightLand.js @@ -7,9 +7,11 @@ function SvgFlightLand(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z" + d: "M2.5 19h19v2h-19v-2zm16.84-3.15c.8.21 1.62-.26 1.84-1.06.21-.8-.26-1.62-1.06-1.84l-5.31-1.42-2.76-9.02L10.12 2v8.28L5.15 8.95l-.93-2.32-1.45-.39v5.17l16.57 4.44z", + fill: "currentColor" })); } diff --git a/icons/es5/FlightTakeoff.js b/icons/es5/FlightTakeoff.js index cdfd8f3925..4cb5497c82 100644 --- a/icons/es5/FlightTakeoff.js +++ b/icons/es5/FlightTakeoff.js @@ -7,9 +7,11 @@ function SvgFlightTakeoff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33L21 11.49c.81-.23 1.28-1.05 1.07-1.85z" + d: "M2.5 19h19v2h-19v-2zm19.57-9.36c-.21-.8-1.04-1.28-1.84-1.06L14.92 10l-6.9-6.43-1.93.51 4.14 7.17-4.97 1.33-1.97-1.54-1.45.39 1.82 3.16.77 1.33L21 11.49c.81-.23 1.28-1.05 1.07-1.85z", + fill: "currentColor" })); } diff --git a/icons/es5/Flip.js b/icons/es5/Flip.js index 658041dad7..332f64b9d5 100644 --- a/icons/es5/Flip.js +++ b/icons/es5/Flip.js @@ -7,9 +7,11 @@ function SvgFlip(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 3v18h6v-2H5V5h4V3H3zm16 0v2h2V3h-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8h2v-2h-2v2z" + d: "M15 21h2v-2h-2v2zm4-12h2V7h-2v2zM3 3v18h6v-2H5V5h4V3H3zm16 0v2h2V3h-2zm-8 20h2V1h-2v22zm8-6h2v-2h-2v2zM15 5h2V3h-2v2zm4 8h2v-2h-2v2zm0 8h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FlipCameraAndroid.js b/icons/es5/FlipCameraAndroid.js index 572d8be34a..980c68247a 100644 --- a/icons/es5/FlipCameraAndroid.js +++ b/icons/es5/FlipCameraAndroid.js @@ -7,11 +7,14 @@ function SvgFlipCameraAndroid(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" + d: "M9 12c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M8 10V8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6zm8 4v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z" + d: "M8 10V8H5.09C6.47 5.61 9.05 4 12 4c3.72 0 6.85 2.56 7.74 6h2.06c-.93-4.56-4.96-8-9.8-8-3.27 0-6.18 1.58-8 4.01V4H2v6h6zm8 4v2h2.91c-1.38 2.39-3.96 4-6.91 4-3.72 0-6.85-2.56-7.74-6H2.2c.93 4.56 4.96 8 9.8 8 3.27 0 6.18-1.58 8-4.01V20h2v-6h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/FlipCameraIos.js b/icons/es5/FlipCameraIos.js index fe35280c6d..be4de6ef7a 100644 --- a/icons/es5/FlipCameraIos.js +++ b/icons/es5/FlipCameraIos.js @@ -7,9 +7,11 @@ function SvgFlipCameraIos(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5H5l2.5-2.5L10 13H8c0 2.21 1.79 4 4 4 .58 0 1.13-.13 1.62-.35l.74.74c-.71.37-1.5.61-2.36.61zm4.5-2.5L14 13h2c0-2.21-1.79-4-4-4-.58 0-1.13.13-1.62.35l-.74-.73C10.35 8.24 11.14 8 12 8c2.76 0 5 2.24 5 5h2l-2.5 2.5z" + d: "M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM12 18c-2.76 0-5-2.24-5-5H5l2.5-2.5L10 13H8c0 2.21 1.79 4 4 4 .58 0 1.13-.13 1.62-.35l.74.74c-.71.37-1.5.61-2.36.61zm4.5-2.5L14 13h2c0-2.21-1.79-4-4-4-.58 0-1.13.13-1.62.35l-.74-.73C10.35 8.24 11.14 8 12 8c2.76 0 5 2.24 5 5h2l-2.5 2.5z", + fill: "currentColor" })); } diff --git a/icons/es5/FlipToBack.js b/icons/es5/FlipToBack.js index 0d449a39d5..bbfe1f9e8c 100644 --- a/icons/es5/FlipToBack.js +++ b/icons/es5/FlipToBack.js @@ -7,9 +7,11 @@ function SvgFlipToBack(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm4 4h-2v2h2v-2zm0-12h-2v2h2V3zM9 3H7v2h2V3zm12 0h-2v2h2V3zm0 12h-2v2h2v-2zM9 15H7v2h2v-2zm10-2h2v-2h-2v2zm0-4h2V7h-2v2zM5 7H3v14h14v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z" + d: "M9 7H7v2h2V7zm0 4H7v2h2v-2zm4 4h-2v2h2v-2zm0-12h-2v2h2V3zM9 3H7v2h2V3zm12 0h-2v2h2V3zm0 12h-2v2h2v-2zM9 15H7v2h2v-2zm10-2h2v-2h-2v2zm0-4h2V7h-2v2zM5 7H3v14h14v-2H5V7zm10-2h2V3h-2v2zm0 12h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FlipToFront.js b/icons/es5/FlipToFront.js index 27855cc3db..1679c07612 100644 --- a/icons/es5/FlipToFront.js +++ b/icons/es5/FlipToFront.js @@ -7,9 +7,11 @@ function SvgFlipToFront(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm12 12h2v-2h-2v2zm6-18H7v14h14V3zm-2 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2zm-4 0h2v-2H3v2z" + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm12 12h2v-2h-2v2zm6-18H7v14h14V3zm-2 12H9V5h10v10zm-8 6h2v-2h-2v2zm-4 0h2v-2H7v2zm-4 0h2v-2H3v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Flood.js b/icons/es5/Flood.js index 1f66776dc9..db4ec54e5d 100644 --- a/icons/es5/Flood.js +++ b/icons/es5/Flood.js @@ -7,9 +7,11 @@ function SvgFlood(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.67 19c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.22 0 1.4 1 3.33 1 1.93 0 2.1-1 3.33-1 1.22 0 1.4 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zm-9.99-1.5c1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-.63 0-1-.28-1.48-.55l-2.02-7.53 2.09.85.74-1.86L9.78 2 2 11.61l1.57 1.23 1.39-1.78.93 3.48c-.18-.02-.35-.05-.56-.05-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19.01 1.42 1.01 3.33 1.01zm5.36-7.32l1.42 5.31c-1.34.09-1.47-.99-3.47-.99-.36 0-.65.04-.91.1l-.91-3.39 3.87-1.03z" + d: "M18.67 19c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.22 0 1.4 1 3.33 1 1.93 0 2.1-1 3.33-1 1.22 0 1.4 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zm-9.99-1.5c1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-.63 0-1-.28-1.48-.55l-2.02-7.53 2.09.85.74-1.86L9.78 2 2 11.61l1.57 1.23 1.39-1.78.93 3.48c-.18-.02-.35-.05-.56-.05-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19.01 1.42 1.01 3.33 1.01zm5.36-7.32l1.42 5.31c-1.34.09-1.47-.99-3.47-.99-.36 0-.65.04-.91.1l-.91-3.39 3.87-1.03z", + fill: "currentColor" })); } diff --git a/icons/es5/Flourescent.js b/icons/es5/Flourescent.js index 8359d047b3..58cf699a04 100644 --- a/icons/es5/Flourescent.js +++ b/icons/es5/Flourescent.js @@ -7,9 +7,11 @@ function SvgFlourescent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 9h14v6H5zm6-7h2v3h-2zm6.286 4.399l1.79-1.803 1.42 1.41-1.79 1.802zM11 19h2v3h-2zm6.29-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM3.495 6.01l1.407-1.408L6.69 6.391 5.284 7.798zm-.003 12.066l1.803-1.79 1.409 1.42-1.803 1.79z" + d: "M5 9h14v6H5zm6-7h2v3h-2zm6.286 4.399l1.79-1.803 1.42 1.41-1.79 1.802zM11 19h2v3h-2zm6.29-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM3.495 6.01l1.407-1.408L6.69 6.391 5.284 7.798zm-.003 12.066l1.803-1.79 1.409 1.42-1.803 1.79z", + fill: "currentColor" })); } diff --git a/icons/es5/Fluorescent.js b/icons/es5/Fluorescent.js index 0943b30538..45d633322b 100644 --- a/icons/es5/Fluorescent.js +++ b/icons/es5/Fluorescent.js @@ -7,9 +7,11 @@ function SvgFluorescent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 9h14v6H5zm6-7h2v3h-2zm6.286 4.399l1.79-1.803 1.42 1.41-1.79 1.802zM11 19h2v3h-2zm6.29-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM3.495 6.01l1.407-1.408L6.69 6.391 5.284 7.798zm-.003 12.066l1.803-1.79 1.409 1.42-1.803 1.79z" + d: "M5 9h14v6H5zm6-7h2v3h-2zm6.286 4.399l1.79-1.803 1.42 1.41-1.79 1.802zM11 19h2v3h-2zm6.29-1.29l1.79 1.8 1.42-1.42-1.8-1.79zM3.495 6.01l1.407-1.408L6.69 6.391 5.284 7.798zm-.003 12.066l1.803-1.79 1.409 1.42-1.803 1.79z", + fill: "currentColor" })); } diff --git a/icons/es5/FlutterDash.js b/icons/es5/FlutterDash.js index 93cff9c9bf..e2854147de 100644 --- a/icons/es5/FlutterDash.js +++ b/icons/es5/FlutterDash.js @@ -7,9 +7,11 @@ function SvgFlutterDash(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53a.501.501 0 01-.45-.22c-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53a.501.501 0 01-.45-.22c-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85a7.989 7.989 0 015.55-3.29c.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92a3.77 3.77 0 01-.34-1.54A3.766 3.766 0 019.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05A6.01 6.01 0 006 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z" + d: "M11.07 11.7c.29-.39.81-.56 1.27-.37.17.07.32.18.43.33.22.28.25.59.22.85-.05.33-.25.63-.54.79 0 0-4.87 2.95-5.07 2.69s3.69-4.29 3.69-4.29zM22 10c0 2.5-1 3-1.5 3-.23 0-.44-.1-.62-.26-.48 3.32-2.36 5.31-5.33 5.99.11.44.48.77.95.77h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53a.501.501 0 01-.45-.22c-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.78-.16-1.39-.78-1.55-1.56-.49.06-1 .1-1.54.1-.88 0-1.7-.09-2.45-.25-.02.08-.05.16-.05.25 0 .55.45 1 1 1h.58c.22 0 .41.15.48.36.17.52.66 1.02 1.02 1.32.25.21.24.59-.03.78-.34.24-.9.49-1.79.53a.501.501 0 01-.45-.22c-.13-.2-.31-.56-.31-1.01 0-.3.04-.57.09-.8-.9-.19-1.59-1-1.59-1.96 0-.18.03-.36.08-.53-2.46-.86-4.03-2.78-4.46-5.74-.18.17-.38.27-.62.27C3 13 2 12.5 2 10c0-2.27 1.7-4.5 3-4.5.43 0 .49.49.5.85a7.989 7.989 0 015.55-3.29c.2-.96 1.08-1.56 1.95-1.56v1s.33-.5 1-.5c.67 0 1 .5 1 .5-.49 0-.85.35-.96.77 1.82.48 3.39 1.59 4.46 3.08.01-.36.07-.85.5-.85 1.3 0 3 2.23 3 4.5zM5 11c0 .81.1 1.53.25 2.21.18-.69.46-1.33.83-1.92a3.77 3.77 0 01-.34-1.54A3.766 3.766 0 019.5 6c.96 0 1.84.37 2.5.97.66-.6 1.54-.97 2.5-.97 2.07 0 3.75 1.68 3.75 3.75 0 .55-.12 1.07-.34 1.54.37.59.66 1.24.84 1.94.15-.68.25-1.41.25-2.23 0-3.86-3.14-7-7-7s-7 3.14-7 7zm12.98 4.29c0-.1.02-.19.02-.29 0-1.01-.26-1.95-.7-2.78-.69.78-1.68 1.28-2.8 1.28-.27 0-.54-.03-.79-.09.14-.23.23-.49.27-.77.01-.07.01-.13.02-.19.17.03.33.05.5.05 1.52 0 2.75-1.23 2.75-2.75S16.02 7 14.5 7c-.67 0-1.32.25-1.83.72l-.67.6-.67-.6C10.82 7.25 10.17 7 9.5 7 7.98 7 6.75 8.23 6.75 9.75c0 1.34.96 2.46 2.23 2.7l-.76.83c-.6-.22-1.12-.59-1.53-1.05A6.01 6.01 0 006 15c0 .08.01.15.01.24C7.13 17.06 9.14 18 12 18c2.88 0 4.88-.91 5.98-2.71zM16 9.75c0 .97-.67 1.75-1.5 1.75S13 10.72 13 9.75 13.67 8 14.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38zM11 9.75c0 .97-.67 1.75-1.5 1.75S8 10.72 8 9.75 8.67 8 9.5 8s1.5.78 1.5 1.75zm-.75-.87c0-.21-.17-.38-.38-.38s-.37.17-.37.38.17.38.38.38.37-.18.37-.38z", + fill: "currentColor" })); } diff --git a/icons/es5/FmdBad.js b/icons/es5/FmdBad.js index 8ba8030638..8ee02a604f 100644 --- a/icons/es5/FmdBad.js +++ b/icons/es5/FmdBad.js @@ -7,9 +7,11 @@ function SvgFmdBad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm1 13h-2v-2h2v2zm0-4h-2V6h2v5z" + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm1 13h-2v-2h2v2zm0-4h-2V6h2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/FmdGood.js b/icons/es5/FmdGood.js index 0eabfe55da..a255938109 100644 --- a/icons/es5/FmdGood.js +++ b/icons/es5/FmdGood.js @@ -7,9 +7,11 @@ function SvgFmdGood(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M12 2c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2zm0 10c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Folder.js b/icons/es5/Folder.js index 66236bc377..209c6dc16c 100644 --- a/icons/es5/Folder.js +++ b/icons/es5/Folder.js @@ -7,9 +7,11 @@ function SvgFolder(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 4H2v16h20V6H12l-2-2z" + d: "M10 4H2v16h20V6H12l-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/FolderCopy.js b/icons/es5/FolderCopy.js index edcc208cf2..74c4660376 100644 --- a/icons/es5/FolderCopy.js +++ b/icons/es5/FolderCopy.js @@ -7,11 +7,14 @@ function SvgFolderCopy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 6H1v15h19v-2H3z" + d: "M3 6H1v15h19v-2H3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M23 4h-9l-2-2H5.01L5 17h18V4z" + d: "M23 4h-9l-2-2H5.01L5 17h18V4z", + fill: "currentColor" })); } diff --git a/icons/es5/FolderDelete.js b/icons/es5/FolderDelete.js index 6f57653ac4..182c672831 100644 --- a/icons/es5/FolderDelete.js +++ b/icons/es5/FolderDelete.js @@ -7,9 +7,11 @@ function SvgFolderDelete(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6v14H2V4h8l2 2h10zm-5.5 4V9h-2v1H12v1.5h1V17h5v-5.5h1V10h-2.5zm0 5.5h-2v-4h2v4z" + d: "M22 6v14H2V4h8l2 2h10zm-5.5 4V9h-2v1H12v1.5h1V17h5v-5.5h1V10h-2.5zm0 5.5h-2v-4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/FolderOff.js b/icons/es5/FolderOff.js index 53461c2c87..a446ca2966 100644 --- a/icons/es5/FolderOff.js +++ b/icons/es5/FolderOff.js @@ -7,9 +7,11 @@ function SvgFolderOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6l-2-2H6.83L22 19.17V6zM2.1 2.1L.69 3.51 2 4.83V20h15.17l3.32 3.31 1.41-1.41z" + d: "M12 6l-2-2H6.83L22 19.17V6zM2.1 2.1L.69 3.51 2 4.83V20h15.17l3.32 3.31 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/FolderOpen.js b/icons/es5/FolderOpen.js index cfc61941e8..67dbe78d6f 100644 --- a/icons/es5/FolderOpen.js +++ b/icons/es5/FolderOpen.js @@ -7,9 +7,11 @@ function SvgFolderOpen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H12l-2-2H2v16h20V6zm-2 12H4V8h16v10z" + d: "M22 6H12l-2-2H2v16h20V6zm-2 12H4V8h16v10z", + fill: "currentColor" })); } diff --git a/icons/es5/FolderShared.js b/icons/es5/FolderShared.js index 6ea2b1eb60..d644eba668 100644 --- a/icons/es5/FolderShared.js +++ b/icons/es5/FolderShared.js @@ -7,9 +7,11 @@ function SvgFolderShared(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H12l-2-2H2v16h20V6zm-7 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z" + d: "M22 6H12l-2-2H2v16h20V6zm-7 3c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8h-8v-1c0-1.33 2.67-2 4-2s4 .67 4 2v1z", + fill: "currentColor" })); } diff --git a/icons/es5/FolderSpecial.js b/icons/es5/FolderSpecial.js index 1c5c8aadf9..eae0e2869d 100644 --- a/icons/es5/FolderSpecial.js +++ b/icons/es5/FolderSpecial.js @@ -7,9 +7,11 @@ function SvgFolderSpecial(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H12l-2-2H2v16h20V6zm-4.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z" + d: "M22 6H12l-2-2H2v16h20V6zm-4.06 11L15 15.28 12.06 17l.78-3.33-2.59-2.24 3.41-.29L15 8l1.34 3.14 3.41.29-2.59 2.24.78 3.33z", + fill: "currentColor" })); } diff --git a/icons/es5/FolderZip.js b/icons/es5/FolderZip.js index 9197c4a148..2e27840767 100644 --- a/icons/es5/FolderZip.js +++ b/icons/es5/FolderZip.js @@ -7,9 +7,11 @@ function SvgFolderZip(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6l-2-2H2v16h20V6H12zm6 6h-2v2h2v2h-2v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2v2z" + d: "M12 6l-2-2H2v16h20V6H12zm6 6h-2v2h2v2h-2v2h-2v-2h2v-2h-2v-2h2v-2h-2V8h2v2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FollowTheSigns.js b/icons/es5/FollowTheSigns.js index 6bc664547f..0c866e5904 100644 --- a/icons/es5/FollowTheSigns.js +++ b/icons/es5/FollowTheSigns.js @@ -7,9 +7,11 @@ function SvgFollowTheSigns(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75M13 2v7h3.75v14h1.5V9H22V2h-9zm5.01 6V6.25H14.5v-1.5h3.51V3l2.49 2.5L18.01 8z" + d: "M9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75M13 2v7h3.75v14h1.5V9H22V2h-9zm5.01 6V6.25H14.5v-1.5h3.51V3l2.49 2.5L18.01 8z", + fill: "currentColor" })); } diff --git a/icons/es5/FontDownload.js b/icons/es5/FontDownload.js index 6d59deb06f..32dc0fddb6 100644 --- a/icons/es5/FontDownload.js +++ b/icons/es5/FontDownload.js @@ -7,9 +7,11 @@ function SvgFontDownload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.93 13.5h4.14L12 7.98 9.93 13.5zM22 2H2v20h20V2zm-6.05 16.5l-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z" + d: "M9.93 13.5h4.14L12 7.98 9.93 13.5zM22 2H2v20h20V2zm-6.05 16.5l-1.14-3H9.17l-1.12 3H5.96l5.11-13h1.86l5.11 13h-2.09z", + fill: "currentColor" })); } diff --git a/icons/es5/FontDownloadOff.js b/icons/es5/FontDownloadOff.js index ec5fa0790f..d364eff4f7 100644 --- a/icons/es5/FontDownloadOff.js +++ b/icons/es5/FontDownloadOff.js @@ -7,9 +7,11 @@ function SvgFontDownloadOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.58 9.75l-.87-.87.23-.66h.1l.54 1.53zm7.91 13.56L19.17 22H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zm-8.39-8.38l-3.3-3.3L6.41 18h2.08l1.09-3.07h2.52zm-1.75-7.41L10.92 6h2.14l2.55 6.79L22 19.17V2H4.83l5.52 5.52z" + d: "M12.58 9.75l-.87-.87.23-.66h.1l.54 1.53zm7.91 13.56L19.17 22H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zm-8.39-8.38l-3.3-3.3L6.41 18h2.08l1.09-3.07h2.52zm-1.75-7.41L10.92 6h2.14l2.55 6.79L22 19.17V2H4.83l5.52 5.52z", + fill: "currentColor" })); } diff --git a/icons/es5/FoodBank.js b/icons/es5/FoodBank.js index b8699df8e1..2c4fc6e65f 100644 --- a/icons/es5/FoodBank.js +++ b/icons/es5/FoodBank.js @@ -7,9 +7,11 @@ function SvgFoodBank(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L4 9v12h16V9l-8-6zm.5 9.5c0 .83-.67 1.5-1.5 1.5v4h-1v-4c-.83 0-1.5-.67-1.5-1.5v-3h1v3h.5v-3h1v3h.5v-3h1v3zM15 18h-1v-3.5h-1v-3c0-1.1.9-2 2-2V18z" + d: "M12 3L4 9v12h16V9l-8-6zm.5 9.5c0 .83-.67 1.5-1.5 1.5v4h-1v-4c-.83 0-1.5-.67-1.5-1.5v-3h1v3h.5v-3h1v3h.5v-3h1v3zM15 18h-1v-3.5h-1v-3c0-1.1.9-2 2-2V18z", + fill: "currentColor" })); } diff --git a/icons/es5/Forest.js b/icons/es5/Forest.js index 6cd8f6748c..e0b56a82e1 100644 --- a/icons/es5/Forest.js +++ b/icons/es5/Forest.js @@ -7,11 +7,14 @@ function SvgForest(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 12L9 2 2 12h1.86L0 18h7v4h4v-4h7l-3.86-6z" + d: "M16 12L9 2 2 12h1.86L0 18h7v4h4v-4h7l-3.86-6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20.14 12H22L15 2l-2.39 3.41L17.92 13h-1.95l3.22 5H24zM13 19h4v3h-4z" + d: "M20.14 12H22L15 2l-2.39 3.41L17.92 13h-1.95l3.22 5H24zM13 19h4v3h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/ForkLeft.js b/icons/es5/ForkLeft.js index a05c49ec57..0b553233a2 100644 --- a/icons/es5/ForkLeft.js +++ b/icons/es5/ForkLeft.js @@ -7,9 +7,11 @@ function SvgForkLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.41 15.59L8 17l-4-4 4-4 1.41 1.41L7.83 12c1.51-.33 3.73.08 5.17 1.36V6.83l-1.59 1.59L10 7l4-4 4 4-1.41 1.41L15 6.83V21h-2v-4c-.73-2.58-3.07-3.47-5.17-3l1.58 1.59z" + d: "M9.41 15.59L8 17l-4-4 4-4 1.41 1.41L7.83 12c1.51-.33 3.73.08 5.17 1.36V6.83l-1.59 1.59L10 7l4-4 4 4-1.41 1.41L15 6.83V21h-2v-4c-.73-2.58-3.07-3.47-5.17-3l1.58 1.59z", + fill: "currentColor" })); } diff --git a/icons/es5/ForkRight.js b/icons/es5/ForkRight.js index 9b2cc2c213..e462aaac78 100644 --- a/icons/es5/ForkRight.js +++ b/icons/es5/ForkRight.js @@ -7,9 +7,11 @@ function SvgForkRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.59 15.59L16 17l4-4-4-4-1.41 1.41L16.17 12c-1.51-.33-3.73.08-5.17 1.36V6.83l1.59 1.59L14 7l-4-4-4 4 1.41 1.41L9 6.83V21h2v-4c.73-2.58 3.07-3.47 5.17-3l-1.58 1.59z" + d: "M14.59 15.59L16 17l4-4-4-4-1.41 1.41L16.17 12c-1.51-.33-3.73.08-5.17 1.36V6.83l1.59 1.59L14 7l-4-4-4 4 1.41 1.41L9 6.83V21h2v-4c.73-2.58 3.07-3.47 5.17-3l-1.58 1.59z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatAlignCenter.js b/icons/es5/FormatAlignCenter.js index 9ae41af5bd..246586e9f6 100644 --- a/icons/es5/FormatAlignCenter.js +++ b/icons/es5/FormatAlignCenter.js @@ -7,9 +7,11 @@ function SvgFormatAlignCenter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z" + d: "M7 15v2h10v-2H7zm-4 6h18v-2H3v2zm0-8h18v-2H3v2zm4-6v2h10V7H7zM3 3v2h18V3H3z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatAlignJustify.js b/icons/es5/FormatAlignJustify.js index 203977a0a2..afea9fabb5 100644 --- a/icons/es5/FormatAlignJustify.js +++ b/icons/es5/FormatAlignJustify.js @@ -7,9 +7,11 @@ function SvgFormatAlignJustify(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z" + d: "M3 21h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18v-2H3v2zm0-4h18V7H3v2zm0-6v2h18V3H3z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatAlignLeft.js b/icons/es5/FormatAlignLeft.js index 27b4f31448..1c767eb39e 100644 --- a/icons/es5/FormatAlignLeft.js +++ b/icons/es5/FormatAlignLeft.js @@ -7,9 +7,11 @@ function SvgFormatAlignLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z" + d: "M15 15H3v2h12v-2zm0-8H3v2h12V7zM3 13h18v-2H3v2zm0 8h18v-2H3v2zM3 3v2h18V3H3z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatAlignRight.js b/icons/es5/FormatAlignRight.js index 5128d9eef6..5fca3ebe49 100644 --- a/icons/es5/FormatAlignRight.js +++ b/icons/es5/FormatAlignRight.js @@ -7,9 +7,11 @@ function SvgFormatAlignRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z" + d: "M3 21h18v-2H3v2zm6-4h12v-2H9v2zm-6-4h18v-2H3v2zm6-4h12V7H9v2zM3 3v2h18V3H3z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatBold.js b/icons/es5/FormatBold.js index d861b90594..53cddfb107 100644 --- a/icons/es5/FormatBold.js +++ b/icons/es5/FormatBold.js @@ -7,9 +7,11 @@ function SvgFormatBold(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z" + d: "M15.6 10.79c.97-.67 1.65-1.77 1.65-2.79 0-2.26-1.75-4-4-4H7v14h7.04c2.09 0 3.71-1.7 3.71-3.79 0-1.52-.86-2.82-2.15-3.42zM10 6.5h3c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5h-3v-3zm3.5 9H10v-3h3.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatClear.js b/icons/es5/FormatClear.js index e8de1496cf..d1a6864143 100644 --- a/icons/es5/FormatClear.js +++ b/icons/es5/FormatClear.js @@ -7,9 +7,11 @@ function SvgFormatClear(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z" + d: "M20 8V5H6.39l3 3h1.83l-.55 1.28 2.09 2.1L14.21 8zM3.41 4.86L2 6.27l6.97 6.97L6.5 19h3l1.57-3.66L16.73 21l1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatColorFill.js b/icons/es5/FormatColorFill.js index d89745fbd3..029795c55c 100644 --- a/icons/es5/FormatColorFill.js +++ b/icons/es5/FormatColorFill.js @@ -7,9 +7,11 @@ function SvgFormatColorFill(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 17.62L17.62 10l-10-10-1.41 1.41 2.38 2.38L2.38 10 10 17.62zm0-12.41L14.79 10H5.21L10 5.21zM19 17c1.1 0 2-.9 2-2 0-1.33-2-3.5-2-3.5s-2 2.17-2 3.5c0 1.1.9 2 2 2zM2 20h20v4H2z" + d: "M10 17.62L17.62 10l-10-10-1.41 1.41 2.38 2.38L2.38 10 10 17.62zm0-12.41L14.79 10H5.21L10 5.21zM19 17c1.1 0 2-.9 2-2 0-1.33-2-3.5-2-3.5s-2 2.17-2 3.5c0 1.1.9 2 2 2zM2 20h20v4H2z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatColorReset.js b/icons/es5/FormatColorReset.js index a2d71dfef8..ad115fdfd5 100644 --- a/icons/es5/FormatColorReset.js +++ b/icons/es5/FormatColorReset.js @@ -7,9 +7,11 @@ function SvgFormatColorReset(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 14c0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l8.44 8.44c.03-.27.06-.55.06-.83zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14z" + d: "M18 14c0-3.98-6-10.8-6-10.8s-1.18 1.35-2.5 3.19l8.44 8.44c.03-.27.06-.55.06-.83zM5.41 5.14L4 6.55l3.32 3.32C6.55 11.33 6 12.79 6 14c0 3.31 2.69 6 6 6 1.52 0 2.9-.57 3.95-1.5l2.63 2.63L20 19.72 5.41 5.14z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatColorText.js b/icons/es5/FormatColorText.js index 8db3405391..76ca45a375 100644 --- a/icons/es5/FormatColorText.js +++ b/icons/es5/FormatColorText.js @@ -7,9 +7,11 @@ function SvgFormatColorText(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61l2.03-5.79h.12l2.03 5.79H9.91z" + d: "M2 20h20v4H2v-4zm3.49-3h2.42l1.27-3.58h5.65L16.09 17h2.42L13.25 3h-2.5L5.49 17zm4.42-5.61l2.03-5.79h.12l2.03 5.79H9.91z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatIndentDecrease.js b/icons/es5/FormatIndentDecrease.js index bc3fcc2fba..9d7a05aa12 100644 --- a/icons/es5/FormatIndentDecrease.js +++ b/icons/es5/FormatIndentDecrease.js @@ -7,9 +7,11 @@ function SvgFormatIndentDecrease(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" + d: "M11 17h10v-2H11v2zm-8-5l4 4V8l-4 4zm0 9h18v-2H3v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatIndentIncrease.js b/icons/es5/FormatIndentIncrease.js index 254eb4025d..6bb6395bad 100644 --- a/icons/es5/FormatIndentIncrease.js +++ b/icons/es5/FormatIndentIncrease.js @@ -7,9 +7,11 @@ function SvgFormatIndentIncrease(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z" + d: "M3 21h18v-2H3v2zM3 8v8l4-4-4-4zm8 9h10v-2H11v2zM3 3v2h18V3H3zm8 6h10V7H11v2zm0 4h10v-2H11v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatItalic.js b/icons/es5/FormatItalic.js index 729bbee905..6b30a98bed 100644 --- a/icons/es5/FormatItalic.js +++ b/icons/es5/FormatItalic.js @@ -7,9 +7,11 @@ function SvgFormatItalic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z" + d: "M10 4v3h2.21l-3.42 8H6v3h8v-3h-2.21l3.42-8H18V4h-8z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatLineSpacing.js b/icons/es5/FormatLineSpacing.js index 8fba4b0e2e..ba9d94300d 100644 --- a/icons/es5/FormatLineSpacing.js +++ b/icons/es5/FormatLineSpacing.js @@ -7,9 +7,11 @@ function SvgFormatLineSpacing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z" + d: "M6 7h2.5L5 3.5 1.5 7H4v10H1.5L5 20.5 8.5 17H6V7zm4-2v2h12V5H10zm0 14h12v-2H10v2zm0-6h12v-2H10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatListBulleted.js b/icons/es5/FormatListBulleted.js index 22455d8cb5..7eb01ec641 100644 --- a/icons/es5/FormatListBulleted.js +++ b/icons/es5/FormatListBulleted.js @@ -7,9 +7,11 @@ function SvgFormatListBulleted(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z" + d: "M4 10.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-6c-.83 0-1.5.67-1.5 1.5S3.17 7.5 4 7.5 5.5 6.83 5.5 6 4.83 4.5 4 4.5zm0 12c-.83 0-1.5.68-1.5 1.5s.68 1.5 1.5 1.5 1.5-.68 1.5-1.5-.67-1.5-1.5-1.5zM7 19h14v-2H7v2zm0-6h14v-2H7v2zm0-8v2h14V5H7z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatListNumbered.js b/icons/es5/FormatListNumbered.js index 5452acd9ad..eab4c677a1 100644 --- a/icons/es5/FormatListNumbered.js +++ b/icons/es5/FormatListNumbered.js @@ -7,9 +7,11 @@ function SvgFormatListNumbered(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z" + d: "M2 17h2v.5H3v1h1v.5H2v1h3v-4H2v1zm1-9h1V4H2v1h1v3zm-1 3h1.8L2 13.1v.9h3v-1H3.2L5 10.9V10H2v1zm5-6v2h14V5H7zm0 14h14v-2H7v2zm0-6h14v-2H7v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatListNumberedRtl.js b/icons/es5/FormatListNumberedRtl.js index be7db24434..e7a57af465 100644 --- a/icons/es5/FormatListNumberedRtl.js +++ b/icons/es5/FormatListNumberedRtl.js @@ -7,9 +7,11 @@ function SvgFormatListNumberedRtl(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z" + d: "M18 17h2v.5h-1v1h1v.5h-2v1h3v-4h-3v1zm1-9h1V4h-2v1h1v3zm-1 3h1.8L18 13.1v.9h3v-1h-1.8l1.8-2.1V10h-3v1zM2 5h14v2H2V5zm0 12h14v2H2v-2zm0-6h14v2H2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatOverline.js b/icons/es5/FormatOverline.js index 8dc8c07506..f191aaa1c1 100644 --- a/icons/es5/FormatOverline.js +++ b/icons/es5/FormatOverline.js @@ -7,9 +7,11 @@ function SvgFormatOverline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3v2H5V3h14zm-7 4c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm0 11.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 9.5 12 9.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z" + d: "M19 3v2H5V3h14zm-7 4c-3.87 0-7 3.13-7 7s3.13 7 7 7 7-3.13 7-7-3.13-7-7-7zm0 11.5c-2.49 0-4.5-2.01-4.5-4.5S9.51 9.5 12 9.5s4.5 2.01 4.5 4.5-2.01 4.5-4.5 4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatPaint.js b/icons/es5/FormatPaint.js index e80e5be3ff..5ca2f62ce4 100644 --- a/icons/es5/FormatPaint.js +++ b/icons/es5/FormatPaint.js @@ -7,9 +7,11 @@ function SvgFormatPaint(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4V2H4v6h14V6h1v4H9v12h4V12h8V4h-3z" + d: "M18 4V2H4v6h14V6h1v4H9v12h4V12h8V4h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatQuote.js b/icons/es5/FormatQuote.js index 1473734aa4..f7f02a313b 100644 --- a/icons/es5/FormatQuote.js +++ b/icons/es5/FormatQuote.js @@ -7,9 +7,11 @@ function SvgFormatQuote(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 17h3l2-4V7H4v6h3l-2 4zm10 0h3l2-4V7h-6v6h3l-2 4z" + d: "M5 17h3l2-4V7H4v6h3l-2 4zm10 0h3l2-4V7h-6v6h3l-2 4z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatShapes.js b/icons/es5/FormatShapes.js index e0c45af59d..a712e5f1f8 100644 --- a/icons/es5/FormatShapes.js +++ b/icons/es5/FormatShapes.js @@ -7,9 +7,11 @@ function SvgFormatShapes(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z" + d: "M23 7V1h-6v2H7V1H1v6h2v10H1v6h6v-2h10v2h6v-6h-2V7h2zM3 3h2v2H3V3zm2 18H3v-2h2v2zm12-2H7v-2H5V7h2V5h10v2h2v10h-2v2zm4 2h-2v-2h2v2zM19 5V3h2v2h-2zm-5.27 9h-3.49l-.73 2H7.89l3.4-9h1.4l3.41 9h-1.63l-.74-2zm-3.04-1.26h2.61L12 8.91l-1.31 3.83z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatStrikethrough.js b/icons/es5/FormatStrikethrough.js index bef64604e0..cdfc66459b 100644 --- a/icons/es5/FormatStrikethrough.js +++ b/icons/es5/FormatStrikethrough.js @@ -7,9 +7,11 @@ function SvgFormatStrikethrough(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z" + d: "M10 19h4v-3h-4v3zM5 4v3h5v3h4V7h5V4H5zM3 14h18v-2H3v2z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatTextdirectionLToR.js b/icons/es5/FormatTextdirectionLToR.js index c397d83b5f..966dd65ff5 100644 --- a/icons/es5/FormatTextdirectionLToR.js +++ b/icons/es5/FormatTextdirectionLToR.js @@ -7,9 +7,11 @@ function SvgFormatTextdirectionLToR(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8l-4-4v3H5v2h12v3l4-4z" + d: "M9 10v5h2V4h2v11h2V4h2V2H9C6.79 2 5 3.79 5 6s1.79 4 4 4zm12 8l-4-4v3H5v2h12v3l4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatTextdirectionRToL.js b/icons/es5/FormatTextdirectionRToL.js index 393a5508af..9699f668db 100644 --- a/icons/es5/FormatTextdirectionRToL.js +++ b/icons/es5/FormatTextdirectionRToL.js @@ -7,9 +7,11 @@ function SvgFormatTextdirectionRToL(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z" + d: "M10 10v5h2V4h2v11h2V4h2V2h-8C7.79 2 6 3.79 6 6s1.79 4 4 4zm-2 7v-3l-4 4 4 4v-3h12v-2H8z", + fill: "currentColor" })); } diff --git a/icons/es5/FormatUnderlined.js b/icons/es5/FormatUnderlined.js index 12f983d947..21ce9199ae 100644 --- a/icons/es5/FormatUnderlined.js +++ b/icons/es5/FormatUnderlined.js @@ -7,9 +7,11 @@ function SvgFormatUnderlined(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z" + d: "M12 17c3.31 0 6-2.69 6-6V3h-2.5v8c0 1.93-1.57 3.5-3.5 3.5S8.5 12.93 8.5 11V3H6v8c0 3.31 2.69 6 6 6zm-7 2v2h14v-2H5z", + fill: "currentColor" })); } diff --git a/icons/es5/Fort.js b/icons/es5/Fort.js index 8d31f01e58..f966450dcd 100644 --- a/icons/es5/Fort.js +++ b/icons/es5/Fort.js @@ -7,9 +7,11 @@ function SvgFort(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3v2h-2V3h-2v2h-2V3h-2v4l2 2v1H9V9l2-2V3H9v2H7V3H5v2H3V3H1v4l2 2v6l-2 2v4h9v-5h4v5h9v-4l-2-2V9l2-2V3z" + d: "M21 3v2h-2V3h-2v2h-2V3h-2v4l2 2v1H9V9l2-2V3H9v2H7V3H5v2H3V3H1v4l2 2v6l-2 2v4h9v-5h4v5h9v-4l-2-2V9l2-2V3z", + fill: "currentColor" })); } diff --git a/icons/es5/Forum.js b/icons/es5/Forum.js index ab4e60d281..ff854b9f84 100644 --- a/icons/es5/Forum.js +++ b/icons/es5/Forum.js @@ -7,9 +7,11 @@ function SvgForum(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6h-3v9H6v3h12l4 4V6zm-5 7V2H2v15l4-4h11z" + d: "M22 6h-3v9H6v3h12l4 4V6zm-5 7V2H2v15l4-4h11z", + fill: "currentColor" })); } diff --git a/icons/es5/Forward.js b/icons/es5/Forward.js index 5784bf7323..6497a5adba 100644 --- a/icons/es5/Forward.js +++ b/icons/es5/Forward.js @@ -7,9 +7,11 @@ function SvgForward(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 8V4l8 8-8 8v-4H4V8h8z" + d: "M12 8V4l8 8-8 8v-4H4V8h8z", + fill: "currentColor" })); } diff --git a/icons/es5/Forward10.js b/icons/es5/Forward10.js index cde4e8b7ff..841a14cad6 100644 --- a/icons/es5/Forward10.js +++ b/icons/es5/Forward10.js @@ -7,11 +7,14 @@ function SvgForward10(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z" + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" + d: "M10.9 16v-4.27h-.09l-1.77.63v.69l1.01-.31V16zm3.42-4.22c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.29-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z", + fill: "currentColor" })); } diff --git a/icons/es5/Forward30.js b/icons/es5/Forward30.js index 1fb1fbd429..eebf3fffdc 100644 --- a/icons/es5/Forward30.js +++ b/icons/es5/Forward30.js @@ -7,9 +7,11 @@ function SvgForward30(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04a.69.69 0 01-.45-.15c-.06-.05-.1-.1-.13-.17s-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85a.455.455 0 01.17-.35c.05-.04.11-.07.18-.1s.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z" + d: "M18 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-7.46 2.22c-.06.05-.12.09-.2.12s-.17.04-.27.04a.69.69 0 01-.45-.15c-.06-.05-.1-.1-.13-.17s-.05-.14-.05-.22h-.85c0 .21.04.39.12.55s.19.28.33.38.29.18.46.23.35.07.53.07c.21 0 .41-.03.6-.08s.34-.14.48-.24.24-.24.32-.39.12-.33.12-.53c0-.23-.06-.44-.18-.61s-.3-.3-.54-.39c.1-.05.2-.1.28-.17s.15-.14.2-.22.1-.16.13-.25.04-.18.04-.27c0-.2-.04-.37-.11-.53s-.17-.28-.3-.38-.28-.18-.46-.23-.37-.08-.59-.08c-.19 0-.38.03-.54.08s-.32.13-.44.23-.23.22-.3.37-.11.3-.11.48h.85a.455.455 0 01.17-.35c.05-.04.11-.07.18-.1s.14-.03.22-.03c.1 0 .18.01.25.04s.13.06.18.11.08.11.11.17.04.14.04.22c0 .18-.05.32-.16.43s-.26.16-.48.16h-.43v.66h.45c.11 0 .2.01.29.04s.16.06.22.11.11.12.14.2.05.18.05.29c0 .09-.01.17-.04.24s-.08.11-.13.17zm3.9-3.44c-.18-.07-.37-.1-.59-.1s-.41.03-.59.1-.33.18-.45.33-.23.34-.29.57-.1.5-.1.82v.74c0 .32.04.6.11.82s.17.42.3.57.28.26.46.33.37.1.59.1.41-.03.59-.1.33-.18.45-.33.22-.34.29-.57.1-.5.1-.82v-.74c0-.32-.04-.6-.11-.82s-.17-.42-.3-.57-.28-.26-.46-.33zm.01 2.57c0 .19-.01.35-.04.48s-.06.24-.11.32-.11.14-.19.17-.16.05-.25.05-.18-.02-.25-.05-.14-.09-.19-.17-.09-.19-.12-.32-.04-.29-.04-.48v-.97c0-.19.01-.35.04-.48s.06-.23.12-.31.11-.14.19-.17.16-.05.25-.05.18.02.25.05.14.09.19.17.09.18.12.31.04.29.04.48v.97z", + fill: "currentColor" })); } diff --git a/icons/es5/Forward5.js b/icons/es5/Forward5.js index 4584f5709c..9120b139f7 100644 --- a/icons/es5/Forward5.js +++ b/icons/es5/Forward5.js @@ -7,9 +7,11 @@ function SvgForward5(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z" + d: "M17.95 13c0 3.31-2.69 6-6 6s-6-2.69-6-6 2.69-6 6-6v4l5-5-5-5v4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8h-2zm-5.52 2.15c-.05.07-.11.13-.18.17s-.17.06-.27.06c-.17 0-.31-.05-.42-.15s-.17-.24-.19-.41h-.84c.01.2.05.37.13.53s.19.28.32.39.29.19.46.24.35.08.53.08c.24 0 .46-.04.64-.12s.33-.18.45-.31.21-.28.27-.45.09-.35.09-.54c0-.22-.03-.43-.09-.6s-.14-.33-.25-.45-.25-.22-.41-.28-.34-.1-.55-.1c-.07 0-.14.01-.2.02s-.13.02-.18.04-.1.03-.15.05-.08.04-.11.05l.11-.92h1.7v-.71H10.9l-.25 2.17.67.17c.03-.03.06-.06.1-.09s.07-.05.12-.07.1-.04.15-.05.13-.02.2-.02c.12 0 .22.02.3.05s.16.09.21.15.1.14.13.24.04.19.04.31-.01.22-.03.31-.06.17-.11.24z", + fill: "currentColor" })); } diff --git a/icons/es5/ForwardToInbox.js b/icons/es5/ForwardToInbox.js index 410f2a6199..88adead664 100644 --- a/icons/es5/ForwardToInbox.js +++ b/icons/es5/ForwardToInbox.js @@ -7,9 +7,11 @@ function SvgForwardToInbox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h11v-2H4V8l8 5 8-5v5h2V4zm-10 7L4 6h16l-8 5zm7 4l4 4-4 4v-3h-4v-2h4v-3z" + d: "M22 4H2v16h11v-2H4V8l8 5 8-5v5h2V4zm-10 7L4 6h16l-8 5zm7 4l4 4-4 4v-3h-4v-2h4v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Foundation.js b/icons/es5/Foundation.js index 8aad6d7fc9..fa4af1c3f8 100644 --- a/icons/es5/Foundation.js +++ b/icons/es5/Foundation.js @@ -7,9 +7,11 @@ function SvgFoundation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z" + d: "M19 12h3L12 3 2 12h3v3H3v2h2v3h2v-3h4v3h2v-3h4v3h2v-3h2v-2h-2v-3zM7 15v-4.81l4-3.6V15H7zm6 0V6.59l4 3.6V15h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/FreeBreakfast.js b/icons/es5/FreeBreakfast.js index 0b4fdce915..f5d8f86ab0 100644 --- a/icons/es5/FreeBreakfast.js +++ b/icons/es5/FreeBreakfast.js @@ -7,9 +7,11 @@ function SvgFreeBreakfast(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 3H4v14h14v-7h2a2 2 0 002-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4v-2z" + d: "M20 3H4v14h14v-7h2a2 2 0 002-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM4 19h16v2H4v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/FreeCancellation.js b/icons/es5/FreeCancellation.js index 57960adac7..0add90c31d 100644 --- a/icons/es5/FreeCancellation.js +++ b/icons/es5/FreeCancellation.js @@ -7,9 +7,11 @@ function SvgFreeCancellation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.21 20H5V10h14v4.38l2-2V4h-3V2h-2v2H8V2H6v2H3v18h10.21l-2-2zm5.33 2.5L13 18.96l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66zM10.41 14L12 15.59 10.59 17 9 15.41 7.41 17 6 15.59 7.59 14 6 12.41 7.41 11 9 12.59 10.59 11 12 12.41 10.41 14z" + d: "M11.21 20H5V10h14v4.38l2-2V4h-3V2h-2v2H8V2H6v2H3v18h10.21l-2-2zm5.33 2.5L13 18.96l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66zM10.41 14L12 15.59 10.59 17 9 15.41 7.41 17 6 15.59 7.59 14 6 12.41 7.41 11 9 12.59 10.59 11 12 12.41 10.41 14z", + fill: "currentColor" })); } diff --git a/icons/es5/FrontHand.js b/icons/es5/FrontHand.js index a6669bf86e..7d48f5fa62 100644 --- a/icons/es5/FrontHand.js +++ b/icons/es5/FrontHand.js @@ -7,9 +7,11 @@ function SvgFrontHand(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.5 8v7H18c-1.65 0-3 1.35-3 3h-1c0-2.04 1.53-3.72 3.5-3.97V2H15v9h-1V0h-2.5v11h-1V1.5H8V12H7V4.5H4.5v11.25c0 4.56 3.69 8.25 8.25 8.25S21 20.31 21 15.75V8h-2.5z" + d: "M18.5 8v7H18c-1.65 0-3 1.35-3 3h-1c0-2.04 1.53-3.72 3.5-3.97V2H15v9h-1V0h-2.5v11h-1V1.5H8V12H7V4.5H4.5v11.25c0 4.56 3.69 8.25 8.25 8.25S21 20.31 21 15.75V8h-2.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Fullscreen.js b/icons/es5/Fullscreen.js index 9ce04a8cbf..4691623e04 100644 --- a/icons/es5/Fullscreen.js +++ b/icons/es5/Fullscreen.js @@ -7,9 +7,11 @@ function SvgFullscreen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z" + d: "M7 14H5v5h5v-2H7v-3zm-2-4h2V7h3V5H5v5zm12 7h-3v2h5v-5h-2v3zM14 5v2h3v3h2V5h-5z", + fill: "currentColor" })); } diff --git a/icons/es5/FullscreenExit.js b/icons/es5/FullscreenExit.js index a78ae69710..54b65fd9f9 100644 --- a/icons/es5/FullscreenExit.js +++ b/icons/es5/FullscreenExit.js @@ -7,9 +7,11 @@ function SvgFullscreenExit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z" + d: "M5 16h3v3h2v-5H5v2zm3-8H5v2h5V5H8v3zm6 11h2v-3h3v-2h-5v5zm2-11V5h-2v5h5V8h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Functions.js b/icons/es5/Functions.js index 9213a3d1ab..a53a63b33b 100644 --- a/icons/es5/Functions.js +++ b/icons/es5/Functions.js @@ -7,9 +7,11 @@ function SvgFunctions(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z" + d: "M18 4H6v2l6.5 6L6 18v2h12v-3h-7l5-5-5-5h7V4z", + fill: "currentColor" })); } diff --git a/icons/es5/GMobiledata.js b/icons/es5/GMobiledata.js index 3b11cd9cc1..80ca4be7b2 100644 --- a/icons/es5/GMobiledata.js +++ b/icons/es5/GMobiledata.js @@ -7,9 +7,11 @@ function SvgGMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 11v2h2v2H9V9h7V7H7v10h9v-6h-4z" + d: "M12 11v2h2v2H9V9h7V7H7v10h9v-6h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/GTranslate.js b/icons/es5/GTranslate.js index 2349c8af63..c45a36a40c 100644 --- a/icons/es5/GTranslate.js +++ b/icons/es5/GTranslate.js @@ -7,9 +7,11 @@ function SvgGTranslate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z" + d: "M20 5h-9.12L10 2H4c-1.1 0-2 .9-2 2v13c0 1.1.9 2 2 2h7l1 3h8c1.1 0 2-.9 2-2V7c0-1.1-.9-2-2-2zM7.17 14.59c-2.25 0-4.09-1.83-4.09-4.09s1.83-4.09 4.09-4.09c1.04 0 1.99.37 2.74 1.07l.07.06-1.23 1.18-.06-.05c-.29-.27-.78-.59-1.52-.59-1.31 0-2.38 1.09-2.38 2.42s1.07 2.42 2.38 2.42c1.37 0 1.96-.87 2.12-1.46H7.08V9.91h3.95l.01.07c.04.21.05.4.05.61 0 2.35-1.61 4-3.92 4zm6.03-1.71c.33.6.74 1.18 1.19 1.7l-.54.53-.65-2.23zm.77-.76h-.99l-.31-1.04h3.99s-.34 1.31-1.56 2.74c-.52-.62-.89-1.23-1.13-1.7zM21 20c0 .55-.45 1-1 1h-7l2-2-.81-2.77.92-.92L17.79 18l.73-.73-2.71-2.68c.9-1.03 1.6-2.25 1.92-3.51H19v-1.04h-3.64V9h-1.04v1.04h-1.96L11.18 6H20c.55 0 1 .45 1 1v13z", + fill: "currentColor" })); } diff --git a/icons/es5/Gamepad.js b/icons/es5/Gamepad.js index caa9aaa781..3d74006586 100644 --- a/icons/es5/Gamepad.js +++ b/icons/es5/Gamepad.js @@ -7,9 +7,11 @@ function SvgGamepad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" + d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Games.js b/icons/es5/Games.js index a12a467e45..932f82c8df 100644 --- a/icons/es5/Games.js +++ b/icons/es5/Games.js @@ -7,9 +7,11 @@ function SvgGames(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z" + d: "M15 7.5V2H9v5.5l3 3 3-3zM7.5 9H2v6h5.5l3-3-3-3zM9 16.5V22h6v-5.5l-3-3-3 3zM16.5 9l-3 3 3 3H22V9h-5.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Garage.js b/icons/es5/Garage.js index 7971aef6b7..f082cda466 100644 --- a/icons/es5/Garage.js +++ b/icons/es5/Garage.js @@ -7,7 +7,8 @@ function SvgGarage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 15, cy: 13, @@ -17,9 +18,11 @@ function SvgGarage(props) { cy: 13, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M8.33 7.5l-.66 2h8.66l-.66-2z" + d: "M8.33 7.5l-.66 2h8.66l-.66-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zm-3 16.5h-2v-2H7v2H5v-7.31L6.89 5.5H17.1l1.9 5.69v7.31z" + d: "M22 2H2v20h20V2zm-3 16.5h-2v-2H7v2H5v-7.31L6.89 5.5H17.1l1.9 5.69v7.31z", + fill: "currentColor" })); } diff --git a/icons/es5/GasMeter.js b/icons/es5/GasMeter.js index 4d601d761a..86f49f4991 100644 --- a/icons/es5/GasMeter.js +++ b/icons/es5/GasMeter.js @@ -7,9 +7,11 @@ function SvgGasMeter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 4h-5V2h-2v2h-2V2H9v2H4v18h16V4zm-8 14c-1.38 0-2.5-1.1-2.5-2.46 0-1.09.43-1.39 2.5-3.79 2.05 2.38 2.5 2.7 2.5 3.79C14.5 16.9 13.38 18 12 18zm4-8H8V8h8v2z" + d: "M20 4h-5V2h-2v2h-2V2H9v2H4v18h16V4zm-8 14c-1.38 0-2.5-1.1-2.5-2.46 0-1.09.43-1.39 2.5-3.79 2.05 2.38 2.5 2.7 2.5 3.79C14.5 16.9 13.38 18 12 18zm4-8H8V8h8v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Gavel.js b/icons/es5/Gavel.js index 27b4543a59..e5e1a0dbf3 100644 --- a/icons/es5/Gavel.js +++ b/icons/es5/Gavel.js @@ -7,9 +7,11 @@ function SvgGavel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z" + d: "M1 21h12v2H1v-2zM5.24 8.07l2.83-2.83 14.14 14.14-2.83 2.83L5.24 8.07zM12.32 1l5.66 5.66-2.83 2.83-5.66-5.66L12.32 1zM3.83 9.48l5.66 5.66-2.83 2.83L1 12.31l2.83-2.83z", + fill: "currentColor" })); } diff --git a/icons/es5/GeneratingTokens.js b/icons/es5/GeneratingTokens.js index a159b77e9e..98f25b8919 100644 --- a/icons/es5/GeneratingTokens.js +++ b/icons/es5/GeneratingTokens.js @@ -7,9 +7,11 @@ function SvgGeneratingTokens(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 6.5h-2v5H8v-5H6V9h6v1.5zm8.25-6.75L23 5l-2.75 1.25L19 9l-1.25-2.75L15 5l2.75-1.25L19 1l1.25 2.75zm0 14L23 19l-2.75 1.25L19 23l-1.25-2.75L15 19l2.75-1.25L19 15l1.25 2.75z" + d: "M9 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm3 6.5h-2v5H8v-5H6V9h6v1.5zm8.25-6.75L23 5l-2.75 1.25L19 9l-1.25-2.75L15 5l2.75-1.25L19 1l1.25 2.75zm0 14L23 19l-2.75 1.25L19 23l-1.25-2.75L15 19l2.75-1.25L19 15l1.25 2.75z", + fill: "currentColor" })); } diff --git a/icons/es5/Gesture.js b/icons/es5/Gesture.js index 240119c156..ef814496c6 100644 --- a/icons/es5/Gesture.js +++ b/icons/es5/Gesture.js @@ -7,9 +7,11 @@ function SvgGesture(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z" + d: "M4.59 6.89c.7-.71 1.4-1.35 1.71-1.22.5.2 0 1.03-.3 1.52-.25.42-2.86 3.89-2.86 6.31 0 1.28.48 2.34 1.34 2.98.75.56 1.74.73 2.64.46 1.07-.31 1.95-1.4 3.06-2.77 1.21-1.49 2.83-3.44 4.08-3.44 1.63 0 1.65 1.01 1.76 1.79-3.78.64-5.38 3.67-5.38 5.37 0 1.7 1.44 3.09 3.21 3.09 1.63 0 4.29-1.33 4.69-6.1H21v-2.5h-2.47c-.15-1.65-1.09-4.2-4.03-4.2-2.25 0-4.18 1.91-4.94 2.84-.58.73-2.06 2.48-2.29 2.72-.25.3-.68.84-1.11.84-.45 0-.72-.83-.36-1.92.35-1.09 1.4-2.86 1.85-3.52.78-1.14 1.3-1.92 1.3-3.28C8.95 3.69 7.31 3 6.44 3 5.12 3 3.97 4 3.72 4.25c-.36.36-.66.66-.88.93l1.75 1.71zm9.29 11.66c-.31 0-.74-.26-.74-.72 0-.6.73-2.2 2.87-2.76-.3 2.69-1.43 3.48-2.13 3.48z", + fill: "currentColor" })); } diff --git a/icons/es5/GetApp.js b/icons/es5/GetApp.js index 6cc8b16c0b..dc059fe404 100644 --- a/icons/es5/GetApp.js +++ b/icons/es5/GetApp.js @@ -7,9 +7,11 @@ function SvgGetApp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z" + d: "M19 9h-4V3H9v6H5l7 7 7-7zM5 18v2h14v-2H5z", + fill: "currentColor" })); } diff --git a/icons/es5/Gif.js b/icons/es5/Gif.js index 13ed7178de..c2cbafca1d 100644 --- a/icons/es5/Gif.js +++ b/icons/es5/Gif.js @@ -7,9 +7,11 @@ function SvgGif(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.5 9H13v6h-1.5V9zM10 9H5v6h5v-3H8.5v1.5h-2v-3H10V9zm9 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z" + d: "M11.5 9H13v6h-1.5V9zM10 9H5v6h5v-3H8.5v1.5h-2v-3H10V9zm9 1.5V9h-4.5v6H16v-2h2v-1.5h-2v-1h3z", + fill: "currentColor" })); } diff --git a/icons/es5/GifBox.js b/icons/es5/GifBox.js index f9354011a3..24ce727408 100644 --- a/icons/es5/GifBox.js +++ b/icons/es5/GifBox.js @@ -7,9 +7,11 @@ function SvgGifBox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM9.5 13v-1h1v2h-3v-4h3v1h-2v2h1zm3 1h-1v-4h1v4zm4-3h-2v.5H16v1h-1.5V14h-1v-4h3v1z" + d: "M21 3H3v18h18V3zM9.5 13v-1h1v2h-3v-4h3v1h-2v2h1zm3 1h-1v-4h1v4zm4-3h-2v.5H16v1h-1.5V14h-1v-4h3v1z", + fill: "currentColor" })); } diff --git a/icons/es5/Girl.js b/icons/es5/Girl.js index 5f1477d7bf..2cd07c022e 100644 --- a/icons/es5/Girl.js +++ b/icons/es5/Girl.js @@ -7,9 +7,11 @@ function SvgGirl(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7.5c.97 0 1.75-.78 1.75-1.75S12.97 4 12 4s-1.75.78-1.75 1.75S11.03 7.5 12 7.5zm2 8.5v4h-4v-4H8l2.38-6.38a1.733 1.733 0 013.24 0L16 16h-2z" + d: "M12 7.5c.97 0 1.75-.78 1.75-1.75S12.97 4 12 4s-1.75.78-1.75 1.75S11.03 7.5 12 7.5zm2 8.5v4h-4v-4H8l2.38-6.38a1.733 1.733 0 013.24 0L16 16h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Gite.js b/icons/es5/Gite.js index 42d15e688e..15f32951a0 100644 --- a/icons/es5/Gite.js +++ b/icons/es5/Gite.js @@ -7,9 +7,11 @@ function SvgGite(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z" + d: "M18 6H9V4H7v2H6l-4 4v9h20v-9l-4-4zM4 12h10v5H4v-5zm16 5h-4v-6.17l2-2 2 2V17z", + fill: "currentColor" })); } diff --git a/icons/es5/GolfCourse.js b/icons/es5/GolfCourse.js index 5d8f2c8975..98be4bd36d 100644 --- a/icons/es5/GolfCourse.js +++ b/icons/es5/GolfCourse.js @@ -7,13 +7,15 @@ function SvgGolfCourse(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 19.5, cy: 19.5, r: 1.5 }), /*#__PURE__*/React.createElement("path", { - d: "M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z" + d: "M17 5.92L9 2v18H7v-1.73c-1.79.35-3 .99-3 1.73 0 1.1 2.69 2 6 2s6-.9 6-2c0-.99-2.16-1.81-5-1.97V8.98l6-3.06z", + fill: "currentColor" })); } diff --git a/icons/es5/GoogleMeet.js b/icons/es5/GoogleMeet.js index 3d1ff0a943..000790e282 100644 --- a/icons/es5/GoogleMeet.js +++ b/icons/es5/GoogleMeet.js @@ -11,7 +11,7 @@ function SvgGoogleMeet(props) { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink" }, props), /*#__PURE__*/React.createElement("path", { - fill: "url(#google_meet_svg__pattern0)", + fill: "currentColor", d: "M0 .127h24v19.745H0z" }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", { id: "google_meet_svg__pattern0", diff --git a/icons/es5/GppBad.js b/icons/es5/GppBad.js index 72860215bb..612228ae01 100644 --- a/icons/es5/GppBad.js +++ b/icons/es5/GppBad.js @@ -7,9 +7,11 @@ function SvgGppBad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.5 12.09l-1.41 1.41L12 13.42 9.91 15.5 8.5 14.09 10.59 12 8.5 9.91 9.91 8.5 12 10.59l2.09-2.09 1.41 1.41L13.42 12l2.08 2.09z" + d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.5 12.09l-1.41 1.41L12 13.42 9.91 15.5 8.5 14.09 10.59 12 8.5 9.91 9.91 8.5 12 10.59l2.09-2.09 1.41 1.41L13.42 12l2.08 2.09z", + fill: "currentColor" })); } diff --git a/icons/es5/GppGood.js b/icons/es5/GppGood.js index a371d09f73..96887a7ce6 100644 --- a/icons/es5/GppGood.js +++ b/icons/es5/GppGood.js @@ -7,9 +7,11 @@ function SvgGppGood(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z" + d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z", + fill: "currentColor" })); } diff --git a/icons/es5/GppMaybe.js b/icons/es5/GppMaybe.js index 43f8ba1136..148c9cb0a0 100644 --- a/icons/es5/GppMaybe.js +++ b/icons/es5/GppMaybe.js @@ -7,9 +7,11 @@ function SvgGppMaybe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm1 14h-2v-2h2v2zm0-4h-2V7h2v5z" + d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm1 14h-2v-2h2v2zm0-4h-2V7h2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/GpsFixed.js b/icons/es5/GpsFixed.js index 37fe085a00..9e090f624e 100644 --- a/icons/es5/GpsFixed.js +++ b/icons/es5/GpsFixed.js @@ -7,9 +7,11 @@ function SvgGpsFixed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/GpsNotFixed.js b/icons/es5/GpsNotFixed.js index 9c13c846cf..78b1a78670 100644 --- a/icons/es5/GpsNotFixed.js +++ b/icons/es5/GpsNotFixed.js @@ -7,9 +7,11 @@ function SvgGpsNotFixed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.94 11A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + d: "M20.94 11A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/GpsOff.js b/icons/es5/GpsOff.js index dd769953d0..4b1165976a 100644 --- a/icons/es5/GpsOff.js +++ b/icons/es5/GpsOff.js @@ -7,9 +7,11 @@ function SvgGpsOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.94 11A8.994 8.994 0 0013 3.06V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53a6.995 6.995 0 018.87 8.87l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27a6.995 6.995 0 01-9.81-9.81l9.81 9.81z" + d: "M20.94 11A8.994 8.994 0 0013 3.06V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53a6.995 6.995 0 018.87 8.87l1.53 1.53c.4-.86.67-1.79.78-2.77H23v-2h-2.06zM3 4.27l2.04 2.04A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86 3 4.27zm13.27 13.27a6.995 6.995 0 01-9.81-9.81l9.81 9.81z", + fill: "currentColor" })); } diff --git a/icons/es5/Grade.js b/icons/es5/Grade.js index d255cd27e3..ac02db7bc0 100644 --- a/icons/es5/Grade.js +++ b/icons/es5/Grade.js @@ -7,9 +7,11 @@ function SvgGrade(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" + d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z", + fill: "currentColor" })); } diff --git a/icons/es5/Gradient.js b/icons/es5/Gradient.js index 40d63081b9..bd985eab39 100644 --- a/icons/es5/Gradient.js +++ b/icons/es5/Gradient.js @@ -7,9 +7,11 @@ function SvgGradient(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm14-6H3v18h18V3zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z" + d: "M11 9h2v2h-2V9zm-2 2h2v2H9v-2zm4 0h2v2h-2v-2zm2-2h2v2h-2V9zM7 9h2v2H7V9zm14-6H3v18h18V3zM9 18H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm2-7h-2v2h2v2h-2v-2h-2v2h-2v-2h-2v2H9v-2H7v2H5v-2h2v-2H5V5h14v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Grading.js b/icons/es5/Grading.js index 6a08db4abe..492c8e0cf5 100644 --- a/icons/es5/Grading.js +++ b/icons/es5/Grading.js @@ -7,9 +7,11 @@ function SvgGrading(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z" + d: "M4 7h16v2H4V7zm0 6h16v-2H4v2zm0 4h7v-2H4v2zm0 4h7v-2H4v2zm11.41-2.83L14 16.75l-1.41 1.41L15.41 21 20 16.42 18.58 15l-3.17 3.17zM4 3v2h16V3H4z", + fill: "currentColor" })); } diff --git a/icons/es5/Grain.js b/icons/es5/Grain.js index e935a669ed..957772b91f 100644 --- a/icons/es5/Grain.js +++ b/icons/es5/Grain.js @@ -7,9 +7,11 @@ function SvgGrain(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + d: "M10 12c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM6 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm0 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12-8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm-4 8c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-4-4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/GraphicEq.js b/icons/es5/GraphicEq.js index 8ea8c37e26..416f7a65fa 100644 --- a/icons/es5/GraphicEq.js +++ b/icons/es5/GraphicEq.js @@ -7,9 +7,11 @@ function SvgGraphicEq(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z" + d: "M7 18h2V6H7v12zm4 4h2V2h-2v20zm-8-8h2v-4H3v4zm12 4h2V6h-2v12zm4-8v4h2v-4h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Grass.js b/icons/es5/Grass.js index a26213a894..6efdc0414d 100644 --- a/icons/es5/Grass.js +++ b/icons/es5/Grass.js @@ -7,9 +7,11 @@ function SvgGrass(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 20H2v-2h5.75A8.032 8.032 0 002 12.26c.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93a9.82 9.82 0 01.87 4.07h8v-2h-5.75A8.061 8.061 0 0122 12.26zm-6.36-1.24a10.03 10.03 0 014.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17A8.527 8.527 0 006.7 4C8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82a9.91 9.91 0 011.24-3.29z" + d: "M12 20H2v-2h5.75A8.032 8.032 0 002 12.26c.64-.16 1.31-.26 2-.26 4.42 0 8 3.58 8 8zm10-7.74c-.64-.16-1.31-.26-2-.26-2.93 0-5.48 1.58-6.88 3.93a9.82 9.82 0 01.87 4.07h8v-2h-5.75A8.061 8.061 0 0122 12.26zm-6.36-1.24a10.03 10.03 0 014.09-5C15.44 6.16 12 9.67 12 14v.02c.95-1.27 2.2-2.3 3.64-3zm-4.22-2.17A8.527 8.527 0 006.7 4C8.14 5.86 9 8.18 9 10.71c0 .21-.03.41-.04.61.43.24.83.52 1.22.82a9.91 9.91 0 011.24-3.29z", + fill: "currentColor" })); } diff --git a/icons/es5/GreaterThan.js b/icons/es5/GreaterThan.js index 3110657bdc..6fc27ef96d 100644 --- a/icons/es5/GreaterThan.js +++ b/icons/es5/GreaterThan.js @@ -7,10 +7,12 @@ function SvgGreaterThan(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M6.5 17.5l8.25-5.5L6.5 6.5l1-1.5L18 12 7.5 19z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/GreaterThanEqual.js b/icons/es5/GreaterThanEqual.js index c345efed57..6212be0b9e 100644 --- a/icons/es5/GreaterThanEqual.js +++ b/icons/es5/GreaterThanEqual.js @@ -7,12 +7,15 @@ function SvgGreaterThanEqual(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M6.5 15.5l8.25-5.5L6.5 4.5l1-1.5L18 10 7.5 17z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 20.998H6v-2h12z" + d: "M18 20.998H6v-2h12z", + fill: "currentColor" })); } diff --git a/icons/es5/Grid3X3.js b/icons/es5/Grid3X3.js index 576031b027..c24f134079 100644 --- a/icons/es5/Grid3X3.js +++ b/icons/es5/Grid3X3.js @@ -7,9 +7,11 @@ function SvgGrid3X3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z" + d: "M20 10V8h-4V4h-2v4h-4V4H8v4H4v2h4v4H4v2h4v4h2v-4h4v4h2v-4h4v-2h-4v-4h4zm-6 4h-4v-4h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Grid4X4.js b/icons/es5/Grid4X4.js index 300246078c..d8c22d3d9b 100644 --- a/icons/es5/Grid4X4.js +++ b/icons/es5/Grid4X4.js @@ -7,9 +7,11 @@ function SvgGrid4X4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z" + d: "M22 7V5h-3V2h-2v3h-4V2h-2v3H7V2H5v3H2v2h3v4H2v2h3v4H2v2h3v3h2v-3h4v3h2v-3h4v3h2v-3h3v-2h-3v-4h3v-2h-3V7h3zM7 7h4v4H7V7zm0 10v-4h4v4H7zm10 0h-4v-4h4v4zm0-6h-4V7h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/GridGoldenratio.js b/icons/es5/GridGoldenratio.js index 77719fe618..5cb51407d9 100644 --- a/icons/es5/GridGoldenratio.js +++ b/icons/es5/GridGoldenratio.js @@ -7,9 +7,11 @@ function SvgGridGoldenratio(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z" + d: "M22 11V9h-7V2h-2v7h-2V2H9v7H2v2h7v2H2v2h7v7h2v-7h2v7h2v-7h7v-2h-7v-2h7zm-9 2h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/GridOff.js b/icons/es5/GridOff.js index cb4062a01b..aee10e4908 100644 --- a/icons/es5/GridOff.js +++ b/icons/es5/GridOff.js @@ -7,9 +7,11 @@ function SvgGridOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V22h17.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z" + d: "M8 4v.89l2 2V4h4v4h-2.89l2 2H14v.89l2 2V10h4v4h-2.89l2 2H20v.89l2 2V2H5.11l2 2H8zm8 0h4v4h-4V4zM1.41 1.14L0 2.55l2 2V22h17.45l2.01 2.01 1.41-1.41L1.41 1.14zM10 12.55L11.45 14H10v-1.45zm-6-6L5.45 8H4V6.55zM8 20H4v-4h4v4zm0-6H4v-4h3.45l.55.55V14zm6 6h-4v-4h3.45l.55.55V20zm2 0v-1.45L17.45 20H16z", + fill: "currentColor" })); } diff --git a/icons/es5/GridOn.js b/icons/es5/GridOn.js index db35ea47e5..9292ff9eb0 100644 --- a/icons/es5/GridOn.js +++ b/icons/es5/GridOn.js @@ -7,9 +7,11 @@ function SvgGridOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z" + d: "M22 2H2v20h20V2zM8 20H4v-4h4v4zm0-6H4v-4h4v4zm0-6H4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4zm6 12h-4v-4h4v4zm0-6h-4v-4h4v4zm0-6h-4V4h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Group.js b/icons/es5/Group.js index fd3cc095f6..bb372d0b22 100644 --- a/icons/es5/Group.js +++ b/icons/es5/Group.js @@ -7,9 +7,11 @@ function SvgGroup(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z" + d: "M16 11c1.66 0 2.99-1.34 2.99-3S17.66 5 16 5s-3 1.34-3 3 1.34 3 3 3zm-8 0c1.66 0 2.99-1.34 2.99-3S9.66 5 8 5 5 6.34 5 8s1.34 3 3 3zm0 2c-2.33 0-7 1.17-7 3.5V19h14v-2.5c0-2.33-4.67-3.5-7-3.5zm8 0c-.29 0-.62.02-.97.05 1.16.84 1.97 1.97 1.97 3.45V19h6v-2.5c0-2.33-4.67-3.5-7-3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/GroupAdd.js b/icons/es5/GroupAdd.js index dbfa00b035..818a2b8672 100644 --- a/icons/es5/GroupAdd.js +++ b/icons/es5/GroupAdd.js @@ -7,9 +7,11 @@ function SvgGroupAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9V7h-2v2h-2v2h2v2h2v-2h2V9zM8 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 1c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm4.51-8.95C13.43 5.11 14 6.49 14 8s-.57 2.89-1.49 3.95C14.47 11.7 16 10.04 16 8s-1.53-3.7-3.49-3.95zm4.02 9.78C17.42 14.66 18 15.7 18 17v3h2v-3c0-1.45-1.59-2.51-3.47-3.17z" + d: "M22 9V7h-2v2h-2v2h2v2h2v-2h2V9zM8 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0 1c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm4.51-8.95C13.43 5.11 14 6.49 14 8s-.57 2.89-1.49 3.95C14.47 11.7 16 10.04 16 8s-1.53-3.7-3.49-3.95zm4.02 9.78C17.42 14.66 18 15.7 18 17v3h2v-3c0-1.45-1.59-2.51-3.47-3.17z", + fill: "currentColor" })); } diff --git a/icons/es5/GroupOff.js b/icons/es5/GroupOff.js index 8ff86cda93..c6ed9cde02 100644 --- a/icons/es5/GroupOff.js +++ b/icons/es5/GroupOff.js @@ -7,9 +7,11 @@ function SvgGroupOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 8c0-1.42-.5-2.73-1.33-3.76.42-.14.86-.24 1.33-.24 2.21 0 4 1.79 4 4s-1.79 4-4 4h-.18l-.77-.77c.6-.94.95-2.05.95-3.23zm7.83 12H23v-3c0-2.18-3.58-3.47-6.34-3.87 1.1.75 1.95 1.71 2.23 2.94L22.83 20zM7.24 4.41a3.996 3.996 0 015.35 5.35L7.24 4.41zM9.17 12H9c-2.21 0-4-1.79-4-4v-.17L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41L17 19.83V20H1v-3c0-2.66 5.33-4 8-4 .37 0 .8.03 1.25.08L9.17 12z" + d: "M15 8c0-1.42-.5-2.73-1.33-3.76.42-.14.86-.24 1.33-.24 2.21 0 4 1.79 4 4s-1.79 4-4 4h-.18l-.77-.77c.6-.94.95-2.05.95-3.23zm7.83 12H23v-3c0-2.18-3.58-3.47-6.34-3.87 1.1.75 1.95 1.71 2.23 2.94L22.83 20zM7.24 4.41a3.996 3.996 0 015.35 5.35L7.24 4.41zM9.17 12H9c-2.21 0-4-1.79-4-4v-.17L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41L17 19.83V20H1v-3c0-2.66 5.33-4 8-4 .37 0 .8.03 1.25.08L9.17 12z", + fill: "currentColor" })); } diff --git a/icons/es5/GroupRemove.js b/icons/es5/GroupRemove.js index b31597a1ef..77c3f11362 100644 --- a/icons/es5/GroupRemove.js +++ b/icons/es5/GroupRemove.js @@ -7,9 +7,11 @@ function SvgGroupRemove(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 9v2h-6V9h6zM8 4C5.79 4 4 5.79 4 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm4.51-8.95C13.43 5.11 14 6.49 14 8s-.57 2.89-1.49 3.95C14.47 11.7 16 10.04 16 8s-1.53-3.7-3.49-3.95zm4.02 9.78C17.42 14.66 18 15.7 18 17v3h2v-3c0-1.45-1.59-2.51-3.47-3.17z" + d: "M24 9v2h-6V9h6zM8 4C5.79 4 4 5.79 4 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm4.51-8.95C13.43 5.11 14 6.49 14 8s-.57 2.89-1.49 3.95C14.47 11.7 16 10.04 16 8s-1.53-3.7-3.49-3.95zm4.02 9.78C17.42 14.66 18 15.7 18 17v3h2v-3c0-1.45-1.59-2.51-3.47-3.17z", + fill: "currentColor" })); } diff --git a/icons/es5/GroupWork.js b/icons/es5/GroupWork.js index 09e753ca2c..a90b2fd83b 100644 --- a/icons/es5/GroupWork.js +++ b/icons/es5/GroupWork.js @@ -7,9 +7,11 @@ function SvgGroupWork(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5zM9.5 8a2.5 2.5 0 015 0 2.5 2.5 0 01-5 0zm6.5 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 17.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5zM9.5 8a2.5 2.5 0 015 0 2.5 2.5 0 01-5 0zm6.5 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z", + fill: "currentColor" })); } diff --git a/icons/es5/Groups.js b/icons/es5/Groups.js index 76370d7dde..fd8ea45973 100644 --- a/icons/es5/Groups.js +++ b/icons/es5/Groups.js @@ -7,9 +7,11 @@ function SvgGroups(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V18H6v-1.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58A2.01 2.01 0 000 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85A6.95 6.95 0 0020 14c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z" + d: "M12 12.75c1.63 0 3.07.39 4.24.9 1.08.48 1.76 1.56 1.76 2.73V18H6v-1.61c0-1.18.68-2.26 1.76-2.73 1.17-.52 2.61-.91 4.24-.91zM4 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.13 1.1c-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58A2.01 2.01 0 000 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29zM20 13c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 3.43c0-.81-.48-1.53-1.22-1.85A6.95 6.95 0 0020 14c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57zM12 6c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Groups2.js b/icons/es5/Groups2.js index 240c66d823..71cb67cc03 100644 --- a/icons/es5/Groups2.js +++ b/icons/es5/Groups2.js @@ -7,9 +7,11 @@ function SvgGroups2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.27 12h3.46a1.5 1.5 0 001.48-1.75l-.3-1.79a2.951 2.951 0 00-5.82.01l-.3 1.79c-.15.91.55 1.74 1.48 1.74zm-8.61-.89c-.13.26-.18.57-.1.88.16.69.76 1.03 1.53 1h1.95c.83 0 1.51-.58 1.51-1.29 0-.14-.03-.27-.07-.4-.01-.03-.01-.05.01-.08.09-.16.14-.34.14-.53 0-.31-.14-.6-.36-.82-.03-.03-.03-.06-.02-.1.07-.2.07-.43.01-.65a1.12 1.12 0 00-.99-.74.09.09 0 01-.07-.03C5.03 8.14 4.72 8 4.37 8c-.3 0-.57.1-.75.26-.03.03-.06.03-.09.02a1.24 1.24 0 00-1.7 1.03c0 .02-.01.04-.03.06-.29.26-.46.65-.41 1.05.03.22.12.43.25.6.03.02.03.06.02.09zm14.58 2.54c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9A2.988 2.988 0 006 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74zm-15.02.93A2.01 2.01 0 000 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58zm21.56 0A6.95 6.95 0 0020 14c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57c0-.81-.48-1.53-1.22-1.85zM22 11v-.5c0-1.1-.9-2-2-2h-2c-.42 0-.65.48-.39.81l.7.63c-.19.31-.31.67-.31 1.06 0 1.1.9 2 2 2s2-.9 2-2z" + d: "M10.27 12h3.46a1.5 1.5 0 001.48-1.75l-.3-1.79a2.951 2.951 0 00-5.82.01l-.3 1.79c-.15.91.55 1.74 1.48 1.74zm-8.61-.89c-.13.26-.18.57-.1.88.16.69.76 1.03 1.53 1h1.95c.83 0 1.51-.58 1.51-1.29 0-.14-.03-.27-.07-.4-.01-.03-.01-.05.01-.08.09-.16.14-.34.14-.53 0-.31-.14-.6-.36-.82-.03-.03-.03-.06-.02-.1.07-.2.07-.43.01-.65a1.12 1.12 0 00-.99-.74.09.09 0 01-.07-.03C5.03 8.14 4.72 8 4.37 8c-.3 0-.57.1-.75.26-.03.03-.06.03-.09.02a1.24 1.24 0 00-1.7 1.03c0 .02-.01.04-.03.06-.29.26-.46.65-.41 1.05.03.22.12.43.25.6.03.02.03.06.02.09zm14.58 2.54c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9A2.988 2.988 0 006 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74zm-15.02.93A2.01 2.01 0 000 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58zm21.56 0A6.95 6.95 0 0020 14c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57c0-.81-.48-1.53-1.22-1.85zM22 11v-.5c0-1.1-.9-2-2-2h-2c-.42 0-.65.48-.39.81l.7.63c-.19.31-.31.67-.31 1.06 0 1.1.9 2 2 2s2-.9 2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Groups3.js b/icons/es5/Groups3.js index 6b3f558e4d..5559786386 100644 --- a/icons/es5/Groups3.js +++ b/icons/es5/Groups3.js @@ -7,9 +7,11 @@ function SvgGroups3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.24 13.65c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9A2.988 2.988 0 006 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74zm-15.02.93A2.01 2.01 0 000 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58zm21.56 0A6.95 6.95 0 0020 14c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57c0-.81-.48-1.53-1.22-1.85zM12 12c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zM1.497 11L4 8.497 6.503 11 4 13.503zM20 9l-2.5 4h5z" + d: "M16.24 13.65c-1.17-.52-2.61-.9-4.24-.9-1.63 0-3.07.39-4.24.9A2.988 2.988 0 006 16.39V18h12v-1.61c0-1.18-.68-2.26-1.76-2.74zm-15.02.93A2.01 2.01 0 000 16.43V18h4.5v-1.61c0-.83.23-1.61.63-2.29-.37-.06-.74-.1-1.13-.1-.99 0-1.93.21-2.78.58zm21.56 0A6.95 6.95 0 0020 14c-.39 0-.76.04-1.13.1.4.68.63 1.46.63 2.29V18H24v-1.57c0-.81-.48-1.53-1.22-1.85zM12 12c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zM1.497 11L4 8.497 6.503 11 4 13.503zM20 9l-2.5 4h5z", + fill: "currentColor" })); } diff --git a/icons/es5/HMobiledata.js b/icons/es5/HMobiledata.js index 850d6d1582..4e59bf7a5e 100644 --- a/icons/es5/HMobiledata.js +++ b/icons/es5/HMobiledata.js @@ -7,9 +7,11 @@ function SvgHMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z" + d: "M15 11H9V7H7v10h2v-4h6v4h2V7h-2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/HPlusMobiledata.js b/icons/es5/HPlusMobiledata.js index 8712a97a49..faff2e58c3 100644 --- a/icons/es5/HPlusMobiledata.js +++ b/icons/es5/HPlusMobiledata.js @@ -7,9 +7,11 @@ function SvgHPlusMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" + d: "M12 11H6V7H4v10h2v-4h6v4h2V7h-2v4zm10 0h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Hail.js b/icons/es5/Hail.js index d11f6903ba..76c2891594 100644 --- a/icons/es5/Hail.js +++ b/icons/es5/Hail.js @@ -7,9 +7,11 @@ function SvgHail(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2c0 2.7-.93 4.41-2.3 5.5-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.53.41-1.4 1.03-1.4 3.6H5c0-2.06.35-3.78 2.11-5.29C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C15.96 5.55 17 4.76 17 2zM4 16h3v6H4v-6z" + d: "M12 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm5-4h2c0 2.7-.93 4.41-2.3 5.5-.5.4-1.1.7-1.7.9V22h-2v-6h-2v6H9V10.1c-.3.1-.5.2-.6.3-.53.41-1.4 1.03-1.4 3.6H5c0-2.06.35-3.78 2.11-5.29C8.21 7.81 10 7 12 7s2.68-.46 3.48-1.06C15.96 5.55 17 4.76 17 2zM4 16h3v6H4v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/Handshake.js b/icons/es5/Handshake.js index 253ca0454d..906fad47ff 100644 --- a/icons/es5/Handshake.js +++ b/icons/es5/Handshake.js @@ -7,9 +7,11 @@ function SvgHandshake(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.59 5.95l-7.05 7.04L.7 10.3l8.55-8.55L17.2 9.7l-1.42 1.42-5.19-5.17zm12.65 4.29l-8.49-8.49-2.06 2.06 5.9 5.88-2.83 2.83-5.17-5.17-6.27 6.27 1.42 1.41 5.32-5.32.71.71-5.32 5.32 1.42 1.41 5.32-5.32.71.71-5.32 5.32 1.41 1.41 5.32-5.32.71.71L10.68 20l1.41 1.41 11.15-11.17z" + d: "M10.59 5.95l-7.05 7.04L.7 10.3l8.55-8.55L17.2 9.7l-1.42 1.42-5.19-5.17zm12.65 4.29l-8.49-8.49-2.06 2.06 5.9 5.88-2.83 2.83-5.17-5.17-6.27 6.27 1.42 1.41 5.32-5.32.71.71-5.32 5.32 1.42 1.41 5.32-5.32.71.71-5.32 5.32 1.41 1.41 5.32-5.32.71.71L10.68 20l1.41 1.41 11.15-11.17z", + fill: "currentColor" })); } diff --git a/icons/es5/Handyman.js b/icons/es5/Handyman.js index 66525fa0ff..20ed19217b 100644 --- a/icons/es5/Handyman.js +++ b/icons/es5/Handyman.js @@ -7,11 +7,14 @@ function SvgHandyman(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.37 12.87h-.99l-2.54 2.54v.99l6.01 6.01 3.54-3.54-6.02-6z" + d: "M16.37 12.87h-.99l-2.54 2.54v.99l6.01 6.01 3.54-3.54-6.02-6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17.34 10.19l1.41-1.41 2.12 2.12a3 3 0 000-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-6.01 6.01 3.54 3.54 6.01-6.01V14.3l5.15-5.15 1.05 1.04z" + d: "M17.34 10.19l1.41-1.41 2.12 2.12a3 3 0 000-4.24l-3.54-3.54-1.41 1.41V1.71l-.7-.71-3.54 3.54.71.71h2.83l-1.41 1.41 1.06 1.06-2.89 2.89-4.13-4.13V5.06L4.83 2.04 2 4.87 5.03 7.9h1.41l4.13 4.13-.85.85H7.6l-6.01 6.01 3.54 3.54 6.01-6.01V14.3l5.15-5.15 1.05 1.04z", + fill: "currentColor" })); } diff --git a/icons/es5/Hardware.js b/icons/es5/Hardware.js index 3823c21931..5fd83ca6ac 100644 --- a/icons/es5/Hardware.js +++ b/icons/es5/Hardware.js @@ -7,9 +7,11 @@ function SvgHardware(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 3l-3 3V3H9C6.24 3 4 5.24 4 8h5v3h6V8l3 3h2V3h-2zM9 13v8h6v-8H9z" + d: "M18 3l-3 3V3H9C6.24 3 4 5.24 4 8h5v3h6V8l3 3h2V3h-2zM9 13v8h6v-8H9z", + fill: "currentColor" })); } diff --git a/icons/es5/Hd.js b/icons/es5/Hd.js index 82da670962..990ae53a80 100644 --- a/icons/es5/Hd.js +++ b/icons/es5/Hd.js @@ -7,9 +7,11 @@ function SvgHd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z" + d: "M21 3H3v18h18V3zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm2-6h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm1.5 4.5h2v-3h-2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrAuto.js b/icons/es5/HdrAuto.js index e42ec4da7a..8d11462878 100644 --- a/icons/es5/HdrAuto.js +++ b/icons/es5/HdrAuto.js @@ -7,11 +7,14 @@ function SvgHdrAuto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.04 8.04h-.09l-1.6 4.55h3.29z" + d: "M12.04 8.04h-.09l-1.6 4.55h3.29z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.21 15l-.98-2.81H9.78l-1 2.81h-1.9l4.13-11h1.97l4.13 11h-1.9z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.21 15l-.98-2.81H9.78l-1 2.81h-1.9l4.13-11h1.97l4.13 11h-1.9z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrAutoSelect.js b/icons/es5/HdrAutoSelect.js index 782a41053c..458cf90e9c 100644 --- a/icons/es5/HdrAutoSelect.js +++ b/icons/es5/HdrAutoSelect.js @@ -7,11 +7,14 @@ function SvgHdrAutoSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm12-2v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM13 22h1.5v-2h1.1l.9 2H18l-.86-2H18v-4h-5v6zm1.5-4.5h2v1h-2v-1zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z" + d: "M3.5 18h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm12-2v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5zM13 22h1.5v-2h1.1l.9 2H18l-.86-2H18v-4h-5v6zm1.5-4.5h2v1h-2v-1zM11.97 5.3l-1.02 2.89h2.1L12.03 5.3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9l-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z" + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm2.04 9l-.63-1.79h-2.83L9.96 11H8.74l2.63-7h1.25l2.63 7h-1.21z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrEnhancedSelect.js b/icons/es5/HdrEnhancedSelect.js index 796e836466..63c5fedf7e 100644 --- a/icons/es5/HdrEnhancedSelect.js +++ b/icons/es5/HdrEnhancedSelect.js @@ -7,9 +7,11 @@ function SvgHdrEnhancedSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm3 7h-2v2h-2V9H9V7h2V5h2v2h2v2zm-5 7H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm8-4.5h-5v6h1.5v-2h1.1l.9 2H18l-.86-2H18v-4zm-1.5 2.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5z" + d: "M12 2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm3 7h-2v2h-2V9H9V7h2V5h2v2h2v2zm-5 7H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm8-4.5h-5v6h1.5v-2h1.1l.9 2H18l-.86-2H18v-4zm-1.5 2.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5zm18.5.5v-2h-1.5v2h-2V20h2v2H22v-2h2v-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrOff.js b/icons/es5/HdrOff.js index 2b5627574e..add5f67b7a 100644 --- a/icons/es5/HdrOff.js +++ b/icons/es5/HdrOff.js @@ -7,9 +7,11 @@ function SvgHdrOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1h.9V9h-5v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z" + d: "M17.5 15v-2h1.1l.9 2H21l-.9-2.1h.9V9h-5v4.86L17.14 15h.36zm0-4.5h2v1h-2v-1zm-4.5 0v.36l1.5 1.5V10.5c0-.8-.7-1.5-1.5-1.5h-1.86l1.5 1.5H13zM2.51 2.49L1.45 3.55 6.9 9h-.4v2h-2V9H3v6h1.5v-2.5h2V15H8v-4.9l1.5 1.5V15h3.4l7.6 7.6 1.06-1.06z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrOffSelect.js b/icons/es5/HdrOffSelect.js index 95e721091f..912470c5a8 100644 --- a/icons/es5/HdrOffSelect.js +++ b/icons/es5/HdrOffSelect.js @@ -7,9 +7,11 @@ function SvgHdrOffSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 20v-4h-5v6h1.5v-2h1.1l.9 2H18l-.86-2H18zm-1.5-1.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15L9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34L4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64l4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z" + d: "M18 20v-4h-5v6h1.5v-2h1.1l.9 2H18l-.86-2H18zm-1.5-1.5h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM10.98 4.15L9.42 2.59c5.1-2.42 10.41 2.89 7.99 7.99l-1.56-1.56c.81-2.96-1.91-5.68-4.87-4.87zM6.34 2.34L4.93 3.76l1.66 1.66c-2.42 5.1 2.89 10.41 7.99 7.99l1.66 1.66 1.41-1.41L6.34 2.34zm1.81 4.64l4.87 4.87c-2.96.81-5.68-1.91-4.87-4.87z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrOn.js b/icons/es5/HdrOn.js index e70737e3f4..0896cfee0a 100644 --- a/icons/es5/HdrOn.js +++ b/icons/es5/HdrOn.js @@ -7,9 +7,11 @@ function SvgHdrOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 12.9V9h-5v6h1.5v-2h1.1l.9 2H21l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z" + d: "M21 12.9V9h-5v6h1.5v-2h1.1l.9 2H21l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2V9H3v6h1.5v-2.5h2V15H8V9H6.5v2zM13 9H9.5v6H13c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5h-2v-3h2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrOnSelect.js b/icons/es5/HdrOnSelect.js index b7ba18e72e..d1e4ce32d2 100644 --- a/icons/es5/HdrOnSelect.js +++ b/icons/es5/HdrOnSelect.js @@ -7,9 +7,11 @@ function SvgHdrOnSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 19.9V16h-5v6h1.5v-2h1.1l.9 2H18l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z" + d: "M18 19.9V16h-5v6h1.5v-2h1.1l.9 2H18l-.9-2.1h.9zm-1.5-1.4h-2v-1h2v1zm-13-.5h-2v-2H0v6h1.5v-2.5h2V22H5v-6H3.5v2zm6.5-2H6.5v6H10c.8 0 1.5-.7 1.5-1.5v-3c0-.8-.7-1.5-1.5-1.5zm0 4.5H8v-3h2v3zm14-.5h-2v2h-1.5v-2h-2v-1.5h2v-2H22v2h2V20zM12 4c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4m0-2C8.69 2 6 4.69 6 8s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrPlus.js b/icons/es5/HdrPlus.js index 1ffbd490c2..153b1cd55c 100644 --- a/icons/es5/HdrPlus.js +++ b/icons/es5/HdrPlus.js @@ -7,11 +7,14 @@ function SvgHdrPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.5 14.5h2v1h-2zm6-7H16v3h-1.5z" + d: "M8.5 14.5h2v1h-2zm6-7H16v3h-1.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15l-.86-.01L12 19h-1.5l-.9-2H8.5v2H7v-6h5v4zm0-5h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12v6zm5.5 4H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm0-5.5c0 .8-.7 1.5-1.5 1.5h-3V6h3c.8 0 1.5.7 1.5 1.5v3z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 15l-.86-.01L12 19h-1.5l-.9-2H8.5v2H7v-6h5v4zm0-5h-1.5V9.5h-2V12H7V6h1.5v2h2V6H12v6zm5.5 4H16v1.5h-1.5V16H13v-1.5h1.5V13H16v1.49h1.5V16zm0-5.5c0 .8-.7 1.5-1.5 1.5h-3V6h3c.8 0 1.5.7 1.5 1.5v3z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrStrong.js b/icons/es5/HdrStrong.js index ae4ec301ed..e55c97871d 100644 --- a/icons/es5/HdrStrong.js +++ b/icons/es5/HdrStrong.js @@ -7,9 +7,11 @@ function SvgHdrStrong(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M17 6c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zM5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/HdrWeak.js b/icons/es5/HdrWeak.js index 21740eee40..811b6c8096 100644 --- a/icons/es5/HdrWeak.js +++ b/icons/es5/HdrWeak.js @@ -7,9 +7,11 @@ function SvgHdrWeak(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + d: "M5 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm12-2c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm0 10c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Headphones.js b/icons/es5/Headphones.js index b27623b5b4..ed3f5a4002 100644 --- a/icons/es5/Headphones.js +++ b/icons/es5/Headphones.js @@ -7,9 +7,11 @@ function SvgHeadphones(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3a9 9 0 00-9 9v9h6v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h6v-9a9 9 0 00-9-9z" + d: "M12 3a9 9 0 00-9 9v9h6v-8H5v-1c0-3.87 3.13-7 7-7s7 3.13 7 7v1h-4v8h6v-9a9 9 0 00-9-9z", + fill: "currentColor" })); } diff --git a/icons/es5/HeadphonesBattery.js b/icons/es5/HeadphonesBattery.js index f981ded95d..df09d63d41 100644 --- a/icons/es5/HeadphonesBattery.js +++ b/icons/es5/HeadphonesBattery.js @@ -7,9 +7,11 @@ function SvgHeadphonesBattery(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 7V6h-2v1h-2v11h6V7zM8 6c-3.31 0-6 2.69-6 6v6h4v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h4v-6c0-3.31-2.69-6-6-6z" + d: "M20 7V6h-2v1h-2v11h6V7zM8 6c-3.31 0-6 2.69-6 6v6h4v-5H3.5v-1c0-2.48 2.02-4.5 4.5-4.5s4.5 2.02 4.5 4.5v1H10v5h4v-6c0-3.31-2.69-6-6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/Headset.js b/icons/es5/Headset.js index b55e019eae..aa4ea6e00b 100644 --- a/icons/es5/Headset.js +++ b/icons/es5/Headset.js @@ -7,9 +7,11 @@ function SvgHeadset(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.4 1.02C6.62 1.33 3 5.52 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3A6.999 6.999 0 0119 10v2h-4v8h6V10c0-5.17-4.36-9.32-9.6-8.98z" + d: "M11.4 1.02C6.62 1.33 3 5.52 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3A6.999 6.999 0 0119 10v2h-4v8h6V10c0-5.17-4.36-9.32-9.6-8.98z", + fill: "currentColor" })); } diff --git a/icons/es5/HeadsetMic.js b/icons/es5/HeadsetMic.js index 2f30ca1ee1..c819c9e2f9 100644 --- a/icons/es5/HeadsetMic.js +++ b/icons/es5/HeadsetMic.js @@ -7,9 +7,11 @@ function SvgHeadsetMic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.4 1.02C6.62 1.33 3 5.51 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3A6.999 6.999 0 0119 10v2h-4v8h4v1h-7v2h9V10c0-5.17-4.36-9.32-9.6-8.98z" + d: "M11.4 1.02C6.62 1.33 3 5.51 3 10.31V20h6v-8H5v-1.71C5 6.45 7.96 3.11 11.79 3A6.999 6.999 0 0119 10v2h-4v8h4v1h-7v2h9V10c0-5.17-4.36-9.32-9.6-8.98z", + fill: "currentColor" })); } diff --git a/icons/es5/HeadsetOff.js b/icons/es5/HeadsetOff.js index 1431b2add0..ed29f3b470 100644 --- a/icons/es5/HeadsetOff.js +++ b/icons/es5/HeadsetOff.js @@ -7,9 +7,11 @@ function SvgHeadsetOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4c3.87 0 7 3.13 7 7v1h-4v.17l6 6V11a9 9 0 00-9-9c-2.02 0-3.88.67-5.38 1.8l1.43 1.43A6.878 6.878 0 0112 4zM2.1 2.1L.69 3.51l3.33 3.33A8.98 8.98 0 003 11v9h6v-8H5v-1c0-.94.19-1.83.52-2.65L15 17.83V20h2.17l1 1H12v2h8.17l.31.31 1.41-1.41L2.1 2.1z" + d: "M12 4c3.87 0 7 3.13 7 7v1h-4v.17l6 6V11a9 9 0 00-9-9c-2.02 0-3.88.67-5.38 1.8l1.43 1.43A6.878 6.878 0 0112 4zM2.1 2.1L.69 3.51l3.33 3.33A8.98 8.98 0 003 11v9h6v-8H5v-1c0-.94.19-1.83.52-2.65L15 17.83V20h2.17l1 1H12v2h8.17l.31.31 1.41-1.41L2.1 2.1z", + fill: "currentColor" })); } diff --git a/icons/es5/Healing.js b/icons/es5/Healing.js index f0688fc980..626fea4dad 100644 --- a/icons/es5/Healing.js +++ b/icons/es5/Healing.js @@ -7,9 +7,11 @@ function SvgHealing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.74 12.01l4.68-4.68-5.75-5.75-4.68 4.68L7.3 1.58 1.55 7.34l4.68 4.69-4.68 4.68 5.75 5.75 4.68-4.68 4.69 4.69 5.76-5.76-4.69-4.7zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z" + d: "M17.74 12.01l4.68-4.68-5.75-5.75-4.68 4.68L7.3 1.58 1.55 7.34l4.68 4.69-4.68 4.68 5.75 5.75 4.68-4.68 4.69 4.69 5.76-5.76-4.69-4.7zM12 9c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4.71 1.96L3.66 7.34l3.63-3.63 3.62 3.62-3.62 3.63zM10 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.66 9.34l-3.63-3.62 3.63-3.63 3.62 3.62-3.62 3.63z", + fill: "currentColor" })); } diff --git a/icons/es5/HealthAndSafety.js b/icons/es5/HealthAndSafety.js index cef3fbc368..7b1e5ff973 100644 --- a/icons/es5/HealthAndSafety.js +++ b/icons/es5/HealthAndSafety.js @@ -7,9 +7,11 @@ function SvgHealthAndSafety(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z" + d: "M10.5 13H8v-3h2.5V7.5h3V10H16v3h-2.5v2.5h-3V13zM12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Hearing.js b/icons/es5/Hearing.js index d32dbfb936..718af2565d 100644 --- a/icons/es5/Hearing.js +++ b/icons/es5/Hearing.js @@ -7,9 +7,11 @@ function SvgHearing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55A3.999 3.999 0 0021 18h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9a2.5 2.5 0 005 0 2.5 2.5 0 00-5 0z" + d: "M17 20c-.29 0-.56-.06-.76-.15-.71-.37-1.21-.88-1.71-2.38-.51-1.56-1.47-2.29-2.39-3-.79-.61-1.61-1.24-2.32-2.53C9.29 10.98 9 9.93 9 9c0-2.8 2.2-5 5-5s5 2.2 5 5h2c0-3.93-3.07-7-7-7S7 5.07 7 9c0 1.26.38 2.65 1.07 3.9.91 1.65 1.98 2.48 2.85 3.15.81.62 1.39 1.07 1.71 2.05.6 1.82 1.37 2.84 2.73 3.55A3.999 3.999 0 0021 18h-2c0 1.1-.9 2-2 2zM7.64 2.64L6.22 1.22C4.23 3.21 3 5.96 3 9s1.23 5.79 3.22 7.78l1.41-1.41C6.01 13.74 5 11.49 5 9s1.01-4.74 2.64-6.36zM11.5 9a2.5 2.5 0 005 0 2.5 2.5 0 00-5 0z", + fill: "currentColor" })); } diff --git a/icons/es5/HearingDisabled.js b/icons/es5/HearingDisabled.js index e099c5ad55..34c74bd8f8 100644 --- a/icons/es5/HearingDisabled.js +++ b/icons/es5/HearingDisabled.js @@ -7,9 +7,11 @@ function SvgHearingDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18l1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42A8.937 8.937 0 0119 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59A2.5 2.5 0 0010 6.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3a3.999 3.999 0 005.64 3.65c1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z" + d: "M6.03 3.2C7.15 2.44 8.51 2 10 2c3.93 0 7 3.07 7 7 0 1.26-.38 2.65-1.07 3.9-.02.04-.05.08-.08.13l-1.48-1.48c.4-.86.63-1.75.63-2.55 0-2.8-2.2-5-5-5-.92 0-1.76.26-2.5.67L6.03 3.2zm11.18 11.18l1.43 1.43C20.11 13.93 21 11.57 21 9c0-3.04-1.23-5.79-3.22-7.78l-1.42 1.42A8.937 8.937 0 0119 9c0 2.02-.67 3.88-1.79 5.38zM10 6.5c-.21 0-.4.03-.59.08l3.01 3.01c.05-.19.08-.38.08-.59A2.5 2.5 0 0010 6.5zm11.19 14.69L2.81 2.81 1.39 4.22l2.13 2.13C3.19 7.16 3 8.05 3 9h2c0-.36.05-.71.12-1.05l6.61 6.61c-.88.68-1.78 1.41-2.27 2.9-.5 1.5-1 2.01-1.71 2.38-.19.1-.46.16-.75.16-1.1 0-2-.9-2-2H3a3.999 3.999 0 005.64 3.65c1.36-.71 2.13-1.73 2.73-3.55.32-.98.9-1.43 1.71-2.05.03-.02.05-.04.08-.06l6.62 6.62 1.41-1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/HeartBroken.js b/icons/es5/HeartBroken.js index e6d79aac72..49fcbb6f6f 100644 --- a/icons/es5/HeartBroken.js +++ b/icons/es5/HeartBroken.js @@ -7,9 +7,11 @@ function SvgHeartBroken(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.5 3c-.96 0-1.9.25-2.73.69L12 9h3l-3 10 1-9h-3l1.54-5.39C10.47 3.61 9.01 3 7.5 3 4.42 3 2 5.42 2 8.5c0 4.13 4.16 7.18 10 12.5 5.47-4.94 10-8.26 10-12.5C22 5.42 19.58 3 16.5 3z" + d: "M16.5 3c-.96 0-1.9.25-2.73.69L12 9h3l-3 10 1-9h-3l1.54-5.39C10.47 3.61 9.01 3 7.5 3 4.42 3 2 5.42 2 8.5c0 4.13 4.16 7.18 10 12.5 5.47-4.94 10-8.26 10-12.5C22 5.42 19.58 3 16.5 3z", + fill: "currentColor" })); } diff --git a/icons/es5/HeatPump.js b/icons/es5/HeatPump.js index a36b19c8e2..2f32bd49f7 100644 --- a/icons/es5/HeatPump.js +++ b/icons/es5/HeatPump.js @@ -7,9 +7,11 @@ function SvgHeatPump(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-8.25 4.08c.82.12 1.57.44 2.2.91l-2.2 2.2V7.08zm-1.5 0v3.11l-2.2-2.2c.63-.47 1.38-.79 2.2-.91zM7.99 9.05l2.2 2.2H7.08c.12-.82.44-1.57.91-2.2zm-.91 3.7h3.11l-2.2 2.2c-.47-.63-.79-1.38-.91-2.2zm4.17 4.17c-.82-.12-1.57-.44-2.2-.91l2.2-2.2v3.11zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm.75 3.92v-3.11l2.2 2.2c-.63.47-1.38.79-2.2.91zm3.26-1.97l-2.2-2.2h3.11c-.12.82-.44 1.57-.91 2.2zm-2.2-3.7l2.2-2.2c.47.64.79 1.39.91 2.2h-3.11z" + d: "M21 3H3v18h18V3zm-8.25 4.08c.82.12 1.57.44 2.2.91l-2.2 2.2V7.08zm-1.5 0v3.11l-2.2-2.2c.63-.47 1.38-.79 2.2-.91zM7.99 9.05l2.2 2.2H7.08c.12-.82.44-1.57.91-2.2zm-.91 3.7h3.11l-2.2 2.2c-.47-.63-.79-1.38-.91-2.2zm4.17 4.17c-.82-.12-1.57-.44-2.2-.91l2.2-2.2v3.11zM12 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm.75 3.92v-3.11l2.2 2.2c-.63.47-1.38.79-2.2.91zm3.26-1.97l-2.2-2.2h3.11c-.12.82-.44 1.57-.91 2.2zm-2.2-3.7l2.2-2.2c.47.64.79 1.39.91 2.2h-3.11z", + fill: "currentColor" })); } diff --git a/icons/es5/Height.js b/icons/es5/Height.js index 4167ea976e..93d3cc62e9 100644 --- a/icons/es5/Height.js +++ b/icons/es5/Height.js @@ -7,9 +7,11 @@ function SvgHeight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z" + d: "M13 6.99h3L12 3 8 6.99h3v10.02H8L12 21l4-3.99h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/HelpCenter.js b/icons/es5/HelpCenter.js index 07001157a7..60ebdecd5a 100644 --- a/icons/es5/HelpCenter.js +++ b/icons/es5/HelpCenter.js @@ -7,9 +7,11 @@ function SvgHelpCenter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-8.99 15c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.16.29-.22.48-.22 1.41h-1.82c0-.49-.08-1.29.31-1.98.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-1.06 0-1.58.8-1.8 1.48l-1.65-.7C9.01 7.15 10.22 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z" + d: "M21 3H3v18h18V3zm-8.99 15c-.7 0-1.26-.56-1.26-1.26 0-.71.56-1.25 1.26-1.25.71 0 1.25.54 1.25 1.25-.01.69-.54 1.26-1.25 1.26zm3.01-7.4c-.76 1.11-1.48 1.46-1.87 2.17-.16.29-.22.48-.22 1.41h-1.82c0-.49-.08-1.29.31-1.98.49-.87 1.42-1.39 1.96-2.16.57-.81.25-2.33-1.37-2.33-1.06 0-1.58.8-1.8 1.48l-1.65-.7C9.01 7.15 10.22 6 11.99 6c1.48 0 2.49.67 3.01 1.52.44.72.7 2.07.02 3.08z", + fill: "currentColor" })); } diff --git a/icons/es5/HelpOutline.js b/icons/es5/HelpOutline.js index 9545f3622a..608efe18d0 100644 --- a/icons/es5/HelpOutline.js +++ b/icons/es5/HelpOutline.js @@ -7,9 +7,11 @@ function SvgHelpOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z" + d: "M11 18h2v-2h-2v2zm1-16C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm0-14c-2.21 0-4 1.79-4 4h2c0-1.1.9-2 2-2s2 .9 2 2c0 2-3 1.75-3 5h2c0-2.25 3-2.5 3-5 0-2.21-1.79-4-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Hevc.js b/icons/es5/Hevc.js index 1e360521e8..3084705b3d 100644 --- a/icons/es5/Hevc.js +++ b/icons/es5/Hevc.js @@ -7,9 +7,11 @@ function SvgHevc(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11V9h-4v6h4v-2h-1.5v.5h-1v-3h1v.5zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z" + d: "M5.5 11h-1V9H3v6h1.5v-2.5h1V15H7V9H5.5zM21 11V9h-4v6h4v-2h-1.5v.5h-1v-3h1v.5zm-6.75 2.5L13.5 9H12l1 6h2.5l1-6H15zM8 9v6h3.5v-1.5h-2v-1h2V11h-2v-.5h2V9z", + fill: "currentColor" })); } diff --git a/icons/es5/Hexagon.js b/icons/es5/Hexagon.js index 6ae8c246c2..68d2f27656 100644 --- a/icons/es5/Hexagon.js +++ b/icons/es5/Hexagon.js @@ -7,9 +7,11 @@ function SvgHexagon(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.2 3H6.8l-5.2 9 5.2 9h10.4l5.2-9z" + d: "M17.2 3H6.8l-5.2 9 5.2 9h10.4l5.2-9z", + fill: "currentColor" })); } diff --git a/icons/es5/HideImage.js b/icons/es5/HideImage.js index a26444bc55..5eea41454b 100644 --- a/icons/es5/HideImage.js +++ b/icons/es5/HideImage.js @@ -7,9 +7,11 @@ function SvgHideImage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H5.83L21 18.17zM2.81 2.81L1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.41L2.81 2.81zM6 17l3-4 2.25 3 .82-1.1 2.1 2.1H6z" + d: "M21 3H5.83L21 18.17zM2.81 2.81L1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.41L2.81 2.81zM6 17l3-4 2.25 3 .82-1.1 2.1 2.1H6z", + fill: "currentColor" })); } diff --git a/icons/es5/HideSource.js b/icons/es5/HideSource.js index ad3e449d68..7c06ee1fee 100644 --- a/icons/es5/HideSource.js +++ b/icons/es5/HideSource.js @@ -7,9 +7,11 @@ function SvgHideSource(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.81 2.81L1.39 4.22l2.27 2.27A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12L6.49 3.66A9.91 9.91 0 0112 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46A7.869 7.869 0 0020 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z" + d: "M2.81 2.81L1.39 4.22l2.27 2.27A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.41L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l10.94 10.94C14.86 19.59 13.48 20 12 20zM7.94 5.12L6.49 3.66A9.91 9.91 0 0112 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46A7.869 7.869 0 0020 12c0-4.41-3.59-8-8-8-1.48 0-2.86.41-4.06 1.12z", + fill: "currentColor" })); } diff --git a/icons/es5/HighQuality.js b/icons/es5/HighQuality.js index 386e387d09..1488330137 100644 --- a/icons/es5/HighQuality.js +++ b/icons/es5/HighQuality.js @@ -7,9 +7,11 @@ function SvgHighQuality(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 4H3v16h18V4zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7 0h-1.75v1.5h-1.5V15H13V9h5v6zm-3.5-1.5h2v-3h-2v3z" + d: "M21 4H3v16h18V4zM11 15H9.5v-2h-2v2H6V9h1.5v2.5h2V9H11v6zm7 0h-1.75v1.5h-1.5V15H13V9h5v6zm-3.5-1.5h2v-3h-2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/HighlightAlt.js b/icons/es5/HighlightAlt.js index 2054bfc7da..766e5ee348 100644 --- a/icons/es5/HighlightAlt.js +++ b/icons/es5/HighlightAlt.js @@ -7,9 +7,11 @@ function SvgHighlightAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 5h-2V3h2v2zm2-2v2h2V3h-2zm0 6h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 5h2V3H3v2zm0 12h2v-2H3v2zm0 4h2v-2H3v2zm8-16h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm12 2v6l2.29-2.29 2.3 2.29L21 19.59l-2.29-2.29L21 15h-6z" + d: "M17 5h-2V3h2v2zm2-2v2h2V3h-2zm0 6h2V7h-2v2zm0 4h2v-2h-2v2zm-8 8h2v-2h-2v2zM7 5h2V3H7v2zM3 5h2V3H3v2zm0 12h2v-2H3v2zm0 4h2v-2H3v2zm8-16h2V3h-2v2zM3 9h2V7H3v2zm4 12h2v-2H7v2zm-4-8h2v-2H3v2zm12 2v6l2.29-2.29 2.3 2.29L21 19.59l-2.29-2.29L21 15h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/HighlightOff.js b/icons/es5/HighlightOff.js index a8c62856b3..f2bd0a8059 100644 --- a/icons/es5/HighlightOff.js +++ b/icons/es5/HighlightOff.js @@ -7,9 +7,11 @@ function SvgHighlightOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + d: "M14.59 8L12 10.59 9.41 8 8 9.41 10.59 12 8 14.59 9.41 16 12 13.41 14.59 16 16 14.59 13.41 12 16 9.41 14.59 8zM12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/Hiking.js b/icons/es5/Hiking.js index f8cd6b3f76..fabb962885 100644 --- a/icons/es5/Hiking.js +++ b/icons/es5/Hiking.js @@ -7,9 +7,11 @@ function SvgHiking(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-3.1-.6 1.34-6.87 3.13.61-1.37 6.86z" + d: "M13.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm4 5.28c-1.23-.37-2.22-1.17-2.8-2.18l-1-1.6c-.41-.65-1.11-1-1.84-1-.78 0-1.59.5-1.78 1.44S7 23 7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3c1 1.15 2.41 2.01 4 2.34V23H19V9h-1.5v1.78zM7.43 13.13l-3.1-.6 1.34-6.87 3.13.61-1.37 6.86z", + fill: "currentColor" })); } diff --git a/icons/es5/History.js b/icons/es5/History.js index 373f3f7006..40b0c7879d 100644 --- a/icons/es5/History.js +++ b/icons/es5/History.js @@ -7,9 +7,11 @@ function SvgHistory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 3a9 9 0 00-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0013 21a9 9 0 000-18zm-1 5v5l4.25 2.52.77-1.29-3.52-2.09V8H12z" + d: "M13 3a9 9 0 00-9 9H1l3.89 3.89.07.14L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0013 21a9 9 0 000-18zm-1 5v5l4.25 2.52.77-1.29-3.52-2.09V8H12z", + fill: "currentColor" })); } diff --git a/icons/es5/HistoryEdu.js b/icons/es5/HistoryEdu.js index 3b8de57c03..6bf76a4b6a 100644 --- a/icons/es5/HistoryEdu.js +++ b/icons/es5/HistoryEdu.js @@ -7,9 +7,11 @@ function SvgHistoryEdu(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 011.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2a2.7 2.7 0 01-1.92.8c-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z" + d: "M9 4v1.38c-.83-.33-1.72-.5-2.61-.5-1.79 0-3.58.68-4.95 2.05l3.33 3.33h1.11v1.11c.86.86 1.98 1.31 3.11 1.36V15H6v3c0 1.1.9 2 2 2h10c1.66 0 3-1.34 3-3V4H9zm-1.11 6.41V8.26H5.61L4.57 7.22a5.07 5.07 0 011.82-.34c1.34 0 2.59.52 3.54 1.46l1.41 1.41-.2.2a2.7 2.7 0 01-1.92.8c-.47 0-.93-.12-1.33-.34zM19 17c0 .55-.45 1-1 1s-1-.45-1-1v-2h-6v-2.59c.57-.23 1.1-.57 1.56-1.03l.2-.2L15.59 14H17v-1.41l-6-5.97V6h8v11z", + fill: "currentColor" })); } diff --git a/icons/es5/HistoryToggleOff.js b/icons/es5/HistoryToggleOff.js index c40ffec76a..eb56ebb6f1 100644 --- a/icons/es5/HistoryToggleOff.js +++ b/icons/es5/HistoryToggleOff.js @@ -7,9 +7,11 @@ function SvgHistoryToggleOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.1 19.37l1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1l1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36l1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01a7.7 7.7 0 011.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74a7.7 7.7 0 01-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z" + d: "M15.1 19.37l1 1.74c-.96.44-2.01.73-3.1.84v-2.02c.74-.09 1.44-.28 2.1-.56zM4.07 13H2.05c.11 1.1.4 2.14.84 3.1l1.74-1c-.28-.66-.47-1.36-.56-2.1zM15.1 4.63l1-1.74c-.96-.44-2-.73-3.1-.84v2.02c.74.09 1.44.28 2.1.56zM19.93 11h2.02c-.11-1.1-.4-2.14-.84-3.1l-1.74 1c.28.66.47 1.36.56 2.1zM8.9 19.37l-1 1.74c.96.44 2.01.73 3.1.84v-2.02c-.74-.09-1.44-.28-2.1-.56zM11 4.07V2.05c-1.1.11-2.14.4-3.1.84l1 1.74c.66-.28 1.36-.47 2.1-.56zm7.36 3.1l1.74-1.01c-.63-.87-1.4-1.64-2.27-2.27l-1.01 1.74c.59.45 1.1.96 1.54 1.54zM4.63 8.9l-1.74-1c-.44.96-.73 2-.84 3.1h2.02c.09-.74.28-1.44.56-2.1zm15.3 4.1c-.09.74-.28 1.44-.56 2.1l1.74 1c.44-.96.73-2.01.84-3.1h-2.02zm-3.1 5.36l1.01 1.74c.87-.63 1.64-1.4 2.27-2.27l-1.74-1.01c-.45.59-.96 1.1-1.54 1.54zM7.17 5.64l-1-1.75c-.88.64-1.64 1.4-2.27 2.28l1.74 1.01a7.7 7.7 0 011.53-1.54zM5.64 16.83l-1.74 1c.63.87 1.4 1.64 2.27 2.27l1.01-1.74a7.7 7.7 0 01-1.54-1.53zM13 7h-2v5.41l4.29 4.29 1.41-1.41-3.7-3.7V7z", + fill: "currentColor" })); } diff --git a/icons/es5/Hive.js b/icons/es5/Hive.js index 22f7f6b58c..15a28995a9 100644 --- a/icons/es5/Hive.js +++ b/icons/es5/Hive.js @@ -7,9 +7,11 @@ function SvgHive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.79 8l1.8-3-1.8-3h-3.58l-1.8 3 1.8 3zm-3.58 1l-1.8 3 1.8 3h3.58l1.8-3-1.8-3zm6.24 2.51h3.59l1.79-3-1.79-3h-3.59l-1.8 3zm3.59 1h-3.59l-1.8 3 1.8 3h3.59l1.79-3zm-12.49-1l1.8-3-1.8-3H3.96l-1.79 3 1.79 3zm0 1H3.96l-1.79 3 1.79 3h3.59l1.8-3zM10.21 16l-1.8 3 1.8 3h3.58l1.8-3-1.8-3z" + d: "M13.79 8l1.8-3-1.8-3h-3.58l-1.8 3 1.8 3zm-3.58 1l-1.8 3 1.8 3h3.58l1.8-3-1.8-3zm6.24 2.51h3.59l1.79-3-1.79-3h-3.59l-1.8 3zm3.59 1h-3.59l-1.8 3 1.8 3h3.59l1.79-3zm-12.49-1l1.8-3-1.8-3H3.96l-1.79 3 1.79 3zm0 1H3.96l-1.79 3 1.79 3h3.59l1.8-3zM10.21 16l-1.8 3 1.8 3h3.58l1.8-3-1.8-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Hls.js b/icons/es5/Hls.js index 55c06ee9f2..79c26761c5 100644 --- a/icons/es5/Hls.js +++ b/icons/es5/Hls.js @@ -7,9 +7,11 @@ function SvgHls(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.5 9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9zm9 6h5v-3.5H17v-1h2v.5h1.5V9h-5v3.5H19v1h-2V13h-1.5v2zM14 15v-1.5h-2.5V9H10v6h4z" + d: "M6.5 9H8v6H6.5v-2.5h-2V15H3V9h1.5v2h2V9zm9 6h5v-3.5H17v-1h2v.5h1.5V9h-5v3.5H19v1h-2V13h-1.5v2zM14 15v-1.5h-2.5V9H10v6h4z", + fill: "currentColor" })); } diff --git a/icons/es5/HlsOff.js b/icons/es5/HlsOff.js index 7ee21a1a45..dc85153da7 100644 --- a/icons/es5/HlsOff.js +++ b/icons/es5/HlsOff.js @@ -7,9 +7,11 @@ function SvgHlsOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.83 15h2.67v-3.5H17v-1h2v.5h1.5V9h-5v3.5H19v1h-2V13h-1.17l2 2zM8 10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-7.6-7.6H10v-2.17l-2-2z" + d: "M17.83 15h2.67v-3.5H17v-1h2v.5h1.5V9h-5v3.5H19v1h-2V13h-1.17l2 2zM8 10.83V15H6.5v-2.5h-2V15H3V9h1.5v2h2V9.33L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-7.6-7.6H10v-2.17l-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/HolidayVillage.js b/icons/es5/HolidayVillage.js index 49e4013be0..d223696784 100644 --- a/icons/es5/HolidayVillage.js +++ b/icons/es5/HolidayVillage.js @@ -7,9 +7,11 @@ function SvgHolidayVillage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 20V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2zM8 4l-6 6v10h5v-5h2v5h5V10L8 4zm1 9H7v-2h2v2z" + d: "M18 20V8.35L13.65 4h-2.83L16 9.18V20h2zm4 0V6.69L19.31 4h-2.83L20 7.52V20h2zM8 4l-6 6v10h5v-5h2v5h5V10L8 4zm1 9H7v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/HomeMax.js b/icons/es5/HomeMax.js index 3e11d09f38..eb128108d3 100644 --- a/icons/es5/HomeMax.js +++ b/icons/es5/HomeMax.js @@ -7,9 +7,11 @@ function SvgHomeMax(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z" + d: "M19 5H5C2.79 5 1 6.79 1 9v5c0 2.21 1.79 4 4 4h2v1h10v-1h2c2.21 0 4-1.79 4-4V9c0-2.21-1.79-4-4-4zm2 9c0 1.1-.9 2-2 2H5c-1.1 0-2-.9-2-2V9c0-1.1.9-2 2-2h14c1.1 0 2 .9 2 2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/HomeMini.js b/icons/es5/HomeMini.js index a2bf1cae61..0e53ce4fd5 100644 --- a/icons/es5/HomeMini.js +++ b/icons/es5/HomeMini.js @@ -7,9 +7,11 @@ function SvgHomeMini(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z" + d: "M12 5C4.19 5 2 9.48 2 12c0 3.86 3.13 7 6.99 7h6.02C17.7 19 22 16.92 22 12c0 0 0-7-10-7zm0 2c7.64 0 7.99 4.51 8 5H4c0-.2.09-5 8-5zm2.86 10H9.14c-2.1 0-3.92-1.24-4.71-3h15.15c-.8 1.76-2.62 3-4.72 3z", + fill: "currentColor" })); } diff --git a/icons/es5/HomeRepairService.js b/icons/es5/HomeRepairService.js index f027c719b5..7095af3a7b 100644 --- a/icons/es5/HomeRepairService.js +++ b/icons/es5/HomeRepairService.js @@ -7,9 +7,11 @@ function SvgHomeRepairService(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 16h-2v-1H8v1H6v-1H2v5h20v-5h-4zm-1-8V4H7v4H2v6h4v-2h2v2h8v-2h2v2h4V8h-5zM9 6h6v2H9V6z" + d: "M18 16h-2v-1H8v1H6v-1H2v5h20v-5h-4zm-1-8V4H7v4H2v6h4v-2h2v2h8v-2h2v2h4V8h-5zM9 6h6v2H9V6z", + fill: "currentColor" })); } diff --git a/icons/es5/HomeWork.js b/icons/es5/HomeWork.js index cb662fde80..980ebefcb7 100644 --- a/icons/es5/HomeWork.js +++ b/icons/es5/HomeWork.js @@ -7,11 +7,14 @@ function SvgHomeWork(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 11v10h5v-6h4v6h5V11L8 6z" + d: "M1 11v10h5v-6h4v6h5V11L8 6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M10 3v1.97l7 5V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" + d: "M10 3v1.97l7 5V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/HorizontalDistribute.js b/icons/es5/HorizontalDistribute.js index 6e4a065b8b..b5ff2179ad 100644 --- a/icons/es5/HorizontalDistribute.js +++ b/icons/es5/HorizontalDistribute.js @@ -7,9 +7,11 @@ function SvgHorizontalDistribute(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 22H2V2h2v20zM22 2h-2v20h2V2zm-8.5 5h-3v10h3V7z" + d: "M4 22H2V2h2v20zM22 2h-2v20h2V2zm-8.5 5h-3v10h3V7z", + fill: "currentColor" })); } diff --git a/icons/es5/HorizontalRule.js b/icons/es5/HorizontalRule.js index eed4e0719a..7078303d60 100644 --- a/icons/es5/HorizontalRule.js +++ b/icons/es5/HorizontalRule.js @@ -7,10 +7,12 @@ function SvgHorizontalRule(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", - d: "M4 11h16v2H4z" + d: "M4 11h16v2H4z", + fill: "currentColor" })); } diff --git a/icons/es5/HorizontalSplit.js b/icons/es5/HorizontalSplit.js index 4d1bf2c9aa..7e199aee91 100644 --- a/icons/es5/HorizontalSplit.js +++ b/icons/es5/HorizontalSplit.js @@ -7,9 +7,11 @@ function SvgHorizontalSplit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z" + d: "M3 19h18v-6H3v6zm0-8h18V9H3v2zm0-6v2h18V5H3z", + fill: "currentColor" })); } diff --git a/icons/es5/HotTub.js b/icons/es5/HotTub.js index 99dcefca7e..9638c3f7dc 100644 --- a/icons/es5/HotTub.js +++ b/icons/es5/HotTub.js @@ -7,13 +7,15 @@ function SvgHotTub(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 7, cy: 6, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v10h20V12H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z" + d: "M11.15 12c-.31-.22-.59-.46-.82-.72l-1.4-1.55c-.19-.21-.43-.38-.69-.5-.29-.14-.62-.23-.96-.23h-.03C6.01 9 5 10.01 5 11.25V12H2v10h20V12H11.15zM7 20H5v-6h2v6zm4 0H9v-6h2v6zm4 0h-2v-6h2v6zm4 0h-2v-6h2v6zm-.35-14.14l-.07-.07c-.57-.62-.82-1.41-.67-2.2L18 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71zm-4 0l-.07-.07c-.57-.62-.82-1.41-.67-2.2L14 3h-1.89l-.06.43c-.2 1.36.27 2.71 1.3 3.72l.07.06c.57.62.82 1.41.67 2.2l-.11.59h1.91l.06-.43c.21-1.36-.27-2.71-1.3-3.71z", + fill: "currentColor" })); } diff --git a/icons/es5/Hotel.js b/icons/es5/Hotel.js index 84a2457357..694aee6fe9 100644 --- a/icons/es5/Hotel.js +++ b/icons/es5/Hotel.js @@ -7,9 +7,11 @@ function SvgHotel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z" + d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z", + fill: "currentColor" })); } diff --git a/icons/es5/HotelClass.js b/icons/es5/HotelClass.js index 82feedd912..1f57fad5a8 100644 --- a/icons/es5/HotelClass.js +++ b/icons/es5/HotelClass.js @@ -7,9 +7,11 @@ function SvgHotelClass(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.58 10H1l6.17 4.41L4.83 22 11 17.31 17.18 22l-2.35-7.59L21 10h-7.58L11 2l-2.42 8zm12.78 12l-1.86-6.01L23.68 13h-3.44l-3.08 2.2 1.46 4.72L21.36 22zM17 8l-1.82-6-1.04 3.45.77 2.55H17z" + d: "M8.58 10H1l6.17 4.41L4.83 22 11 17.31 17.18 22l-2.35-7.59L21 10h-7.58L11 2l-2.42 8zm12.78 12l-1.86-6.01L23.68 13h-3.44l-3.08 2.2 1.46 4.72L21.36 22zM17 8l-1.82-6-1.04 3.45.77 2.55H17z", + fill: "currentColor" })); } diff --git a/icons/es5/HourglassBottom.js b/icons/es5/HourglassBottom.js index 5e15eb0b37..4b9cf10d2d 100644 --- a/icons/es5/HourglassBottom.js +++ b/icons/es5/HourglassBottom.js @@ -7,9 +7,11 @@ function SvgHourglassBottom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 22l-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z" + d: "M18 22l-.01-6L14 12l3.99-4.01L18 2H6v6l4 4-4 3.99V22h12zM8 7.5V4h8v3.5l-4 4-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/HourglassDisabled.js b/icons/es5/HourglassDisabled.js index 036f9b7a57..a586c852ed 100644 --- a/icons/es5/HourglassDisabled.js +++ b/icons/es5/HourglassDisabled.js @@ -7,9 +7,11 @@ function SvgHourglassDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1L.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z" + d: "M8 4h8v3.5l-2.84 2.84 1.25 1.25L18 8.01 17.99 8H18V2H6v1.17l2 2zM2.1 2.1L.69 3.51l8.9 8.9L6 16l.01.01H6V22h12v-1.17l2.49 2.49 1.41-1.41L2.1 2.1zM16 20H8v-3.5l2.84-2.84L16 18.83V20z", + fill: "currentColor" })); } diff --git a/icons/es5/HourglassEmpty.js b/icons/es5/HourglassEmpty.js index c0db7e8ab7..f069a3ddd7 100644 --- a/icons/es5/HourglassEmpty.js +++ b/icons/es5/HourglassEmpty.js @@ -7,9 +7,11 @@ function SvgHourglassEmpty(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z" + d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6zm10 14.5V20H8v-3.5l4-4 4 4zm-4-5l-4-4V4h8v3.5l-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/HourglassFull.js b/icons/es5/HourglassFull.js index 34aacb6d26..1ca6736671 100644 --- a/icons/es5/HourglassFull.js +++ b/icons/es5/HourglassFull.js @@ -7,9 +7,11 @@ function SvgHourglassFull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z" + d: "M6 2v6h.01L6 8.01 10 12l-4 4 .01.01H6V22h12v-5.99h-.01L18 16l-4-4 4-3.99-.01-.01H18V2H6z", + fill: "currentColor" })); } diff --git a/icons/es5/HourglassTop.js b/icons/es5/HourglassTop.js index e18c916e18..5c23ad27ec 100644 --- a/icons/es5/HourglassTop.js +++ b/icons/es5/HourglassTop.js @@ -7,9 +7,11 @@ function SvgHourglassTop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 2l.01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z" + d: "M6 2l.01 6L10 12l-3.99 4.01L6 22h12v-6l-4-4 4-3.99V2H6zm10 14.5V20H8v-3.5l4-4 4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/House.js b/icons/es5/House.js index 1d50c06c21..da21bd3714 100644 --- a/icons/es5/House.js +++ b/icons/es5/House.js @@ -7,9 +7,11 @@ function SvgHouse(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h5v-6h4v6h5v-8h3l-3-2.7zm-9 .7c0-1.1.9-2 2-2s2 .9 2 2h-4z" + d: "M19 9.3V4h-3v2.6L12 3 2 12h3v8h5v-6h4v6h5v-8h3l-3-2.7zm-9 .7c0-1.1.9-2 2-2s2 .9 2 2h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/HouseSiding.js b/icons/es5/HouseSiding.js index 61a8724da5..b8014a843f 100644 --- a/icons/es5/HouseSiding.js +++ b/icons/es5/HouseSiding.js @@ -7,9 +7,11 @@ function SvgHouseSiding(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z" + d: "M19 12h3L12 3 2 12h3v8h2v-2h10v2h2v-8zM7.21 10h9.58l.21.19V12H7v-1.81l.21-.19zm7.36-2H9.43L12 5.69 14.57 8zM7 16v-2h10v2H7z", + fill: "currentColor" })); } diff --git a/icons/es5/Houseboat.js b/icons/es5/Houseboat.js index 1872efd80c..87c89174ea 100644 --- a/icons/es5/Houseboat.js +++ b/icons/es5/Houseboat.js @@ -7,9 +7,11 @@ function SvgHouseboat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66L18.67 13H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.33l-1.66-1.66-1.41 1.41L4.5 15h15l2.25-2.25-1.41-1.41zM13 13h-2v-2h2v2z" + d: "M12 16c-1.95 0-2.1 1-3.34 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.08-1 3.32-1s1.37 1 3.32 1c1.91 0 2.14-1 3.33-1 1.18 0 1.45 1 3.35 1v-2c-1.24 0-1.38-1-3.33-1-1.91 0-2.14 1-3.33 1-1.24 0-1.39-1-3.34-1zm8.34-4.66L18.67 13H17V9.65l1.32.97L19.5 9 12 3.5 4.5 9l1.18 1.61L7 9.65V13H5.33l-1.66-1.66-1.41 1.41L4.5 15h15l2.25-2.25-1.41-1.41zM13 13h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/HowToReg.js b/icons/es5/HowToReg.js index ce6e6b8da5..4169959d6e 100644 --- a/icons/es5/HowToReg.js +++ b/icons/es5/HowToReg.js @@ -7,9 +7,11 @@ function SvgHowToReg(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 17l3-2.94a9.34 9.34 0 00-1-.06c-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m4.47 8.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41-6.53 6.59z" + d: "M9 17l3-2.94a9.34 9.34 0 00-1-.06c-2.67 0-8 1.34-8 4v2h9l-3-3zm2-5c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4m4.47 8.5L12 17l1.4-1.41 2.07 2.08 5.13-5.17 1.4 1.41-6.53 6.59z", + fill: "currentColor" })); } diff --git a/icons/es5/HowToVote.js b/icons/es5/HowToVote.js index b1b9685b0d..50fd2eb7c0 100644 --- a/icons/es5/HowToVote.js +++ b/icons/es5/HowToVote.js @@ -7,9 +7,11 @@ function SvgHowToVote(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v6h18v-6zm1.81-5.04L13.45 1.6 5.68 9.36l6.36 6.36 7.77-7.76zm-6.35-3.55L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z" + d: "M18 13h-.68l-2 2h1.91L19 17H5l1.78-2h2.05l-2-2H6l-3 3v6h18v-6zm1.81-5.04L13.45 1.6 5.68 9.36l6.36 6.36 7.77-7.76zm-6.35-3.55L17 7.95l-4.95 4.95-3.54-3.54 4.95-4.95z", + fill: "currentColor" })); } diff --git a/icons/es5/Html.js b/icons/es5/Html.js index b8d052c79f..92aa930b24 100644 --- a/icons/es5/Html.js +++ b/icons/es5/Html.js @@ -7,9 +7,11 @@ function SvgHtml(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.5 9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9zm15 0H12v6h1.5v-4.5h1V14H16v-3.51h1V15h1.5V9zM11 9H6v1.5h1.75V15h1.5v-4.5H11V9zm13 6v-1.5h-2.5V9H20v6h4z" + d: "M3.5 9H5v6H3.5v-2.5h-2V15H0V9h1.5v2h2V9zm15 0H12v6h1.5v-4.5h1V14H16v-3.51h1V15h1.5V9zM11 9H6v1.5h1.75V15h1.5v-4.5H11V9zm13 6v-1.5h-2.5V9H20v6h4z", + fill: "currentColor" })); } diff --git a/icons/es5/Http.js b/icons/es5/Http.js index b5d755c3e0..6df7efbf85 100644 --- a/icons/es5/Http.js +++ b/icons/es5/Http.js @@ -7,9 +7,11 @@ function SvgHttp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zM23 9h-5v6h1.5v-2H23V9zm-1.5 2.5h-2v-1h2v1z" + d: "M4.5 11h-2V9H1v6h1.5v-2.5h2V15H6V9H4.5v2zm2.5-.5h1.5V15H10v-4.5h1.5V9H7v1.5zm5.5 0H14V15h1.5v-4.5H17V9h-4.5v1.5zM23 9h-5v6h1.5v-2H23V9zm-1.5 2.5h-2v-1h2v1z", + fill: "currentColor" })); } diff --git a/icons/es5/Https.js b/icons/es5/Https.js index 4851bfc7f1..c2aa4bcb1b 100644 --- a/icons/es5/Https.js +++ b/icons/es5/Https.js @@ -7,9 +7,11 @@ function SvgHttps(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19A5.008 5.008 0 007 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" + d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19A5.008 5.008 0 007 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z", + fill: "currentColor" })); } diff --git a/icons/es5/Hub.js b/icons/es5/Hub.js index 9b5b796d8d..86ab539db4 100644 --- a/icons/es5/Hub.js +++ b/icons/es5/Hub.js @@ -7,9 +7,11 @@ function SvgHub(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.4 18.2c.38.5.6 1.12.6 1.8 0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.44 0 .85.09 1.23.26l1.41-1.77a4.504 4.504 0 01-1.09-3.69l-2.03-.68A2.997 2.997 0 010 9.5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .07 0 .14-.01.21l2.03.68a4.468 4.468 0 013.22-2.32V5.91A3.018 3.018 0 019 3c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.4-.96 2.57-2.25 2.91v2.16c1.4.23 2.58 1.11 3.22 2.32L18 9.71V9.5c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3c-1.06 0-1.98-.55-2.52-1.37l-2.03.68a4.49 4.49 0 01-1.09 3.69l1.41 1.77c.38-.18.79-.27 1.23-.27 1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3c0-.68.22-1.3.6-1.8l-1.41-1.77c-1.35.75-3.01.76-4.37 0L8.4 18.2z" + d: "M8.4 18.2c.38.5.6 1.12.6 1.8 0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3c.44 0 .85.09 1.23.26l1.41-1.77a4.504 4.504 0 01-1.09-3.69l-2.03-.68A2.997 2.997 0 010 9.5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .07 0 .14-.01.21l2.03.68a4.468 4.468 0 013.22-2.32V5.91A3.018 3.018 0 019 3c0-1.66 1.34-3 3-3s3 1.34 3 3c0 1.4-.96 2.57-2.25 2.91v2.16c1.4.23 2.58 1.11 3.22 2.32L18 9.71V9.5c0-1.66 1.34-3 3-3s3 1.34 3 3-1.34 3-3 3c-1.06 0-1.98-.55-2.52-1.37l-2.03.68a4.49 4.49 0 01-1.09 3.69l1.41 1.77c.38-.18.79-.27 1.23-.27 1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3c0-.68.22-1.3.6-1.8l-1.41-1.77c-1.35.75-3.01.76-4.37 0L8.4 18.2z", + fill: "currentColor" })); } diff --git a/icons/es5/Hvac.js b/icons/es5/Hvac.js index 084693627f..e66edaf42c 100644 --- a/icons/es5/Hvac.js +++ b/icons/es5/Hvac.js @@ -7,11 +7,14 @@ function SvgHvac(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.56 14h6.89c.26-.45.44-.96.51-1.5h-7.9c.06.54.23 1.05.5 1.5zM12 16c1.01 0 1.91-.39 2.62-1H9.38c.71.61 1.61 1 2.62 1zm0-8c-1.01 0-1.91.39-2.62 1h5.24c-.71-.61-1.61-1-2.62-1zm-3.44 2c-.26.45-.44.96-.51 1.5h7.9c-.07-.54-.24-1.05-.51-1.5H8.56z" + d: "M8.56 14h6.89c.26-.45.44-.96.51-1.5h-7.9c.06.54.23 1.05.5 1.5zM12 16c1.01 0 1.91-.39 2.62-1H9.38c.71.61 1.61 1 2.62 1zm0-8c-1.01 0-1.91.39-2.62 1h5.24c-.71-.61-1.61-1-2.62-1zm-3.44 2c-.26.45-.44.96-.51 1.5h7.9c-.07-.54-.24-1.05-.51-1.5H8.56z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm9 15c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + d: "M3 3v18h18V3H3zm9 15c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/IceSkating.js b/icons/es5/IceSkating.js index 393aa21e1f..119137adb8 100644 --- a/icons/es5/IceSkating.js +++ b/icons/es5/IceSkating.js @@ -7,9 +7,11 @@ function SvgIceSkating(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 17c0 1.66-1.34 3-3 3h-2v-2h3l-.01-6-5.71-1.43A3 3 0 0111.32 9H8V8h3.02L11 7H8V6h3V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2zm-7 3H8v-2h6v2z" + d: "M21 17c0 1.66-1.34 3-3 3h-2v-2h3l-.01-6-5.71-1.43A3 3 0 0111.32 9H8V8h3.02L11 7H8V6h3V3H3v15h3v2H2v2h16c2.76 0 5-2.24 5-5h-2zm-7 3H8v-2h6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Icecream.js b/icons/es5/Icecream.js index ea792e5d50..165d9564b1 100644 --- a/icons/es5/Icecream.js +++ b/icons/es5/Icecream.js @@ -7,9 +7,11 @@ function SvgIcecream(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24A4.014 4.014 0 003 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02L12.07 23l4.61-9.03c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39l-2.73-5.21a6.468 6.468 0 005.4-.02l-2.67 5.23z" + d: "M18.38 6.24C17.79 3.24 15.14 1 12 1S6.21 3.24 5.62 6.24A4.014 4.014 0 003 10c0 2.21 1.79 4 4 4 .12 0 .23-.02.34-.02L12.07 23l4.61-9.03c.11.01.21.03.32.03 2.21 0 4-1.79 4-4 0-1.71-1.08-3.19-2.62-3.76zm-6.33 12.39l-2.73-5.21a6.468 6.468 0 005.4-.02l-2.67 5.23z", + fill: "currentColor" })); } diff --git a/icons/es5/Image.js b/icons/es5/Image.js index 6d56c91ab2..ad2645ba11 100644 --- a/icons/es5/Image.js +++ b/icons/es5/Image.js @@ -7,9 +7,11 @@ function SvgImage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" + d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/ImageAspectRatio.js b/icons/es5/ImageAspectRatio.js index 2935aaa51b..99e2384254 100644 --- a/icons/es5/ImageAspectRatio.js +++ b/icons/es5/ImageAspectRatio.js @@ -7,9 +7,11 @@ function SvgImageAspectRatio(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm10-6H2v16h20V4zm-2 14H4V6h16v12z" + d: "M16 10h-2v2h2v-2zm0 4h-2v2h2v-2zm-8-4H6v2h2v-2zm4 0h-2v2h2v-2zm10-6H2v16h20V4zm-2 14H4V6h16v12z", + fill: "currentColor" })); } diff --git a/icons/es5/ImageNotSupported.js b/icons/es5/ImageNotSupported.js index ee0961d93c..3abdc6fa78 100644 --- a/icons/es5/ImageNotSupported.js +++ b/icons/es5/ImageNotSupported.js @@ -7,9 +7,11 @@ function SvgImageNotSupported(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.9 21.9l-8.49-8.49L3 3l-.9-.9L.69 3.51 3 5.83V21h15.17l2.31 2.31 1.42-1.41zM5 18l3.5-4.5 2.5 3.01L12.17 15l3 3H5zm16 .17L5.83 3H21v15.17z" + d: "M21.9 21.9l-8.49-8.49L3 3l-.9-.9L.69 3.51 3 5.83V21h15.17l2.31 2.31 1.42-1.41zM5 18l3.5-4.5 2.5 3.01L12.17 15l3 3H5zm16 .17L5.83 3H21v15.17z", + fill: "currentColor" })); } diff --git a/icons/es5/ImageSearch.js b/icons/es5/ImageSearch.js index 08a4bf6e9f..30185ac0b2 100644 --- a/icons/es5/ImageSearch.js +++ b/icons/es5/ImageSearch.js @@ -7,9 +7,11 @@ function SvgImageSearch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H2v18h18v-7l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9a2.5 2.5 0 010-5 2.5 2.5 0 010 5z" + d: "M18 13v7H4V6h5.02c.05-.71.22-1.38.48-2H2v18h18v-7l-2-2zm-1.5 5h-11l2.75-3.53 1.96 2.36 2.75-3.54L16.5 18zm2.8-9.11c.44-.7.7-1.51.7-2.39C20 4.01 17.99 2 15.5 2S11 4.01 11 6.5s2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21 13.42 22.42 12 19.3 8.89zM15.5 9a2.5 2.5 0 010-5 2.5 2.5 0 010 5z", + fill: "currentColor" })); } diff --git a/icons/es5/ImagesearchRoller.js b/icons/es5/ImagesearchRoller.js index 2b63451204..9ce49229d7 100644 --- a/icons/es5/ImagesearchRoller.js +++ b/icons/es5/ImagesearchRoller.js @@ -7,9 +7,11 @@ function SvgImagesearchRoller(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2h14z" + d: "M20 2v6H6V6H4v4h10v5h2v8h-6v-8h2v-3H2V4h4V2h14z", + fill: "currentColor" })); } diff --git a/icons/es5/ImportContacts.js b/icons/es5/ImportContacts.js index 0d94d87538..ea870b6200 100644 --- a/icons/es5/ImportContacts.js +++ b/icons/es5/ImportContacts.js @@ -7,9 +7,11 @@ function SvgImportContacts(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z", + fill: "currentColor" })); } diff --git a/icons/es5/ImportExport.js b/icons/es5/ImportExport.js index 75c4b6e503..d79bcd7a52 100644 --- a/icons/es5/ImportExport.js +++ b/icons/es5/ImportExport.js @@ -7,9 +7,11 @@ function SvgImportExport(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z" + d: "M9 3L5 6.99h3V14h2V6.99h3L9 3zm7 14.01V10h-2v7.01h-3L15 21l4-3.99h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/ImportantDevices.js b/icons/es5/ImportantDevices.js index 7cfafb05ba..d187e6f5f3 100644 --- a/icons/es5/ImportantDevices.js +++ b/icons/es5/ImportantDevices.js @@ -7,9 +7,11 @@ function SvgImportantDevices(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 11.01L17 11v11h7V11.01zM23 20h-5v-7h5v7zM22 2H0v16h9v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V2zM11.97 9L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z" + d: "M24 11.01L17 11v11h7V11.01zM23 20h-5v-7h5v7zM22 2H0v16h9v2H7v2h8v-2h-2v-2h2v-2H2V4h18v5h2V2zM11.97 9L11 6l-.97 3H7l2.47 1.76-.94 2.91 2.47-1.8 2.47 1.8-.94-2.91L15 9h-3.03z", + fill: "currentColor" })); } diff --git a/icons/es5/Inbox.js b/icons/es5/Inbox.js index 50f61001eb..82578753ca 100644 --- a/icons/es5/Inbox.js +++ b/icons/es5/Inbox.js @@ -7,9 +7,11 @@ function SvgInbox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3.01v18H21V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H5V5h14v10z" + d: "M21 3H3.01v18H21V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H5V5h14v10z", + fill: "currentColor" })); } diff --git a/icons/es5/IncompleteCircle.js b/icons/es5/IncompleteCircle.js index 0384080c00..5bbb0ac03b 100644 --- a/icons/es5/IncompleteCircle.js +++ b/icons/es5/IncompleteCircle.js @@ -7,9 +7,11 @@ function SvgIncompleteCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12c0 5.52-4.48 10-10 10S2 17.52 2 12c0-2.76 1.12-5.26 2.93-7.07L12 12V2c5.52 0 10 4.48 10 10z" + d: "M22 12c0 5.52-4.48 10-10 10S2 17.52 2 12c0-2.76 1.12-5.26 2.93-7.07L12 12V2c5.52 0 10 4.48 10 10z", + fill: "currentColor" })); } diff --git a/icons/es5/Input.js b/icons/es5/Input.js index efd6444440..a158f3ad40 100644 --- a/icons/es5/Input.js +++ b/icons/es5/Input.js @@ -7,9 +7,11 @@ function SvgInput(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14a2 2 0 00-2-2zM11 16l4-4-4-4v3H1v2h10v3zM23 3.01H1V9h2V4.99h18v14.03H3V15H1v5.99h22V3.01zM11 16l4-4-4-4v3H1v2h10v3z" + d: "M21 3.01H3c-1.1 0-2 .9-2 2V9h2V4.99h18v14.03H3V15H1v4.01c0 1.1.9 1.98 2 1.98h18c1.1 0 2-.88 2-1.98v-14a2 2 0 00-2-2zM11 16l4-4-4-4v3H1v2h10v3zM23 3.01H1V9h2V4.99h18v14.03H3V15H1v5.99h22V3.01zM11 16l4-4-4-4v3H1v2h10v3z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertChart.js b/icons/es5/InsertChart.js index c2c179c748..a5fc539e57 100644 --- a/icons/es5/InsertChart.js +++ b/icons/es5/InsertChart.js @@ -7,9 +7,11 @@ function SvgInsertChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" + d: "M21 3H3v18h18V3zM9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertChartOutlined.js b/icons/es5/InsertChartOutlined.js index 0bd61b22c9..e3cd5f2381 100644 --- a/icons/es5/InsertChartOutlined.js +++ b/icons/es5/InsertChartOutlined.js @@ -7,9 +7,11 @@ function SvgInsertChartOutlined(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm2-16H3v18h18V3z" + d: "M9 17H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4zm2 2H5V5h14v14zm2-16H3v18h18V3z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertComment.js b/icons/es5/InsertComment.js index 071da4d5c7..0c661658b7 100644 --- a/icons/es5/InsertComment.js +++ b/icons/es5/InsertComment.js @@ -7,9 +7,11 @@ function SvgInsertComment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v16h16l4 4V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" + d: "M22 2H2v16h16l4 4V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertDriveFile.js b/icons/es5/InsertDriveFile.js index 99020796e4..ce99b3cf17 100644 --- a/icons/es5/InsertDriveFile.js +++ b/icons/es5/InsertDriveFile.js @@ -7,9 +7,11 @@ function SvgInsertDriveFile(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.01 2L4 22h16V8l-6-6H4.01zM13 9V3.5L18.5 9H13z" + d: "M4.01 2L4 22h16V8l-6-6H4.01zM13 9V3.5L18.5 9H13z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertEmoticon.js b/icons/es5/InsertEmoticon.js index a3c8c4c84f..56d207f781 100644 --- a/icons/es5/InsertEmoticon.js +++ b/icons/es5/InsertEmoticon.js @@ -7,9 +7,11 @@ function SvgInsertEmoticon(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertInvitation.js b/icons/es5/InsertInvitation.js index fda2e9d529..a1d1d168c5 100644 --- a/icons/es5/InsertInvitation.js +++ b/icons/es5/InsertInvitation.js @@ -7,9 +7,11 @@ function SvgInsertInvitation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H3.01v18H21V3h-3V1h-2zm3 18H5V8h14v11z" + d: "M17 12h-5v5h5v-5zM16 1v2H8V1H6v2H3.01v18H21V3h-3V1h-2zm3 18H5V8h14v11z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertLink.js b/icons/es5/InsertLink.js index 3ace8d456d..67bba25beb 100644 --- a/icons/es5/InsertLink.js +++ b/icons/es5/InsertLink.js @@ -7,9 +7,11 @@ function SvgInsertLink(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z" + d: "M3.9 12c0-1.71 1.39-3.1 3.1-3.1h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1zM8 13h8v-2H8v2zm9-6h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1s-1.39 3.1-3.1 3.1h-4V17h4c2.76 0 5-2.24 5-5s-2.24-5-5-5z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertPageBreak.js b/icons/es5/InsertPageBreak.js index fcd03c49d3..c1ef31bd4d 100644 --- a/icons/es5/InsertPageBreak.js +++ b/icons/es5/InsertPageBreak.js @@ -7,9 +7,11 @@ function SvgInsertPageBreak(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 17h16v5H4zm16-9l-6-6H4.01L4 11h16V8zm-7 1V3.5L18.5 9H13zm-4 4h6v2H9zm8 0h6v2h-6zM1 13h6v2H1z" + d: "M4 17h16v5H4zm16-9l-6-6H4.01L4 11h16V8zm-7 1V3.5L18.5 9H13zm-4 4h6v2H9zm8 0h6v2h-6zM1 13h6v2H1z", + fill: "currentColor" })); } diff --git a/icons/es5/InsertPhoto.js b/icons/es5/InsertPhoto.js index 0d6ed50c52..ba623692aa 100644 --- a/icons/es5/InsertPhoto.js +++ b/icons/es5/InsertPhoto.js @@ -7,9 +7,11 @@ function SvgInsertPhoto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" + d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Insights.js b/icons/es5/Insights.js index b42284711a..045f0f464e 100644 --- a/icons/es5/Insights.js +++ b/icons/es5/Insights.js @@ -7,11 +7,14 @@ function SvgInsights(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z" + d: "M21 8c-1.45 0-2.26 1.44-1.93 2.51l-3.55 3.56c-.3-.09-.74-.09-1.04 0l-2.55-2.55C12.27 10.45 11.46 9 10 9c-1.45 0-2.27 1.44-1.93 2.52l-4.56 4.55C2.44 15.74 1 16.55 1 18c0 1.1.9 2 2 2 1.45 0 2.26-1.44 1.93-2.51l4.55-4.56c.3.09.74.09 1.04 0l2.55 2.55C12.73 16.55 13.54 18 15 18c1.45 0 2.27-1.44 1.93-2.52l3.56-3.55c1.07.33 2.51-.48 2.51-1.93 0-1.1-.9-2-2-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 9l.94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11L4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z" + d: "M15 9l.94-2.07L18 6l-2.06-.93L15 3l-.92 2.07L12 6l2.08.93zM3.5 11L4 9l2-.5L4 8l-.5-2L3 8l-2 .5L3 9z", + fill: "currentColor" })); } diff --git a/icons/es5/InstallDesktop.js b/icons/es5/InstallDesktop.js index d49503f0ce..f7741546a0 100644 --- a/icons/es5/InstallDesktop.js +++ b/icons/es5/InstallDesktop.js @@ -7,11 +7,14 @@ function SvgInstallDesktop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 17H4V5h8V3H2v16h6v2h8v-2h6v-5h-2z" + d: "M20 17H4V5h8V3H2v16h6v2h8v-2h6v-5h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 14l5-5-1.41-1.41L18 10.17V3h-2v7.17l-2.59-2.58L12 9z" + d: "M17 14l5-5-1.41-1.41L18 10.17V3h-2v7.17l-2.59-2.58L12 9z", + fill: "currentColor" })); } diff --git a/icons/es5/InstallMobile.js b/icons/es5/InstallMobile.js index 3f0b957c89..be88cbf100 100644 --- a/icons/es5/InstallMobile.js +++ b/icons/es5/InstallMobile.js @@ -7,11 +7,14 @@ function SvgInstallMobile(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 18H7V6h7V1H5v22h14v-7h-2z" + d: "M17 18H7V6h7V1H5v22h14v-7h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 14l5-5-1.41-1.41L19 10.17V3h-2v7.17l-2.59-2.58L13 9z" + d: "M18 14l5-5-1.41-1.41L19 10.17V3h-2v7.17l-2.59-2.58L13 9z", + fill: "currentColor" })); } diff --git a/icons/es5/IntegrationInstructions.js b/icons/es5/IntegrationInstructions.js index 40ac49eb9a..5eb29cbb68 100644 --- a/icons/es5/IntegrationInstructions.js +++ b/icons/es5/IntegrationInstructions.js @@ -7,9 +7,11 @@ function SvgIntegrationInstructions(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zM11 14.17l-1.41 1.42L6 12l3.59-3.59L11 9.83 8.83 12 11 14.17zm1-9.92c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm2.41 11.34L13 14.17 15.17 12 13 9.83l1.41-1.42L18 12l-3.59 3.59z" + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zM11 14.17l-1.41 1.42L6 12l3.59-3.59L11 9.83 8.83 12 11 14.17zm1-9.92c-.41 0-.75-.34-.75-.75s.34-.75.75-.75.75.34.75.75-.34.75-.75.75zm2.41 11.34L13 14.17 15.17 12 13 9.83l1.41-1.42L18 12l-3.59 3.59z", + fill: "currentColor" })); } diff --git a/icons/es5/Interests.js b/icons/es5/Interests.js index ea4f5540ce..63d8dd6eef 100644 --- a/icons/es5/Interests.js +++ b/icons/es5/Interests.js @@ -7,9 +7,11 @@ function SvgInterests(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.02 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zM13 13v8h8v-8h-8zM7 2l-5 9h10L7 2zm12.25.5c-1.06 0-1.81.56-2.25 1.17-.44-.61-1.19-1.17-2.25-1.17C13.19 2.5 12 3.78 12 5.25c0 2 2.42 3.42 5 5.75 2.58-2.33 5-3.75 5-5.75 0-1.47-1.19-2.75-2.75-2.75z" + d: "M7.02 13c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zM13 13v8h8v-8h-8zM7 2l-5 9h10L7 2zm12.25.5c-1.06 0-1.81.56-2.25 1.17-.44-.61-1.19-1.17-2.25-1.17C13.19 2.5 12 3.78 12 5.25c0 2 2.42 3.42 5 5.75 2.58-2.33 5-3.75 5-5.75 0-1.47-1.19-2.75-2.75-2.75z", + fill: "currentColor" })); } diff --git a/icons/es5/InterpreterMode.js b/icons/es5/InterpreterMode.js index 1c530e6b0d..d78bea4a29 100644 --- a/icons/es5/InterpreterMode.js +++ b/icons/es5/InterpreterMode.js @@ -7,9 +7,11 @@ function SvgInterpreterMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.5 16.5c-.83 0-1.5-.67-1.5-1.5v-2.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V15c0 .83-.67 1.5-1.5 1.5zM20 20h1v-1.54c1.69-.24 3-1.7 3-3.46h-1a2.5 2.5 0 01-5 0h-1c0 1.76 1.31 3.22 3 3.46V20zM9 12c-2.21 0-4-1.79-4-4a3.999 3.999 0 015.34-3.77A5.938 5.938 0 009 8c0 1.43.5 2.74 1.34 3.77-.42.15-.87.23-1.34.23zm-1.89 1.13A4.965 4.965 0 005 17.22V20H1v-2.78c0-1.12.61-2.15 1.61-2.66 1.24-.64 2.76-1.19 4.5-1.43zM11 8c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zm7.32 12a4.997 4.997 0 01-2.82-4.5c0-.89.23-1.73.64-2.45-.37-.03-.75-.05-1.14-.05-2.53 0-4.71.7-6.39 1.56A2.97 2.97 0 007 17.22V20h11.32z" + d: "M20.5 16.5c-.83 0-1.5-.67-1.5-1.5v-2.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V15c0 .83-.67 1.5-1.5 1.5zM20 20h1v-1.54c1.69-.24 3-1.7 3-3.46h-1a2.5 2.5 0 01-5 0h-1c0 1.76 1.31 3.22 3 3.46V20zM9 12c-2.21 0-4-1.79-4-4a3.999 3.999 0 015.34-3.77A5.938 5.938 0 009 8c0 1.43.5 2.74 1.34 3.77-.42.15-.87.23-1.34.23zm-1.89 1.13A4.965 4.965 0 005 17.22V20H1v-2.78c0-1.12.61-2.15 1.61-2.66 1.24-.64 2.76-1.19 4.5-1.43zM11 8c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zm7.32 12a4.997 4.997 0 01-2.82-4.5c0-.89.23-1.73.64-2.45-.37-.03-.75-.05-1.14-.05-2.53 0-4.71.7-6.39 1.56A2.97 2.97 0 007 17.22V20h11.32z", + fill: "currentColor" })); } diff --git a/icons/es5/Inventory.js b/icons/es5/Inventory.js index d485e5d1f4..ceb402838b 100644 --- a/icons/es5/Inventory.js +++ b/icons/es5/Inventory.js @@ -7,11 +7,14 @@ function SvgInventory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 5h2v3h10V5h2v5h2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h8v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + d: "M5 5h2v3h10V5h2v5h2V3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h8v-2H5V5zm7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21 11.5L15.51 17l-3.01-3-1.5 1.5 4.51 4.5 6.99-7z" + d: "M21 11.5L15.51 17l-3.01-3-1.5 1.5 4.51 4.5 6.99-7z", + fill: "currentColor" })); } diff --git a/icons/es5/Inventory2.js b/icons/es5/Inventory2.js index d5118f8b8f..5019f13ba3 100644 --- a/icons/es5/Inventory2.js +++ b/icons/es5/Inventory2.js @@ -7,9 +7,11 @@ function SvgInventory2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 2v6.7h1V22h18V8.7h1V2H2zm13 12H9v-2h6v2zm5-7H4V4h16v3z" + d: "M2 2v6.7h1V22h18V8.7h1V2H2zm13 12H9v-2h6v2zm5-7H4V4h16v3z", + fill: "currentColor" })); } diff --git a/icons/es5/InvertColors.js b/icons/es5/InvertColors.js index e689c8c77b..e20fb4b3ae 100644 --- a/icons/es5/InvertColors.js +++ b/icons/es5/InvertColors.js @@ -7,9 +7,11 @@ function SvgInvertColors(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12 2 6.35 7.56z" + d: "M12 4.81V19c-3.31 0-6-2.63-6-5.87 0-1.56.62-3.03 1.75-4.14L12 4.81M6.35 7.56C4.9 8.99 4 10.96 4 13.13 4 17.48 7.58 21 12 21s8-3.52 8-7.87c0-2.17-.9-4.14-2.35-5.57L12 2 6.35 7.56z", + fill: "currentColor" })); } diff --git a/icons/es5/InvertColorsOff.js b/icons/es5/InvertColorsOff.js index 3771b044e7..62b32c0795 100644 --- a/icons/es5/InvertColorsOff.js +++ b/icons/es5/InvertColorsOff.js @@ -7,9 +7,11 @@ function SvgInvertColorsOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.19 21.19L2.81 2.81 1.39 4.22l4.2 4.2a7.73 7.73 0 00-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56L12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z" + d: "M21.19 21.19L2.81 2.81 1.39 4.22l4.2 4.2a7.73 7.73 0 00-1.6 4.7C4 17.48 7.58 21 12 21c1.75 0 3.36-.56 4.67-1.5l3.1 3.1 1.42-1.41zM12 19c-3.31 0-6-2.63-6-5.87 0-1.19.36-2.32 1.02-3.28L12 14.83V19zM8.38 5.56L12 2l5.65 5.56C19.1 8.99 20 10.96 20 13.13c0 1.18-.27 2.29-.74 3.3L12 9.17V4.81L9.8 6.97 8.38 5.56z", + fill: "currentColor" })); } diff --git a/icons/es5/Iron.js b/icons/es5/Iron.js index b967392181..51bf7532d6 100644 --- a/icons/es5/Iron.js +++ b/icons/es5/Iron.js @@ -7,9 +7,11 @@ function SvgIron(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 6v8h-1V7H7v3h2V9h6v2H6c-2.21 0-4 1.79-4 4v3h15v-2h3V8h2V6h-4z" + d: "M18 6v8h-1V7H7v3h2V9h6v2H6c-2.21 0-4 1.79-4 4v3h15v-2h3V8h2V6h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Iso.js b/icons/es5/Iso.js index d6e543927d..569d6916e5 100644 --- a/icons/es5/Iso.js +++ b/icons/es5/Iso.js @@ -7,9 +7,11 @@ function SvgIso(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z" + d: "M21 3H3v18h18V3zM5.5 7.5h2v-2H9v2h2V9H9v2H7.5V9h-2V7.5zM19 19H5L19 5v14zm-2-2v-1.5h-5V17h5z", + fill: "currentColor" })); } diff --git a/icons/es5/Issue.js b/icons/es5/Issue.js index 0f68783ec0..cbc28f73a8 100644 --- a/icons/es5/Issue.js +++ b/icons/es5/Issue.js @@ -13,10 +13,10 @@ function SvgIssue(props) { fillRule: "evenodd", clipRule: "evenodd", d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10z", - fill: "#F0CC00" + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { d: "M11.32 7.759c-.98.98-1.24 2.4-.81 3.62l-3.41 3.41c-.2.2-.2.51 0 .71l1.4 1.4c.2.2.51.2.71 0l3.41-3.41c1.22.43 2.64.17 3.62-.81 1.11-1.11 1.3-2.78.59-4.1l-2.35 2.35-1.41-1.41 2.35-2.35a3.468 3.468 0 00-4.1.59z", - fill: "#111" + fill: "currentColor" })); } diff --git a/icons/es5/Javascript.js b/icons/es5/Javascript.js index 7cb3d589dc..6ab2045388 100644 --- a/icons/es5/Javascript.js +++ b/icons/es5/Javascript.js @@ -7,9 +7,11 @@ function SvgJavascript(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 15v-2h1.5v.5h2v-1H12V9h5v2h-1.5v-.5h-2v1H17V15h-5zM9 9v4.5H7.5v-1H6V15h4.5V9H9z" + d: "M12 15v-2h1.5v.5h2v-1H12V9h5v2h-1.5v-.5h-2v1H17V15h-5zM9 9v4.5H7.5v-1H6V15h4.5V9H9z", + fill: "currentColor" })); } diff --git a/icons/es5/JoinFull.js b/icons/es5/JoinFull.js index c06dcbab12..0d510ce334 100644 --- a/icons/es5/JoinFull.js +++ b/icons/es5/JoinFull.js @@ -7,14 +7,16 @@ function SvgJoinFull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("ellipse", { cx: 12, cy: 12, rx: 3, ry: 5.74 }), /*#__PURE__*/React.createElement("path", { - d: "M7.5 12c0-.97.23-4.16 3.03-6.5C9.75 5.19 8.9 5 8 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c.9 0 1.75-.19 2.53-.5-2.8-2.34-3.03-5.53-3.03-6.5zM16 5c-.9 0-1.75.19-2.53.5 2.8 2.34 3.03 5.53 3.03 6.5 0 .97-.23 4.16-3.03 6.5.78.31 1.63.5 2.53.5 3.86 0 7-3.14 7-7s-3.14-7-7-7z" + d: "M7.5 12c0-.97.23-4.16 3.03-6.5C9.75 5.19 8.9 5 8 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c.9 0 1.75-.19 2.53-.5-2.8-2.34-3.03-5.53-3.03-6.5zM16 5c-.9 0-1.75.19-2.53.5 2.8 2.34 3.03 5.53 3.03 6.5 0 .97-.23 4.16-3.03 6.5.78.31 1.63.5 2.53.5 3.86 0 7-3.14 7-7s-3.14-7-7-7z", + fill: "currentColor" })); } diff --git a/icons/es5/JoinInner.js b/icons/es5/JoinInner.js index 5d883e3c23..49144d93c7 100644 --- a/icons/es5/JoinInner.js +++ b/icons/es5/JoinInner.js @@ -7,14 +7,16 @@ function SvgJoinInner(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("ellipse", { cx: 12, cy: 12, rx: 3, ry: 5.74 }), /*#__PURE__*/React.createElement("path", { - d: "M9.04 16.87c-.33.08-.68.13-1.04.13-2.76 0-5-2.24-5-5s2.24-5 5-5c.36 0 .71.05 1.04.13.39-.56.88-1.12 1.49-1.63C9.75 5.19 8.9 5 8 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c.9 0 1.75-.19 2.53-.5-.61-.51-1.1-1.07-1.49-1.63zM16 5c-.9 0-1.75.19-2.53.5.61.51 1.1 1.07 1.49 1.63.33-.08.68-.13 1.04-.13 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.36 0-.71-.05-1.04-.13-.39.56-.88 1.12-1.49 1.63.78.31 1.63.5 2.53.5 3.86 0 7-3.14 7-7s-3.14-7-7-7z" + d: "M9.04 16.87c-.33.08-.68.13-1.04.13-2.76 0-5-2.24-5-5s2.24-5 5-5c.36 0 .71.05 1.04.13.39-.56.88-1.12 1.49-1.63C9.75 5.19 8.9 5 8 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c.9 0 1.75-.19 2.53-.5-.61-.51-1.1-1.07-1.49-1.63zM16 5c-.9 0-1.75.19-2.53.5.61.51 1.1 1.07 1.49 1.63.33-.08.68-.13 1.04-.13 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.36 0-.71-.05-1.04-.13-.39.56-.88 1.12-1.49 1.63.78.31 1.63.5 2.53.5 3.86 0 7-3.14 7-7s-3.14-7-7-7z", + fill: "currentColor" })); } diff --git a/icons/es5/JoinLeft.js b/icons/es5/JoinLeft.js index 8364cdf125..2d81883685 100644 --- a/icons/es5/JoinLeft.js +++ b/icons/es5/JoinLeft.js @@ -7,14 +7,16 @@ function SvgJoinLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("ellipse", { cx: 12, cy: 12, rx: 3, ry: 5.74 }), /*#__PURE__*/React.createElement("path", { - d: "M7.5 12c0-.97.23-4.16 3.03-6.5C9.75 5.19 8.9 5 8 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c.9 0 1.75-.19 2.53-.5-2.8-2.34-3.03-5.53-3.03-6.5zM16 5c-.9 0-1.75.19-2.53.5.61.51 1.1 1.07 1.49 1.63.33-.08.68-.13 1.04-.13 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.36 0-.71-.05-1.04-.13-.39.56-.88 1.12-1.49 1.63.78.31 1.63.5 2.53.5 3.86 0 7-3.14 7-7s-3.14-7-7-7z" + d: "M7.5 12c0-.97.23-4.16 3.03-6.5C9.75 5.19 8.9 5 8 5c-3.86 0-7 3.14-7 7s3.14 7 7 7c.9 0 1.75-.19 2.53-.5-2.8-2.34-3.03-5.53-3.03-6.5zM16 5c-.9 0-1.75.19-2.53.5.61.51 1.1 1.07 1.49 1.63.33-.08.68-.13 1.04-.13 2.76 0 5 2.24 5 5s-2.24 5-5 5c-.36 0-.71-.05-1.04-.13-.39.56-.88 1.12-1.49 1.63.78.31 1.63.5 2.53.5 3.86 0 7-3.14 7-7s-3.14-7-7-7z", + fill: "currentColor" })); } diff --git a/icons/es5/JoinRight.js b/icons/es5/JoinRight.js index 18c282d7b5..a42aaa6171 100644 --- a/icons/es5/JoinRight.js +++ b/icons/es5/JoinRight.js @@ -7,14 +7,16 @@ function SvgJoinRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("ellipse", { cx: 12, cy: 12, rx: 3, ry: 5.74 }), /*#__PURE__*/React.createElement("path", { - d: "M16.5 12c0 .97-.23 4.16-3.03 6.5.78.31 1.63.5 2.53.5 3.86 0 7-3.14 7-7s-3.14-7-7-7c-.9 0-1.75.19-2.53.5 2.8 2.34 3.03 5.53 3.03 6.5zM8 19c.9 0 1.75-.19 2.53-.5-.61-.51-1.1-1.07-1.49-1.63-.33.08-.68.13-1.04.13-2.76 0-5-2.24-5-5s2.24-5 5-5c.36 0 .71.05 1.04.13.39-.56.88-1.12 1.49-1.63C9.75 5.19 8.9 5 8 5c-3.86 0-7 3.14-7 7s3.14 7 7 7z" + d: "M16.5 12c0 .97-.23 4.16-3.03 6.5.78.31 1.63.5 2.53.5 3.86 0 7-3.14 7-7s-3.14-7-7-7c-.9 0-1.75.19-2.53.5 2.8 2.34 3.03 5.53 3.03 6.5zM8 19c.9 0 1.75-.19 2.53-.5-.61-.51-1.1-1.07-1.49-1.63-.33.08-.68.13-1.04.13-2.76 0-5-2.24-5-5s2.24-5 5-5c.36 0 .71.05 1.04.13.39-.56.88-1.12 1.49-1.63C9.75 5.19 8.9 5 8 5c-3.86 0-7 3.14-7 7s3.14 7 7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Kayaking.js b/icons/es5/Kayaking.js index 7731f63408..1100bacd89 100644 --- a/icons/es5/Kayaking.js +++ b/icons/es5/Kayaking.js @@ -7,9 +7,11 @@ function SvgKayaking(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54l-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z" + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM12 5.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm12 12s-1.52.71-3.93 1.37c-.82-.23-1.53-.75-2.07-1.37-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.73.84-1.8 1.5-3 1.5s-2.27-.66-3-1.5c-.54.61-1.25 1.13-2.07 1.37C1.52 18.21 0 17.5 0 17.5s2.93-1.36 7.13-2.08l1.35-4.17c.31-.95 1.32-1.47 2.27-1.16.09.03.19.07.27.11l2.47 1.3 2.84-1.5 1.65-3.71-.51-1.32L18.8 2 22 3.43 20.67 6.4l-1.31.5-3.72 8.34c4.85.63 8.36 2.26 8.36 2.26zm-8.98-4.54l-1.52.8-1.75-.92-.71 2.17c.32 0 .64-.01.96-.01.71 0 1.4.03 2.07.08l.95-2.12z", + fill: "currentColor" })); } diff --git a/icons/es5/KebabDining.js b/icons/es5/KebabDining.js index 438871f2cd..22e7047e18 100644 --- a/icons/es5/KebabDining.js +++ b/icons/es5/KebabDining.js @@ -7,9 +7,11 @@ function SvgKebabDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.75 8H11v5H7.75v1h.75a2.5 2.5 0 010 5h-.75v4h-1.5v-4H5.5a2.5 2.5 0 010-5h.75v-1H3V8h3.25V7H5.5a2.5 2.5 0 010-5h.75V1h1.5v1h.75a2.5 2.5 0 010 5h-.75v1zm10-1h.75a2.5 2.5 0 000-5h-.75V1h-1.5v1h-.75a2.5 2.5 0 000 5h.75v1H13v5h3.25v1h-.75a2.5 2.5 0 000 5h.75v4h1.5v-4h.75a2.5 2.5 0 000-5h-.75v-1H21V8h-3.25V7z" + d: "M7.75 8H11v5H7.75v1h.75a2.5 2.5 0 010 5h-.75v4h-1.5v-4H5.5a2.5 2.5 0 010-5h.75v-1H3V8h3.25V7H5.5a2.5 2.5 0 010-5h.75V1h1.5v1h.75a2.5 2.5 0 010 5h-.75v1zm10-1h.75a2.5 2.5 0 000-5h-.75V1h-1.5v1h-.75a2.5 2.5 0 000 5h.75v1H13v5h3.25v1h-.75a2.5 2.5 0 000 5h.75v4h1.5v-4h.75a2.5 2.5 0 000-5h-.75v-1H21V8h-3.25V7z", + fill: "currentColor" })); } diff --git a/icons/es5/Key.js b/icons/es5/Key.js index 28a46c0df1..f949efd8dc 100644 --- a/icons/es5/Key.js +++ b/icons/es5/Key.js @@ -7,9 +7,11 @@ function SvgKey(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 10h-8.35A5.99 5.99 0 007 6c-3.31 0-6 2.69-6 6s2.69 6 6 6a5.99 5.99 0 005.65-4H13l2 2 2-2 2 2 4-4.04L21 10zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z" + d: "M21 10h-8.35A5.99 5.99 0 007 6c-3.31 0-6 2.69-6 6s2.69 6 6 6a5.99 5.99 0 005.65-4H13l2 2 2-2 2 2 4-4.04L21 10zM7 15c-1.65 0-3-1.35-3-3s1.35-3 3-3 3 1.35 3 3-1.35 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyOff.js b/icons/es5/KeyOff.js index 690a128705..23e7a85856 100644 --- a/icons/es5/KeyOff.js +++ b/icons/es5/KeyOff.js @@ -7,9 +7,11 @@ function SvgKeyOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.91 14.09L17 14l2 2 4-4.04L21 10h-8.17l4.08 4.09zM3.98 6.81A6.012 6.012 0 001 12c0 3.31 2.69 6 6 6 2.21 0 4.15-1.2 5.18-2.99l7.59 7.59 1.41-1.41L2.81 2.81 1.39 4.22l2.59 2.59zm5.93 5.93A3.015 3.015 0 017 15c-1.65 0-3-1.35-3-3 0-1.4.97-2.58 2.26-2.91l3.65 3.65z" + d: "M16.91 14.09L17 14l2 2 4-4.04L21 10h-8.17l4.08 4.09zM3.98 6.81A6.012 6.012 0 001 12c0 3.31 2.69 6 6 6 2.21 0 4.15-1.2 5.18-2.99l7.59 7.59 1.41-1.41L2.81 2.81 1.39 4.22l2.59 2.59zm5.93 5.93A3.015 3.015 0 017 15c-1.65 0-3-1.35-3-3 0-1.4.97-2.58 2.26-2.91l3.65 3.65z", + fill: "currentColor" })); } diff --git a/icons/es5/Keyboard.js b/icons/es5/Keyboard.js index 195f3d33e1..97d2888c31 100644 --- a/icons/es5/Keyboard.js +++ b/icons/es5/Keyboard.js @@ -7,9 +7,11 @@ function SvgKeyboard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 5H2.01L2 19h20V5zM11 8h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z" + d: "M22 5H2.01L2 19h20V5zM11 8h2v2h-2V8zm0 3h2v2h-2v-2zM8 8h2v2H8V8zm0 3h2v2H8v-2zm-1 2H5v-2h2v2zm0-3H5V8h2v2zm9 7H8v-2h8v2zm0-4h-2v-2h2v2zm0-3h-2V8h2v2zm3 3h-2v-2h2v2zm0-3h-2V8h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardAlt.js b/icons/es5/KeyboardAlt.js index 293f86ef4c..659ea73a5d 100644 --- a/icons/es5/KeyboardAlt.js +++ b/icons/es5/KeyboardAlt.js @@ -7,9 +7,11 @@ function SvgKeyboardAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 4H1v17h22V4zM7 12v2H5v-2h2zm-2-2V8h2v2H5zm6 2v2H9v-2h2zm-2-2V8h2v2H9zm7 6v1H8v-1h8zm-1-4v2h-2v-2h2zm-2-2V8h2v2h-2zm4 4v-2h2v2h-2zm2-4h-2V8h2v2z" + d: "M23 4H1v17h22V4zM7 12v2H5v-2h2zm-2-2V8h2v2H5zm6 2v2H9v-2h2zm-2-2V8h2v2H9zm7 6v1H8v-1h8zm-1-4v2h-2v-2h2zm-2-2V8h2v2h-2zm4 4v-2h2v2h-2zm2-4h-2V8h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardArrowDown.js b/icons/es5/KeyboardArrowDown.js index 400cb21b00..a8a71f41f1 100644 --- a/icons/es5/KeyboardArrowDown.js +++ b/icons/es5/KeyboardArrowDown.js @@ -7,9 +7,11 @@ function SvgKeyboardArrowDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z" + d: "M7.41 8.59L12 13.17l4.59-4.58L18 10l-6 6-6-6 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardArrowLeft.js b/icons/es5/KeyboardArrowLeft.js index 57bd12ec93..4429732e9c 100644 --- a/icons/es5/KeyboardArrowLeft.js +++ b/icons/es5/KeyboardArrowLeft.js @@ -7,9 +7,11 @@ function SvgKeyboardArrowLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z" + d: "M15.41 16.59L10.83 12l4.58-4.59L14 6l-6 6 6 6 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardArrowRight.js b/icons/es5/KeyboardArrowRight.js index e62de5b18a..fedecb8a13 100644 --- a/icons/es5/KeyboardArrowRight.js +++ b/icons/es5/KeyboardArrowRight.js @@ -7,9 +7,11 @@ function SvgKeyboardArrowRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z" + d: "M8.59 16.59L13.17 12 8.59 7.41 10 6l6 6-6 6-1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardArrowUp.js b/icons/es5/KeyboardArrowUp.js index a2787060a1..c6b9407241 100644 --- a/icons/es5/KeyboardArrowUp.js +++ b/icons/es5/KeyboardArrowUp.js @@ -7,9 +7,11 @@ function SvgKeyboardArrowUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z" + d: "M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6 1.41 1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardBackspace.js b/icons/es5/KeyboardBackspace.js index 9b242ee8d5..529cb779d7 100644 --- a/icons/es5/KeyboardBackspace.js +++ b/icons/es5/KeyboardBackspace.js @@ -7,9 +7,11 @@ function SvgKeyboardBackspace(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z" + d: "M21 11H6.83l3.58-3.59L9 6l-6 6 6 6 1.41-1.41L6.83 13H21v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardCapslock.js b/icons/es5/KeyboardCapslock.js index cf1a4af671..e332db6574 100644 --- a/icons/es5/KeyboardCapslock.js +++ b/icons/es5/KeyboardCapslock.js @@ -7,9 +7,11 @@ function SvgKeyboardCapslock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z" + d: "M12 8.41L16.59 13 18 11.59l-6-6-6 6L7.41 13 12 8.41zM6 18h12v-2H6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardCommandKey.js b/icons/es5/KeyboardCommandKey.js index 43cf28d53c..45f7028756 100644 --- a/icons/es5/KeyboardCommandKey.js +++ b/icons/es5/KeyboardCommandKey.js @@ -7,9 +7,11 @@ function SvgKeyboardCommandKey(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.5 3C15.57 3 14 4.57 14 6.5V8h-4V6.5C10 4.57 8.43 3 6.5 3S3 4.57 3 6.5 4.57 10 6.5 10H8v4H6.5C4.57 14 3 15.57 3 17.5S4.57 21 6.5 21s3.5-1.57 3.5-3.5V16h4v1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5H16v-4h1.5c1.93 0 3.5-1.57 3.5-3.5S19.43 3 17.5 3zM16 8V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S18.33 8 17.5 8H16zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5V8H6.5zm3.5 6v-4h4v4h-4zm7.5 5c-.83 0-1.5-.67-1.5-1.5V16h1.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5zm-11 0c-.83 0-1.5-.67-1.5-1.5S5.67 16 6.5 16H8v1.5c0 .83-.67 1.5-1.5 1.5z" + d: "M17.5 3C15.57 3 14 4.57 14 6.5V8h-4V6.5C10 4.57 8.43 3 6.5 3S3 4.57 3 6.5 4.57 10 6.5 10H8v4H6.5C4.57 14 3 15.57 3 17.5S4.57 21 6.5 21s3.5-1.57 3.5-3.5V16h4v1.5c0 1.93 1.57 3.5 3.5 3.5s3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5H16v-4h1.5c1.93 0 3.5-1.57 3.5-3.5S19.43 3 17.5 3zM16 8V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S18.33 8 17.5 8H16zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5V8H6.5zm3.5 6v-4h4v4h-4zm7.5 5c-.83 0-1.5-.67-1.5-1.5V16h1.5c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5zm-11 0c-.83 0-1.5-.67-1.5-1.5S5.67 16 6.5 16H8v1.5c0 .83-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardControlKey.js b/icons/es5/KeyboardControlKey.js index 661972dbe4..0787148558 100644 --- a/icons/es5/KeyboardControlKey.js +++ b/icons/es5/KeyboardControlKey.js @@ -7,9 +7,11 @@ function SvgKeyboardControlKey(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 12l1.41 1.41L12 7.83l5.59 5.58L19 12l-7-7z" + d: "M5 12l1.41 1.41L12 7.83l5.59 5.58L19 12l-7-7z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardDoubleArrowDown.js b/icons/es5/KeyboardDoubleArrowDown.js index 4dcba7a746..a087210792 100644 --- a/icons/es5/KeyboardDoubleArrowDown.js +++ b/icons/es5/KeyboardDoubleArrowDown.js @@ -7,11 +7,14 @@ function SvgKeyboardDoubleArrowDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 6.41L16.59 5 12 9.58 7.41 5 6 6.41l6 6z" + d: "M18 6.41L16.59 5 12 9.58 7.41 5 6 6.41l6 6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 13l-1.41-1.41L12 16.17l-4.59-4.58L6 13l6 6z" + d: "M18 13l-1.41-1.41L12 16.17l-4.59-4.58L6 13l6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardDoubleArrowLeft.js b/icons/es5/KeyboardDoubleArrowLeft.js index 6ffc1a08df..52a4ddc104 100644 --- a/icons/es5/KeyboardDoubleArrowLeft.js +++ b/icons/es5/KeyboardDoubleArrowLeft.js @@ -7,11 +7,14 @@ function SvgKeyboardDoubleArrowLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.59 18L19 16.59 14.42 12 19 7.41 17.59 6l-6 6z" + d: "M17.59 18L19 16.59 14.42 12 19 7.41 17.59 6l-6 6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11 18l1.41-1.41L7.83 12l4.58-4.59L11 6l-6 6z" + d: "M11 18l1.41-1.41L7.83 12l4.58-4.59L11 6l-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardDoubleArrowRight.js b/icons/es5/KeyboardDoubleArrowRight.js index 5f6b2848d5..b5c47c4d0a 100644 --- a/icons/es5/KeyboardDoubleArrowRight.js +++ b/icons/es5/KeyboardDoubleArrowRight.js @@ -7,11 +7,14 @@ function SvgKeyboardDoubleArrowRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.41 6L5 7.41 9.58 12 5 16.59 6.41 18l6-6z" + d: "M6.41 6L5 7.41 9.58 12 5 16.59 6.41 18l6-6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13 6l-1.41 1.41L16.17 12l-4.58 4.59L13 18l6-6z" + d: "M13 6l-1.41 1.41L16.17 12l-4.58 4.59L13 18l6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardDoubleArrowUp.js b/icons/es5/KeyboardDoubleArrowUp.js index 61db4bece4..c56950d172 100644 --- a/icons/es5/KeyboardDoubleArrowUp.js +++ b/icons/es5/KeyboardDoubleArrowUp.js @@ -7,11 +7,14 @@ function SvgKeyboardDoubleArrowUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 17.59L7.41 19 12 14.42 16.59 19 18 17.59l-6-6z" + d: "M6 17.59L7.41 19 12 14.42 16.59 19 18 17.59l-6-6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6 11l1.41 1.41L12 7.83l4.59 4.58L18 11l-6-6z" + d: "M6 11l1.41 1.41L12 7.83l4.59 4.58L18 11l-6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardHide.js b/icons/es5/KeyboardHide.js index 01e7ff83d2..2c06af3a82 100644 --- a/icons/es5/KeyboardHide.js +++ b/icons/es5/KeyboardHide.js @@ -7,9 +7,11 @@ function SvgKeyboardHide(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 3H2.01L2 17h20V3zM11 6h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15l4-4H8l4 4z" + d: "M22 3H2.01L2 17h20V3zM11 6h2v2h-2V6zm0 3h2v2h-2V9zM8 6h2v2H8V6zm0 3h2v2H8V9zm-1 2H5V9h2v2zm0-3H5V6h2v2zm9 7H8v-2h8v2zm0-4h-2V9h2v2zm0-3h-2V6h2v2zm3 3h-2V9h2v2zm0-3h-2V6h2v2zm-7 15l4-4H8l4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardOptionKey.js b/icons/es5/KeyboardOptionKey.js index 0103c0eb5d..a07a2ef6b9 100644 --- a/icons/es5/KeyboardOptionKey.js +++ b/icons/es5/KeyboardOptionKey.js @@ -7,9 +7,11 @@ function SvgKeyboardOptionKey(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 5h6v2h-6zM9 5H3v2h4.85l6.92 12H21v-2h-5.07z" + d: "M15 5h6v2h-6zM9 5H3v2h4.85l6.92 12H21v-2h-5.07z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardReturn.js b/icons/es5/KeyboardReturn.js index 5558c8746c..e610fcf4b4 100644 --- a/icons/es5/KeyboardReturn.js +++ b/icons/es5/KeyboardReturn.js @@ -7,9 +7,11 @@ function SvgKeyboardReturn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z" + d: "M19 7v4H5.83l3.58-3.59L8 6l-6 6 6 6 1.41-1.41L5.83 13H21V7h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardTab.js b/icons/es5/KeyboardTab.js index 7006ac4a34..4467199a17 100644 --- a/icons/es5/KeyboardTab.js +++ b/icons/es5/KeyboardTab.js @@ -7,9 +7,11 @@ function SvgKeyboardTab(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z" + d: "M11.59 7.41L15.17 11H1v2h14.17l-3.59 3.59L13 18l6-6-6-6-1.41 1.41zM20 6v12h2V6h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/KeyboardVoice.js b/icons/es5/KeyboardVoice.js index 887cbb99c2..e7764b1248 100644 --- a/icons/es5/KeyboardVoice.js +++ b/icons/es5/KeyboardVoice.js @@ -7,9 +7,11 @@ function SvgKeyboardVoice(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z" + d: "M12 15c1.66 0 2.99-1.34 2.99-3L15 6c0-1.66-1.34-3-3-3S9 4.34 9 6v6c0 1.66 1.34 3 3 3zm5.3-3c0 3-2.54 5.1-5.3 5.1S6.7 15 6.7 12H5c0 3.42 2.72 6.23 6 6.72V22h2v-3.28c3.28-.48 6-3.3 6-6.72h-1.7z", + fill: "currentColor" })); } diff --git a/icons/es5/KingBed.js b/icons/es5/KingBed.js index 9bc42b6ba2..7ca9abccd4 100644 --- a/icons/es5/KingBed.js +++ b/icons/es5/KingBed.js @@ -7,9 +7,11 @@ function SvgKingBed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 10V5H4v5H2v7h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-7h-2zm-9 0H6V7h5v3zm7 0h-5V7h5v3z" + d: "M20 10V5H4v5H2v7h1.33L4 19h1l.67-2h12.67l.66 2h1l.67-2H22v-7h-2zm-9 0H6V7h5v3zm7 0h-5V7h5v3z", + fill: "currentColor" })); } diff --git a/icons/es5/Kitchen.js b/icons/es5/Kitchen.js index 5c4134c5b4..0ef08703b0 100644 --- a/icons/es5/Kitchen.js +++ b/icons/es5/Kitchen.js @@ -7,9 +7,11 @@ function SvgKitchen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2.01L4 2v20h16V2.01zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8V5zm0 7h2v5H8v-5z" + d: "M20 2.01L4 2v20h16V2.01zM18 20H6v-9.02h12V20zm0-11H6V4h12v5zM8 5h2v3H8V5zm0 7h2v5H8v-5z", + fill: "currentColor" })); } diff --git a/icons/es5/Kitesurfing.js b/icons/es5/Kitesurfing.js index b2aadbbc3d..3f686f68a9 100644 --- a/icons/es5/Kitesurfing.js +++ b/icons/es5/Kitesurfing.js @@ -7,9 +7,11 @@ function SvgKitesurfing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17L6 13V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41A7.018 7.018 0 0111 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99l-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z" + d: "M6 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm14.06-2h-2.12L15.5 3.44l1.06 1.06 3.5-3.5zM22 23v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1zm-1-9.72c0 1.44-2.19 3.62-5.04 5.58-.31.09-.63.14-.96.14-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.94 0-1.81-.41-2.49-.99.46-.39.96-.78 1.49-1.17L6 13V8c0-1.1.9-2 2-2h3c1.38 0 2.63-.56 3.54-1.46l1.41 1.41A7.018 7.018 0 0111 8H9.6v3.5h2.8l1.69 1.88c1.95-.84 3.77-1.38 5.06-1.38.84 0 1.85.25 1.85 1.28zm-8.8.99l-.7-.77-2.5.1.83 2.01c.59-.38 1.81-1.06 2.37-1.34z", + fill: "currentColor" })); } diff --git a/icons/es5/Label.js b/icons/es5/Label.js index 73b1565bea..f61bae3254 100644 --- a/icons/es5/Label.js +++ b/icons/es5/Label.js @@ -7,9 +7,11 @@ function SvgLabel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.03 5L3 5.01v13.98l14.03.01L22 12l-4.97-7z" + d: "M17.03 5L3 5.01v13.98l14.03.01L22 12l-4.97-7z", + fill: "currentColor" })); } diff --git a/icons/es5/LabelImportant.js b/icons/es5/LabelImportant.js index f220e2a1f6..97c5428522 100644 --- a/icons/es5/LabelImportant.js +++ b/icons/es5/LabelImportant.js @@ -7,9 +7,11 @@ function SvgLabelImportant(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 18.99h12.04L21 12l-4.97-7H4l5 7-5 6.99z" + d: "M4 18.99h12.04L21 12l-4.97-7H4l5 7-5 6.99z", + fill: "currentColor" })); } diff --git a/icons/es5/LabelOff.js b/icons/es5/LabelOff.js index 7983d93517..b8d7791b46 100644 --- a/icons/es5/LabelOff.js +++ b/icons/es5/LabelOff.js @@ -7,9 +7,11 @@ function SvgLabelOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12l-4.97-7H8.66l10.7 10.73zM2 4l1 1v14h14l2 2 1.41-1.41L3.44 2.62z" + d: "M22 12l-4.97-7H8.66l10.7 10.73zM2 4l1 1v14h14l2 2 1.41-1.41L3.44 2.62z", + fill: "currentColor" })); } diff --git a/icons/es5/Lan.js b/icons/es5/Lan.js index 79a1e8322a..9118f6dbc9 100644 --- a/icons/es5/Lan.js +++ b/icons/es5/Lan.js @@ -7,9 +7,11 @@ function SvgLan(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3z" + d: "M13 22h8v-7h-3v-4h-5V9h3V2H8v7h3v2H6v4H3v7h8v-7H8v-2h8v2h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Landscape.js b/icons/es5/Landscape.js index e0d00d268d..2cfea725f6 100644 --- a/icons/es5/Landscape.js +++ b/icons/es5/Landscape.js @@ -7,9 +7,11 @@ function SvgLandscape(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" + d: "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Landslide.js b/icons/es5/Landslide.js index 3487eec0e3..b003ca2aa5 100644 --- a/icons/es5/Landslide.js +++ b/icons/es5/Landslide.js @@ -7,9 +7,11 @@ function SvgLandslide(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.47 13.79l-2.58-1.03L6 15.05l-4-1.54v2.1l4 1.34zm-4.9-2.37L8 8H2v3.61l4 1.34zM6 19.05l-4-1.33V22h20l-4.97-6.62zM17 6V1l-5-1-3 2v4l3 2zm1.5 1L16 9v3l2.5 2 4.5-2V8z" + d: "M15.47 13.79l-2.58-1.03L6 15.05l-4-1.54v2.1l4 1.34zm-4.9-2.37L8 8H2v3.61l4 1.34zM6 19.05l-4-1.33V22h20l-4.97-6.62zM17 6V1l-5-1-3 2v4l3 2zm1.5 1L16 9v3l2.5 2 4.5-2V8z", + fill: "currentColor" })); } diff --git a/icons/es5/LaptopChromebook.js b/icons/es5/LaptopChromebook.js index 40de7a2227..bdbe220163 100644 --- a/icons/es5/LaptopChromebook.js +++ b/icons/es5/LaptopChromebook.js @@ -7,9 +7,11 @@ function SvgLaptopChromebook(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z" + d: "M22 18V3H2v15H0v2h24v-2h-2zm-8 0h-4v-1h4v1zm6-3H4V5h16v10z", + fill: "currentColor" })); } diff --git a/icons/es5/LaptopMac.js b/icons/es5/LaptopMac.js index 9ca84dc998..c607db1fec 100644 --- a/icons/es5/LaptopMac.js +++ b/icons/es5/LaptopMac.js @@ -7,9 +7,11 @@ function SvgLaptopMac(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 18l1.99-2L22 3H2v13l2 2H0v2h24v-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M20 18l1.99-2L22 3H2v13l2 2H0v2h24v-2h-4zM4 5h16v11H4V5zm8 14c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/LaptopWindows.js b/icons/es5/LaptopWindows.js index be6eab0414..80be6a4319 100644 --- a/icons/es5/LaptopWindows.js +++ b/icons/es5/LaptopWindows.js @@ -7,9 +7,11 @@ function SvgLaptopWindows(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 18v-1h1.99L22 3H2v14h2v1H0v2h24v-2h-4zM4 5h16v10H4V5z" + d: "M20 18v-1h1.99L22 3H2v14h2v1H0v2h24v-2h-4zM4 5h16v10H4V5z", + fill: "currentColor" })); } diff --git a/icons/es5/LastPage.js b/icons/es5/LastPage.js index ccaef4cdbc..a256cd80f0 100644 --- a/icons/es5/LastPage.js +++ b/icons/es5/LastPage.js @@ -7,9 +7,11 @@ function SvgLastPage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z" + d: "M5.59 7.41L10.18 12l-4.59 4.59L7 18l6-6-6-6-1.41 1.41zM16 6h2v12h-2V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Layers.js b/icons/es5/Layers.js index 774c0ad1c8..5830ecfc7b 100644 --- a/icons/es5/Layers.js +++ b/icons/es5/Layers.js @@ -7,9 +7,11 @@ function SvgLayers(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z" + d: "M11.99 18.54l-7.37-5.73L3 14.07l9 7 9-7-1.63-1.27-7.38 5.74zM12 16l7.36-5.73L21 9l-9-7-9 7 1.63 1.27L12 16z", + fill: "currentColor" })); } diff --git a/icons/es5/LayersClear.js b/icons/es5/LayersClear.js index e6bc4ef2d4..1cb619c685 100644 --- a/icons/es5/LayersClear.js +++ b/icons/es5/LayersClear.js @@ -7,9 +7,11 @@ function SvgLayersClear(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 9l-9-7-2.59 2.02 7.87 7.87zm0 5.07l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41z" + d: "M21 9l-9-7-2.59 2.02 7.87 7.87zm0 5.07l-1.63-1.27-.67.52 1.43 1.43zM3.41.86L2 2.27l4.22 4.22L3 9l9 7 2.1-1.63 1.42 1.42-3.53 2.75-7.37-5.73L3 14.07l9 7 4.95-3.85L20.73 21l1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/Leaderboard.js b/icons/es5/Leaderboard.js index 8b8ea06d48..156844668f 100644 --- a/icons/es5/Leaderboard.js +++ b/icons/es5/Leaderboard.js @@ -7,9 +7,11 @@ function SvgLeaderboard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.5 21H2V9h5.5v12zm7.25-18h-5.5v18h5.5V3zM22 11h-5.5v10H22V11z" + d: "M7.5 21H2V9h5.5v12zm7.25-18h-5.5v18h5.5V3zM22 11h-5.5v10H22V11z", + fill: "currentColor" })); } diff --git a/icons/es5/LeakAdd.js b/icons/es5/LeakAdd.js index 0e74e64aaf..f3680f7a6f 100644 --- a/icons/es5/LeakAdd.js +++ b/icons/es5/LeakAdd.js @@ -7,9 +7,11 @@ function SvgLeakAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2a9 9 0 01-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2a9 9 0 019-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z" + d: "M6 3H3v3c1.66 0 3-1.34 3-3zm8 0h-2a9 9 0 01-9 9v2c6.08 0 11-4.93 11-11zm-4 0H8c0 2.76-2.24 5-5 5v2c3.87 0 7-3.13 7-7zm0 18h2a9 9 0 019-9v-2c-6.07 0-11 4.93-11 11zm8 0h3v-3c-1.66 0-3 1.34-3 3zm-4 0h2c0-2.76 2.24-5 5-5v-2c-3.87 0-7 3.13-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/LeakRemove.js b/icons/es5/LeakRemove.js index c6e35c957d..3603fa5453 100644 --- a/icons/es5/LeakRemove.js +++ b/icons/es5/LeakRemove.js @@ -7,9 +7,11 @@ function SvgLeakRemove(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97A8.99 8.99 0 013 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43A6.972 6.972 0 0014 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z" + d: "M14 3h-2c0 1.35-.31 2.63-.84 3.77l1.49 1.49C13.51 6.7 14 4.91 14 3zm7 9v-2c-1.91 0-3.7.49-5.27 1.35l1.49 1.49c1.15-.53 2.43-.84 3.78-.84zm0 4v-2c-.79 0-1.54.13-2.24.37l1.68 1.68c.19-.01.37-.05.56-.05zM10 3H8c0 .19-.04.37-.06.56l1.68 1.68c.25-.7.38-1.46.38-2.24zm-5.59-.14L3 4.27l2.84 2.84C5.03 7.67 4.06 8 3 8v2c1.61 0 3.09-.55 4.27-1.46L8.7 9.97A8.99 8.99 0 013 12v2c2.72 0 5.2-.99 7.11-2.62l2.51 2.51C10.99 15.81 10 18.29 10 21h2c0-2.16.76-4.14 2.03-5.7l1.43 1.43A6.972 6.972 0 0014 21h2c0-1.06.33-2.03.89-2.84L19.73 21l1.41-1.41L4.41 2.86z", + fill: "currentColor" })); } diff --git a/icons/es5/LeaveBagsAtHome.js b/icons/es5/LeaveBagsAtHome.js index b0ecc94992..0baa2eb68a 100644 --- a/icons/es5/LeaveBagsAtHome.js +++ b/icons/es5/LeaveBagsAtHome.js @@ -7,9 +7,11 @@ function SvgLeaveBagsAtHome(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.83 9h.92v.92l1.75 1.75V9H16v4.17l3 3V6h-4V2H9v4h-.17l3 3zM11 4h2v2h-2V4zm10.19 17.19L2.81 2.81 1.39 4.22 5 7.83V21h2c0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1h1.17l1.61 1.61 1.41-1.42zM8 18v-7.17l1.5 1.5V18H8zm3.25 0v-3.92l1.5 1.5V18h-1.5zm3.25 0v-.67l.67.67h-.67z" + d: "M11.83 9h.92v.92l1.75 1.75V9H16v4.17l3 3V6h-4V2H9v4h-.17l3 3zM11 4h2v2h-2V4zm10.19 17.19L2.81 2.81 1.39 4.22 5 7.83V21h2c0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1h1.17l1.61 1.61 1.41-1.42zM8 18v-7.17l1.5 1.5V18H8zm3.25 0v-3.92l1.5 1.5V18h-1.5zm3.25 0v-.67l.67.67h-.67z", + fill: "currentColor" })); } diff --git a/icons/es5/LegendToggle.js b/icons/es5/LegendToggle.js index d8b829fbdc..8851bdb50d 100644 --- a/icons/es5/LegendToggle.js +++ b/icons/es5/LegendToggle.js @@ -7,9 +7,11 @@ function SvgLegendToggle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6l5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z" + d: "M20 15H4v-2h16v2zm0 2H4v2h16v-2zm-5-6l5-3.55V5l-5 3.55L10 5 4 8.66V11l5.92-3.61L15 11z", + fill: "currentColor" })); } diff --git a/icons/es5/Lens.js b/icons/es5/Lens.js index 517fd605e8..d092206aec 100644 --- a/icons/es5/Lens.js +++ b/icons/es5/Lens.js @@ -7,9 +7,11 @@ function SvgLens(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z", + fill: "currentColor" })); } diff --git a/icons/es5/LensBlur.js b/icons/es5/LensBlur.js index d9ea97bb44..a7ca47b964 100644 --- a/icons/es5/LensBlur.js +++ b/icons/es5/LensBlur.js @@ -7,9 +7,11 @@ function SvgLensBlur(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" + d: "M6 13c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm-3 .5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM6 5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm15 5.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM14 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0-3.5c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zm-11 10c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm7 7c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm0-17c.28 0 .5-.22.5-.5s-.22-.5-.5-.5-.5.22-.5.5.22.5.5.5zM10 7c.55 0 1-.45 1-1s-.45-1-1-1-1 .45-1 1 .45 1 1 1zm0 5.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm8 .5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-8c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0-4c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm3 8.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zM14 17c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm0 3.5c-.28 0-.5.22-.5.5s.22.5.5.5.5-.22.5-.5-.22-.5-.5-.5zm-4-12c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0 8.5c-.55 0-1 .45-1 1s.45 1 1 1 1-.45 1-1-.45-1-1-1zm4-4.5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm0-4c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/LessThan.js b/icons/es5/LessThan.js index ce69a5bd14..d9559077ea 100644 --- a/icons/es5/LessThan.js +++ b/icons/es5/LessThan.js @@ -7,10 +7,12 @@ function SvgLessThan(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M17.5 17.5L9.25 12l8.25-5.5-1-1.5L6 12l10.5 7z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/LessThanEqual.js b/icons/es5/LessThanEqual.js index baeebea633..86b3761067 100644 --- a/icons/es5/LessThanEqual.js +++ b/icons/es5/LessThanEqual.js @@ -7,12 +7,15 @@ function SvgLessThanEqual(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M17.5 15.5L9.25 10l8.25-5.5-1-1.5L6 10l10.5 7z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 20.998H6v-2h12z" + d: "M18 20.998H6v-2h12z", + fill: "currentColor" })); } diff --git a/icons/es5/LibraryAdd.js b/icons/es5/LibraryAdd.js index 85e763a6a9..3706069dff 100644 --- a/icons/es5/LibraryAdd.js +++ b/icons/es5/LibraryAdd.js @@ -7,9 +7,11 @@ function SvgLibraryAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/LibraryAddCheck.js b/icons/es5/LibraryAddCheck.js index 8fb42564be..6ea1b82555 100644 --- a/icons/es5/LibraryAddCheck.js +++ b/icons/es5/LibraryAddCheck.js @@ -7,9 +7,11 @@ function SvgLibraryAddCheck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H6v16h16V2zm-9.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v16h16v-2H4V6z" + d: "M22 2H6v16h16V2zm-9.53 12L9 10.5l1.4-1.41 2.07 2.08L17.6 6 19 7.41 12.47 14zM4 6H2v16h16v-2H4V6z", + fill: "currentColor" })); } diff --git a/icons/es5/LibraryBooks.js b/icons/es5/LibraryBooks.js index 48b5108412..97f72710d6 100644 --- a/icons/es5/LibraryBooks.js +++ b/icons/es5/LibraryBooks.js @@ -7,9 +7,11 @@ function SvgLibraryBooks(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z" + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9H9V9h10v2zm-4 4H9v-2h6v2zm4-8H9V5h10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/LibraryMusic.js b/icons/es5/LibraryMusic.js index c6e58cef56..4bbdb6b1d8 100644 --- a/icons/es5/LibraryMusic.js +++ b/icons/es5/LibraryMusic.js @@ -7,9 +7,11 @@ function SvgLibraryMusic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H6v16h16V2zm-4 5h-3v5.5a2.5 2.5 0 01-5 0 2.5 2.5 0 012.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v16h16v-2H4V6z" + d: "M22 2H6v16h16V2zm-4 5h-3v5.5a2.5 2.5 0 01-5 0 2.5 2.5 0 012.5-2.5c.57 0 1.08.19 1.5.51V5h4v2zM4 6H2v16h16v-2H4V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Light.js b/icons/es5/Light.js index 141177e76d..4b13aa4e0c 100644 --- a/icons/es5/Light.js +++ b/icons/es5/Light.js @@ -7,9 +7,11 @@ function SvgLight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 6.06V3h-2v3.06A9.006 9.006 0 003.22 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h4.78A9.006 9.006 0 0013 6.06zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z" + d: "M13 6.06V3h-2v3.06A9.006 9.006 0 003.22 17H8c0 2.21 1.79 4 4 4s4-1.79 4-4h4.78A9.006 9.006 0 0013 6.06zM12 15H5c0-3.86 3.14-7 7-7s7 3.14 7 7h-7z", + fill: "currentColor" })); } diff --git a/icons/es5/LightMode.js b/icons/es5/LightMode.js index 07ea82090d..c58bc2e574 100644 --- a/icons/es5/LightMode.js +++ b/icons/es5/LightMode.js @@ -7,9 +7,11 @@ function SvgLightMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1-6v4h2V1h-2zm0 18v4h2v-4h-2zm12-8h-4v2h4v-2zM5 11H1v2h4v-2zm11.24 6.66l2.47 2.47 1.41-1.41-2.47-2.47-1.41 1.41zM3.87 5.28l2.47 2.47 1.41-1.41-2.47-2.47-1.41 1.41zm2.47 10.96l-2.47 2.47 1.41 1.41 2.47-2.47-1.41-1.41zM18.72 3.87l-2.47 2.47 1.41 1.41 2.47-2.47-1.41-1.41z" + d: "M12 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1-6v4h2V1h-2zm0 18v4h2v-4h-2zm12-8h-4v2h4v-2zM5 11H1v2h4v-2zm11.24 6.66l2.47 2.47 1.41-1.41-2.47-2.47-1.41 1.41zM3.87 5.28l2.47 2.47 1.41-1.41-2.47-2.47-1.41 1.41zm2.47 10.96l-2.47 2.47 1.41 1.41 2.47-2.47-1.41-1.41zM18.72 3.87l-2.47 2.47 1.41 1.41 2.47-2.47-1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/LightbulbCircle.js b/icons/es5/LightbulbCircle.js index dc4e3d317b..158c3641df 100644 --- a/icons/es5/LightbulbCircle.js +++ b/icons/es5/LightbulbCircle.js @@ -7,9 +7,11 @@ function SvgLightbulbCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 17c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm3-2.5H9V15h6v1.5zm-.03-2.5H9.03A4.966 4.966 0 017 10c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.64-.8 3.09-2.03 4z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 17c-.83 0-1.5-.67-1.5-1.5h3c0 .83-.67 1.5-1.5 1.5zm3-2.5H9V15h6v1.5zm-.03-2.5H9.03A4.966 4.966 0 017 10c0-2.76 2.24-5 5-5s5 2.24 5 5c0 1.64-.8 3.09-2.03 4z", + fill: "currentColor" })); } diff --git a/icons/es5/LineAxis.js b/icons/es5/LineAxis.js index 88b9adf770..8cc88fee9a 100644 --- a/icons/es5/LineAxis.js +++ b/icons/es5/LineAxis.js @@ -7,9 +7,11 @@ function SvgLineAxis(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7.43l-1.41-1.41-4.03 4.53L9.5 4 2 11.51l1.5 1.5 6.14-6.15 5.59 5.18-1.73 1.95-4-4L2 17.5 3.5 19l6-6.01 4 4 3.19-3.59 3.9 3.61L22 15.6l-3.98-3.7z" + d: "M22 7.43l-1.41-1.41-4.03 4.53L9.5 4 2 11.51l1.5 1.5 6.14-6.15 5.59 5.18-1.73 1.95-4-4L2 17.5 3.5 19l6-6.01 4 4 3.19-3.59 3.9 3.61L22 15.6l-3.98-3.7z", + fill: "currentColor" })); } diff --git a/icons/es5/LineStyle.js b/icons/es5/LineStyle.js index f9763c41fe..1f3bd93a37 100644 --- a/icons/es5/LineStyle.js +++ b/icons/es5/LineStyle.js @@ -7,9 +7,11 @@ function SvgLineStyle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z" + d: "M3 16h5v-2H3v2zm6.5 0h5v-2h-5v2zm6.5 0h5v-2h-5v2zM3 20h2v-2H3v2zm4 0h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM3 12h8v-2H3v2zm10 0h8v-2h-8v2zM3 4v4h18V4H3z", + fill: "currentColor" })); } diff --git a/icons/es5/LineWeight.js b/icons/es5/LineWeight.js index e6d8aa7d70..0f4e7a3882 100644 --- a/icons/es5/LineWeight.js +++ b/icons/es5/LineWeight.js @@ -7,9 +7,11 @@ function SvgLineWeight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z" + d: "M3 17h18v-2H3v2zm0 3h18v-1H3v1zm0-7h18v-3H3v3zm0-9v4h18V4H3z", + fill: "currentColor" })); } diff --git a/icons/es5/LinearScale.js b/icons/es5/LinearScale.js index 2da693d805..5c0dc33866 100644 --- a/icons/es5/LinearScale.js +++ b/icons/es5/LinearScale.js @@ -7,9 +7,11 @@ function SvgLinearScale(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5a2.5 2.5 0 000 5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5a2.5 2.5 0 000-5z" + d: "M19.5 9.5c-1.03 0-1.9.62-2.29 1.5h-2.92c-.39-.88-1.26-1.5-2.29-1.5s-1.9.62-2.29 1.5H6.79c-.39-.88-1.26-1.5-2.29-1.5a2.5 2.5 0 000 5c1.03 0 1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5s1.9-.62 2.29-1.5h2.92c.39.88 1.26 1.5 2.29 1.5a2.5 2.5 0 000-5z", + fill: "currentColor" })); } diff --git a/icons/es5/Link.js b/icons/es5/Link.js index 8b10ebdd2c..f574d11ab8 100644 --- a/icons/es5/Link.js +++ b/icons/es5/Link.js @@ -7,9 +7,11 @@ function SvgLink(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8zm9-4h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z" + d: "M17 7h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8zm9-4h-4v2h4c1.65 0 3 1.35 3 3s-1.35 3-3 3h-4v2h4c2.76 0 5-2.24 5-5s-2.24-5-5-5zm-6 8H7c-1.65 0-3-1.35-3-3s1.35-3 3-3h4V7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h4v-2zm-3-4h8v2H8z", + fill: "currentColor" })); } diff --git a/icons/es5/LinkOff.js b/icons/es5/LinkOff.js index 941255156c..ac4d0d5b1e 100644 --- a/icons/es5/LinkOff.js +++ b/icons/es5/LinkOff.js @@ -7,9 +7,11 @@ function SvgLinkOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4A4.986 4.986 0 0022 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11A4.991 4.991 0 002 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z" + d: "M14.39 11L16 12.61V11zM17 7h-4v1.9h4c1.71 0 3.1 1.39 3.1 3.1 0 1.27-.77 2.37-1.87 2.84l1.4 1.4A4.986 4.986 0 0022 12c0-2.76-2.24-5-5-5zM2 4.27l3.11 3.11A4.991 4.991 0 002 12c0 2.76 2.24 5 5 5h4v-1.9H7c-1.71 0-3.1-1.39-3.1-3.1 0-1.59 1.21-2.9 2.76-3.07L8.73 11H8v2h2.73L13 15.27V17h1.73l4.01 4.01 1.41-1.41L3.41 2.86 2 4.27z", + fill: "currentColor" })); } diff --git a/icons/es5/LinkedCamera.js b/icons/es5/LinkedCamera.js index 0fd0b15dfe..627b95f50b 100644 --- a/icons/es5/LinkedCamera.js +++ b/icons/es5/LinkedCamera.js @@ -7,13 +7,15 @@ function SvgLinkedCamera(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 14, r: 3 }), /*#__PURE__*/React.createElement("path", { - d: "M18 8h1.33c0-1.84-1.49-3.33-3.33-3.33V6c1.11 0 2 .89 2 2zm2.67 0H22c0-3.31-2.69-6-6-6v1.33c2.58 0 4.67 2.09 4.67 4.67zM15 7V4H9L7.17 6H2v16h20V9h-5c0-1.1-.9-2-2-2zm-3 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + d: "M18 8h1.33c0-1.84-1.49-3.33-3.33-3.33V6c1.11 0 2 .89 2 2zm2.67 0H22c0-3.31-2.69-6-6-6v1.33c2.58 0 4.67 2.09 4.67 4.67zM15 7V4H9L7.17 6H2v16h20V9h-5c0-1.1-.9-2-2-2zm-3 12c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/Liquor.js b/icons/es5/Liquor.js index 0db6ec4551..a33d2c0344 100644 --- a/icons/es5/Liquor.js +++ b/icons/es5/Liquor.js @@ -7,9 +7,11 @@ function SvgLiquor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm17 1l-3-1.01V2h-5v6l-3 1.01V22h11V9zm-6-5h1v1h-1V4zm-3 6.44l3-.98V7h1v2.46l3 .98V12h-7v-1.56zM20 20h-7v-2h7v2z" + d: "M3 14c0 1.3.84 2.4 2 2.82V20H3v2h6v-2H7v-3.18C8.16 16.4 9 15.3 9 14V6H3v8zm2-6h2v3H5V8zm17 1l-3-1.01V2h-5v6l-3 1.01V22h11V9zm-6-5h1v1h-1V4zm-3 6.44l3-.98V7h1v2.46l3 .98V12h-7v-1.56zM20 20h-7v-2h7v2z", + fill: "currentColor" })); } diff --git a/icons/es5/List.js b/icons/es5/List.js index 53fce617a9..2619d1189b 100644 --- a/icons/es5/List.js +++ b/icons/es5/List.js @@ -7,9 +7,11 @@ function SvgList(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z" + d: "M3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7zm-4 6h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm4 4h14v-2H7v2zm0 4h14v-2H7v2zM7 7v2h14V7H7z", + fill: "currentColor" })); } diff --git a/icons/es5/ListAlt.js b/icons/es5/ListAlt.js index 1b2dd1d360..ed60047f3b 100644 --- a/icons/es5/ListAlt.js +++ b/icons/es5/ListAlt.js @@ -7,9 +7,11 @@ function SvgListAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM3 3v18h18V3H3zm16 16H5V5h14v14z" + d: "M11 7h6v2h-6zm0 4h6v2h-6zm0 4h6v2h-6zM7 7h2v2H7zm0 4h2v2H7zm0 4h2v2H7zM3 3v18h18V3H3zm16 16H5V5h14v14z", + fill: "currentColor" })); } diff --git a/icons/es5/LiveHelp.js b/icons/es5/LiveHelp.js index 4d52d12cc0..a04bf0632d 100644 --- a/icons/es5/LiveHelp.js +++ b/icons/es5/LiveHelp.js @@ -7,9 +7,11 @@ function SvgLiveHelp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 2H3v18h6l3 3 3-3h6V2zm-8 16h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z" + d: "M21 2H3v18h6l3 3 3-3h6V2zm-8 16h-2v-2h2v2zm2.07-7.75l-.9.92C13.45 11.9 13 12.5 13 14h-2v-.5c0-1.1.45-2.1 1.17-2.83l1.24-1.26c.37-.36.59-.86.59-1.41 0-1.1-.9-2-2-2s-2 .9-2 2H8c0-2.21 1.79-4 4-4s4 1.79 4 4c0 .88-.36 1.68-.93 2.25z", + fill: "currentColor" })); } diff --git a/icons/es5/LiveTv.js b/icons/es5/LiveTv.js index f8f02601c0..37c2f21ee3 100644 --- a/icons/es5/LiveTv.js +++ b/icons/es5/LiveTv.js @@ -7,9 +7,11 @@ function SvgLiveTv(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 6h-9.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H1v16h22V6zm-2 14H3V8h18v12zM9 10v8l7-4-7-4z" + d: "M23 6h-9.59l3.29-3.29L16 2l-4 4-4-4-.71.71L10.59 6H1v16h22V6zm-2 14H3V8h18v12zM9 10v8l7-4-7-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Living.js b/icons/es5/Living.js index 0e494f0118..a0437e329d 100644 --- a/icons/es5/Living.js +++ b/icons/es5/Living.js @@ -7,13 +7,17 @@ function SvgLiving(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 12v2.5h-7V12h-2v4.5h11V12z" + d: "M15.5 12v2.5h-7V12h-2v4.5h11V12z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M10 10v3h4v-3l2.25-.01V7.5h-8.5v2.49z" + d: "M10 10v3h4v-3l2.25-.01V7.5h-8.5v2.49z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zm-3 7.99V18H5v-8l1.25-.01V6h11.5v3.99H19z" + d: "M22 2H2v20h20V2zm-3 7.99V18H5v-8l1.25-.01V6h11.5v3.99H19z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalActivity.js b/icons/es5/LocalActivity.js index 511a4afc04..fc288f4dc6 100644 --- a/icons/es5/LocalActivity.js +++ b/icons/es5/LocalActivity.js @@ -7,9 +7,11 @@ function SvgLocalActivity(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" + d: "M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalAirport.js b/icons/es5/LocalAirport.js index 6dcbeff9c3..3e10f904ba 100644 --- a/icons/es5/LocalAirport.js +++ b/icons/es5/LocalAirport.js @@ -7,9 +7,11 @@ function SvgLocalAirport(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z" + d: "M22 16v-2l-8.5-5V3.5c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5V9L2 14v2l8.5-2.5V19L8 20.5V22l4-1 4 1v-1.5L13.5 19v-5.5L22 16z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalAtm.js b/icons/es5/LocalAtm.js index 6b4364c3bc..62a2570e57 100644 --- a/icons/es5/LocalAtm.js +++ b/icons/es5/LocalAtm.js @@ -7,9 +7,11 @@ function SvgLocalAtm(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 17h2v-1h2v-5h-4v-1h4V8h-2V7h-2v1H9v5h4v1H9v2h2v1zM22 4H2.01L2 20h20V4zm-2 14H4V6h16v12z" + d: "M11 17h2v-1h2v-5h-4v-1h4V8h-2V7h-2v1H9v5h4v1H9v2h2v1zM22 4H2.01L2 20h20V4zm-2 14H4V6h16v12z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalBar.js b/icons/es5/LocalBar.js index 571f546881..ab258842d2 100644 --- a/icons/es5/LocalBar.js +++ b/icons/es5/LocalBar.js @@ -7,9 +7,11 @@ function SvgLocalBar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7L5.66 5h12.69l-1.78 2H7.43z" + d: "M21 5V3H3v2l8 9v5H6v2h12v-2h-5v-5l8-9zM7.43 7L5.66 5h12.69l-1.78 2H7.43z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalCafe.js b/icons/es5/LocalCafe.js index 88473c1a94..a58a484c58 100644 --- a/icons/es5/LocalCafe.js +++ b/icons/es5/LocalCafe.js @@ -7,9 +7,11 @@ function SvgLocalCafe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM2 21h18v-2H2v2z" + d: "M20 3H4v14h14v-7h2c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 5h-2V5h2v3zM2 21h18v-2H2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalCarWash.js b/icons/es5/LocalCarWash.js index 85a0708e07..13b613d205 100644 --- a/icons/es5/LocalCarWash.js +++ b/icons/es5/LocalCarWash.js @@ -7,9 +7,11 @@ function SvgLocalCarWash(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.58 7H5.43L3 14v9h3v-2h12v2h3v-9l-2.42-7zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5zm12-8c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5z" + d: "M18.58 7H5.43L3 14v9h3v-2h12v2h3v-9l-2.42-7zM6.5 18c-.83 0-1.5-.67-1.5-1.5S5.67 15 6.5 15s1.5.67 1.5 1.5S7.33 18 6.5 18zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 13l1.5-4.5h11L19 13H5zm12-8c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zm-5 0c.83 0 1.5-.67 1.5-1.5 0-1-1.5-2.7-1.5-2.7s-1.5 1.7-1.5 2.7c0 .83.67 1.5 1.5 1.5zM7 5c.83 0 1.5-.67 1.5-1.5C8.5 2.5 7 .8 7 .8S5.5 2.5 5.5 3.5C5.5 4.33 6.17 5 7 5z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalConvenienceStore.js b/icons/es5/LocalConvenienceStore.js index 27ab6b9829..345b6965b1 100644 --- a/icons/es5/LocalConvenienceStore.js +++ b/icons/es5/LocalConvenienceStore.js @@ -7,9 +7,11 @@ function SvgLocalConvenienceStore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z" + d: "M19 7V4H5v3H2v13h8v-4h4v4h8V7h-3zm-8 3H9v1h2v1H8V9h2V8H8V7h3v3zm5 2h-1v-2h-2V7h1v2h1V7h1v5z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalDining.js b/icons/es5/LocalDining.js index 2268e69678..e40750c32f 100644 --- a/icons/es5/LocalDining.js +++ b/icons/es5/LocalDining.js @@ -7,9 +7,11 @@ function SvgLocalDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.1 13.34l2.83-2.83L3.91 3.5a4.008 4.008 0 000 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" + d: "M8.1 13.34l2.83-2.83L3.91 3.5a4.008 4.008 0 000 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalDrink.js b/icons/es5/LocalDrink.js index 2274cb75a2..185f6ba2c1 100644 --- a/icons/es5/LocalDrink.js +++ b/icons/es5/LocalDrink.js @@ -7,9 +7,11 @@ function SvgLocalDrink(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 2l2.21 20H18.8L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z" + d: "M3 2l2.21 20H18.8L21 2H3zm9 17c-1.66 0-3-1.34-3-3 0-2 3-5.4 3-5.4s3 3.4 3 5.4c0 1.66-1.34 3-3 3zm6.33-11H5.67l-.44-4h13.53l-.43 4z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalFireDepartment.js b/icons/es5/LocalFireDepartment.js index bebe88ef47..be877273a8 100644 --- a/icons/es5/LocalFireDepartment.js +++ b/icons/es5/LocalFireDepartment.js @@ -7,11 +7,14 @@ function SvgLocalFireDepartment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 12.9l-2.13 2.09c-.56.56-.87 1.29-.87 2.07C9 18.68 10.35 20 12 20s3-1.32 3-2.94c0-.78-.31-1.52-.87-2.07L12 12.9z" + d: "M12 12.9l-2.13 2.09c-.56.56-.87 1.29-.87 2.07C9 18.68 10.35 20 12 20s3-1.32 3-2.94c0-.78-.31-1.52-.87-2.07L12 12.9z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M16 6l-.44.55C14.38 8.02 12 7.19 12 5.3V2S4 6 4 13c0 2.92 1.56 5.47 3.89 6.86-.56-.79-.89-1.76-.89-2.8 0-1.32.52-2.56 1.47-3.5L12 10.1l3.53 3.47c.95.93 1.47 2.17 1.47 3.5 0 1.02-.31 1.96-.85 2.75 1.89-1.15 3.29-3.06 3.71-5.3.66-3.55-1.07-6.9-3.86-8.52z" + d: "M16 6l-.44.55C14.38 8.02 12 7.19 12 5.3V2S4 6 4 13c0 2.92 1.56 5.47 3.89 6.86-.56-.79-.89-1.76-.89-2.8 0-1.32.52-2.56 1.47-3.5L12 10.1l3.53 3.47c.95.93 1.47 2.17 1.47 3.5 0 1.02-.31 1.96-.85 2.75 1.89-1.15 3.29-3.06 3.71-5.3.66-3.55-1.07-6.9-3.86-8.52z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalFlorist.js b/icons/es5/LocalFlorist.js index 4fe3f0053f..5fc370cffc 100644 --- a/icons/es5/LocalFlorist.js +++ b/icons/es5/LocalFlorist.js @@ -7,9 +7,11 @@ function SvgLocalFlorist(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 22a9 9 0 009-9 9 9 0 00-9 9zM5.6 10.25a2.5 2.5 0 003.92 2.06l-.02.19a2.5 2.5 0 005 0l-.02-.19c.4.28.89.44 1.42.44a2.5 2.5 0 002.5-2.5c0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25a2.5 2.5 0 00-3.92-2.06l.02-.19a2.5 2.5 0 00-5 0l.02.19c-.4-.28-.89-.44-1.42-.44a2.5 2.5 0 00-2.5 2.5c0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5a2.5 2.5 0 010 5 2.5 2.5 0 010-5zM3 13a9 9 0 009 9 9 9 0 00-9-9z" + d: "M12 22a9 9 0 009-9 9 9 0 00-9 9zM5.6 10.25a2.5 2.5 0 003.92 2.06l-.02.19a2.5 2.5 0 005 0l-.02-.19c.4.28.89.44 1.42.44a2.5 2.5 0 002.5-2.5c0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25a2.5 2.5 0 00-3.92-2.06l.02-.19a2.5 2.5 0 00-5 0l.02.19c-.4-.28-.89-.44-1.42-.44a2.5 2.5 0 00-2.5 2.5c0 1 .59 1.85 1.43 2.25-.84.4-1.43 1.25-1.43 2.25zM12 5.5a2.5 2.5 0 010 5 2.5 2.5 0 010-5zM3 13a9 9 0 009 9 9 9 0 00-9-9z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalGasStation.js b/icons/es5/LocalGasStation.js index 862a4e7998..87adfee825 100644 --- a/icons/es5/LocalGasStation.js +++ b/icons/es5/LocalGasStation.js @@ -7,9 +7,11 @@ function SvgLocalGasStation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5v7.49h5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M19.77 7.23l.01-.01-3.72-3.72L15 4.56l2.11 2.11c-1.05.4-1.76 1.47-1.58 2.71.16 1.1 1.1 1.99 2.2 2.11.47.05.88-.03 1.27-.2v8.21h-2V12h-3V3H4v18h10v-7.5h1.5v7.49h5V9c0-.69-.28-1.32-.73-1.77zM12 10H6V5h6v5zm6 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalGroceryStore.js b/icons/es5/LocalGroceryStore.js index 104082e36f..e98f96edc2 100644 --- a/icons/es5/LocalGroceryStore.js +++ b/icons/es5/LocalGroceryStore.js @@ -7,9 +7,11 @@ function SvgLocalGroceryStore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 4h2l3.6 7.59L3.62 17H19v-2H7l1.1-2h8.64l4.97-9H5.21l-.94-2H1v2zm16 14c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z" + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 4h2l3.6 7.59L3.62 17H19v-2H7l1.1-2h8.64l4.97-9H5.21l-.94-2H1v2zm16 14c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalHospital.js b/icons/es5/LocalHospital.js index e212a31473..faba322901 100644 --- a/icons/es5/LocalHospital.js +++ b/icons/es5/LocalHospital.js @@ -7,9 +7,11 @@ function SvgLocalHospital(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3.01L3 21h18V3zm-3 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z" + d: "M21 3H3.01L3 21h18V3zm-3 11h-4v4h-4v-4H6v-4h4V6h4v4h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalHotel.js b/icons/es5/LocalHotel.js index 1e0c8d6cd9..2e004747ff 100644 --- a/icons/es5/LocalHotel.js +++ b/icons/es5/LocalHotel.js @@ -7,9 +7,11 @@ function SvgLocalHotel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z" + d: "M7 13c1.66 0 3-1.34 3-3S8.66 7 7 7s-3 1.34-3 3 1.34 3 3 3zm16-6H11v7H3V5H1v15h2v-3h18v3h2V7z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalLaundryService.js b/icons/es5/LocalLaundryService.js index e09e263900..d27f4b581d 100644 --- a/icons/es5/LocalLaundryService.js +++ b/icons/es5/LocalLaundryService.js @@ -7,9 +7,11 @@ function SvgLocalLaundryService(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0s1.56-4.1 0-5.66l-5.66 5.66zM20 2.01L4 2v20h16V2.01zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z" + d: "M9.17 16.83c1.56 1.56 4.1 1.56 5.66 0s1.56-4.1 0-5.66l-5.66 5.66zM20 2.01L4 2v20h16V2.01zM10 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM7 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm5 16c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalLibrary.js b/icons/es5/LocalLibrary.js index efce220daa..a32e995127 100644 --- a/icons/es5/LocalLibrary.js +++ b/icons/es5/LocalLibrary.js @@ -7,9 +7,11 @@ function SvgLocalLibrary(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z" + d: "M12 11.55C9.64 9.35 6.48 8 3 8v11c3.48 0 6.64 1.35 9 3.55 2.36-2.19 5.52-3.55 9-3.55V8c-3.48 0-6.64 1.35-9 3.55zM12 8c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalMall.js b/icons/es5/LocalMall.js index 2fb3ac21da..c6bc80d2f6 100644 --- a/icons/es5/LocalMall.js +++ b/icons/es5/LocalMall.js @@ -7,9 +7,11 @@ function SvgLocalMall(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 6h-4c0-2.76-2.24-5-5-5S7 3.24 7 6H3v16h18V6zm-9-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z" + d: "M21 6h-4c0-2.76-2.24-5-5-5S7 3.24 7 6H3v16h18V6zm-9-3c1.66 0 3 1.34 3 3H9c0-1.66 1.34-3 3-3zm0 10c-2.76 0-5-2.24-5-5h2c0 1.66 1.34 3 3 3s3-1.34 3-3h2c0 2.76-2.24 5-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalMovies.js b/icons/es5/LocalMovies.js index 9902c24bc9..bee3985f4c 100644 --- a/icons/es5/LocalMovies.js +++ b/icons/es5/LocalMovies.js @@ -7,9 +7,11 @@ function SvgLocalMovies(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" + d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalOffer.js b/icons/es5/LocalOffer.js index 75b70dab13..7d516d905b 100644 --- a/icons/es5/LocalOffer.js +++ b/icons/es5/LocalOffer.js @@ -7,9 +7,11 @@ function SvgLocalOffer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22.83 12.99L11.83 2H2v9.83l10.99 10.99 9.84-9.83zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z" + d: "M22.83 12.99L11.83 2H2v9.83l10.99 10.99 9.84-9.83zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalParking.js b/icons/es5/LocalParking.js index 42bdc1a512..35e5e4a82d 100644 --- a/icons/es5/LocalParking.js +++ b/icons/es5/LocalParking.js @@ -7,9 +7,11 @@ function SvgLocalParking(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z" + d: "M13 3H6v18h4v-6h3c3.31 0 6-2.69 6-6s-2.69-6-6-6zm.2 8H10V7h3.2c1.1 0 2 .9 2 2s-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalPharmacy.js b/icons/es5/LocalPharmacy.js index 1039317bae..0ecdf5b138 100644 --- a/icons/es5/LocalPharmacy.js +++ b/icons/es5/LocalPharmacy.js @@ -7,9 +7,11 @@ function SvgLocalPharmacy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z" + d: "M21 5h-2.64l1.14-3.14L17.15 1l-1.46 4H3v2l2 6-2 6v2h18v-2l-2-6 2-6V5zm-5 9h-3v3h-2v-3H8v-2h3V9h2v3h3v2z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalPhone.js b/icons/es5/LocalPhone.js index 3c65030bc6..1c36302a74 100644 --- a/icons/es5/LocalPhone.js +++ b/icons/es5/LocalPhone.js @@ -7,9 +7,11 @@ function SvgLocalPhone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 15.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" + d: "M21 15.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalPizza.js b/icons/es5/LocalPizza.js index 069eae3007..28385e63bc 100644 --- a/icons/es5/LocalPizza.js +++ b/icons/es5/LocalPizza.js @@ -7,9 +7,11 @@ function SvgLocalPizza(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M12 2C8.43 2 5.23 3.54 3.01 6L12 22l8.99-16C18.78 3.55 15.57 2 12 2zM7 7c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm5 8c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalPlay.js b/icons/es5/LocalPlay.js index d3b206fa0c..f937e7a4fe 100644 --- a/icons/es5/LocalPlay.js +++ b/icons/es5/LocalPlay.js @@ -7,9 +7,11 @@ function SvgLocalPlay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z" + d: "M20 12c0-1.1.9-2 2-2V4H2.01v6c1.1 0 1.99.9 1.99 2s-.89 2-2 2v6h20v-6c-1.1 0-2-.9-2-2zm-4.42 4.8L12 14.5l-3.58 2.3 1.08-4.12-3.29-2.69 4.24-.25L12 5.8l1.54 3.95 4.24.25-3.29 2.69 1.09 4.11z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalPolice.js b/icons/es5/LocalPolice.js index d21efb095b..f94ccafd7f 100644 --- a/icons/es5/LocalPolice.js +++ b/icons/es5/LocalPolice.js @@ -7,9 +7,11 @@ function SvgLocalPolice(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.5 12.59l.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59zM3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4-9 4z" + d: "M14.5 12.59l.9 3.88-3.4-2.05-3.4 2.05.9-3.87-3-2.59 3.96-.34L12 6.02l1.54 3.64 3.96.34-3 2.59zM3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4-9 4z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalPostOffice.js b/icons/es5/LocalPostOffice.js index 7b36bc5870..7519245d51 100644 --- a/icons/es5/LocalPostOffice.js +++ b/icons/es5/LocalPostOffice.js @@ -7,9 +7,11 @@ function SvgLocalPostOffice(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2.01v16H22V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z" + d: "M22 4H2.01v16H22V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalPrintshop.js b/icons/es5/LocalPrintshop.js index 21298086eb..6167fb961b 100644 --- a/icons/es5/LocalPrintshop.js +++ b/icons/es5/LocalPrintshop.js @@ -7,9 +7,11 @@ function SvgLocalPrintshop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 8v9h4v4h12v-4h4V8H2zm14 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" + d: "M2 8v9h4v4h12v-4h4V8H2zm14 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalSee.js b/icons/es5/LocalSee.js index 4315ea4295..be3bcf4841 100644 --- a/icons/es5/LocalSee.js +++ b/icons/es5/LocalSee.js @@ -7,13 +7,15 @@ function SvgLocalSee(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, r: 3.2 }), /*#__PURE__*/React.createElement("path", { - d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalShipping.js b/icons/es5/LocalShipping.js index 25d6872221..ed7362dfe9 100644 --- a/icons/es5/LocalShipping.js +++ b/icons/es5/LocalShipping.js @@ -7,9 +7,11 @@ function SvgLocalShipping(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8h-3V4H1v13h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13.5-8.5l1.96 2.5H17V9.5h2.5zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M20 8h-3V4H1v13h2c0 1.66 1.34 3 3 3s3-1.34 3-3h6c0 1.66 1.34 3 3 3s3-1.34 3-3h2v-5l-3-4zM6 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm13.5-8.5l1.96 2.5H17V9.5h2.5zM18 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/LocalTaxi.js b/icons/es5/LocalTaxi.js index 91aef85b15..4ecd2f8e1f 100644 --- a/icons/es5/LocalTaxi.js +++ b/icons/es5/LocalTaxi.js @@ -7,9 +7,11 @@ function SvgLocalTaxi(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.58 5H15V3H9v2H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z" + d: "M18.58 5H15V3H9v2H5.43L3 12v9h3v-2h12v2h3v-9l-2.42-7zM6.5 16c-.83 0-1.5-.67-1.5-1.5S5.67 13 6.5 13s1.5.67 1.5 1.5S7.33 16 6.5 16zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 11l1.5-4.5h11L19 11H5z", + fill: "currentColor" })); } diff --git a/icons/es5/LocationCity.js b/icons/es5/LocationCity.js index dafc158339..99732e94c6 100644 --- a/icons/es5/LocationCity.js +++ b/icons/es5/LocationCity.js @@ -7,9 +7,11 @@ function SvgLocationCity(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z" + d: "M15 11V5l-3-3-3 3v2H3v14h18V11h-6zm-8 8H5v-2h2v2zm0-4H5v-2h2v2zm0-4H5V9h2v2zm6 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V9h2v2zm0-4h-2V5h2v2zm6 12h-2v-2h2v2zm0-4h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/LocationDisabled.js b/icons/es5/LocationDisabled.js index 2249a1d884..6727391a89 100644 --- a/icons/es5/LocationDisabled.js +++ b/icons/es5/LocationDisabled.js @@ -7,9 +7,11 @@ function SvgLocationDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 13v-2h-2.06A8.994 8.994 0 0013 3.06V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53a6.995 6.995 0 018.87 8.87l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19A6.995 6.995 0 016.46 7.73l9.81 9.81A6.972 6.972 0 0112 19z" + d: "M23 13v-2h-2.06A8.994 8.994 0 0013 3.06V1h-2v2.06c-.98.11-1.91.38-2.77.78l1.53 1.53a6.995 6.995 0 018.87 8.87l1.53 1.53c.4-.86.67-1.79.78-2.77H23zM4.41 2.86L3 4.27l2.04 2.04A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06c1.77-.2 3.38-.91 4.69-1.98L19.73 21l1.41-1.41L4.41 2.86zM12 19A6.995 6.995 0 016.46 7.73l9.81 9.81A6.972 6.972 0 0112 19z", + fill: "currentColor" })); } diff --git a/icons/es5/LocationOff.js b/icons/es5/LocationOff.js index 2d09b51a64..2b06209b44 100644 --- a/icons/es5/LocationOff.js +++ b/icons/es5/LocationOff.js @@ -7,9 +7,11 @@ function SvgLocationOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 2c-1.84 0-3.5.71-4.75 1.86l3.19 3.19c.43-.34.97-.55 1.56-.55A2.5 2.5 0 0114.5 9c0 .59-.21 1.13-.56 1.56l3.55 3.55C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7z" + d: "M3.41 2.86L2 4.27l3.18 3.18C5.07 7.95 5 8.47 5 9c0 5.25 7 13 7 13s1.67-1.85 3.38-4.35L18.73 21l1.41-1.41L3.41 2.86zM12 2c-1.84 0-3.5.71-4.75 1.86l3.19 3.19c.43-.34.97-.55 1.56-.55A2.5 2.5 0 0114.5 9c0 .59-.21 1.13-.56 1.56l3.55 3.55C18.37 12.36 19 10.57 19 9c0-3.87-3.13-7-7-7z", + fill: "currentColor" })); } diff --git a/icons/es5/LocationOn.js b/icons/es5/LocationOn.js index 6d672116b1..f2533678b8 100644 --- a/icons/es5/LocationOn.js +++ b/icons/es5/LocationOn.js @@ -7,9 +7,11 @@ function SvgLocationOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z" + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z", + fill: "currentColor" })); } diff --git a/icons/es5/LocationSearching.js b/icons/es5/LocationSearching.js index 9abd51188a..8cab2ed106 100644 --- a/icons/es5/LocationSearching.js +++ b/icons/es5/LocationSearching.js @@ -7,9 +7,11 @@ function SvgLocationSearching(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.94 11A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + d: "M20.94 11A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Lock.js b/icons/es5/Lock.js index f55963655d..693934fb48 100644 --- a/icons/es5/Lock.js +++ b/icons/es5/Lock.js @@ -7,9 +7,11 @@ function SvgLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19A5.008 5.008 0 007 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z" + d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19A5.008 5.008 0 007 6v2H4v14h16V8zm-8 9c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM9 8V6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9z", + fill: "currentColor" })); } diff --git a/icons/es5/LockClock.js b/icons/es5/LockClock.js index 8ec724fc7a..f6a228a30f 100644 --- a/icons/es5/LockClock.js +++ b/icons/es5/LockClock.js @@ -7,9 +7,11 @@ function SvgLockClock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 11c.7 0 1.37.1 2 .29V8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19A5.008 5.008 0 007 6v2H4v14h8.26A6.995 6.995 0 0118 11zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z" + d: "M18 11c.7 0 1.37.1 2 .29V8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19A5.008 5.008 0 007 6v2H4v14h8.26A6.995 6.995 0 0118 11zM9 6c0-1.66 1.34-3 3-3s3 1.34 3 3v2H9V6zm9 7c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z", + fill: "currentColor" })); } diff --git a/icons/es5/LockOpen.js b/icons/es5/LockOpen.js index 7a49952dc0..c764100d06 100644 --- a/icons/es5/LockOpen.js +++ b/icons/es5/LockOpen.js @@ -7,9 +7,11 @@ function SvgLockOpen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19A5.008 5.008 0 007 6h2c0-1.13.6-2.24 1.64-2.7C12.85 2.31 15 3.9 15 6v2H4v14h16V8zm-2 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z" + d: "M20 8h-3V6.21c0-2.61-1.91-4.94-4.51-5.19A5.008 5.008 0 007 6h2c0-1.13.6-2.24 1.64-2.7C12.85 2.31 15 3.9 15 6v2H4v14h16V8zm-2 12H6V10h12v10zm-6-3c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/LockPerson.js b/icons/es5/LockPerson.js index e028f8093c..5fbbbc2f61 100644 --- a/icons/es5/LockPerson.js +++ b/icons/es5/LockPerson.js @@ -7,11 +7,14 @@ function SvgLockPerson(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.43 11.18c1.26-.29 2.47-.21 3.57.12V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19A4.995 4.995 0 007 6v2H4v14h8.26a7.001 7.001 0 01-1.15-5.27c.49-2.73 2.63-4.94 5.32-5.55zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6z" + d: "M16.43 11.18c1.26-.29 2.47-.21 3.57.12V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19A4.995 4.995 0 007 6v2H4v14h8.26a7.001 7.001 0 01-1.15-5.27c.49-2.73 2.63-4.94 5.32-5.55zM8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2H8.9V6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 2c.83 0 1.5.67 1.5 1.5S18.83 18 18 18s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0 6c-1.03 0-1.94-.52-2.48-1.32.73-.42 1.57-.68 2.48-.68s1.75.26 2.48.68c-.54.8-1.45 1.32-2.48 1.32z" + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 2c.83 0 1.5.67 1.5 1.5S18.83 18 18 18s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm0 6c-1.03 0-1.94-.52-2.48-1.32.73-.42 1.57-.68 2.48-.68s1.75.26 2.48.68c-.54.8-1.45 1.32-2.48 1.32z", + fill: "currentColor" })); } diff --git a/icons/es5/LockReset.js b/icons/es5/LockReset.js index 8aa3b618f1..08a3574758 100644 --- a/icons/es5/LockReset.js +++ b/icons/es5/LockReset.js @@ -7,9 +7,11 @@ function SvgLockReset(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 3a9 9 0 00-9 9H1l4 4 4-4H6c0-3.86 3.14-7 7-7s7 3.14 7 7-3.14 7-7 7c-1.9 0-3.62-.76-4.88-1.99L6.7 18.42A8.982 8.982 0 0013 21a9 9 0 000-18zm2 8v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1h-1v5h6v-5h-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" + d: "M13 3a9 9 0 00-9 9H1l4 4 4-4H6c0-3.86 3.14-7 7-7s7 3.14 7 7-3.14 7-7 7c-1.9 0-3.62-.76-4.88-1.99L6.7 18.42A8.982 8.982 0 0013 21a9 9 0 000-18zm2 8v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1h-1v5h6v-5h-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z", + fill: "currentColor" })); } diff --git a/icons/es5/Login.js b/icons/es5/Login.js index fce3a3710a..64968dbc29 100644 --- a/icons/es5/Login.js +++ b/icons/es5/Login.js @@ -7,9 +7,11 @@ function SvgLogin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 7L9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h10V3H12v2h8v14z" + d: "M11 7L9.6 8.4l2.6 2.6H2v2h10.2l-2.6 2.6L11 17l5-5-5-5zm9 12h-8v2h10V3H12v2h8v14z", + fill: "currentColor" })); } diff --git a/icons/es5/LogoDev.js b/icons/es5/LogoDev.js index dcf4f52766..65e86f27b2 100644 --- a/icons/es5/LogoDev.js +++ b/icons/es5/LogoDev.js @@ -7,11 +7,14 @@ function SvgLogoDev(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.68 14.98H6V9h1.71c1.28 0 1.71 1.03 1.71 1.71v2.56c0 .68-.42 1.71-1.74 1.71zm4.7-3.52v1.07H11.2v1.39h1.93v1.07h-2.25c-.4.01-.74-.31-.75-.71V9.75c-.01-.4.31-.74.71-.75h2.28v1.07H11.2v1.39h1.18zm4.5 2.77c-.48 1.11-1.33.89-1.71 0L13.77 9h1.18l1.07 4.11L17.09 9h1.18l-1.39 5.23z" + d: "M19 3H5c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zM7.68 14.98H6V9h1.71c1.28 0 1.71 1.03 1.71 1.71v2.56c0 .68-.42 1.71-1.74 1.71zm4.7-3.52v1.07H11.2v1.39h1.93v1.07h-2.25c-.4.01-.74-.31-.75-.71V9.75c-.01-.4.31-.74.71-.75h2.28v1.07H11.2v1.39h1.18zm4.5 2.77c-.48 1.11-1.33.89-1.71 0L13.77 9h1.18l1.07 4.11L17.09 9h1.18l-1.39 5.23z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7.77 10.12h-.63v3.77h.63c.14 0 .28-.05.42-.16.14-.1.21-.26.21-.47v-2.52c0-.21-.07-.37-.21-.47a.72.72 0 00-.42-.15z" + d: "M7.77 10.12h-.63v3.77h.63c.14 0 .28-.05.42-.16.14-.1.21-.26.21-.47v-2.52c0-.21-.07-.37-.21-.47a.72.72 0 00-.42-.15z", + fill: "currentColor" })); } diff --git a/icons/es5/Logout.js b/icons/es5/Logout.js index c2efccbf82..a33d6395d6 100644 --- a/icons/es5/Logout.js +++ b/icons/es5/Logout.js @@ -7,11 +7,14 @@ function SvgLogout(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 5h7V3H3v18h9v-2H5z" + d: "M5 5h7V3H3v18h9v-2H5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21 12l-4-4v3H9v2h8v3z" + d: "M21 12l-4-4v3H9v2h8v3z", + fill: "currentColor" })); } diff --git a/icons/es5/Looks.js b/icons/es5/Looks.js index e47d038aea..d09cc75737 100644 --- a/icons/es5/Looks.js +++ b/icons/es5/Looks.js @@ -7,9 +7,11 @@ function SvgLooks(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z" + d: "M12 10c-3.86 0-7 3.14-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.86-3.14-7-7-7zm0-4C5.93 6 1 10.93 1 17h2c0-4.96 4.04-9 9-9s9 4.04 9 9h2c0-6.07-4.93-11-11-11z", + fill: "currentColor" })); } diff --git a/icons/es5/Looks3.js b/icons/es5/Looks3.js index c26c50f2d6..181b41c2cb 100644 --- a/icons/es5/Looks3.js +++ b/icons/es5/Looks3.js @@ -7,9 +7,11 @@ function SvgLooks3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3.01v18H21V3zm-5.99 14H9v-2h4v-2h-2v-2h2V9H9V7h6.01v10z" + d: "M21 3H3.01v18H21V3zm-5.99 14H9v-2h4v-2h-2v-2h2V9H9V7h6.01v10z", + fill: "currentColor" })); } diff --git a/icons/es5/Looks4.js b/icons/es5/Looks4.js index 0d619b6e42..876803fe5e 100644 --- a/icons/es5/Looks4.js +++ b/icons/es5/Looks4.js @@ -7,9 +7,11 @@ function SvgLooks4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.04 3h-18v18h18V3zm-6 14h-2v-4h-4V7h2v4h2V7h2v10z" + d: "M21.04 3h-18v18h18V3zm-6 14h-2v-4h-4V7h2v4h2V7h2v10z", + fill: "currentColor" })); } diff --git a/icons/es5/Looks5.js b/icons/es5/Looks5.js index 50e0fe9572..67e9653c7e 100644 --- a/icons/es5/Looks5.js +++ b/icons/es5/Looks5.js @@ -7,9 +7,11 @@ function SvgLooks5(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-6 6h-4v2h4v6H9v-2h4v-2H9V7h6v2z" + d: "M21 3H3v18h18V3zm-6 6h-4v2h4v6H9v-2h4v-2H9V7h6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Looks6.js b/icons/es5/Looks6.js index 62c4939ff3..1290685fbe 100644 --- a/icons/es5/Looks6.js +++ b/icons/es5/Looks6.js @@ -7,9 +7,11 @@ function SvgLooks6(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 15h2v-2h-2v2zM21 3H3v18h18V3zm-6 6h-4v2h4v6H9V7h6v2z" + d: "M11 15h2v-2h-2v2zM21 3H3v18h18V3zm-6 6h-4v2h4v6H9V7h6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/LooksOne.js b/icons/es5/LooksOne.js index 900d17b9e2..41403d023c 100644 --- a/icons/es5/LooksOne.js +++ b/icons/es5/LooksOne.js @@ -7,9 +7,11 @@ function SvgLooksOne(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-7 14h-2V9h-2V7h4v10z" + d: "M21 3H3v18h18V3zm-7 14h-2V9h-2V7h4v10z", + fill: "currentColor" })); } diff --git a/icons/es5/LooksTwo.js b/icons/es5/LooksTwo.js index 0b3feb64aa..7b95caabe9 100644 --- a/icons/es5/LooksTwo.js +++ b/icons/es5/LooksTwo.js @@ -7,9 +7,11 @@ function SvgLooksTwo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-6 10h-4v2h4v2H9v-6h4V9H9V7h6v6z" + d: "M21 3H3v18h18V3zm-6 10h-4v2h4v2H9v-6h4V9H9V7h6v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Loop.js b/icons/es5/Loop.js index 59a7aa6caa..66e84ff119 100644 --- a/icons/es5/Loop.js +++ b/icons/es5/Loop.js @@ -7,9 +7,11 @@ function SvgLoop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0020 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 004 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" + d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0020 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 004 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z", + fill: "currentColor" })); } diff --git a/icons/es5/Loupe.js b/icons/es5/Loupe.js index f24e96b430..de60ae64cd 100644 --- a/icons/es5/Loupe.js +++ b/icons/es5/Loupe.js @@ -7,9 +7,11 @@ function SvgLoupe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-.27-4.97c-6.08-.44-11.14 4.62-10.7 10.7.38 5.28 5 9.27 10.29 9.27H22v-9.68c0-5.3-3.98-9.91-9.27-10.29zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + d: "M13 7h-2v4H7v2h4v4h2v-4h4v-2h-4V7zm-.27-4.97c-6.08-.44-11.14 4.62-10.7 10.7.38 5.28 5 9.27 10.29 9.27H22v-9.68c0-5.3-3.98-9.91-9.27-10.29zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/LowPriority.js b/icons/es5/LowPriority.js index 8bf5945536..fd379cc965 100644 --- a/icons/es5/LowPriority.js +++ b/icons/es5/LowPriority.js @@ -7,9 +7,11 @@ function SvgLowPriority(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z" + d: "M14 5h8v2h-8V5zm0 5.5h8v2h-8v-2zm0 5.5h8v2h-8v-2zM2 11.5C2 15.08 4.92 18 8.5 18H9v2l3-3-3-3v2h-.5C6.02 16 4 13.98 4 11.5S6.02 7 8.5 7H12V5H8.5C4.92 5 2 7.92 2 11.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Loyalty.js b/icons/es5/Loyalty.js index d730ebad2c..8415efa314 100644 --- a/icons/es5/Loyalty.js +++ b/icons/es5/Loyalty.js @@ -7,9 +7,11 @@ function SvgLoyalty(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.83 2H2v9.83l10.99 11s1.05-1.05 1.41-1.42L22.82 13 11.83 2zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zM13 19.54l-4.27-4.27A2.5 2.5 0 0110.5 11c.69 0 1.32.28 1.77.74l.73.72.73-.73a2.5 2.5 0 013.54 3.54L13 19.54z" + d: "M11.83 2H2v9.83l10.99 11s1.05-1.05 1.41-1.42L22.82 13 11.83 2zM5.5 7C4.67 7 4 6.33 4 5.5S4.67 4 5.5 4 7 4.67 7 5.5 6.33 7 5.5 7zM13 19.54l-4.27-4.27A2.5 2.5 0 0110.5 11c.69 0 1.32.28 1.77.74l.73.72.73-.73a2.5 2.5 0 013.54 3.54L13 19.54z", + fill: "currentColor" })); } diff --git a/icons/es5/LteMobiledata.js b/icons/es5/LteMobiledata.js index 064f229e11..4d07e41e6c 100644 --- a/icons/es5/LteMobiledata.js +++ b/icons/es5/LteMobiledata.js @@ -7,9 +7,11 @@ function SvgLteMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z" + d: "M6 14h3v2H4V8h2v6zm3-4h2v6h2v-6h2V8H9v2zm12 0V8h-5v8h5v-2h-3v-1h3v-2h-3v-1h3z", + fill: "currentColor" })); } diff --git a/icons/es5/LtePlusMobiledata.js b/icons/es5/LtePlusMobiledata.js index c20358b736..bdb9f9d4d4 100644 --- a/icons/es5/LtePlusMobiledata.js +++ b/icons/es5/LtePlusMobiledata.js @@ -7,9 +7,11 @@ function SvgLtePlusMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z" + d: "M3 14h3v2H1V8h2v6zm2-4h2v6h2v-6h2V8H5v2zm7 6h5v-2h-3v-1h3v-2h-3v-1h3V8h-5v8zm12-5h-2V9h-2v2h-2v2h2v2h2v-2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Luggage.js b/icons/es5/Luggage.js index f106eba7fc..070c8d4ad7 100644 --- a/icons/es5/Luggage.js +++ b/icons/es5/Luggage.js @@ -7,9 +7,11 @@ function SvgLuggage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 6h-4V2H9v4H5v15h2c0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1h2V6zM9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zm.75-12h-3V3.5h3V6zM16 18h-1.5V9H16v9z" + d: "M19 6h-4V2H9v4H5v15h2c0 .55.45 1 1 1s1-.45 1-1h6c0 .55.45 1 1 1s1-.45 1-1h2V6zM9.5 18H8V9h1.5v9zm3.25 0h-1.5V9h1.5v9zm.75-12h-3V3.5h3V6zM16 18h-1.5V9H16v9z", + fill: "currentColor" })); } diff --git a/icons/es5/LunchDining.js b/icons/es5/LunchDining.js index 09f03a2291..0798b08e4c 100644 --- a/icons/es5/LunchDining.js +++ b/icons/es5/LunchDining.js @@ -7,9 +7,11 @@ function SvgLunchDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 16h20v5H2zm16.66-4.5c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.32 1l-.01-1.98c-1.61-.33-1.62-1.02-3.33-1.02zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9v1h20V9z" + d: "M2 16h20v5H2zm16.66-4.5c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.32 1l-.01-1.98c-1.61-.33-1.62-1.02-3.33-1.02zM22 9c.02-4-4.28-6-10-6C6.29 3 2 5 2 9v1h20V9z", + fill: "currentColor" })); } diff --git a/icons/es5/Lyrics.js b/icons/es5/Lyrics.js index 80d0413bae..44773fc879 100644 --- a/icons/es5/Lyrics.js +++ b/icons/es5/Lyrics.js @@ -7,11 +7,14 @@ function SvgLyrics(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 9c0-2.04 1.24-3.79 3-4.57V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9c1.1 0 2-.9 2-2v-2.42c-1.76-.78-3-2.53-3-4.58zm-4 5H6v-2h4v2zm3-3H6V9h7v2zm0-3H6V6h7v2z" + d: "M14 9c0-2.04 1.24-3.79 3-4.57V4c0-1.1-.9-2-2-2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h9c1.1 0 2-.9 2-2v-2.42c-1.76-.78-3-2.53-3-4.58zm-4 5H6v-2h4v2zm3-3H6V9h7v2zm0-3H6V6h7v2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20 6.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V3h2V1h-4v5.18z" + d: "M20 6.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V3h2V1h-4v5.18z", + fill: "currentColor" })); } diff --git a/icons/es5/MacroOff.js b/icons/es5/MacroOff.js index d1d99404fc..f42ecee2b0 100644 --- a/icons/es5/MacroOff.js +++ b/icons/es5/MacroOff.js @@ -7,11 +7,14 @@ function SvgMacroOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.98 17.15A8.909 8.909 0 0021 13c-1.5 0-2.91.37-4.15 1.02l3.13 3.13zM3 13a9 9 0 009 9 9 9 0 00-9-9zm9-7.5A2.5 2.5 0 0114.5 8c0 .99-.58 1.84-1.42 2.25l2.48 2.48c.11.02.23.03.35.03a2.5 2.5 0 002.5-2.5c0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25a2.5 2.5 0 00-3.92-2.06l.01-.2a2.5 2.5 0 00-5 0l.02.19a2.485 2.485 0 00-2.93.08l3.16 3.16c.41-.85 1.26-1.43 2.25-1.43z" + d: "M19.98 17.15A8.909 8.909 0 0021 13c-1.5 0-2.91.37-4.15 1.02l3.13 3.13zM3 13a9 9 0 009 9 9 9 0 00-9-9zm9-7.5A2.5 2.5 0 0114.5 8c0 .99-.58 1.84-1.42 2.25l2.48 2.48c.11.02.23.03.35.03a2.5 2.5 0 002.5-2.5c0-1-.59-1.85-1.43-2.25.84-.4 1.43-1.25 1.43-2.25a2.5 2.5 0 00-3.92-2.06l.01-.2a2.5 2.5 0 00-5 0l.02.19a2.485 2.485 0 00-2.93.08l3.16 3.16c.41-.85 1.26-1.43 2.25-1.43z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M2.81 2.81L1.39 4.22l4.64 4.64c-.27.4-.43.87-.43 1.39a2.5 2.5 0 002.5 2.5c.52 0 .99-.16 1.4-.43l.02.02-.02.16A2.5 2.5 0 0012 15c.05 0 .1-.01.16-.02l1.64 1.64A8.905 8.905 0 0012 22c2.02 0 3.88-.67 5.38-1.8l2.4 2.4 1.41-1.41L2.81 2.81z" + d: "M2.81 2.81L1.39 4.22l4.64 4.64c-.27.4-.43.87-.43 1.39a2.5 2.5 0 002.5 2.5c.52 0 .99-.16 1.4-.43l.02.02-.02.16A2.5 2.5 0 0012 15c.05 0 .1-.01.16-.02l1.64 1.64A8.905 8.905 0 0012 22c2.02 0 3.88-.67 5.38-1.8l2.4 2.4 1.41-1.41L2.81 2.81z", + fill: "currentColor" })); } diff --git a/icons/es5/Mail.js b/icons/es5/Mail.js index 363e8d80d4..f9e0aa8106 100644 --- a/icons/es5/Mail.js +++ b/icons/es5/Mail.js @@ -7,9 +7,11 @@ function SvgMail(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z" + d: "M22 4H2v16h20V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z", + fill: "currentColor" })); } diff --git a/icons/es5/MailLock.js b/icons/es5/MailLock.js index 5d1e702527..4c1025bfcf 100644 --- a/icons/es5/MailLock.js +++ b/icons/es5/MailLock.js @@ -7,11 +7,14 @@ function SvgMailLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9.97V4H2.01L2 20h14v-5.03c0-2.76 2.24-5 5-5h1zM20 8l-8 5-8-5V6l8 5 8-5v2z" + d: "M22 9.97V4H2.01L2 20h14v-5.03c0-2.76 2.24-5 5-5h1zM20 8l-8 5-8-5V6l8 5 8-5v2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M23 15v-.89c0-1-.68-1.92-1.66-2.08A2 2 0 0019 14v1h-1v5h6v-5h-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" + d: "M23 15v-.89c0-1-.68-1.92-1.66-2.08A2 2 0 0019 14v1h-1v5h6v-5h-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z", + fill: "currentColor" })); } diff --git a/icons/es5/MailOutline.js b/icons/es5/MailOutline.js index ec67b7d0ec..cc6486e94a 100644 --- a/icons/es5/MailOutline.js +++ b/icons/es5/MailOutline.js @@ -7,9 +7,11 @@ function SvgMailOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2.01L2 20h20V4zm-2 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z" + d: "M22 4H2.01L2 20h20V4zm-2 14H4V8l8 5 8-5v10zm-8-7L4 6h16l-8 5z", + fill: "currentColor" })); } diff --git a/icons/es5/Male.js b/icons/es5/Male.js index f13cf89376..4395da151d 100644 --- a/icons/es5/Male.js +++ b/icons/es5/Male.js @@ -7,9 +7,11 @@ function SvgMale(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z" + d: "M9.5 11c1.93 0 3.5 1.57 3.5 3.5S11.43 18 9.5 18 6 16.43 6 14.5 7.57 11 9.5 11zm0-2C6.46 9 4 11.46 4 14.5S6.46 20 9.5 20s5.5-2.46 5.5-5.5c0-1.16-.36-2.23-.97-3.12L18 7.42V10h2V4h-6v2h2.58l-3.97 3.97C11.73 9.36 10.66 9 9.5 9z", + fill: "currentColor" })); } diff --git a/icons/es5/Man.js b/icons/es5/Man.js index ab0009a995..5c0e1b7af6 100644 --- a/icons/es5/Man.js +++ b/icons/es5/Man.js @@ -7,9 +7,11 @@ function SvgMan(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 7H8v8h2v7h4v-7h2z" + d: "M16 7H8v8h2v7h4v-7h2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 4, diff --git a/icons/es5/Man2.js b/icons/es5/Man2.js index 9188898e6d..5b4403401e 100644 --- a/icons/es5/Man2.js +++ b/icons/es5/Man2.js @@ -7,9 +7,11 @@ function SvgMan2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 7H8v8h2.5v7h3v-7H16z" + d: "M16 7H8v8h2.5v7h3v-7H16z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 4, diff --git a/icons/es5/Man3.js b/icons/es5/Man3.js index 8231aa5721..d252eb5f86 100644 --- a/icons/es5/Man3.js +++ b/icons/es5/Man3.js @@ -7,9 +7,11 @@ function SvgMan3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 7H8v8h2v7h4v-7h2zm-4-5.249L14.248 4 12 6.248 9.75 4z" + d: "M16 7H8v8h2v7h4v-7h2zm-4-5.249L14.248 4 12 6.248 9.75 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Man4.js b/icons/es5/Man4.js index 32f57c06da..8b988fb368 100644 --- a/icons/es5/Man4.js +++ b/icons/es5/Man4.js @@ -7,9 +7,11 @@ function SvgMan4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.96 7L10 22h4l2.04-15z" + d: "M7.96 7L10 22h4l2.04-15z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 4, diff --git a/icons/es5/ManageAccounts.js b/icons/es5/ManageAccounts.js index bd27c79684..70965e44c8 100644 --- a/icons/es5/ManageAccounts.js +++ b/icons/es5/ManageAccounts.js @@ -7,15 +7,18 @@ function SvgManageAccounts(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26a6.963 6.963 0 01-.59-6.98z" + d: "M10.67 13.02c-.22-.01-.44-.02-.67-.02-2.42 0-4.68.67-6.61 1.82-.88.52-1.39 1.5-1.39 2.53V20h9.26a6.963 6.963 0 01-.59-6.98z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 10, cy: 8, r: 4 }), /*#__PURE__*/React.createElement("path", { - d: "M20.75 16c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M20.75 16c0-.22-.03-.42-.06-.63l1.14-1.01-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L18 11h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1.01c-.03.21-.06.41-.06.63s.03.42.06.63l-1.14 1.01 1 1.73 1.45-.49c.32.27.68.48 1.08.63L16 21h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1.01c.03-.21.06-.41.06-.63zM17 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/ManageHistory.js b/icons/es5/ManageHistory.js index 38e78e8805..ef593017fa 100644 --- a/icons/es5/ManageHistory.js +++ b/icons/es5/ManageHistory.js @@ -7,9 +7,11 @@ function SvgManageHistory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22.69 18.37l1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L20 14h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L18 24h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM19 21c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM11 7v5.41l2.36 2.36 1.04-1.79-1.4-1.39V7h-2zm10 5a9 9 0 00-9-9C9.17 3 6.65 4.32 5 6.36V4H3v6h6V8H6.26A7.01 7.01 0 0112 5c3.86 0 7 3.14 7 7h2zm-10.14 6.91c-2.99-.49-5.35-2.9-5.78-5.91H3.06c.5 4.5 4.31 8 8.94 8h.07l-1.21-2.09z" + d: "M22.69 18.37l1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L20 14h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L18 24h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM19 21c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM11 7v5.41l2.36 2.36 1.04-1.79-1.4-1.39V7h-2zm10 5a9 9 0 00-9-9C9.17 3 6.65 4.32 5 6.36V4H3v6h6V8H6.26A7.01 7.01 0 0112 5c3.86 0 7 3.14 7 7h2zm-10.14 6.91c-2.99-.49-5.35-2.9-5.78-5.91H3.06c.5 4.5 4.31 8 8.94 8h.07l-1.21-2.09z", + fill: "currentColor" })); } diff --git a/icons/es5/ManageSearch.js b/icons/es5/ManageSearch.js index 711db62b14..345167bba5 100644 --- a/icons/es5/ManageSearch.js +++ b/icons/es5/ManageSearch.js @@ -7,9 +7,11 @@ function SvgManageSearch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 9H2V7h5v2zm0 3H2v2h5v-2zm13.59 7l-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59 20.59 19zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM2 19h10v-2H2v2z" + d: "M7 9H2V7h5v2zm0 3H2v2h5v-2zm13.59 7l-3.83-3.83c-.8.52-1.74.83-2.76.83-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5c0 1.02-.31 1.96-.83 2.75L22 17.59 20.59 19zM17 11c0-1.65-1.35-3-3-3s-3 1.35-3 3 1.35 3 3 3 3-1.35 3-3zM2 19h10v-2H2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Map.js b/icons/es5/Map.js index f9578a5246..6fde7b249e 100644 --- a/icons/es5/Map.js +++ b/icons/es5/Map.js @@ -7,9 +7,11 @@ function SvgMap(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 5.1L9 3 3 5.02v16.2l6-2.33 6 2.1 6-2.02V2.77L15 5.1zm0 13.79l-6-2.11V5.11l6 2.11v11.67z" + d: "M15 5.1L9 3 3 5.02v16.2l6-2.33 6 2.1 6-2.02V2.77L15 5.1zm0 13.79l-6-2.11V5.11l6 2.11v11.67z", + fill: "currentColor" })); } diff --git a/icons/es5/MapsHomeWork.js b/icons/es5/MapsHomeWork.js index 9e87742c9f..b8326e6b6e 100644 --- a/icons/es5/MapsHomeWork.js +++ b/icons/es5/MapsHomeWork.js @@ -7,11 +7,14 @@ function SvgMapsHomeWork(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 11v10h5v-6h4v6h5V11L8 6z" + d: "M1 11v10h5v-6h4v6h5V11L8 6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M10 3v1.97l7 5V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z" + d: "M10 3v1.97l7 5V11h2v2h-2v2h2v2h-2v4h6V3H10zm9 6h-2V7h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/MapsUgc.js b/icons/es5/MapsUgc.js index fd9f250986..e604f10656 100644 --- a/icons/es5/MapsUgc.js +++ b/icons/es5/MapsUgc.js @@ -7,12 +7,15 @@ function SvgMapsUgc(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42A7.925 7.925 0 014 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2z" + d: "M12 4c4.41 0 8 3.59 8 8s-3.59 8-8 8c-1.18 0-2.34-.26-3.43-.78-.27-.13-.56-.19-.86-.19-.19 0-.38.03-.56.08l-3.2.94.94-3.2c.14-.47.1-.98-.11-1.42A7.925 7.925 0 014 12c0-4.41 3.59-8 8-8m0-2C6.48 2 2 6.48 2 12c0 1.54.36 2.98.97 4.29L1 23l6.71-1.97c1.31.61 2.75.97 4.29.97 5.52 0 10-4.48 10-10S17.52 2 12 2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", - d: "M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z" + d: "M13 8h-2v3H8v2h3v3h2v-3h3v-2h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Margin.js b/icons/es5/Margin.js index e3b9cabf3c..ef8d59699e 100644 --- a/icons/es5/Margin.js +++ b/icons/es5/Margin.js @@ -7,9 +7,11 @@ function SvgMargin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm6 10H7v-2h2v2zm0-4H7V7h2v2zm4 4h-2v-2h2v2zm0-4h-2V7h2v2zm4 4h-2v-2h2v2zm0-4h-2V7h2v2z" + d: "M3 3v18h18V3H3zm6 10H7v-2h2v2zm0-4H7V7h2v2zm4 4h-2v-2h2v2zm0-4h-2V7h2v2zm4 4h-2v-2h2v2zm0-4h-2V7h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/MarkAsUnread.js b/icons/es5/MarkAsUnread.js index 234931e532..a50e96677d 100644 --- a/icons/es5/MarkAsUnread.js +++ b/icons/es5/MarkAsUnread.js @@ -7,11 +7,14 @@ function SvgMarkAsUnread(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.23 7h4.12L10.5 2 2 6.21V17h2V7.4L10.5 4z" + d: "M16.23 7h4.12L10.5 2 2 6.21V17h2V7.4L10.5 4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M5 8v13h17V8H5zm15 4l-6.5 3.33L7 12v-2l6.5 3.33L20 10v2z" + d: "M5 8v13h17V8H5zm15 4l-6.5 3.33L7 12v-2l6.5 3.33L20 10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/MarkChatRead.js b/icons/es5/MarkChatRead.js index 0efd61c74b..03f238a404 100644 --- a/icons/es5/MarkChatRead.js +++ b/icons/es5/MarkChatRead.js @@ -7,9 +7,11 @@ function SvgMarkChatRead(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.03 17.5c-.02.17-.03.33-.03.5H6l-4 4V2h20v8.68A6.995 6.995 0 0012 17c0 .17.01.33.03.5zM23 14.34l-1.41-1.41-4.24 4.24-2.12-2.12-1.41 1.41L17.34 20 23 14.34z" + d: "M12.03 17.5c-.02.17-.03.33-.03.5H6l-4 4V2h20v8.68A6.995 6.995 0 0012 17c0 .17.01.33.03.5zM23 14.34l-1.41-1.41-4.24 4.24-2.12-2.12-1.41 1.41L17.34 20 23 14.34z", + fill: "currentColor" })); } diff --git a/icons/es5/MarkChatUnread.js b/icons/es5/MarkChatUnread.js index 111e734022..67612c02c3 100644 --- a/icons/es5/MarkChatUnread.js +++ b/icons/es5/MarkChatUnread.js @@ -7,9 +7,11 @@ function SvgMarkChatUnread(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6.98V18H6l-4 4V2h12.1A5.002 5.002 0 0019 8c1.13 0 2.16-.39 3-1.02zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" + d: "M22 6.98V18H6l-4 4V2h12.1A5.002 5.002 0 0019 8c1.13 0 2.16-.39 3-1.02zM16 3c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/MarkEmailRead.js b/icons/es5/MarkEmailRead.js index 88e855b1e1..ace62cb810 100644 --- a/icons/es5/MarkEmailRead.js +++ b/icons/es5/MarkEmailRead.js @@ -7,9 +7,11 @@ function SvgMarkEmailRead(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 19a6.995 6.995 0 0110-6.32V4H2v16h10.08c-.05-.33-.08-.66-.08-1zM4 6l8 5 8-5v2l-8 5-8-5V6zm13.34 16l-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z" + d: "M12 19a6.995 6.995 0 0110-6.32V4H2v16h10.08c-.05-.33-.08-.66-.08-1zM4 6l8 5 8-5v2l-8 5-8-5V6zm13.34 16l-3.54-3.54 1.41-1.41 2.12 2.12 4.24-4.24L23 16.34 17.34 22z", + fill: "currentColor" })); } diff --git a/icons/es5/MarkEmailUnread.js b/icons/es5/MarkEmailUnread.js index f914ce4ff3..8f2e8b95f7 100644 --- a/icons/es5/MarkEmailUnread.js +++ b/icons/es5/MarkEmailUnread.js @@ -7,9 +7,11 @@ function SvgMarkEmailUnread(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 8.98V20H2V4h12.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 4 6v2l8 5 5.3-3.32c.54.2 1.1.32 1.7.32 1.13 0 2.16-.39 3-1.02zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z" + d: "M22 8.98V20H2V4h12.1c-.06.32-.1.66-.1 1 0 1.48.65 2.79 1.67 3.71L12 11 4 6v2l8 5 5.3-3.32c.54.2 1.1.32 1.7.32 1.13 0 2.16-.39 3-1.02zM16 5c0 1.66 1.34 3 3 3s3-1.34 3-3-1.34-3-3-3-3 1.34-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/MarkUnreadChatAlt.js b/icons/es5/MarkUnreadChatAlt.js index 5abf71695a..078af43a9f 100644 --- a/icons/es5/MarkUnreadChatAlt.js +++ b/icons/es5/MarkUnreadChatAlt.js @@ -7,13 +7,15 @@ function SvgMarkUnreadChatAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 19, cy: 3, r: 3 }), /*#__PURE__*/React.createElement("path", { - d: "M6 8V6h9.03a4.906 4.906 0 01-.92-4H2.01L2 22l4-4h16V6.97C21.16 7.61 20.13 8 19 8H6zm8 6H6v-2h8v2zm4-3H6V9h12v2z" + d: "M6 8V6h9.03a4.906 4.906 0 01-.92-4H2.01L2 22l4-4h16V6.97C21.16 7.61 20.13 8 19 8H6zm8 6H6v-2h8v2zm4-3H6V9h12v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Markunread.js b/icons/es5/Markunread.js index cb7fe3957c..a093e1c060 100644 --- a/icons/es5/Markunread.js +++ b/icons/es5/Markunread.js @@ -7,9 +7,11 @@ function SvgMarkunread(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z" + d: "M22 4H2v16h20V4zm-2 4l-8 5-8-5V6l8 5 8-5v2z", + fill: "currentColor" })); } diff --git a/icons/es5/MarkunreadMailbox.js b/icons/es5/MarkunreadMailbox.js index 53ae2c2184..26da6bcce9 100644 --- a/icons/es5/MarkunreadMailbox.js +++ b/icons/es5/MarkunreadMailbox.js @@ -7,9 +7,11 @@ function SvgMarkunreadMailbox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H10v6H8V4h6V0H6v6H2v16h20V6z" + d: "M22 6H10v6H8V4h6V0H6v6H2v16h20V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Masks.js b/icons/es5/Masks.js index 34d4a5cfd1..4302b04d70 100644 --- a/icons/es5/Masks.js +++ b/icons/es5/Masks.js @@ -7,9 +7,11 @@ function SvgMasks(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6A2.5 2.5 0 002 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5A2.5 2.5 0 0019.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zm17 0c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z" + d: "M19.5 6c-1.31 0-2.37 1.01-2.48 2.3-1.88-.5-2.84-1.8-5.02-1.8-2.19 0-3.14 1.3-5.02 1.8C6.87 7.02 5.81 6 4.5 6A2.5 2.5 0 002 8.5V9c0 6 3.6 7.81 6.52 7.98C9.53 17.62 10.72 18 12 18s2.47-.38 3.48-1.02C18.4 16.81 22 15 22 9v-.5A2.5 2.5 0 0019.5 6zm-16 3v-.5c0-.55.45-1 1-1s1 .45 1 1v3c0 1.28.38 2.47 1.01 3.48C4.99 14.27 3.5 12.65 3.5 9zm17 0c0 3.65-1.49 5.27-3.01 5.98.64-1.01 1.01-2.2 1.01-3.48v-3c0-.55.45-1 1-1s1 .45 1 1V9zm-9.81 1.48c-.44.26-.96.56-1.69.76V10.2c.48-.17.84-.38 1.18-.58C10.72 9.3 11.23 9 12 9s1.27.3 1.8.62c.34.2.71.42 1.2.59v1.04c-.75-.21-1.26-.51-1.71-.78-.46-.27-.8-.47-1.29-.47s-.84.2-1.31.48z", + fill: "currentColor" })); } diff --git a/icons/es5/Maximize.js b/icons/es5/Maximize.js index 9c9e7b3b32..0f60232ce4 100644 --- a/icons/es5/Maximize.js +++ b/icons/es5/Maximize.js @@ -7,9 +7,11 @@ function SvgMaximize(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3h18v2H3V3z" + d: "M3 3h18v2H3V3z", + fill: "currentColor" })); } diff --git a/icons/es5/MediaBluetoothOff.js b/icons/es5/MediaBluetoothOff.js index e468d1eda7..9b62890896 100644 --- a/icons/es5/MediaBluetoothOff.js +++ b/icons/es5/MediaBluetoothOff.js @@ -7,9 +7,11 @@ function SvgMediaBluetoothOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15L22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45l1.13-1.13-1.13-1.13v2.26zm-1.96 3.66l3.98 3.98-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l13.56 13.56.85.84z" + d: "M9 6.17V3h6v4h-4v1.17l-2-2zM19.42 15L22 17.57l-.8.8-6.78-6.78.8-.8 2.75 2.75V9h.6L22 12.43 19.42 15zm-.25-1.45l1.13-1.13-1.13-1.13v2.26zm-1.96 3.66l3.98 3.98-1.41 1.41-3.98-3.98-.58.58-.85-.85.58-.58L11 13.83V17c0 2.21-1.78 4-3.99 4S3 19.21 3 17s1.79-4 4.01-4c.73 0 1.41.21 2 .55v-1.72L1.39 4.22 2.8 2.81l13.56 13.56.85.84z", + fill: "currentColor" })); } diff --git a/icons/es5/MediaBluetoothOn.js b/icons/es5/MediaBluetoothOn.js index 33ad0bee73..9b7bb03d6f 100644 --- a/icons/es5/MediaBluetoothOn.js +++ b/icons/es5/MediaBluetoothOn.js @@ -7,9 +7,11 @@ function SvgMediaBluetoothOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 3l.01 10.55c-.6-.34-1.28-.55-2-.55a4.001 4.001 0 100 8C9.23 21 11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13l1.13 1.13-1.13 1.13V11.3zm1.13 6.27l-1.13 1.13v-2.26l1.13 1.13z" + d: "M9 3l.01 10.55c-.6-.34-1.28-.55-2-.55a4.001 4.001 0 100 8C9.23 21 11 19.21 11 17V7h4V3H9zm12 9.43L17.57 9h-.6v4.55l-2.75-2.75-.85.85L16.73 15l-3.35 3.35.85.85 2.75-2.75V21h.6L21 17.57 18.42 15 21 12.43zm-2.83-1.13l1.13 1.13-1.13 1.13V11.3zm1.13 6.27l-1.13 1.13v-2.26l1.13 1.13z", + fill: "currentColor" })); } diff --git a/icons/es5/Mediation.js b/icons/es5/Mediation.js index 4021a6ce4c..93018bd79d 100644 --- a/icons/es5/Mediation.js +++ b/icons/es5/Mediation.js @@ -7,9 +7,11 @@ function SvgMediation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 13h-5.06A8.974 8.974 0 018 20.05 3.005 3.005 0 015 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14A6.969 6.969 0 0010.91 13h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3a2.99 2.99 0 012.99 2.95A8.974 8.974 0 0112.93 11H18V8l4 4-4 4v-3z" + d: "M18 13h-5.06A8.974 8.974 0 018 20.05 3.005 3.005 0 015 23c-1.66 0-3-1.34-3-3s1.34-3 3-3c.95 0 1.78.45 2.33 1.14A6.969 6.969 0 0010.91 13h-3.1C7.4 14.16 6.3 15 5 15c-1.66 0-3-1.34-3-3s1.34-3 3-3c1.3 0 2.4.84 2.82 2h3.1c-.32-2.23-1.69-4.1-3.59-5.14C6.78 6.55 5.95 7 5 7 3.34 7 2 5.66 2 4s1.34-3 3-3a2.99 2.99 0 012.99 2.95A8.974 8.974 0 0112.93 11H18V8l4 4-4 4v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/MedicalInformation.js b/icons/es5/MedicalInformation.js index 32c6c7686b..92b69d213f 100644 --- a/icons/es5/MedicalInformation.js +++ b/icons/es5/MedicalInformation.js @@ -7,9 +7,11 @@ function SvgMedicalInformation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7h-7V2H9v5H2v15h20V7zM11 4h2v5h-2V4zm0 12H9v2H7v-2H5v-2h2v-2h2v2h2v2zm2-1.5V13h6v1.5h-6zm0 3V16h4v1.5h-4z" + d: "M22 7h-7V2H9v5H2v15h20V7zM11 4h2v5h-2V4zm0 12H9v2H7v-2H5v-2h2v-2h2v2h2v2zm2-1.5V13h6v1.5h-6zm0 3V16h4v1.5h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/MedicalServices.js b/icons/es5/MedicalServices.js index 6825d0bfeb..29787360f5 100644 --- a/icons/es5/MedicalServices.js +++ b/icons/es5/MedicalServices.js @@ -7,9 +7,11 @@ function SvgMedicalServices(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 6V2H8v4H2v16h20V6h-6zm-6-2h4v2h-4V4zm6 11h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z" + d: "M16 6V2H8v4H2v16h20V6h-6zm-6-2h4v2h-4V4zm6 11h-3v3h-2v-3H8v-2h3v-3h2v3h3v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Medication.js b/icons/es5/Medication.js index 3f6b06cc2c..590794d338 100644 --- a/icons/es5/Medication.js +++ b/icons/es5/Medication.js @@ -7,9 +7,11 @@ function SvgMedication(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 3h12v2H6zm13 3H5v15h14V6zm-3 9h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16v3z" + d: "M6 3h12v2H6zm13 3H5v15h14V6zm-3 9h-2.5v2.5h-3V15H8v-3h2.5V9.5h3V12H16v3z", + fill: "currentColor" })); } diff --git a/icons/es5/MedicationLiquid.js b/icons/es5/MedicationLiquid.js index e52981143f..5e23a21fbf 100644 --- a/icons/es5/MedicationLiquid.js +++ b/icons/es5/MedicationLiquid.js @@ -7,11 +7,14 @@ function SvgMedicationLiquid(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3h12v2H3zm4.5 14.5h3V15H13v-3h-2.5V9.5h-3V12H5v3h2.5z" + d: "M3 3h12v2H3zm4.5 14.5h3V15H13v-3h-2.5V9.5h-3V12H5v3h2.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14 6H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 13H4V8h10v11zm6-13c-1.68 0-3 1.76-3 4 0 1.77.83 3.22 2 3.76V20c0 .55.45 1 1 1s1-.45 1-1v-6.24c1.17-.54 2-1.99 2-3.76 0-2.24-1.32-4-3-4zm0 6c-.41 0-1-.78-1-2s.59-2 1-2 1 .78 1 2-.59 2-1 2z" + d: "M14 6H4c-1.1 0-2 .9-2 2v11c0 1.1.9 2 2 2h10c1.1 0 2-.9 2-2V8c0-1.1-.9-2-2-2zm0 13H4V8h10v11zm6-13c-1.68 0-3 1.76-3 4 0 1.77.83 3.22 2 3.76V20c0 .55.45 1 1 1s1-.45 1-1v-6.24c1.17-.54 2-1.99 2-3.76 0-2.24-1.32-4-3-4zm0 6c-.41 0-1-.78-1-2s.59-2 1-2 1 .78 1 2-.59 2-1 2z", + fill: "currentColor" })); } diff --git a/icons/es5/MeetingRoom.js b/icons/es5/MeetingRoom.js index 0343dee9f2..d2a146c0cc 100644 --- a/icons/es5/MeetingRoom.js +++ b/icons/es5/MeetingRoom.js @@ -7,9 +7,11 @@ function SvgMeetingRoom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z" + d: "M14 6v15H3v-2h2V3h9v1h5v15h2v2h-4V6h-3zm-4 5v2h2v-2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Memory.js b/icons/es5/Memory.js index 3c22054a12..34142608bd 100644 --- a/icons/es5/Memory.js +++ b/icons/es5/Memory.js @@ -7,9 +7,11 @@ function SvgMemory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V5h-4V3h-2v2h-2V3H9v2H5v4H3v2h2v2H3v2h2v4h4v2h2v-2h2v2h2v-2h4v-4h2v-2h-2v-2h2zm-4 6H7V7h10v10z" + d: "M15 9H9v6h6V9zm-2 4h-2v-2h2v2zm8-2V9h-2V5h-4V3h-2v2h-2V3H9v2H5v4H3v2h2v2H3v2h2v4h4v2h2v-2h2v2h2v-2h4v-4h2v-2h-2v-2h2zm-4 6H7V7h10v10z", + fill: "currentColor" })); } diff --git a/icons/es5/MenuBook.js b/icons/es5/MenuBook.js index 465c051e95..ed564182ac 100644 --- a/icons/es5/MenuBook.js +++ b/icons/es5/MenuBook.js @@ -7,11 +7,14 @@ function SvgMenuBook(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z" + d: "M21 5c-1.11-.35-2.33-.5-3.5-.5-1.95 0-4.05.4-5.5 1.5-1.45-1.1-3.55-1.5-5.5-1.5S2.45 4.9 1 6v15.5C2.45 20.4 4.55 20 6.5 20s4.05.4 5.5 1.5c1.45-1.1 3.55-1.5 5.5-1.5 1.17 0 2.39.15 3.5.5.75.25 1.4.55 2 1V6c-.6-.45-1.25-.75-2-1zm0 13.5c-1.1-.35-2.3-.5-3.5-.5-1.7 0-4.15.65-5.5 1.5V8c1.35-.85 3.8-1.5 5.5-1.5 1.2 0 2.4.15 3.5.5v11.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99zM13 12.49v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.3-4.5.83zm4.5 1.84c-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26v-1.52c-.79-.16-1.64-.24-2.5-.24z" + d: "M17.5 10.5c.88 0 1.73.09 2.5.26V9.24c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99zM13 12.49v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26V11.9c-.79-.15-1.64-.24-2.5-.24-1.7 0-3.24.3-4.5.83zm4.5 1.84c-1.7 0-3.24.29-4.5.83v1.66c1.13-.64 2.7-.99 4.5-.99.88 0 1.73.09 2.5.26v-1.52c-.79-.16-1.64-.24-2.5-.24z", + fill: "currentColor" })); } diff --git a/icons/es5/MenuOpen.js b/icons/es5/MenuOpen.js index 5d9c8a9b6e..7c48b8adcb 100644 --- a/icons/es5/MenuOpen.js +++ b/icons/es5/MenuOpen.js @@ -7,9 +7,11 @@ function SvgMenuOpen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z" + d: "M3 18h13v-2H3v2zm0-5h10v-2H3v2zm0-7v2h13V6H3zm18 9.59L17.42 12 21 8.41 19.59 7l-5 5 5 5L21 15.59z", + fill: "currentColor" })); } diff --git a/icons/es5/Merge.js b/icons/es5/Merge.js index af782669fe..82aa2e1a56 100644 --- a/icons/es5/Merge.js +++ b/icons/es5/Merge.js @@ -7,9 +7,11 @@ function SvgMerge(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.41 21L5 19.59l4.83-4.83c.75-.75 1.17-1.77 1.17-2.83v-5.1L9.41 8.41 8 7l4-4 4 4-1.41 1.41L13 6.83v5.1c0 1.06.42 2.08 1.17 2.83L19 19.59 17.59 21 12 15.41 6.41 21z" + d: "M6.41 21L5 19.59l4.83-4.83c.75-.75 1.17-1.77 1.17-2.83v-5.1L9.41 8.41 8 7l4-4 4 4-1.41 1.41L13 6.83v5.1c0 1.06.42 2.08 1.17 2.83L19 19.59 17.59 21 12 15.41 6.41 21z", + fill: "currentColor" })); } diff --git a/icons/es5/MergeType.js b/icons/es5/MergeType.js index a64e26aa65..31d3e61172 100644 --- a/icons/es5/MergeType.js +++ b/icons/es5/MergeType.js @@ -7,9 +7,11 @@ function SvgMergeType(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z" + d: "M17 20.41L18.41 19 15 15.59 13.59 17 17 20.41zM7.5 8H11v5.59L5.59 19 7 20.41l6-6V8h3.5L12 3.5 7.5 8z", + fill: "currentColor" })); } diff --git a/icons/es5/Message.js b/icons/es5/Message.js index e66f552c70..9dd212a88d 100644 --- a/icons/es5/Message.js +++ b/icons/es5/Message.js @@ -7,9 +7,11 @@ function SvgMessage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2.01L2 22l4-4h16V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z" + d: "M22 2H2.01L2 22l4-4h16V2zm-4 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Mic.js b/icons/es5/Mic.js index 1ef67164d9..325a8fe9f7 100644 --- a/icons/es5/Mic.js +++ b/icons/es5/Mic.js @@ -7,11 +7,14 @@ function SvgMic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z" + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" + d: "M17 11c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/MicExternalOff.js b/icons/es5/MicExternalOff.js index 1c9384edef..896e6d5d36 100644 --- a/icons/es5/MicExternalOff.js +++ b/icons/es5/MicExternalOff.js @@ -7,9 +7,11 @@ function SvgMicExternalOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 5c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zm4-1h4v11.17l2 2V2h-8v7.17l2 2zM2.1 2.1L.69 3.51 5.17 8H4l1 10h1v4h8v-5.17l6.49 6.49 1.41-1.41L2.1 2.1zM12 20H8v-2h1l.56-5.61L12 14.83V20z" + d: "M10 5c0-1.66-1.34-3-3-3-.62 0-1.19.19-1.67.5l4.15 4.15C9.8 6.18 10 5.61 10 5zm4-1h4v11.17l2 2V2h-8v7.17l2 2zM2.1 2.1L.69 3.51 5.17 8H4l1 10h1v4h8v-5.17l6.49 6.49 1.41-1.41L2.1 2.1zM12 20H8v-2h1l.56-5.61L12 14.83V20z", + fill: "currentColor" })); } diff --git a/icons/es5/MicExternalOn.js b/icons/es5/MicExternalOn.js index c1b81d5284..fa1ff0005e 100644 --- a/icons/es5/MicExternalOn.js +++ b/icons/es5/MicExternalOn.js @@ -7,9 +7,11 @@ function SvgMicExternalOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM20 2v20h-2V4h-4v18H6v-4H5L4 8h6L9 18H8v2h4V2h8z" + d: "M9.22 7H4.78C4.3 6.47 4 5.77 4 5c0-1.66 1.34-3 3-3s3 1.34 3 3c0 .77-.3 1.47-.78 2zM20 2v20h-2V4h-4v18H6v-4H5L4 8h6L9 18H8v2h4V2h8z", + fill: "currentColor" })); } diff --git a/icons/es5/MicNone.js b/icons/es5/MicNone.js index 59c6cacff0..ded5b61c69 100644 --- a/icons/es5/MicNone.js +++ b/icons/es5/MicNone.js @@ -7,9 +7,11 @@ function SvgMicNone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z" + d: "M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-.55.45-1 1-1s1 .45 1 1v6c0 .55-.45 1-1 1s-1-.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-.49 6-3.39 6-6.92h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/MicOff.js b/icons/es5/MicOff.js index 44a688178d..d884f4aeba 100644 --- a/icons/es5/MicOff.js +++ b/icons/es5/MicOff.js @@ -7,9 +7,11 @@ function SvgMicOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm4 .4h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28a7.13 7.13 0 002.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z" + d: "M15 10.6V5c0-1.66-1.34-3-3-3-1.54 0-2.79 1.16-2.96 2.65L15 10.6zm4 .4h-1.7c0 .58-.1 1.13-.27 1.64l1.27 1.27c.44-.88.7-1.87.7-2.91zM4.41 2.86L3 4.27l6 6V11c0 1.66 1.34 3 3 3 .23 0 .44-.03.65-.08l1.66 1.66c-.71.33-1.5.52-2.31.52-2.76 0-5.3-2.1-5.3-5.1H5c0 3.41 2.72 6.23 6 6.72V21h2v-3.28a7.13 7.13 0 002.55-.9l4.2 4.2 1.41-1.41L4.41 2.86z", + fill: "currentColor" })); } diff --git a/icons/es5/MicrosoftTeams.js b/icons/es5/MicrosoftTeams.js index e359fb6c25..f6bcaa9c73 100644 --- a/icons/es5/MicrosoftTeams.js +++ b/icons/es5/MicrosoftTeams.js @@ -11,7 +11,7 @@ function SvgMicrosoftTeams(props) { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink" }, props), /*#__PURE__*/React.createElement("path", { - fill: "url(#microsoft_teams_svg__pattern0)", + fill: "currentColor", d: "M.332.871h24v22.257h-24z" }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", { id: "microsoft_teams_svg__pattern0", diff --git a/icons/es5/Microwave.js b/icons/es5/Microwave.js index 01e6f865a0..84ebb9bac9 100644 --- a/icons/es5/Microwave.js +++ b/icons/es5/Microwave.js @@ -7,9 +7,11 @@ function SvgMicrowave(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.8 10.61L5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61zM7.75 15c.19 0 .38.12.71.34.42.28 1 .66 1.79.66 1.16 0 2.01-.79 2.37-1.19l-1.42-1.42c-.15.2-.59.61-.95.61-.18 0-.38-.12-.69-.33-.42-.28-1.01-.67-1.81-.67-1.16 0-2.02.79-2.38 1.19l1.42 1.42c.16-.2.59-.61.96-.61zM22 4v16H2V4h20zm-8 2H4v12h10V6zm5 10c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-4c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-5h-2v2h2V7z" + d: "M6.8 10.61L5.37 9.19C5.73 8.79 6.59 8 7.75 8c.8 0 1.39.39 1.81.67.31.21.51.33.69.33.37 0 .8-.41.95-.61l1.42 1.42c-.36.4-1.22 1.19-2.37 1.19-.79 0-1.37-.38-1.79-.66-.33-.22-.52-.34-.71-.34-.37 0-.8.41-.95.61zM7.75 15c.19 0 .38.12.71.34.42.28 1 .66 1.79.66 1.16 0 2.01-.79 2.37-1.19l-1.42-1.42c-.15.2-.59.61-.95.61-.18 0-.38-.12-.69-.33-.42-.28-1.01-.67-1.81-.67-1.16 0-2.02.79-2.38 1.19l1.42 1.42c.16-.2.59-.61.96-.61zM22 4v16H2V4h20zm-8 2H4v12h10V6zm5 10c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-4c0-.55-.45-1-1-1s-1 .45-1 1 .45 1 1 1 1-.45 1-1zm0-5h-2v2h2V7z", + fill: "currentColor" })); } diff --git a/icons/es5/MilitaryTech.js b/icons/es5/MilitaryTech.js index fd5f9204d8..f6501f537d 100644 --- a/icons/es5/MilitaryTech.js +++ b/icons/es5/MilitaryTech.js @@ -7,9 +7,11 @@ function SvgMilitaryTech(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 11V2H7v9l4.66 2.8-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34L17 11zm-4 1.23l-1 .6-1-.6V3h2v9.23z" + d: "M17 11V2H7v9l4.66 2.8-.99 2.34-3.41.29 2.59 2.24L9.07 22 12 20.23 14.93 22l-.78-3.33 2.59-2.24-3.41-.29-.99-2.34L17 11zm-4 1.23l-1 .6-1-.6V3h2v9.23z", + fill: "currentColor" })); } diff --git a/icons/es5/Minimize.js b/icons/es5/Minimize.js index 2064033c37..14521b994c 100644 --- a/icons/es5/Minimize.js +++ b/icons/es5/Minimize.js @@ -7,9 +7,11 @@ function SvgMinimize(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 19h12v2H6v-2z" + d: "M6 19h12v2H6v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/MinorCrash.js b/icons/es5/MinorCrash.js index c4590aa199..6ff88473fb 100644 --- a/icons/es5/MinorCrash.js +++ b/icons/es5/MinorCrash.js @@ -7,9 +7,11 @@ function SvgMinorCrash(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.57 8H5.43L3 15v9h3v-2h12v2h3v-9l-2.43-7zM6.85 10h10.29l1.04 3H5.81l1.04-3zM6 17.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S8.33 19 7.5 19 6 18.33 6 17.5zm9 0c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM9.41 5L8 6.41l-3-3L6.41 2l3 3zM16 6.41L14.59 5l3-3L19 3.41l-3 3zM13 5h-2V0h2v5z" + d: "M18.57 8H5.43L3 15v9h3v-2h12v2h3v-9l-2.43-7zM6.85 10h10.29l1.04 3H5.81l1.04-3zM6 17.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S8.33 19 7.5 19 6 18.33 6 17.5zm9 0c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM9.41 5L8 6.41l-3-3L6.41 2l3 3zM16 6.41L14.59 5l3-3L19 3.41l-3 3zM13 5h-2V0h2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/Minus.js b/icons/es5/Minus.js index a4889d4f1d..4ae72e5a11 100644 --- a/icons/es5/Minus.js +++ b/icons/es5/Minus.js @@ -7,9 +7,11 @@ function SvgMinus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 12.998H5v-2h14z" + d: "M19 12.998H5v-2h14z", + fill: "currentColor" })); } diff --git a/icons/es5/MiscellaneousServices.js b/icons/es5/MiscellaneousServices.js index 093085a18c..4fb7e854db 100644 --- a/icons/es5/MiscellaneousServices.js +++ b/icons/es5/MiscellaneousServices.js @@ -7,9 +7,11 @@ function SvgMiscellaneousServices(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.02 13.97l1.7-2.94s-.09-.08-.23-.18l-1.47-1.16-.01.02c.03-.24.05-.47.05-.71s-.02-.47-.06-.69l.01.01 1.71-1.34-1.7-2.95-2.01.81v.01c-.37-.28-.77-.52-1.2-.7h.01L10.52 2H7.11L6.8 4.15h.01c-.43.18-.83.42-1.2.7v-.01L3.6 4.03 1.9 6.98l1.7 1.34.01-.01c-.03.22-.05.45-.05.69s.02.47.05.71l-.01-.02-1.47 1.16c-.13.1-.23.18-.23.18l1.7 2.94 2.02-.8-.02-.03c.37.29.77.53 1.21.71H6.8L7.11 16h3.4s.02-.13.04-.3l.27-1.85h-.01c.44-.18.84-.42 1.21-.71l-.02.03 2.02.8zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm12.17 6.94l-.01.01c.02-.15.03-.3.03-.45 0-.15-.01-.3-.04-.44l.01.01 1.1-.86-1.09-1.9-1.29.52v.01c-.24-.18-.49-.33-.77-.45h.01l-.2-1.39h-2.19l-.2 1.38h.01c-.28.12-.53.27-.77.45v-.01l-1.29-.52-1.09 1.9 1.09.86.01-.01c-.02.14-.03.29-.03.44 0 .15.01.3.03.46l-.01-.01-.94.75c-.08.06-.15.12-.15.12l1.09 1.89 1.3-.51-.01-.02c.24.19.5.34.78.46h-.01l.2 1.38h2.19s.01-.08.03-.19l.17-1.19h-.01c.28-.12.54-.27.78-.46l-.01.02 1.3.51 1.09-1.89s-.06-.05-.15-.12l-.96-.75zm-3.35.85c-.71 0-1.29-.58-1.29-1.29s.58-1.29 1.29-1.29 1.29.58 1.29 1.29-.58 1.29-1.29 1.29z" + d: "M14.02 13.97l1.7-2.94s-.09-.08-.23-.18l-1.47-1.16-.01.02c.03-.24.05-.47.05-.71s-.02-.47-.06-.69l.01.01 1.71-1.34-1.7-2.95-2.01.81v.01c-.37-.28-.77-.52-1.2-.7h.01L10.52 2H7.11L6.8 4.15h.01c-.43.18-.83.42-1.2.7v-.01L3.6 4.03 1.9 6.98l1.7 1.34.01-.01c-.03.22-.05.45-.05.69s.02.47.05.71l-.01-.02-1.47 1.16c-.13.1-.23.18-.23.18l1.7 2.94 2.02-.8-.02-.03c.37.29.77.53 1.21.71H6.8L7.11 16h3.4s.02-.13.04-.3l.27-1.85h-.01c.44-.18.84-.42 1.21-.71l-.02.03 2.02.8zM8.81 11c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm12.17 6.94l-.01.01c.02-.15.03-.3.03-.45 0-.15-.01-.3-.04-.44l.01.01 1.1-.86-1.09-1.9-1.29.52v.01c-.24-.18-.49-.33-.77-.45h.01l-.2-1.39h-2.19l-.2 1.38h.01c-.28.12-.53.27-.77.45v-.01l-1.29-.52-1.09 1.9 1.09.86.01-.01c-.02.14-.03.29-.03.44 0 .15.01.3.03.46l-.01-.01-.94.75c-.08.06-.15.12-.15.12l1.09 1.89 1.3-.51-.01-.02c.24.19.5.34.78.46h-.01l.2 1.38h2.19s.01-.08.03-.19l.17-1.19h-.01c.28-.12.54-.27.78-.46l-.01.02 1.3.51 1.09-1.89s-.06-.05-.15-.12l-.96-.75zm-3.35.85c-.71 0-1.29-.58-1.29-1.29s.58-1.29 1.29-1.29 1.29.58 1.29 1.29-.58 1.29-1.29 1.29z", + fill: "currentColor" })); } diff --git a/icons/es5/MissedVideoCall.js b/icons/es5/MissedVideoCall.js index bd08503486..6a66a04ee0 100644 --- a/icons/es5/MissedVideoCall.js +++ b/icons/es5/MissedVideoCall.js @@ -7,9 +7,11 @@ function SvgMissedVideoCall(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z" + d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM10 15l-3.89-3.89v2.55H5V9.22h4.44v1.11H6.89l3.11 3.1 4.22-4.22.78.79-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/Mms.js b/icons/es5/Mms.js index 195ccc0c03..5a8edcb68c 100644 --- a/icons/es5/Mms.js +++ b/icons/es5/Mms.js @@ -7,9 +7,11 @@ function SvgMms(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z" + d: "M22 2H2v20l4-4h16V2zM5 14l3.5-4.5 2.5 3.01L14.5 8l4.5 6H5z", + fill: "currentColor" })); } diff --git a/icons/es5/MobileFriendly.js b/icons/es5/MobileFriendly.js index f6027dc480..15576fb5d5 100644 --- a/icons/es5/MobileFriendly.js +++ b/icons/es5/MobileFriendly.js @@ -7,9 +7,11 @@ function SvgMobileFriendly(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z" + d: "M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM7.01 13.47l-2.55-2.55-1.27 1.27L7 16l7.19-7.19-1.27-1.27-5.91 5.93z", + fill: "currentColor" })); } diff --git a/icons/es5/MobileOff.js b/icons/es5/MobileOff.js index c85b7c30a2..5bda418090 100644 --- a/icons/es5/MobileOff.js +++ b/icons/es5/MobileOff.js @@ -7,9 +7,11 @@ function SvgMobileOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 5v8.61l2 2V1H5v.61L8.39 5zM2.9 2.35L1.49 3.76 5 7.27V23h14v-1.73l1.7 1.7 1.41-1.41L2.9 2.35zM7 19V9.27L16.73 19H7z" + d: "M17 5v8.61l2 2V1H5v.61L8.39 5zM2.9 2.35L1.49 3.76 5 7.27V23h14v-1.73l1.7 1.7 1.41-1.41L2.9 2.35zM7 19V9.27L16.73 19H7z", + fill: "currentColor" })); } diff --git a/icons/es5/MobileScreenShare.js b/icons/es5/MobileScreenShare.js index 0cc09bf440..a78326198a 100644 --- a/icons/es5/MobileScreenShare.js +++ b/icons/es5/MobileScreenShare.js @@ -7,9 +7,11 @@ function SvgMobileScreenShare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.01 1v22H19V1H5.01zM17 19H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z" + d: "M5.01 1v22H19V1H5.01zM17 19H7V5h10v14zm-4.2-5.76v1.75L16 12l-3.2-2.98v1.7c-3.11.43-4.35 2.56-4.8 4.7 1.11-1.5 2.58-2.18 4.8-2.18z", + fill: "currentColor" })); } diff --git a/icons/es5/MobiledataOff.js b/icons/es5/MobiledataOff.js index 5841ffbb54..8199e7de72 100644 --- a/icons/es5/MobiledataOff.js +++ b/icons/es5/MobiledataOff.js @@ -7,9 +7,11 @@ function SvgMobiledataOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 7h3l-4-4-4 4h3v4.17l2 2zM2.81 2.81L1.39 4.22 8 10.83v6.18l-3 .01L9 21l4-4-3 .01v-4.18l9.78 9.78 1.41-1.42z" + d: "M16 7h3l-4-4-4 4h3v4.17l2 2zM2.81 2.81L1.39 4.22 8 10.83v6.18l-3 .01L9 21l4-4-3 .01v-4.18l9.78 9.78 1.41-1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/Mode.js b/icons/es5/Mode.js index 8fb4b8f471..11072e61aa 100644 --- a/icons/es5/Mode.js +++ b/icons/es5/Mode.js @@ -7,9 +7,11 @@ function SvgMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z", + fill: "currentColor" })); } diff --git a/icons/es5/ModeComment.js b/icons/es5/ModeComment.js index 32a1e64bce..fb5a343b5f 100644 --- a/icons/es5/ModeComment.js +++ b/icons/es5/ModeComment.js @@ -7,9 +7,11 @@ function SvgModeComment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v16h16l4 4z" + d: "M22 2H2v16h16l4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/ModeEdit.js b/icons/es5/ModeEdit.js index e8bcc92cc9..fd9d7205fb 100644 --- a/icons/es5/ModeEdit.js +++ b/icons/es5/ModeEdit.js @@ -7,9 +7,11 @@ function SvgModeEdit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z", + fill: "currentColor" })); } diff --git a/icons/es5/ModeEditOutline.js b/icons/es5/ModeEditOutline.js index 24d633638b..b8f01bd9af 100644 --- a/icons/es5/ModeEditOutline.js +++ b/icons/es5/ModeEditOutline.js @@ -7,9 +7,11 @@ function SvgModeEditOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z" + d: "M3 17.25V21h3.75L17.81 9.94l-3.75-3.75L3 17.25zM21.41 6.34l-3.75-3.75-2.53 2.54 3.75 3.75 2.53-2.54z", + fill: "currentColor" })); } diff --git a/icons/es5/ModeFanOff.js b/icons/es5/ModeFanOff.js index efa52a1ddc..8de7f71189 100644 --- a/icons/es5/ModeFanOff.js +++ b/icons/es5/ModeFanOff.js @@ -7,9 +7,11 @@ function SvgModeFanOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.34 8.36l-2.29.82c-.18-.13-.38-.25-.58-.34.17-.83.63-1.58 1.36-2.06C16.85 5.44 16.18 2 13.39 2c-3.08 0-4.9 1.47-5.3 3.26L18.73 15.9c1.5.39 3.27-.51 3.27-2.51 0-4.39-3.01-6.23-5.66-5.03zM2.81 2.81L1.39 4.22 5.27 8.1C3.77 7.7 2 8.61 2 10.61c0 4.4 3.01 6.24 5.66 5.03l2.29-.82c.18.13.38.25.58.34-.17.83-.63 1.58-1.36 2.06C7.15 18.56 7.82 22 10.61 22c3.08 0 4.9-1.47 5.3-3.26l3.87 3.87 1.41-1.41L2.81 2.81z" + d: "M16.34 8.36l-2.29.82c-.18-.13-.38-.25-.58-.34.17-.83.63-1.58 1.36-2.06C16.85 5.44 16.18 2 13.39 2c-3.08 0-4.9 1.47-5.3 3.26L18.73 15.9c1.5.39 3.27-.51 3.27-2.51 0-4.39-3.01-6.23-5.66-5.03zM2.81 2.81L1.39 4.22 5.27 8.1C3.77 7.7 2 8.61 2 10.61c0 4.4 3.01 6.24 5.66 5.03l2.29-.82c.18.13.38.25.58.34-.17.83-.63 1.58-1.36 2.06C7.15 18.56 7.82 22 10.61 22c3.08 0 4.9-1.47 5.3-3.26l3.87 3.87 1.41-1.41L2.81 2.81z", + fill: "currentColor" })); } diff --git a/icons/es5/ModeNight.js b/icons/es5/ModeNight.js index e1273c266e..e6ae5171cc 100644 --- a/icons/es5/ModeNight.js +++ b/icons/es5/ModeNight.js @@ -7,9 +7,11 @@ function SvgModeNight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.5 2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z" + d: "M9.5 2c-1.82 0-3.53.5-5 1.35 2.99 1.73 5 4.95 5 8.65s-2.01 6.92-5 8.65c1.47.85 3.18 1.35 5 1.35 5.52 0 10-4.48 10-10S15.02 2 9.5 2z", + fill: "currentColor" })); } diff --git a/icons/es5/ModeOfTravel.js b/icons/es5/ModeOfTravel.js index a07c1fc6ea..8b4ad78eca 100644 --- a/icons/es5/ModeOfTravel.js +++ b/icons/es5/ModeOfTravel.js @@ -7,9 +7,11 @@ function SvgModeOfTravel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.31 18.9c-.96 1-2.06 2.03-3.31 3.1-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2c4 0 7.64 2.92 7.97 7.5h3.53L19 14l-4.5-4.5h3.47C17.65 6.24 15.13 4 12 4c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14.64-.59 1.23-1.16 1.77-1.71a2.5 2.5 0 01-.27-1.12 2.5 2.5 0 015 0 2.492 2.492 0 01-3.19 2.39z" + d: "M15.31 18.9c-.96 1-2.06 2.03-3.31 3.1-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2c4 0 7.64 2.92 7.97 7.5h3.53L19 14l-4.5-4.5h3.47C17.65 6.24 15.13 4 12 4c-3.35 0-6 2.57-6 6.2 0 2.34 1.95 5.44 6 9.14.64-.59 1.23-1.16 1.77-1.71a2.5 2.5 0 01-.27-1.12 2.5 2.5 0 015 0 2.492 2.492 0 01-3.19 2.39z", + fill: "currentColor" })); } diff --git a/icons/es5/ModeStandby.js b/icons/es5/ModeStandby.js index 19da2c07c5..582862d0f0 100644 --- a/icons/es5/ModeStandby.js +++ b/icons/es5/ModeStandby.js @@ -7,9 +7,11 @@ function SvgModeStandby(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z" + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm3-8c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/ModelTraining.js b/icons/es5/ModelTraining.js index 84cb32f9b4..1615debe70 100644 --- a/icons/es5/ModelTraining.js +++ b/icons/es5/ModelTraining.js @@ -7,9 +7,11 @@ function SvgModelTraining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42a8.978 8.978 0 00-1-12.68l-1.42 1.42A6.993 6.993 0 0119 13zm-3-8l-4-4v3a9 9 0 00-9 9c0 2.23.82 4.27 2.16 5.84l1.42-1.42A6.938 6.938 0 015 13c0-3.86 3.14-7 7-7v3l4-4z" + d: "M15.5 13.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5 0-1.93 1.57-3.5 3.5-3.5s3.5 1.57 3.5 3.5zm-2.5 6h-2V21h2v-1.5zm6-6.5c0 1.68-.59 3.21-1.58 4.42l1.42 1.42a8.978 8.978 0 00-1-12.68l-1.42 1.42A6.993 6.993 0 0119 13zm-3-8l-4-4v3a9 9 0 00-9 9c0 2.23.82 4.27 2.16 5.84l1.42-1.42A6.938 6.938 0 015 13c0-3.86 3.14-7 7-7v3l4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/MonetizationOn.js b/icons/es5/MonetizationOn.js index 3d8ca53caa..ac16917ab2 100644 --- a/icons/es5/MonetizationOn.js +++ b/icons/es5/MonetizationOn.js @@ -7,9 +7,11 @@ function SvgMonetizationOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.41 16.09V20h-2.67v-1.93c-1.71-.36-3.16-1.46-3.27-3.4h1.96c.1 1.05.82 1.87 2.65 1.87 1.96 0 2.4-.98 2.4-1.59 0-.83-.44-1.61-2.67-2.14-2.48-.6-4.18-1.62-4.18-3.67 0-1.72 1.39-2.84 3.11-3.21V4h2.67v1.95c1.86.45 2.79 1.86 2.85 3.39H14.3c-.05-1.11-.64-1.87-2.22-1.87-1.5 0-2.4.68-2.4 1.64 0 .84.65 1.39 2.67 1.91s4.18 1.39 4.18 3.91c-.01 1.83-1.38 2.83-3.12 3.16z", + fill: "currentColor" })); } diff --git a/icons/es5/MoneyOff.js b/icons/es5/MoneyOff.js index 461740c411..1d43a2104a 100644 --- a/icons/es5/MoneyOff.js +++ b/icons/es5/MoneyOff.js @@ -7,9 +7,11 @@ function SvgMoneyOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z", + fill: "currentColor" })); } diff --git a/icons/es5/MoneyOffCsred.js b/icons/es5/MoneyOffCsred.js index 4a82762be0..539116aada 100644 --- a/icons/es5/MoneyOffCsred.js +++ b/icons/es5/MoneyOffCsred.js @@ -7,9 +7,11 @@ function SvgMoneyOffCsred(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z" + d: "M12.5 6.9c1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-.39.08-.75.21-1.1.36l1.51 1.51c.32-.08.69-.13 1.09-.13zM5.47 3.92L4.06 5.33 7.5 8.77c0 2.08 1.56 3.22 3.91 3.91l3.51 3.51c-.34.49-1.05.91-2.42.91-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c.96-.18 1.83-.55 2.46-1.12l2.22 2.22 1.41-1.41L5.47 3.92z", + fill: "currentColor" })); } diff --git a/icons/es5/Monitor.js b/icons/es5/Monitor.js index 5f15d0ba86..904aa69f04 100644 --- a/icons/es5/Monitor.js +++ b/icons/es5/Monitor.js @@ -7,9 +7,11 @@ function SvgMonitor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 3H2v15h5l-1 1v2h12v-2l-1-1h5V3zm-2 13H4V5h16v11z" + d: "M22 3H2v15h5l-1 1v2h12v-2l-1-1h5V3zm-2 13H4V5h16v11z", + fill: "currentColor" })); } diff --git a/icons/es5/MonitorHeart.js b/icons/es5/MonitorHeart.js index 7146614fc8..eb7ad402da 100644 --- a/icons/es5/MonitorHeart.js +++ b/icons/es5/MonitorHeart.js @@ -7,11 +7,14 @@ function SvgMonitorHeart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.11 12.45L14 10.24l-3.11 6.21c-.16.34-.51.55-.89.55s-.73-.21-.89-.55L7.38 13H2v7h20v-7h-6c-.38 0-.73-.21-.89-.55z" + d: "M15.11 12.45L14 10.24l-3.11 6.21c-.16.34-.51.55-.89.55s-.73-.21-.89-.55L7.38 13H2v7h20v-7h-6c-.38 0-.73-.21-.89-.55z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v7h6c.38 0 .73.21.89.55L10 13.76l3.11-6.21a1 1 0 011.79 0L16.62 11H22V4z" + d: "M22 4H2v7h6c.38 0 .73.21.89.55L10 13.76l3.11-6.21a1 1 0 011.79 0L16.62 11H22V4z", + fill: "currentColor" })); } diff --git a/icons/es5/MonitorWeight.js b/icons/es5/MonitorWeight.js index 40850f0282..128b4d5715 100644 --- a/icons/es5/MonitorWeight.js +++ b/icons/es5/MonitorWeight.js @@ -7,11 +7,14 @@ function SvgMonitorWeight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-6.8 8.2c-3.23 2.43-6.84-1.18-4.4-4.41 3.23-2.42 6.83 1.19 4.4 4.41z" + d: "M21 3H3v18h18V3zm-6.8 8.2c-3.23 2.43-6.84-1.18-4.4-4.41 3.23-2.42 6.83 1.19 4.4 4.41z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M10 8.5h1v1h-1zm1.5 0h1v1h-1zm1.5 0h1v1h-1z" + d: "M10 8.5h1v1h-1zm1.5 0h1v1h-1zm1.5 0h1v1h-1z", + fill: "currentColor" })); } diff --git a/icons/es5/MonochromePhotos.js b/icons/es5/MonochromePhotos.js index 748ccb88bf..fe44cc92f5 100644 --- a/icons/es5/MonochromePhotos.js +++ b/icons/es5/MonochromePhotos.js @@ -7,9 +7,11 @@ function SvgMonochromePhotos(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 5h-5.2L15 3H9L7.2 5H2v16h20V5zm-2 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z" + d: "M22 5h-5.2L15 3H9L7.2 5H2v16h20V5zm-2 14h-8v-1c-2.8 0-5-2.2-5-5s2.2-5 5-5V7h8v12zm-3-6c0-2.8-2.2-5-5-5v1.8c1.8 0 3.2 1.4 3.2 3.2s-1.4 3.2-3.2 3.2V18c2.8 0 5-2.2 5-5zm-8.2 0c0 1.8 1.4 3.2 3.2 3.2V9.8c-1.8 0-3.2 1.4-3.2 3.2z", + fill: "currentColor" })); } diff --git a/icons/es5/Mood.js b/icons/es5/Mood.js index f7f66493f5..e89beeac1b 100644 --- a/icons/es5/Mood.js +++ b/icons/es5/Mood.js @@ -7,9 +7,11 @@ function SvgMood(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/MoodBad.js b/icons/es5/MoodBad.js index 29828860a0..ee42df5d5d 100644 --- a/icons/es5/MoodBad.js +++ b/icons/es5/MoodBad.js @@ -7,9 +7,11 @@ function SvgMoodBad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.33 8 15.5 8 14 8.67 14 9.5s.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.33 8 8.5 8 7 8.67 7 9.5 7.67 11 8.5 11zm3.5 2.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Moped.js b/icons/es5/Moped.js index 87cbd519ce..78dfd12a07 100644 --- a/icons/es5/Moped.js +++ b/icons/es5/Moped.js @@ -7,11 +7,14 @@ function SvgMoped(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 10.35V5h-5v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z" + d: "M19 10.35V5h-5v2h3v2.65L13.52 14H10V9H6c-2.21 0-4 1.79-4 4v3h2c0 1.66 1.34 3 3 3s3-1.34 3-3h4.48L19 10.35zM7 17c-.55 0-1-.45-1-1h2c0 .55-.45 1-1 1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M5 6h5v2H5zm14 7c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm0 4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/More.js b/icons/es5/More.js index f6f0272985..7b15ef54b2 100644 --- a/icons/es5/More.js +++ b/icons/es5/More.js @@ -7,9 +7,11 @@ function SvgMore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 3H6l-6 9 6 9h18V3zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M24 3H6l-6 9 6 9h18V3zM9 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/MoreTime.js b/icons/es5/MoreTime.js index 47ee8ab98f..dac67f12fb 100644 --- a/icons/es5/MoreTime.js +++ b/icons/es5/MoreTime.js @@ -7,13 +7,17 @@ function SvgMoreTime(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z" + d: "M10 8v6l4.7 2.9.8-1.2-4-2.4V8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17.92 12A6.957 6.957 0 0111 20c-3.9 0-7-3.1-7-7s3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9a8.963 8.963 0 008.94-10h-2.02z" + d: "M17.92 12A6.957 6.957 0 0111 20c-3.9 0-7-3.1-7-7s3.1-7 7-7c.7 0 1.37.1 2 .29V4.23c-.64-.15-1.31-.23-2-.23-5 0-9 4-9 9s4 9 9 9a8.963 8.963 0 008.94-10h-2.02z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z" + d: "M20 5V2h-2v3h-3v2h3v3h2V7h3V5z", + fill: "currentColor" })); } diff --git a/icons/es5/Mosque.js b/icons/es5/Mosque.js index 552121dda3..00e0bb736d 100644 --- a/icons/es5/Mosque.js +++ b/icons/es5/Mosque.js @@ -7,11 +7,14 @@ function SvgMosque(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.12 8h11.76m0 0c.07-.29.12-.59.12-.91 0-1.31-.65-2.53-1.74-3.25L12 1 7.74 3.84A3.887 3.887 0 006 7.09c0 .32.05.62.12.91" + d: "M6.12 8h11.76m0 0c.07-.29.12-.59.12-.91 0-1.31-.65-2.53-1.74-3.25L12 1 7.74 3.84A3.887 3.887 0 006 7.09c0 .32.05.62.12.91", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M24 7c0-1.1-2-3-2-3s-2 1.9-2 3c0 .74.4 1.38 1 1.72V13h-2V9H5v4H3V8.72c.6-.34 1-.98 1-1.72 0-1.1-2-3-2-3S0 5.9 0 7c0 .74.4 1.38 1 1.72V21h9v-6h4v6h9V8.72c.6-.34 1-.98 1-1.72z" + d: "M24 7c0-1.1-2-3-2-3s-2 1.9-2 3c0 .74.4 1.38 1 1.72V13h-2V9H5v4H3V8.72c.6-.34 1-.98 1-1.72 0-1.1-2-3-2-3S0 5.9 0 7c0 .74.4 1.38 1 1.72V21h9v-6h4v6h9V8.72c.6-.34 1-.98 1-1.72z", + fill: "currentColor" })); } diff --git a/icons/es5/MotionPhotosAuto.js b/icons/es5/MotionPhotosAuto.js index e2ef79b401..db5d936dca 100644 --- a/icons/es5/MotionPhotosAuto.js +++ b/icons/es5/MotionPhotosAuto.js @@ -7,9 +7,11 @@ function SvgMotionPhotosAuto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.88 7.88l1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zM12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.71-10.5h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z" + d: "M2.88 7.88l1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5.03 3.49h-.07L10.8 12.3h2.39l-1.16-3.31zM12 18c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6zm-.71-10.5h1.43l3.01 8h-1.39l-.72-2.04h-3.23l-.73 2.04H8.28l3.01-8z", + fill: "currentColor" })); } diff --git a/icons/es5/MotionPhotosOff.js b/icons/es5/MotionPhotosOff.js index 7f6c316ed8..8c318f61da 100644 --- a/icons/es5/MotionPhotosOff.js +++ b/icons/es5/MotionPhotosOff.js @@ -7,11 +7,14 @@ function SvgMotionPhotosOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6c-.92 0-1.8.22-2.58.59l7.99 7.99c.37-.78.59-1.66.59-2.58 0-3.31-2.69-6-6-6zM2.81 2.81L1.39 4.22l2.27 2.27A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l1.47 1.47C6.22 10.2 6 11.08 6 12c0 3.31 2.69 6 6 6 .92 0 1.8-.22 2.58-.59l1.47 1.47A7.869 7.869 0 0112 20z" + d: "M12 6c-.92 0-1.8.22-2.58.59l7.99 7.99c.37-.78.59-1.66.59-2.58 0-3.31-2.69-6-6-6zM2.81 2.81L1.39 4.22l2.27 2.27A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42L2.81 2.81zM12 20c-4.41 0-8-3.59-8-8 0-1.48.41-2.86 1.12-4.06l1.47 1.47C6.22 10.2 6 11.08 6 12c0 3.31 2.69 6 6 6 .92 0 1.8-.22 2.58-.59l1.47 1.47A7.869 7.869 0 0112 20z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45A9.782 9.782 0 0022 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z" + d: "M12 4c4.41 0 8 3.59 8 8 0 1.48-.41 2.86-1.12 4.05l1.45 1.45A9.782 9.782 0 0022 12c0-5.52-4.48-10-10-10-2.04 0-3.93.61-5.51 1.66l1.45 1.45C9.14 4.41 10.52 4 12 4z", + fill: "currentColor" })); } diff --git a/icons/es5/MotionPhotosOn.js b/icons/es5/MotionPhotosOn.js index b46c76f5cb..34ec856615 100644 --- a/icons/es5/MotionPhotosOn.js +++ b/icons/es5/MotionPhotosOn.js @@ -7,9 +7,11 @@ function SvgMotionPhotosOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.88 7.88l1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6zm1-6.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5z" + d: "M2.88 7.88l1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6zm1-6.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5z", + fill: "currentColor" })); } diff --git a/icons/es5/MotionPhotosPause.js b/icons/es5/MotionPhotosPause.js index ef3ceb94ae..86726383a3 100644 --- a/icons/es5/MotionPhotosPause.js +++ b/icons/es5/MotionPhotosPause.js @@ -7,9 +7,11 @@ function SvgMotionPhotosPause(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.88 7.88l1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5 .5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 9H9V9h2v6zm4 0h-2V9h2v6z" + d: "M2.88 7.88l1.54 1.54C4.15 10.23 4 11.1 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.9 0-1.77.15-2.58.42L7.89 2.89C9.15 2.32 10.54 2 12 2c5.52 0 10 4.48 10 10s-4.48 10-10 10S2 17.52 2 12c0-1.47.32-2.86.88-4.12zM7 5.5C7 6.33 6.33 7 5.5 7S4 6.33 4 5.5 4.67 4 5.5 4 7 4.67 7 5.5zm5 .5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 9H9V9h2v6zm4 0h-2V9h2v6z", + fill: "currentColor" })); } diff --git a/icons/es5/MotionPhotosPaused.js b/icons/es5/MotionPhotosPaused.js index 69c1491bbd..628623690f 100644 --- a/icons/es5/MotionPhotosPaused.js +++ b/icons/es5/MotionPhotosPaused.js @@ -7,9 +7,11 @@ function SvgMotionPhotosPaused(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12c0 5.52-4.48 10-10 10S2 17.52 2 12c0-1.19.22-2.32.6-3.38l1.88.68C4.17 10.14 4 11.05 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.95 0-1.85.17-2.69.48l-.68-1.89C9.69 2.22 10.82 2 12 2c5.52 0 10 4.48 10 10zM5.5 4C4.67 4 4 4.67 4 5.5S4.67 7 5.5 7 7 6.33 7 5.5 6.33 4 5.5 4zM11 16V8H9v8h2zm4 0V8h-2v8h2z" + d: "M22 12c0 5.52-4.48 10-10 10S2 17.52 2 12c0-1.19.22-2.32.6-3.38l1.88.68C4.17 10.14 4 11.05 4 12c0 4.41 3.59 8 8 8s8-3.59 8-8-3.59-8-8-8c-.95 0-1.85.17-2.69.48l-.68-1.89C9.69 2.22 10.82 2 12 2c5.52 0 10 4.48 10 10zM5.5 4C4.67 4 4 4.67 4 5.5S4.67 7 5.5 7 7 6.33 7 5.5 6.33 4 5.5 4zM11 16V8H9v8h2zm4 0V8h-2v8h2z", + fill: "currentColor" })); } diff --git a/icons/es5/Motorcycle.js b/icons/es5/Motorcycle.js index 0b2780b0cf..632ef437fc 100644 --- a/icons/es5/Motorcycle.js +++ b/icons/es5/Motorcycle.js @@ -7,9 +7,11 @@ function SvgMotorcycle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.44 9.03L15.41 5H11v2h3.59l2 2H5c-2.8 0-5 2.2-5 5s2.2 5 5 5c2.46 0 4.45-1.69 4.9-4h1.65l2.77-2.77c-.21.54-.32 1.14-.32 1.77 0 2.8 2.2 5 5 5s5-2.2 5-5c0-2.65-1.97-4.77-4.56-4.97zM7.82 15C7.4 16.15 6.28 17 5 17c-1.63 0-3-1.37-3-3s1.37-3 3-3c1.28 0 2.4.85 2.82 2H5v2h2.82zM19 17c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + d: "M19.44 9.03L15.41 5H11v2h3.59l2 2H5c-2.8 0-5 2.2-5 5s2.2 5 5 5c2.46 0 4.45-1.69 4.9-4h1.65l2.77-2.77c-.21.54-.32 1.14-.32 1.77 0 2.8 2.2 5 5 5s5-2.2 5-5c0-2.65-1.97-4.77-4.56-4.97zM7.82 15C7.4 16.15 6.28 17 5 17c-1.63 0-3-1.37-3-3s1.37-3 3-3c1.28 0 2.4.85 2.82 2H5v2h2.82zM19 17c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/Mouse.js b/icons/es5/Mouse.js index db24822973..c189b97cdb 100644 --- a/icons/es5/Mouse.js +++ b/icons/es5/Mouse.js @@ -7,9 +7,11 @@ function SvgMouse(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z" + d: "M13 1.07V9h7c0-4.08-3.05-7.44-7-7.93zM4 15c0 4.42 3.58 8 8 8s8-3.58 8-8v-4H4v4zm7-13.93C7.05 1.56 4 4.92 4 9h7V1.07z", + fill: "currentColor" })); } diff --git a/icons/es5/MoveDown.js b/icons/es5/MoveDown.js index 843d0e6142..551bea4804 100644 --- a/icons/es5/MoveDown.js +++ b/icons/es5/MoveDown.js @@ -7,9 +7,11 @@ function SvgMoveDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 11c0 2.45 1.76 4.47 4.08 4.91l-1.49-1.49L7 13l4 4.01L7 21l-1.41-1.41 1.58-1.58v-.06A7.007 7.007 0 011 11c0-3.87 3.13-7 7-7h3v2H8c-2.76 0-5 2.24-5 5zm19 0V4h-9v7h9zm-2-2h-5V6h5v3zm-7 4h9v7h-9z" + d: "M3 11c0 2.45 1.76 4.47 4.08 4.91l-1.49-1.49L7 13l4 4.01L7 21l-1.41-1.41 1.58-1.58v-.06A7.007 7.007 0 011 11c0-3.87 3.13-7 7-7h3v2H8c-2.76 0-5 2.24-5 5zm19 0V4h-9v7h9zm-2-2h-5V6h5v3zm-7 4h9v7h-9z", + fill: "currentColor" })); } diff --git a/icons/es5/MoveToInbox.js b/icons/es5/MoveToInbox.js index 5fee8b0630..8c22d72004 100644 --- a/icons/es5/MoveToInbox.js +++ b/icons/es5/MoveToInbox.js @@ -7,9 +7,11 @@ function SvgMoveToInbox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z" + d: "M21 3H3v18h18V3zm-2 12h-4c0 1.66-1.35 3-3 3s-3-1.34-3-3H4.99V5H19v10zm-3-5h-2V7h-4v3H8l4 4 4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/MoveUp.js b/icons/es5/MoveUp.js index 07ddad96b4..b4f15504c1 100644 --- a/icons/es5/MoveUp.js +++ b/icons/es5/MoveUp.js @@ -7,9 +7,11 @@ function SvgMoveUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 13c0-2.45 1.76-4.47 4.08-4.91l-1.49 1.5L7 11l4-4.01L7 3 5.59 4.41l1.58 1.58v.06A7.007 7.007 0 001 13c0 3.87 3.13 7 7 7h3v-2H8c-2.76 0-5-2.24-5-5zm10 0v7h9v-7h-9zm7 5h-5v-3h5v3zM13 4h9v7h-9z" + d: "M3 13c0-2.45 1.76-4.47 4.08-4.91l-1.49 1.5L7 11l4-4.01L7 3 5.59 4.41l1.58 1.58v.06A7.007 7.007 0 001 13c0 3.87 3.13 7 7 7h3v-2H8c-2.76 0-5-2.24-5-5zm10 0v7h9v-7h-9zm7 5h-5v-3h5v3zM13 4h9v7h-9z", + fill: "currentColor" })); } diff --git a/icons/es5/Movie.js b/icons/es5/Movie.js index 0462e9d871..05776ff3e5 100644 --- a/icons/es5/Movie.js +++ b/icons/es5/Movie.js @@ -7,9 +7,11 @@ function SvgMovie(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" + d: "M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/MovieCreation.js b/icons/es5/MovieCreation.js index 7a49ecca07..29dd0ed05a 100644 --- a/icons/es5/MovieCreation.js +++ b/icons/es5/MovieCreation.js @@ -7,9 +7,11 @@ function SvgMovieCreation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z" + d: "M18 4l2 4h-3l-2-4h-2l2 4h-3l-2-4H8l2 4H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/MovieFilter.js b/icons/es5/MovieFilter.js index b968e7b9e0..6c0e67c7c3 100644 --- a/icons/es5/MovieFilter.js +++ b/icons/es5/MovieFilter.js @@ -7,9 +7,11 @@ function SvgMovieFilter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4l2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z" + d: "M18 4l2 3h-3l-2-3h-2l2 3h-3l-2-3H8l2 3H7L5 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V4h-4zm-6.75 11.25L10 18l-1.25-2.75L6 14l2.75-1.25L10 10l1.25 2.75L14 14l-2.75 1.25zm5.69-3.31L16 14l-.94-2.06L13 11l2.06-.94L16 8l.94 2.06L19 11l-2.06.94z", + fill: "currentColor" })); } diff --git a/icons/es5/Moving.js b/icons/es5/Moving.js index ae5889dce5..d913350600 100644 --- a/icons/es5/Moving.js +++ b/icons/es5/Moving.js @@ -7,9 +7,11 @@ function SvgMoving(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.71 9.71L22 12V6h-6l2.29 2.29-4.17 4.17a.996.996 0 01-1.41 0l-1.17-1.17a3 3 0 00-4.24 0L2 16.59 3.41 18l5.29-5.29a.996.996 0 011.41 0l1.17 1.17a3 3 0 004.24 0l4.19-4.17z" + d: "M19.71 9.71L22 12V6h-6l2.29 2.29-4.17 4.17a.996.996 0 01-1.41 0l-1.17-1.17a3 3 0 00-4.24 0L2 16.59 3.41 18l5.29-5.29a.996.996 0 011.41 0l1.17 1.17a3 3 0 004.24 0l4.19-4.17z", + fill: "currentColor" })); } diff --git a/icons/es5/Mp.js b/icons/es5/Mp.js index 12c7049c9b..590894ad8c 100644 --- a/icons/es5/Mp.js +++ b/icons/es5/Mp.js @@ -7,9 +7,11 @@ function SvgMp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM6 9h6.5v6H11v-4.5h-1v3H8.5v-3h-1V15H6V9zm9 6h-1.5V9H18v4.5h-3V15zm0-3h1.5v-1.5H15V12z" + d: "M21 3H3v18h18V3zM6 9h6.5v6H11v-4.5h-1v3H8.5v-3h-1V15H6V9zm9 6h-1.5V9H18v4.5h-3V15zm0-3h1.5v-1.5H15V12z", + fill: "currentColor" })); } diff --git a/icons/es5/MultilineChart.js b/icons/es5/MultilineChart.js index d0ad9888bf..006979a8b4 100644 --- a/icons/es5/MultilineChart.js +++ b/icons/es5/MultilineChart.js @@ -7,9 +7,11 @@ function SvgMultilineChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z" + d: "M22 6.92l-1.41-1.41-2.85 3.21C15.68 6.4 12.83 5 9.61 5 6.72 5 4.07 6.16 2 8l1.42 1.42C5.12 7.93 7.27 7 9.61 7c2.74 0 5.09 1.26 6.77 3.24l-2.88 3.24-4-4L2 16.99l1.5 1.5 6-6.01 4 4 4.05-4.55c.75 1.35 1.25 2.9 1.44 4.55H21c-.22-2.3-.95-4.39-2.04-6.14L22 6.92z", + fill: "currentColor" })); } diff --git a/icons/es5/MultipleStop.js b/icons/es5/MultipleStop.js index 16ca4d2fe5..c255733f15 100644 --- a/icons/es5/MultipleStop.js +++ b/icons/es5/MultipleStop.js @@ -7,9 +7,11 @@ function SvgMultipleStop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4l4 4-4 4V9h-4V7h4V4zM7 17h4v-2H7v-3l-4 4 4 4v-3zm12-2h-2v2h2v-2zm-4 0h-2v2h2v-2zm-4-8H9v2h2V7zM7 7H5v2h2V7z" + d: "M17 4l4 4-4 4V9h-4V7h4V4zM7 17h4v-2H7v-3l-4 4 4 4v-3zm12-2h-2v2h2v-2zm-4 0h-2v2h2v-2zm-4-8H9v2h2V7zM7 7H5v2h2V7z", + fill: "currentColor" })); } diff --git a/icons/es5/Museum.js b/icons/es5/Museum.js index 971bb506fc..1b370443bd 100644 --- a/icons/es5/Museum.js +++ b/icons/es5/Museum.js @@ -7,9 +7,11 @@ function SvgMuseum(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-6 7h-2v-4l-2 3-2-3v4H8v-7h2l2 3 2-3h2v7z" + d: "M22 11V9L12 2 2 9v2h2v9H2v2h20v-2h-2v-9h2zm-6 7h-2v-4l-2 3-2-3v4H8v-7h2l2 3 2-3h2v7z", + fill: "currentColor" })); } diff --git a/icons/es5/MusicNote.js b/icons/es5/MusicNote.js index dbf98bb807..d69e8c4166 100644 --- a/icons/es5/MusicNote.js +++ b/icons/es5/MusicNote.js @@ -7,9 +7,11 @@ function SvgMusicNote(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z" + d: "M12 3v10.55c-.59-.34-1.27-.55-2-.55-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4V7h4V3h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/MusicOff.js b/icons/es5/MusicOff.js index 68b34f760a..0bdcad2e4f 100644 --- a/icons/es5/MusicOff.js +++ b/icons/es5/MusicOff.js @@ -7,9 +7,11 @@ function SvgMusicOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 9.61V7h4V3h-6v4.61zM4.41 2.86L3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07a4.007 4.007 0 004.59 4.65c1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44 4.41 2.86z" + d: "M14 9.61V7h4V3h-6v4.61zM4.41 2.86L3 4.27l9 9v.28c-.94-.54-2.1-.75-3.33-.32-1.34.48-2.37 1.67-2.61 3.07a4.007 4.007 0 004.59 4.65c1.96-.31 3.35-2.11 3.35-4.1v-1.58L19.73 21l1.41-1.41L12 10.44 4.41 2.86z", + fill: "currentColor" })); } diff --git a/icons/es5/MusicVideo.js b/icons/es5/MusicVideo.js index 8f61162ad5..2d177d92ec 100644 --- a/icons/es5/MusicVideo.js +++ b/icons/es5/MusicVideo.js @@ -7,9 +7,11 @@ function SvgMusicVideo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zm-2 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03A3.003 3.003 0 0111 18c-1.66 0-3-1.34-3-3z" + d: "M23 3H1v18h22V3zm-2 16H3V5h18v14zM8 15c0-1.66 1.34-3 3-3 .35 0 .69.07 1 .18V6h5v2h-3v7.03A3.003 3.003 0 0111 18c-1.66 0-3-1.34-3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/MyLocation.js b/icons/es5/MyLocation.js index 6c9f282078..ba9a2e13cf 100644 --- a/icons/es5/MyLocation.js +++ b/icons/es5/MyLocation.js @@ -7,9 +7,11 @@ function SvgMyLocation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + d: "M12 8c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm8.94 3A8.994 8.994 0 0013 3.06V1h-2v2.06A8.994 8.994 0 003.06 11H1v2h2.06A8.994 8.994 0 0011 20.94V23h2v-2.06A8.994 8.994 0 0020.94 13H23v-2h-2.06zM12 19c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Nat.js b/icons/es5/Nat.js index cde672cf59..0ecc69b761 100644 --- a/icons/es5/Nat.js +++ b/icons/es5/Nat.js @@ -7,11 +7,14 @@ function SvgNat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M6.82 13H11v-2H6.82C6.4 9.84 5.3 9 4 9c-1.66 0-3 1.34-3 3s1.34 3 3 3c1.3 0 2.4-.84 2.82-2zM4 13c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M23 12l-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z" + d: "M23 12l-4-3v2h-4.05c-.5-5.05-4.76-9-9.95-9v2c4.42 0 8 3.58 8 8s-3.58 8-8 8v2c5.19 0 9.45-3.95 9.95-9H19v2l4-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Nature.js b/icons/es5/Nature.js index 487c1964cc..cb1595b164 100644 --- a/icons/es5/Nature.js +++ b/icons/es5/Nature.js @@ -7,9 +7,11 @@ function SvgNature(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 16.12a7 7 0 006.17-6.95c0-3.87-3.13-7-7-7s-7 3.13-7 7A6.98 6.98 0 0011 16.06V20H5v2h14v-2h-6v-3.88z" + d: "M13 16.12a7 7 0 006.17-6.95c0-3.87-3.13-7-7-7s-7 3.13-7 7A6.98 6.98 0 0011 16.06V20H5v2h14v-2h-6v-3.88z", + fill: "currentColor" })); } diff --git a/icons/es5/NaturePeople.js b/icons/es5/NaturePeople.js index 289b6164ba..16555d0297 100644 --- a/icons/es5/NaturePeople.js +++ b/icons/es5/NaturePeople.js @@ -7,9 +7,11 @@ function SvgNaturePeople(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19a6.986 6.986 0 005.83 6.7V20H6v-3h1v-5H2v5h1v5h16v-2h-3v-3.88a7 7 0 006.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z" + d: "M22.17 9.17c0-3.91-3.19-7.06-7.11-7-3.83.06-6.99 3.37-6.88 7.19a6.986 6.986 0 005.83 6.7V20H6v-3h1v-5H2v5h1v5h16v-2h-3v-3.88a7 7 0 006.17-6.95zM4.5 11c.83 0 1.5-.67 1.5-1.5S5.33 8 4.5 8 3 8.67 3 9.5 3.67 11 4.5 11z", + fill: "currentColor" })); } diff --git a/icons/es5/NavigateBefore.js b/icons/es5/NavigateBefore.js index 7c26cb0e2c..967a42beb2 100644 --- a/icons/es5/NavigateBefore.js +++ b/icons/es5/NavigateBefore.js @@ -7,9 +7,11 @@ function SvgNavigateBefore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.61 7.41L14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z" + d: "M15.61 7.41L14.2 6l-6 6 6 6 1.41-1.41L11.03 12l4.58-4.59z", + fill: "currentColor" })); } diff --git a/icons/es5/NavigateNext.js b/icons/es5/NavigateNext.js index 975841f96e..323f5087cf 100644 --- a/icons/es5/NavigateNext.js +++ b/icons/es5/NavigateNext.js @@ -7,9 +7,11 @@ function SvgNavigateNext(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.02 6L8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z" + d: "M10.02 6L8.61 7.41 13.19 12l-4.58 4.59L10.02 18l6-6-6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/Navigation.js b/icons/es5/Navigation.js index bb32e14464..1d0b03cda2 100644 --- a/icons/es5/Navigation.js +++ b/icons/es5/Navigation.js @@ -7,9 +7,11 @@ function SvgNavigation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z" + d: "M12 2L4.5 20.29l.71.71L12 18l6.79 3 .71-.71L12 2z", + fill: "currentColor" })); } diff --git a/icons/es5/NearMe.js b/icons/es5/NearMe.js index ae09680a5e..d44a4ef159 100644 --- a/icons/es5/NearMe.js +++ b/icons/es5/NearMe.js @@ -7,9 +7,11 @@ function SvgNearMe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z" + d: "M21 3L3 10.53v.98l6.84 2.65L12.48 21h.98L21 3z", + fill: "currentColor" })); } diff --git a/icons/es5/NearMeDisabled.js b/icons/es5/NearMeDisabled.js index 98c3276399..23b82e552c 100644 --- a/icons/es5/NearMeDisabled.js +++ b/icons/es5/NearMeDisabled.js @@ -7,9 +7,11 @@ function SvgNearMeDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6.34L21 3l-3.34 9L12 6.34zm10.61 13.44L4.22 1.39 2.81 2.81l5.07 5.07L3 9.69v1.41l7.07 2.83L12.9 21h1.41l1.81-4.88 5.07 5.07 1.42-1.41z" + d: "M12 6.34L21 3l-3.34 9L12 6.34zm10.61 13.44L4.22 1.39 2.81 2.81l5.07 5.07L3 9.69v1.41l7.07 2.83L12.9 21h1.41l1.81-4.88 5.07 5.07 1.42-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/NearbyError.js b/icons/es5/NearbyError.js index 2ce887975e..ed586deb52 100644 --- a/icons/es5/NearbyError.js +++ b/icons/es5/NearbyError.js @@ -7,9 +7,11 @@ function SvgNearbyError(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7.58L16.42 12 12 16.42 7.58 12 12 7.58zm0 11.62L4.8 12 12 4.8l6 6V7.17l-5.99-5.99L1.18 12.01l10.83 10.83L18 16.83V13.2l-6 6zm8 .8h2v2h-2v-2zm2-10h-2v8h2v-8" + d: "M12 7.58L16.42 12 12 16.42 7.58 12 12 7.58zm0 11.62L4.8 12 12 4.8l6 6V7.17l-5.99-5.99L1.18 12.01l10.83 10.83L18 16.83V13.2l-6 6zm8 .8h2v2h-2v-2zm2-10h-2v8h2v-8", + fill: "currentColor" })); } diff --git a/icons/es5/NearbyOff.js b/icons/es5/NearbyOff.js index eb939e18c2..affe462acb 100644 --- a/icons/es5/NearbyOff.js +++ b/icons/es5/NearbyOff.js @@ -7,9 +7,11 @@ function SvgNearbyOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22.82 12.01L18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l3.99-3.99 10.83 10.83zm-1.63 9.18l-1.41 1.41L16 18.83l-3.99 3.99L1.18 11.99 5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17l-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12L12 7.58l-.8.8 4.42 4.42.8-.8z" + d: "M22.82 12.01L18.83 16l-1.81-1.81L19.2 12 12 4.8 9.81 6.99 8 5.17l3.99-3.99 10.83 10.83zm-1.63 9.18l-1.41 1.41L16 18.83l-3.99 3.99L1.18 11.99 5.17 8 1.39 4.22 2.8 2.81l18.39 18.38zm-7-4.17l-1.39-1.39-.8.8L7.58 12l.8-.8-1.4-1.39L4.8 12l7.2 7.2 2.19-2.18zM16.42 12L12 7.58l-.8.8 4.42 4.42.8-.8z", + fill: "currentColor" })); } diff --git a/icons/es5/NestCamWiredStand.js b/icons/es5/NestCamWiredStand.js index e71ce0d1f5..1bccf19a00 100644 --- a/icons/es5/NestCamWiredStand.js +++ b/icons/es5/NestCamWiredStand.js @@ -7,9 +7,11 @@ function SvgNestCamWiredStand(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 .85l-6.02.55C8.95 1.7 6.37 4 6.04 7.03a6.362 6.362 0 005.68 7.04l1.9.19-.56.85c-.88-.19-1.83-.18-2.85.25-2 .85-3.21 2.89-3.21 5.05V23h10v-3c0-1.67-.83-3.15-2.09-4.06l.97-1.45 2.12.23V.85z" + d: "M18 .85l-6.02.55C8.95 1.7 6.37 4 6.04 7.03a6.362 6.362 0 005.68 7.04l1.9.19-.56.85c-.88-.19-1.83-.18-2.85.25-2 .85-3.21 2.89-3.21 5.05V23h10v-3c0-1.67-.83-3.15-2.09-4.06l.97-1.45 2.12.23V.85z", + fill: "currentColor" })); } diff --git a/icons/es5/NetworkCell.js b/icons/es5/NetworkCell.js index e4717c0128..98dab68602 100644 --- a/icons/es5/NetworkCell.js +++ b/icons/es5/NetworkCell.js @@ -7,9 +7,11 @@ function SvgNetworkCell(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z" + d: "M2 22h20V2L2 22zm18-2h-3V9.83l3-3V20z", + fill: "currentColor" })); } diff --git a/icons/es5/NetworkCheck.js b/icons/es5/NetworkCheck.js index 0fba880f9c..f22db7d7b7 100644 --- a/icons/es5/NetworkCheck.js +++ b/icons/es5/NetworkCheck.js @@ -7,9 +7,11 @@ function SvgNetworkCheck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2a15.367 15.367 0 00-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2a7.1 7.1 0 014.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z" + d: "M15.9 5c-.17 0-.32.09-.41.23l-.07.15-5.18 11.65c-.16.29-.26.61-.26.96 0 1.11.9 2.01 2.01 2.01.96 0 1.77-.68 1.96-1.59l.01-.03L16.4 5.5c0-.28-.22-.5-.5-.5zM1 9l2 2c2.88-2.88 6.79-4.08 10.53-3.62l1.19-2.68C9.89 3.84 4.74 5.27 1 9zm20 2l2-2a15.367 15.367 0 00-5.59-3.57l-.53 2.82c1.5.62 2.9 1.53 4.12 2.75zm-4 4l2-2c-.8-.8-1.7-1.42-2.66-1.89l-.55 2.92c.42.27.83.59 1.21.97zM5 13l2 2a7.1 7.1 0 014.03-2l1.28-2.88c-2.63-.08-5.3.87-7.31 2.88z", + fill: "currentColor" })); } diff --git a/icons/es5/NetworkLocked.js b/icons/es5/NetworkLocked.js index a8c0996788..164924c5c1 100644 --- a/icons/es5/NetworkLocked.js +++ b/icons/es5/NetworkLocked.js @@ -7,9 +7,11 @@ function SvgNetworkLocked(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 16v-.36c0-1.31-.94-2.5-2.24-2.63A2.5 2.5 0 0017 15.5v.5h-1v6h7v-6h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zm-1.5-5c.15 0 .3.01.46.02.01 0 .03.01.04.01V1L1 20h13v-6h1.26c.22-.63.58-1.2 1.06-1.68.85-.85 1.98-1.32 3.18-1.32z" + d: "M22 16v-.36c0-1.31-.94-2.5-2.24-2.63A2.5 2.5 0 0017 15.5v.5h-1v6h7v-6h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v.5zm-1.5-5c.15 0 .3.01.46.02.01 0 .03.01.04.01V1L1 20h13v-6h1.26c.22-.63.58-1.2 1.06-1.68.85-.85 1.98-1.32 3.18-1.32z", + fill: "currentColor" })); } diff --git a/icons/es5/NetworkPing.js b/icons/es5/NetworkPing.js index f1e7b9d016..509b410110 100644 --- a/icons/es5/NetworkPing.js +++ b/icons/es5/NetworkPing.js @@ -7,9 +7,11 @@ function SvgNetworkPing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 14.67L3.41 6.09 2 7.5l8.5 8.5H4v2h16v-2h-6.5l5.15-5.15A2.5 2.5 0 1019.5 6 2.5 2.5 0 0017 8.5c0 .35.07.67.2.97l-5.2 5.2z" + d: "M12 14.67L3.41 6.09 2 7.5l8.5 8.5H4v2h16v-2h-6.5l5.15-5.15A2.5 2.5 0 1019.5 6 2.5 2.5 0 0017 8.5c0 .35.07.67.2.97l-5.2 5.2z", + fill: "currentColor" })); } diff --git a/icons/es5/NetworkWifi.js b/icons/es5/NetworkWifi.js index 9803198917..bf5f1ebc72 100644 --- a/icons/es5/NetworkWifi.js +++ b/icons/es5/NetworkWifi.js @@ -7,9 +7,11 @@ function SvgNetworkWifi(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43A12.99 12.99 0 0012 8z" + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zm0 4c-2.86 0-5.5.94-7.65 2.51L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-1.43 1.43A12.99 12.99 0 0012 8z", + fill: "currentColor" })); } diff --git a/icons/es5/NetworkWifi1Bar.js b/icons/es5/NetworkWifi1Bar.js index 8b63c8276e..09e6e13622 100644 --- a/icons/es5/NetworkWifi1Bar.js +++ b/icons/es5/NetworkWifi1Bar.js @@ -7,9 +7,11 @@ function SvgNetworkWifi1Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zm3.32 10.84C14.34 14.3 13.2 14 12 14c-1.2 0-2.34.3-3.32.84L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-5.76 5.77z" + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zm3.32 10.84C14.34 14.3 13.2 14 12 14c-1.2 0-2.34.3-3.32.84L2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-5.76 5.77z", + fill: "currentColor" })); } diff --git a/icons/es5/NetworkWifi2Bar.js b/icons/es5/NetworkWifi2Bar.js index e92b9ad6bb..2e6b30768a 100644 --- a/icons/es5/NetworkWifi2Bar.js +++ b/icons/es5/NetworkWifi2Bar.js @@ -7,9 +7,11 @@ function SvgNetworkWifi2Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zm4.78 9.38A8.853 8.853 0 0012 12c-1.76 0-3.4.5-4.78 1.38l-4.3-4.3C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-4.3 4.31z" + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zm4.78 9.38A8.853 8.853 0 0012 12c-1.76 0-3.4.5-4.78 1.38l-4.3-4.3C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-4.3 4.31z", + fill: "currentColor" })); } diff --git a/icons/es5/NetworkWifi3Bar.js b/icons/es5/NetworkWifi3Bar.js index 1598a94998..f3976025c1 100644 --- a/icons/es5/NetworkWifi3Bar.js +++ b/icons/es5/NetworkWifi3Bar.js @@ -7,9 +7,11 @@ function SvgNetworkWifi3Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-2.85 2.86A10.945 10.945 0 0012 10c-2.31 0-4.46.71-6.23 1.93L2.92 9.07z" + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07l-2.85 2.86A10.945 10.945 0 0012 10c-2.31 0-4.46.71-6.23 1.93L2.92 9.07z", + fill: "currentColor" })); } diff --git a/icons/es5/NewLabel.js b/icons/es5/NewLabel.js index f1a79d8f7c..8495ebaeb3 100644 --- a/icons/es5/NewLabel.js +++ b/icons/es5/NewLabel.js @@ -7,9 +7,11 @@ function SvgNewLabel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 12l-4.97 7H12v-6H9v-3H3V5h13.03L21 12zm-11 3H7v-3H5v3H2v2h3v3h2v-3h3v-2z" + d: "M21 12l-4.97 7H12v-6H9v-3H3V5h13.03L21 12zm-11 3H7v-3H5v3H2v2h3v3h2v-3h3v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/NewReleases.js b/icons/es5/NewReleases.js index c66eb0e5e8..ad6534b444 100644 --- a/icons/es5/NewReleases.js +++ b/icons/es5/NewReleases.js @@ -7,9 +7,11 @@ function SvgNewReleases(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z" + d: "M23 12l-2.44-2.78.34-3.68-3.61-.82-1.89-3.18L12 3 8.6 1.54 6.71 4.72l-3.61.81.34 3.68L1 12l2.44 2.78-.34 3.69 3.61.82 1.89 3.18L12 21l3.4 1.46 1.89-3.18 3.61-.82-.34-3.68L23 12zm-10 5h-2v-2h2v2zm0-4h-2V7h2v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Newspaper.js b/icons/es5/Newspaper.js index eca1bde19b..1df44ed779 100644 --- a/icons/es5/Newspaper.js +++ b/icons/es5/Newspaper.js @@ -7,9 +7,11 @@ function SvgNewspaper(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 3l-1.67 1.67L18.67 3 17 4.67 15.33 3l-1.66 1.67L12 3l-1.67 1.67L8.67 3 7 4.67 5.33 3 3.67 4.67 2 3v18h20V3zM11 19H4v-6h7v6zm9 0h-7v-2h7v2zm0-4h-7v-2h7v2zm0-4H4V8h16v3z" + d: "M22 3l-1.67 1.67L18.67 3 17 4.67 15.33 3l-1.66 1.67L12 3l-1.67 1.67L8.67 3 7 4.67 5.33 3 3.67 4.67 2 3v18h20V3zM11 19H4v-6h7v6zm9 0h-7v-2h7v2zm0-4h-7v-2h7v2zm0-4H4V8h16v3z", + fill: "currentColor" })); } diff --git a/icons/es5/NextPlan.js b/icons/es5/NextPlan.js index ad06ae4d4d..e59703b250 100644 --- a/icons/es5/NextPlan.js +++ b/icons/es5/NextPlan.js @@ -7,9 +7,11 @@ function SvgNextPlan(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 11.97h-5l2.26-2.26a4.94 4.94 0 00-3.76-1.74c-2.37 0-4.35 1.66-4.86 3.88l-.96-.32c.64-2.62 3-4.56 5.82-4.56 1.78 0 3.37.79 4.47 2.03L18 8.97v5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 11.97h-5l2.26-2.26a4.94 4.94 0 00-3.76-1.74c-2.37 0-4.35 1.66-4.86 3.88l-.96-.32c.64-2.62 3-4.56 5.82-4.56 1.78 0 3.37.79 4.47 2.03L18 8.97v5z", + fill: "currentColor" })); } diff --git a/icons/es5/NextWeek.js b/icons/es5/NextWeek.js index d526d108ad..c0210e4c29 100644 --- a/icons/es5/NextWeek.js +++ b/icons/es5/NextWeek.js @@ -7,9 +7,11 @@ function SvgNextWeek(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7h-6V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H2v15h20V7zM10 5h4v2h-4V5zm1 13.5l-1-1 3-3-3-3 1-1 4 4-4 4z" + d: "M22 7h-6V5c0-.55-.22-1.05-.59-1.41C15.05 3.22 14.55 3 14 3h-4c-1.1 0-2 .9-2 2v2H2v15h20V7zM10 5h4v2h-4V5zm1 13.5l-1-1 3-3-3-3 1-1 4 4-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Nfc.js b/icons/es5/Nfc.js index ffb0d5abb4..95c3cd2581 100644 --- a/icons/es5/Nfc.js +++ b/icons/es5/Nfc.js @@ -7,9 +7,11 @@ function SvgNfc(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zm-2 18H4V4h16v16zM18 6h-7v4.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z" + d: "M22 2H2v20h20V2zm-2 18H4V4h16v16zM18 6h-7v4.28c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V8h3v8H8V8h2V6H6v12h12V6z", + fill: "currentColor" })); } diff --git a/icons/es5/NightShelter.js b/icons/es5/NightShelter.js index a760302f35..fe5ccea0ae 100644 --- a/icons/es5/NightShelter.js +++ b/icons/es5/NightShelter.js @@ -7,9 +7,11 @@ function SvgNightShelter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L4 9v12h16V9l-8-6zm-2.25 9.5a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5zM17 18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H17v6z" + d: "M12 3L4 9v12h16V9l-8-6zm-2.25 9.5a1.25 1.25 0 110 2.5 1.25 1.25 0 010-2.5zM17 18h-1v-1.5H8V18H7v-7h1v4.5h3.5V12H17v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Nightlife.js b/icons/es5/Nightlife.js index 401208cf37..75d1655d97 100644 --- a/icons/es5/Nightlife.js +++ b/icons/es5/Nightlife.js @@ -7,9 +7,11 @@ function SvgNightlife(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4l1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3a3 3 0 011 .17V5z" + d: "M1 5h14l-6 9v4h2v2H5v-2h2v-4L1 5zm9.1 4l1.4-2H4.49l1.4 2h4.21zM17 5h5v3h-3v9c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3a3 3 0 011 .17V5z", + fill: "currentColor" })); } diff --git a/icons/es5/Nightlight.js b/icons/es5/Nightlight.js index eb7e020ac3..08f7d40cba 100644 --- a/icons/es5/Nightlight.js +++ b/icons/es5/Nightlight.js @@ -7,9 +7,11 @@ function SvgNightlight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2c1.82 0 3.53.5 5 1.35-2.99 1.73-5 4.95-5 8.65s2.01 6.92 5 8.65A9.973 9.973 0 0114 22C8.48 22 4 17.52 4 12S8.48 2 14 2z" + d: "M14 2c1.82 0 3.53.5 5 1.35-2.99 1.73-5 4.95-5 8.65s2.01 6.92 5 8.65A9.973 9.973 0 0114 22C8.48 22 4 17.52 4 12S8.48 2 14 2z", + fill: "currentColor" })); } diff --git a/icons/es5/NightlightRound.js b/icons/es5/NightlightRound.js index 8b85334738..7d2a7697d1 100644 --- a/icons/es5/NightlightRound.js +++ b/icons/es5/NightlightRound.js @@ -7,9 +7,11 @@ function SvgNightlightRound(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 22c1.05 0 2.05-.16 3-.46-4.06-1.27-7-5.06-7-9.54s2.94-8.27 7-9.54c-.95-.3-1.95-.46-3-.46-5.52 0-10 4.48-10 10s4.48 10 10 10z" + d: "M15.5 22c1.05 0 2.05-.16 3-.46-4.06-1.27-7-5.06-7-9.54s2.94-8.27 7-9.54c-.95-.3-1.95-.46-3-.46-5.52 0-10 4.48-10 10s4.48 10 10 10z", + fill: "currentColor" })); } diff --git a/icons/es5/NightsStay.js b/icons/es5/NightsStay.js index a3672d760f..196b117565 100644 --- a/icons/es5/NightsStay.js +++ b/icons/es5/NightsStay.js @@ -7,11 +7,14 @@ function SvgNightsStay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15A4.01 4.01 0 0111 18c0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z" + d: "M11.1 12.08c-2.33-4.51-.5-8.48.53-10.07C6.27 2.2 1.98 6.59 1.98 12c0 .14.02.28.02.42.62-.27 1.29-.42 2-.42 1.66 0 3.18.83 4.1 2.15A4.01 4.01 0 0111 18c0 1.52-.87 2.83-2.12 3.51.98.32 2.03.5 3.11.5 3.5 0 6.58-1.8 8.37-4.52-2.36.23-6.98-.97-9.26-5.41z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z" + d: "M7 16h-.18C6.4 14.84 5.3 14 4 14c-1.66 0-3 1.34-3 3s1.34 3 3 3h3c1.1 0 2-.9 2-2s-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/NoAccounts.js b/icons/es5/NoAccounts.js index b2fc29222f..705603ffe8 100644 --- a/icons/es5/NoAccounts.js +++ b/icons/es5/NoAccounts.js @@ -7,11 +7,14 @@ function SvgNoAccounts(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z" + d: "M15.18 10.94c.2-.44.32-.92.32-1.44C15.5 7.57 13.93 6 12 6c-.52 0-1 .12-1.44.32l4.62 4.62z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13c-2.32 0-4.45.8-6.14 2.12A7.957 7.957 0 014 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86a3.47 3.47 0 002.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15zm6.31 1.9L7.1 5.69A7.902 7.902 0 0112 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 13c-2.32 0-4.45.8-6.14 2.12A7.957 7.957 0 014 12c0-1.85.63-3.55 1.69-4.9l2.86 2.86a3.47 3.47 0 002.99 2.99l2.2 2.2c-.57-.1-1.15-.15-1.74-.15zm6.31 1.9L7.1 5.69A7.902 7.902 0 0112 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.54-1.69 4.9z", + fill: "currentColor" })); } diff --git a/icons/es5/NoAdultContent.js b/icons/es5/NoAdultContent.js index c0284f2f90..87d6cd9bb2 100644 --- a/icons/es5/NoAdultContent.js +++ b/icons/es5/NoAdultContent.js @@ -7,11 +7,14 @@ function SvgNoAdultContent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-1.85.63-3.54 1.69-4.9L7.59 9h2.83L7.1 5.69A7.924 7.924 0 0112 4c4.41 0 8 3.59 8 8 0 1.85-.63 3.54-1.69 4.9l-1.9-1.9h-2.83l3.31 3.31A7.874 7.874 0 0112 20c-4.41 0-8-3.59-8-8z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-1.85.63-3.54 1.69-4.9L7.59 9h2.83L7.1 5.69A7.924 7.924 0 0112 4c4.41 0 8 3.59 8 8 0 1.85-.63 3.54-1.69 4.9l-1.9-1.9h-2.83l3.31 3.31A7.874 7.874 0 0112 20c-4.41 0-8-3.59-8-8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14.25 14l-1.5-2 1.5-2h-1.5L12 11l-.75-1h-1.5l1.5 2-1.5 2h1.5l.75-1 .75 1zM8 10l-.75 1-.75-1H5l1.5 2L5 14h1.5l.75-1L8 14h1.5L8 12l1.5-2zm8 4l.75-1 .75 1H19l-1.5-2 1.5-2h-1.5l-.75 1-.75-1h-1.5l1.5 2-1.5 2z" + d: "M14.25 14l-1.5-2 1.5-2h-1.5L12 11l-.75-1h-1.5l1.5 2-1.5 2h1.5l.75-1 .75 1zM8 10l-.75 1-.75-1H5l1.5 2L5 14h1.5l.75-1L8 14h1.5L8 12l1.5-2zm8 4l.75-1 .75 1H19l-1.5-2 1.5-2h-1.5l-.75 1-.75-1h-1.5l1.5 2-1.5 2z", + fill: "currentColor" })); } diff --git a/icons/es5/NoBackpack.js b/icons/es5/NoBackpack.js index 8bded77f9e..ff928b60a7 100644 --- a/icons/es5/NoBackpack.js +++ b/icons/es5/NoBackpack.js @@ -7,9 +7,11 @@ function SvgNoBackpack(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.19 21.19L2.81 2.81 1.39 4.22l2.76 2.76C4.06 7.31 4 7.64 4 8v14h15.17l.61.61 1.41-1.42zM6 14v-2h3.17l2 2H6zm.98-9.85c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V12h-3.17L6.98 4.15z" + d: "M21.19 21.19L2.81 2.81 1.39 4.22l2.76 2.76C4.06 7.31 4 7.64 4 8v14h15.17l.61.61 1.41-1.42zM6 14v-2h3.17l2 2H6zm.98-9.85c.01 0 .01-.01.02-.01V2h3v2h4V2h3v2.14c1.72.45 3 2 3 3.86v9.17l-2-2V12h-3.17L6.98 4.15z", + fill: "currentColor" })); } diff --git a/icons/es5/NoCell.js b/icons/es5/NoCell.js index 1c0c163f0d..9843846d5d 100644 --- a/icons/es5/NoCell.js +++ b/icons/es5/NoCell.js @@ -7,9 +7,11 @@ function SvgNoCell(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.19 21.19L2.81 2.81 1.39 4.22 5 7.83V23h14v-1.17l.78.78 1.41-1.42zM7 18V9.83L15.17 18H7zM8.83 6L5 2.17V1h14v15.17l-2-2V6H8.83z" + d: "M21.19 21.19L2.81 2.81 1.39 4.22 5 7.83V23h14v-1.17l.78.78 1.41-1.42zM7 18V9.83L15.17 18H7zM8.83 6L5 2.17V1h14v15.17l-2-2V6H8.83z", + fill: "currentColor" })); } diff --git a/icons/es5/NoCrash.js b/icons/es5/NoCrash.js index 42af6bd3a9..df3c0990a3 100644 --- a/icons/es5/NoCrash.js +++ b/icons/es5/NoCrash.js @@ -7,9 +7,11 @@ function SvgNoCrash(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.57 8H5.43L3 15v9h3v-2h12v2h3v-9l-2.43-7zM6.85 10h10.29l1.04 3H5.81l1.04-3zM6 17.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S8.33 19 7.5 19 6 18.33 6 17.5zm9 0c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM12 6.36L9.17 3.54l1.41-1.41L12 3.54 15.54 0l1.41 1.41L12 6.36z" + d: "M18.57 8H5.43L3 15v9h3v-2h12v2h3v-9l-2.43-7zM6.85 10h10.29l1.04 3H5.81l1.04-3zM6 17.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S8.33 19 7.5 19 6 18.33 6 17.5zm9 0c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5zM12 6.36L9.17 3.54l1.41-1.41L12 3.54 15.54 0l1.41 1.41L12 6.36z", + fill: "currentColor" })); } diff --git a/icons/es5/NoDrinks.js b/icons/es5/NoDrinks.js index 96d3396f6c..6ffebb3bef 100644 --- a/icons/es5/NoDrinks.js +++ b/icons/es5/NoDrinks.js @@ -7,9 +7,11 @@ function SvgNoDrinks(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.19 21.19L2.81 2.81 1.39 4.22l8.23 8.23L11 14v5H6v2h12v-.17l1.78 1.78 1.41-1.42zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2H21v2l-6.2 6.97L9.83 7h6.74l1.78-2H7.83z" + d: "M21.19 21.19L2.81 2.81 1.39 4.22l8.23 8.23L11 14v5H6v2h12v-.17l1.78 1.78 1.41-1.42zM13 19v-3.17L16.17 19H13zM7.83 5l-2-2H21v2l-6.2 6.97L9.83 7h6.74l1.78-2H7.83z", + fill: "currentColor" })); } diff --git a/icons/es5/NoEncryption.js b/icons/es5/NoEncryption.js index c4a445a1e7..d3e118e04a 100644 --- a/icons/es5/NoEncryption.js +++ b/icons/es5/NoEncryption.js @@ -7,9 +7,11 @@ function SvgNoEncryption(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81L3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z" + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81L3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/NoEncryptionGmailerrorred.js b/icons/es5/NoEncryptionGmailerrorred.js index 2de53d899c..ec85434e41 100644 --- a/icons/es5/NoEncryptionGmailerrorred.js +++ b/icons/es5/NoEncryptionGmailerrorred.js @@ -7,9 +7,11 @@ function SvgNoEncryptionGmailerrorred(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81L3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z" + d: "M8.9 6c0-1.71 1.39-3.1 3.1-3.1s3.1 1.39 3.1 3.1v2h-4.66L20 17.56V8h-3V6.22c0-2.61-1.91-4.94-4.51-5.19-2.53-.25-4.72 1.41-5.32 3.7L8.9 6.46V6zM4.41 4.81L3 6.22 4.78 8H4v14h14.78l1 1 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/NoFlash.js b/icons/es5/NoFlash.js index 92b3260740..4ea4f61bce 100644 --- a/icons/es5/NoFlash.js +++ b/icons/es5/NoFlash.js @@ -7,9 +7,11 @@ function SvgNoFlash(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.45 2.45L1.04 3.87l5.3 5.3-.2.23H2V22h16v-1.17l2.13 2.13 1.41-1.41L2.45 2.45zM10 20c-2.21 0-4-1.79-4-4 0-1.95 1.4-3.57 3.25-3.92l1.57 1.57c-.26-.09-.53-.15-.82-.15a2.5 2.5 0 000 5 2.5 2.5 0 002.5-2.5c0-.29-.06-.56-.15-.82l1.57 1.57A3.993 3.993 0 0110 20zm8-4.83L10.83 8h1.75l1.28 1.4H18v5.77zm2.4-9.57H22L19 11V7h-1V2h4l-1.6 3.6z" + d: "M2.45 2.45L1.04 3.87l5.3 5.3-.2.23H2V22h16v-1.17l2.13 2.13 1.41-1.41L2.45 2.45zM10 20c-2.21 0-4-1.79-4-4 0-1.95 1.4-3.57 3.25-3.92l1.57 1.57c-.26-.09-.53-.15-.82-.15a2.5 2.5 0 000 5 2.5 2.5 0 002.5-2.5c0-.29-.06-.56-.15-.82l1.57 1.57A3.993 3.993 0 0110 20zm8-4.83L10.83 8h1.75l1.28 1.4H18v5.77zm2.4-9.57H22L19 11V7h-1V2h4l-1.6 3.6z", + fill: "currentColor" })); } diff --git a/icons/es5/NoFood.js b/icons/es5/NoFood.js index ca641bd7f5..512326a85f 100644 --- a/icons/es5/NoFood.js +++ b/icons/es5/NoFood.js @@ -7,9 +7,11 @@ function SvgNoFood(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.35 8.52L11 5h5V1h2v4h5l-1.38 13.79L18 15.17l-6.65-6.65zM21.9 21.9L2.1 2.1.69 3.51l5.7 5.7C3.46 9.83 1 11.76 1 15h11.17l2 2H1v2h15v-.17l4.49 4.49 1.41-1.42zM1 23h15v-2H1v2z" + d: "M11.35 8.52L11 5h5V1h2v4h5l-1.38 13.79L18 15.17l-6.65-6.65zM21.9 21.9L2.1 2.1.69 3.51l5.7 5.7C3.46 9.83 1 11.76 1 15h11.17l2 2H1v2h15v-.17l4.49 4.49 1.41-1.42zM1 23h15v-2H1v2z", + fill: "currentColor" })); } diff --git a/icons/es5/NoLuggage.js b/icons/es5/NoLuggage.js index ceca673c72..c603d84d0f 100644 --- a/icons/es5/NoLuggage.js +++ b/icons/es5/NoLuggage.js @@ -7,9 +7,11 @@ function SvgNoLuggage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.75 9v.92l1.75 1.75V9H16v4.17l3 3V6h-4V2H9v4h-.17l3 3h.92zM10.5 3.5h3V6h-3V3.5zm10.69 17.69L2.81 2.81 1.39 4.22 5 7.83V21h2v1h2v-1h6v1h2v-1h1.17l1.61 1.61 1.41-1.42zM8 18v-7.17l1.5 1.5V18H8zm3.25 0v-3.92l1.5 1.5V18h-1.5z" + d: "M12.75 9v.92l1.75 1.75V9H16v4.17l3 3V6h-4V2H9v4h-.17l3 3h.92zM10.5 3.5h3V6h-3V3.5zm10.69 17.69L2.81 2.81 1.39 4.22 5 7.83V21h2v1h2v-1h6v1h2v-1h1.17l1.61 1.61 1.41-1.42zM8 18v-7.17l1.5 1.5V18H8zm3.25 0v-3.92l1.5 1.5V18h-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/NoMeals.js b/icons/es5/NoMeals.js index 0a3b6ca993..04f6f60aa1 100644 --- a/icons/es5/NoMeals.js +++ b/icons/es5/NoMeals.js @@ -7,9 +7,11 @@ function SvgNoMeals(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9L5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z" + d: "M16 14V6c0-1.76 2.24-4 5-4v16.17l-2-2V14h-3zm4.49 9.31L10.02 12.85c-.33.09-.66.15-1.02.15v9H7v-9c-2.21 0-4-1.79-4-4V5.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM6.17 9L5 7.83V9h1.17zM9 2H7v2.17l2 2V2zm4 7V2h-2v6.17l1.85 1.85c.09-.33.15-.66.15-1.02z", + fill: "currentColor" })); } diff --git a/icons/es5/NoMeetingRoom.js b/icons/es5/NoMeetingRoom.js index e3567502ad..0628e010a2 100644 --- a/icons/es5/NoMeetingRoom.js +++ b/icons/es5/NoMeetingRoom.js @@ -7,9 +7,11 @@ function SvgNoMeetingRoom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 6h3v7.88l2 2V4h-5V3H6.12L14 10.88zm-2 5.71V13h-2v-2h1.29L2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41z" + d: "M14 6h3v7.88l2 2V4h-5V3H6.12L14 10.88zm-2 5.71V13h-2v-2h1.29L2.41 2.13 1 3.54l4 4V19H3v2h11v-4.46L20.46 23l1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/NoPhotography.js b/icons/es5/NoPhotography.js index f4fd0964a5..5aaa333f43 100644 --- a/icons/es5/NoPhotography.js +++ b/icons/es5/NoPhotography.js @@ -7,9 +7,11 @@ function SvgNoPhotography(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.94 8.12L7.48 4.66 9 3h6l1.83 2H22v14.17l-5.12-5.12c.08-.34.12-.69.12-1.05 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zm9.55 15.19L18.17 21H2V5h.17L.69 3.51 2.1 2.1 21 21l.9.9-1.41 1.41zm-6-5.99l-1.5-1.5c-.32.1-.64.18-.99.18-1.66 0-3-1.34-3-3 0-.35.08-.67.19-.98l-1.5-1.5A4.74 4.74 0 007 13c0 2.76 2.24 5 5 5 .91 0 1.76-.25 2.49-.68z" + d: "M10.94 8.12L7.48 4.66 9 3h6l1.83 2H22v14.17l-5.12-5.12c.08-.34.12-.69.12-1.05 0-2.76-2.24-5-5-5-.36 0-.71.04-1.06.12zm9.55 15.19L18.17 21H2V5h.17L.69 3.51 2.1 2.1 21 21l.9.9-1.41 1.41zm-6-5.99l-1.5-1.5c-.32.1-.64.18-.99.18-1.66 0-3-1.34-3-3 0-.35.08-.67.19-.98l-1.5-1.5A4.74 4.74 0 007 13c0 2.76 2.24 5 5 5 .91 0 1.76-.25 2.49-.68z", + fill: "currentColor" })); } diff --git a/icons/es5/NoSim.js b/icons/es5/NoSim.js index 080268457b..dc44748bfa 100644 --- a/icons/es5/NoSim.js +++ b/icons/es5/NoSim.js @@ -7,9 +7,11 @@ function SvgNoSim(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.79 3.74L2.38 5.15l2.74 2.74-.12.12V21h13.27l1.58 1.62 1.41-1.41zM19 16.11V3h-8.99L7.95 5.06z" + d: "M3.79 3.74L2.38 5.15l2.74 2.74-.12.12V21h13.27l1.58 1.62 1.41-1.41zM19 16.11V3h-8.99L7.95 5.06z", + fill: "currentColor" })); } diff --git a/icons/es5/NoStroller.js b/icons/es5/NoStroller.js index c27269df6e..65c8d991cb 100644 --- a/icons/es5/NoStroller.js +++ b/icons/es5/NoStroller.js @@ -7,9 +7,11 @@ function SvgNoStroller(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.91 8.08L6.53 3.7C7.6 3.25 8.77 3 10 3c1.56 0 3.03.4 4.3 1.1l-3.39 3.98zm10.28 13.11l-4.78-4.78-5.75-5.75-7.85-7.85-1.42 1.41 7.97 7.97L5.27 17h8.9l1.13 1.13c-.88.33-1.47 1.25-1.26 2.28.15.76.78 1.39 1.54 1.54 1.03.21 1.95-.38 2.28-1.26l1.91 1.91 1.42-1.41zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM17 6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11L17 14.17v-7.9z" + d: "M10.91 8.08L6.53 3.7C7.6 3.25 8.77 3 10 3c1.56 0 3.03.4 4.3 1.1l-3.39 3.98zm10.28 13.11l-4.78-4.78-5.75-5.75-7.85-7.85-1.42 1.41 7.97 7.97L5.27 17h8.9l1.13 1.13c-.88.33-1.47 1.25-1.26 2.28.15.76.78 1.39 1.54 1.54 1.03.21 1.95-.38 2.28-1.26l1.91 1.91 1.42-1.41zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM17 6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03l-3.5 4.11L17 14.17v-7.9z", + fill: "currentColor" })); } diff --git a/icons/es5/NoTransfer.js b/icons/es5/NoTransfer.js index 0954e37db9..3e1169c60d 100644 --- a/icons/es5/NoTransfer.js +++ b/icons/es5/NoTransfer.js @@ -7,9 +7,11 @@ function SvgNoTransfer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.78 2.95C7.24 2.16 9.48 2 12 2c4.42 0 8 .5 8 4v10c0 .35-.08.67-.19.98L13.83 11H18V6H8.83L5.78 2.95zm14 19.66L18.17 21H16v-2H8v2H5v-2.78c-.61-.55-1-1.34-1-2.22V6.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM9 15.5c0-.83-.67-1.5-1.5-1.5S6 14.67 6 15.5 6.67 17 7.5 17 9 16.33 9 15.5zM8.17 11L6 8.83V11h2.17z" + d: "M5.78 2.95C7.24 2.16 9.48 2 12 2c4.42 0 8 .5 8 4v10c0 .35-.08.67-.19.98L13.83 11H18V6H8.83L5.78 2.95zm14 19.66L18.17 21H16v-2H8v2H5v-2.78c-.61-.55-1-1.34-1-2.22V6.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM9 15.5c0-.83-.67-1.5-1.5-1.5S6 14.67 6 15.5 6.67 17 7.5 17 9 16.33 9 15.5zM8.17 11L6 8.83V11h2.17z", + fill: "currentColor" })); } diff --git a/icons/es5/NoiseAware.js b/icons/es5/NoiseAware.js index 1f1a7a815d..7670856e1e 100644 --- a/icons/es5/NoiseAware.js +++ b/icons/es5/NoiseAware.js @@ -7,9 +7,11 @@ function SvgNoiseAware(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.07 13H2.05c.2 2.01 1 3.84 2.21 5.33l1.43-1.43A7.941 7.941 0 014.07 13zm1.62-5.9L4.26 5.67A10.013 10.013 0 002.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM11 4.07V2.05c-2.01.2-3.84 1-5.33 2.21L7.1 5.69A7.941 7.941 0 0111 4.07zm7.33.19A10.013 10.013 0 0013 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.43-1.43zm-.02 12.64l1.43 1.43A9.98 9.98 0 0021.95 13h-2.02a7.941 7.941 0 01-1.62 3.9zm1.62-5.9h2.02c-.2-2.01-1-3.84-2.21-5.33L18.31 7.1a7.941 7.941 0 011.62 3.9zM13 19.93v2.02c2.01-.2 3.84-1 5.33-2.21l-1.43-1.43a7.941 7.941 0 01-3.9 1.62zm-7.33-.19A9.98 9.98 0 0011 21.95v-2.02a7.941 7.941 0 01-3.9-1.62l-1.43 1.43z" + d: "M4.07 13H2.05c.2 2.01 1 3.84 2.21 5.33l1.43-1.43A7.941 7.941 0 014.07 13zm1.62-5.9L4.26 5.67A10.013 10.013 0 002.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM11 4.07V2.05c-2.01.2-3.84 1-5.33 2.21L7.1 5.69A7.941 7.941 0 0111 4.07zm7.33.19A10.013 10.013 0 0013 2.05v2.02c1.46.18 2.79.76 3.9 1.62l1.43-1.43zm-.02 12.64l1.43 1.43A9.98 9.98 0 0021.95 13h-2.02a7.941 7.941 0 01-1.62 3.9zm1.62-5.9h2.02c-.2-2.01-1-3.84-2.21-5.33L18.31 7.1a7.941 7.941 0 011.62 3.9zM13 19.93v2.02c2.01-.2 3.84-1 5.33-2.21l-1.43-1.43a7.941 7.941 0 01-3.9 1.62zm-7.33-.19A9.98 9.98 0 0011 21.95v-2.02a7.941 7.941 0 01-3.9-1.62l-1.43 1.43z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, diff --git a/icons/es5/NoiseControlOff.js b/icons/es5/NoiseControlOff.js index b31713fa22..095c4299f0 100644 --- a/icons/es5/NoiseControlOff.js +++ b/icons/es5/NoiseControlOff.js @@ -7,7 +7,8 @@ function SvgNoiseControlOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, diff --git a/icons/es5/NordicWalking.js b/icons/es5/NordicWalking.js index f9b478f53a..9ee6df11eb 100644 --- a/icons/es5/NordicWalking.js +++ b/icons/es5/NordicWalking.js @@ -7,9 +7,11 @@ function SvgNordicWalking(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6a2.145 2.145 0 00-2.65-.84L6 8.3V13h2V9.6l1.8-.7z" + d: "M19 23h-1.5v-9H19v9zM7.53 14H6l-2 9h1.53l2-9zm5.97-8.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM9.8 8.9L7 23h2.1l1.8-8 2.1 2v6h2v-7.5l-2.1-2 .6-3C14.8 12 16.8 13 19 13v-2c-1.9 0-3.5-1-4.3-2.4l-1-1.6a2.145 2.145 0 00-2.65-.84L6 8.3V13h2V9.6l1.8-.7z", + fill: "currentColor" })); } diff --git a/icons/es5/North.js b/icons/es5/North.js index 8e199978fb..cb41afa581 100644 --- a/icons/es5/North.js +++ b/icons/es5/North.js @@ -7,9 +7,11 @@ function SvgNorth(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 9l1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z" + d: "M5 9l1.41 1.41L11 5.83V22h2V5.83l4.59 4.59L19 9l-7-7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/NorthEast.js b/icons/es5/NorthEast.js index 72c04242bf..db69483758 100644 --- a/icons/es5/NorthEast.js +++ b/icons/es5/NorthEast.js @@ -7,9 +7,11 @@ function SvgNorthEast(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z" + d: "M9 5v2h6.59L4 18.59 5.41 20 17 8.41V15h2V5H9z", + fill: "currentColor" })); } diff --git a/icons/es5/NorthWest.js b/icons/es5/NorthWest.js index 58c21ac7fc..fbbbfe249d 100644 --- a/icons/es5/NorthWest.js +++ b/icons/es5/NorthWest.js @@ -7,9 +7,11 @@ function SvgNorthWest(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z" + d: "M5 15h2V8.41L18.59 20 20 18.59 8.41 7H15V5H5v10z", + fill: "currentColor" })); } diff --git a/icons/es5/NotAccessible.js b/icons/es5/NotAccessible.js index 7954f665b3..0d1c9ba7a5 100644 --- a/icons/es5/NotAccessible.js +++ b/icons/es5/NotAccessible.js @@ -7,9 +7,11 @@ function SvgNotAccessible(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-2 18c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1a5 5 0 105.9 5.9h-2.07c-.41 1.16-1.52 2-2.83 2zm11.19 1.19L2.81 2.81 1.39 4.22 10 12.83V17h4.17l5.61 5.61 1.41-1.42zM19 11c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1.29 1.07 3.25 1.94 5 1.95v-2z" + d: "M12 2c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm-2 18c-1.66 0-3-1.34-3-3 0-1.31.84-2.41 2-2.83V12.1a5 5 0 105.9 5.9h-2.07c-.41 1.16-1.52 2-2.83 2zm11.19 1.19L2.81 2.81 1.39 4.22 10 12.83V17h4.17l5.61 5.61 1.41-1.42zM19 11c-1.54.02-3.09-.75-4.07-1.83l-1.29-1.43c-.24-.24-.44-.36-.63-.46-.36-.19-.72-.3-1.2-.26-.49.04-.91.27-1.23.61L14 11.05c1.29 1.07 3.25 1.94 5 1.95v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/NotEqual.js b/icons/es5/NotEqual.js index 4b0db8fddd..62fbd6782b 100644 --- a/icons/es5/NotEqual.js +++ b/icons/es5/NotEqual.js @@ -7,11 +7,14 @@ function SvgNotEqual(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9.998H5v-2h14zm0 6H5v-2h14z" + d: "M19 9.998H5v-2h14zm0 6H5v-2h14z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14.08 4.605l1.84.79-6 14-1.84-.79z" + d: "M14.08 4.605l1.84.79-6 14-1.84-.79z", + fill: "currentColor" })); } diff --git a/icons/es5/NotInterested.js b/icons/es5/NotInterested.js index 088bc9f5a1..5fc3d45149 100644 --- a/icons/es5/NotInterested.js +++ b/icons/es5/NotInterested.js @@ -7,9 +7,11 @@ function SvgNotInterested(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31A7.902 7.902 0 0112 20zm6.31-3.1L7.1 5.69A7.902 7.902 0 0112 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.42 0-8-3.58-8-8 0-1.85.63-3.55 1.69-4.9L16.9 18.31A7.902 7.902 0 0112 20zm6.31-3.1L7.1 5.69A7.902 7.902 0 0112 4c4.42 0 8 3.58 8 8 0 1.85-.63 3.55-1.69 4.9z", + fill: "currentColor" })); } diff --git a/icons/es5/NotListedLocation.js b/icons/es5/NotListedLocation.js index ec15af1f10..2d23289f2f 100644 --- a/icons/es5/NotListedLocation.js +++ b/icons/es5/NotListedLocation.js @@ -7,9 +7,11 @@ function SvgNotListedLocation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.01 16a.99.99 0 001-1 .99.99 0 00-1-1c-.28 0-.51.1-.71.29-.2.19-.3.43-.3.7s.1.51.29.71c.2.2.44.3.72.3zm-.88-3.66V13h1.85v-.42c0-.33.06-.6.18-.81.12-.21.33-.47.65-.77.4-.38.68-.75.89-1.09.19-.35.3-.76.3-1.25s-.13-.94-.39-1.35a2.57 2.57 0 00-1.05-.96C13.11 6.12 12.58 6 12 6c-.78 0-1.51.32-2.03.79C9.46 7.27 9 7.99 9 9h1.68c0-.52.19-.77.4-.98.21-.2.58-.3.96-.3.35 0 .64.1.85.3.21.2.32.45.32.74 0 .24-.06.46-.19.64-.13.19-.33.41-.61.66-.48.42-.81.79-1 1.12-.19.33-.28.71-.28 1.16zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" + d: "M12.01 16a.99.99 0 001-1 .99.99 0 00-1-1c-.28 0-.51.1-.71.29-.2.19-.3.43-.3.7s.1.51.29.71c.2.2.44.3.72.3zm-.88-3.66V13h1.85v-.42c0-.33.06-.6.18-.81.12-.21.33-.47.65-.77.4-.38.68-.75.89-1.09.19-.35.3-.76.3-1.25s-.13-.94-.39-1.35a2.57 2.57 0 00-1.05-.96C13.11 6.12 12.58 6 12 6c-.78 0-1.51.32-2.03.79C9.46 7.27 9 7.99 9 9h1.68c0-.52.19-.77.4-.98.21-.2.58-.3.96-.3.35 0 .64.1.85.3.21.2.32.45.32.74 0 .24-.06.46-.19.64-.13.19-.33.41-.61.66-.48.42-.81.79-1 1.12-.19.33-.28.71-.28 1.16zM12 2c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z", + fill: "currentColor" })); } diff --git a/icons/es5/NotStarted.js b/icons/es5/NotStarted.js index 72b03da6c0..b19ddac1d0 100644 --- a/icons/es5/NotStarted.js +++ b/icons/es5/NotStarted.js @@ -7,9 +7,11 @@ function SvgNotStarted(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm1 0V8l5 4-5 4z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm1 0V8l5 4-5 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Note.js b/icons/es5/Note.js index 896e047763..f3ff3b69b3 100644 --- a/icons/es5/Note.js +++ b/icons/es5/Note.js @@ -7,9 +7,11 @@ function SvgNote(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 10l-6-6H2v16h20V10zm-7-4.5l5.5 5.5H15V5.5z" + d: "M22 10l-6-6H2v16h20V10zm-7-4.5l5.5 5.5H15V5.5z", + fill: "currentColor" })); } diff --git a/icons/es5/NoteAdd.js b/icons/es5/NoteAdd.js index 3c4ee663e6..1ed79ccbb5 100644 --- a/icons/es5/NoteAdd.js +++ b/icons/es5/NoteAdd.js @@ -7,9 +7,11 @@ function SvgNoteAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z" + d: "M14 2H4v20h16V8l-6-6zm2 14h-3v3h-2v-3H8v-2h3v-3h2v3h3v2zm-3-7V3.5L18.5 9H13z", + fill: "currentColor" })); } diff --git a/icons/es5/NoteAlt.js b/icons/es5/NoteAlt.js index edb878d94f..f437d0f4f7 100644 --- a/icons/es5/NoteAlt.js +++ b/icons/es5/NoteAlt.js @@ -7,9 +7,11 @@ function SvgNoteAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM9.1 17H7v-2.14l5.96-5.96 2.12 2.12L9.1 17zm8.1-8.09l-1.41 1.41-2.13-2.12 1.41-1.41 2.13 2.12z" + d: "M21 3h-6.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H3v18h18V3zm-9-.25c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75zM9.1 17H7v-2.14l5.96-5.96 2.12 2.12L9.1 17zm8.1-8.09l-1.41 1.41-2.13-2.12 1.41-1.41 2.13 2.12z", + fill: "currentColor" })); } diff --git a/icons/es5/Notes.js b/icons/es5/Notes.js index f8c6161d85..212a901ecc 100644 --- a/icons/es5/Notes.js +++ b/icons/es5/Notes.js @@ -7,9 +7,11 @@ function SvgNotes(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z" + d: "M21 11.01L3 11v2h18zM3 16h12v2H3zM21 6H3v2.01L21 8z", + fill: "currentColor" })); } diff --git a/icons/es5/NotificationAdd.js b/icons/es5/NotificationAdd.js index c8f4720abf..6e4fc14524 100644 --- a/icons/es5/NotificationAdd.js +++ b/icons/es5/NotificationAdd.js @@ -7,9 +7,11 @@ function SvgNotificationAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm4-11c0 2.61 1.67 4.83 4 5.66V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8V2h3v2.2c.71.18 1.36.49 1.95.9A5.902 5.902 0 0014 9zm10-1h-3V5h-2v3h-3v2h3v3h2v-3h3V8z" + d: "M10 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm4-11c0 2.61 1.67 4.83 4 5.66V17h2v2H4v-2h2v-7c0-2.79 1.91-5.14 4.5-5.8V2h3v2.2c.71.18 1.36.49 1.95.9A5.902 5.902 0 0014 9zm10-1h-3V5h-2v3h-3v2h3v3h2v-3h3V8z", + fill: "currentColor" })); } diff --git a/icons/es5/NotificationImportant.js b/icons/es5/NotificationImportant.js index ccc474e0d9..4ebc7cc401 100644 --- a/icons/es5/NotificationImportant.js +++ b/icons/es5/NotificationImportant.js @@ -7,9 +7,11 @@ function SvgNotificationImportant(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V1.5h-3v2.67C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-6-1h-2v-2h2v2zm0-4h-2V8h2v4z" + d: "M12 23c1.1 0 1.99-.89 1.99-1.99h-3.98c0 1.1.89 1.99 1.99 1.99zm7-6v-6c0-3.35-2.36-6.15-5.5-6.83V1.5h-3v2.67C7.36 4.85 5 7.65 5 11v6l-2 2v1h18v-1l-2-2zm-6-1h-2v-2h2v2zm0-4h-2V8h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Notifications.js b/icons/es5/Notifications.js index 6068686c64..a8ac260600 100644 --- a/icons/es5/Notifications.js +++ b/icons/es5/Notifications.js @@ -7,9 +7,11 @@ function SvgNotifications(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 22c1.1 0 2-.9 2-2h-4a2 2 0 002 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z" + d: "M12 22c1.1 0 2-.9 2-2h-4a2 2 0 002 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/NotificationsActive.js b/icons/es5/NotificationsActive.js index 05a8493d5e..0ee9b912f1 100644 --- a/icons/es5/NotificationsActive.js +++ b/icons/es5/NotificationsActive.js @@ -7,9 +7,11 @@ function SvgNotificationsActive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2a8.445 8.445 0 013.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43a8.495 8.495 0 013.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z" + d: "M7.58 4.08L6.15 2.65C3.75 4.48 2.17 7.3 2.03 10.5h2a8.445 8.445 0 013.55-6.42zm12.39 6.42h2c-.15-3.2-1.73-6.02-4.12-7.85l-1.42 1.43a8.495 8.495 0 013.54 6.42zM18 11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2v-5zm-6 11c.14 0 .27-.01.4-.04.65-.14 1.18-.58 1.44-1.18.1-.24.15-.5.15-.78h-4c.01 1.1.9 2 2.01 2z", + fill: "currentColor" })); } diff --git a/icons/es5/NotificationsNone.js b/icons/es5/NotificationsNone.js index aaa2597e91..635ba9059a 100644 --- a/icons/es5/NotificationsNone.js +++ b/icons/es5/NotificationsNone.js @@ -7,9 +7,11 @@ function SvgNotificationsNone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V2.5h-3v2.18C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z" + d: "M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V2.5h-3v2.18C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z", + fill: "currentColor" })); } diff --git a/icons/es5/NotificationsOff.js b/icons/es5/NotificationsOff.js index 1e4530eaa5..fd2574e045 100644 --- a/icons/es5/NotificationsOff.js +++ b/icons/es5/NotificationsOff.js @@ -7,9 +7,11 @@ function SvgNotificationsOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 22c1.1 0 2-.9 2-2h-4a2 2 0 002 2zm6-11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18c-.24.06-.47.15-.69.23L18 13.1V11zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.73 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35z" + d: "M12 22c1.1 0 2-.9 2-2h-4a2 2 0 002 2zm6-11c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18c-.24.06-.47.15-.69.23L18 13.1V11zM5.41 3.35L4 4.76l2.81 2.81C6.29 8.57 6 9.73 6 11v5l-2 2v1h14.24l1.74 1.74 1.41-1.41L5.41 3.35z", + fill: "currentColor" })); } diff --git a/icons/es5/NotificationsPaused.js b/icons/es5/NotificationsPaused.js index b3d124a35a..e71cd1961d 100644 --- a/icons/es5/NotificationsPaused.js +++ b/icons/es5/NotificationsPaused.js @@ -7,9 +7,11 @@ function SvgNotificationsPaused(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 22c1.1 0 2-.9 2-2h-4a2 2 0 002 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z" + d: "M12 22c1.1 0 2-.9 2-2h-4a2 2 0 002 2zm6-6v-5c0-3.07-1.64-5.64-4.5-6.32V2.5h-3v2.18C7.63 5.36 6 7.93 6 11v5l-2 2v1h16v-1l-2-2zm-3.5-6.2l-2.8 3.4h2.8V15h-5v-1.8l2.8-3.4H9.5V8h5v1.8z", + fill: "currentColor" })); } diff --git a/icons/es5/Numbers.js b/icons/es5/Numbers.js index 5afa59896c..8cf6bb048e 100644 --- a/icons/es5/Numbers.js +++ b/icons/es5/Numbers.js @@ -7,9 +7,11 @@ function SvgNumbers(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.5 10l.5-2h-4l1-4h-2l-1 4h-4l1-4h-2L9 8H5l-.5 2h4l-1 4h-4L3 16h4l-1 4h2l1-4h4l-1 4h2l1-4h4l.5-2h-4l1-4h4zm-7 4h-4l1-4h4l-1 4z" + d: "M20.5 10l.5-2h-4l1-4h-2l-1 4h-4l1-4h-2L9 8H5l-.5 2h4l-1 4h-4L3 16h4l-1 4h2l1-4h4l-1 4h2l1-4h4l.5-2h-4l1-4h4zm-7 4h-4l1-4h4l-1 4z", + fill: "currentColor" })); } diff --git a/icons/es5/OfflineBolt.js b/icons/es5/OfflineBolt.js index 2d06fefac8..6f5fc44d6f 100644 --- a/icons/es5/OfflineBolt.js +++ b/icons/es5/OfflineBolt.js @@ -7,9 +7,11 @@ function SvgOfflineBolt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z" + d: "M12 2.02c-5.51 0-9.98 4.47-9.98 9.98s4.47 9.98 9.98 9.98 9.98-4.47 9.98-9.98S17.51 2.02 12 2.02zM11.48 20v-6.26H8L13 4v6.26h3.35L11.48 20z", + fill: "currentColor" })); } diff --git a/icons/es5/OfflinePin.js b/icons/es5/OfflinePin.js index c9c02f02b4..562992fb70 100644 --- a/icons/es5/OfflinePin.js +++ b/icons/es5/OfflinePin.js @@ -7,9 +7,11 @@ function SvgOfflinePin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 16H7v-2h10v2zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z" + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm5 16H7v-2h10v2zm-6.7-4L7 10.7l1.4-1.4 1.9 1.9 5.3-5.3L17 7.3 10.3 14z", + fill: "currentColor" })); } diff --git a/icons/es5/OfflineShare.js b/icons/es5/OfflineShare.js index ee716477f8..ba0a607054 100644 --- a/icons/es5/OfflineShare.js +++ b/icons/es5/OfflineShare.js @@ -7,13 +7,17 @@ function SvgOfflineShare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 5H4v18h12v-2H6z" + d: "M6 5H4v18h12v-2H6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20 1H8v18h12V1zm-2 14h-8V5h8v10z" + d: "M20 1H8v18h12V1zm-2 14h-8V5h8v10z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12.5 10.25h2V12L17 9.5 14.5 7v1.75H11V12h1.5z" + d: "M12.5 10.25h2V12L17 9.5 14.5 7v1.75H11V12h1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/OilBarrel.js b/icons/es5/OilBarrel.js index 0795ee6eb3..2d2031c01a 100644 --- a/icons/es5/OilBarrel.js +++ b/icons/es5/OilBarrel.js @@ -7,9 +7,11 @@ function SvgOilBarrel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 13v-2h-2V5h2V3H3v2h2v6H3v2h2v6H3v2h18v-2h-2v-6h2zm-9 3c-1.66 0-3-1.32-3-2.95 0-1.3.52-1.67 3-4.55 2.47 2.86 3 3.24 3 4.55 0 1.63-1.34 2.95-3 2.95z" + d: "M21 13v-2h-2V5h2V3H3v2h2v6H3v2h2v6H3v2h18v-2h-2v-6h2zm-9 3c-1.66 0-3-1.32-3-2.95 0-1.3.52-1.67 3-4.55 2.47 2.86 3 3.24 3 4.55 0 1.63-1.34 2.95-3 2.95z", + fill: "currentColor" })); } diff --git a/icons/es5/OnDeviceTraining.js b/icons/es5/OnDeviceTraining.js index f52222bcf8..f307a2b8bf 100644 --- a/icons/es5/OnDeviceTraining.js +++ b/icons/es5/OnDeviceTraining.js @@ -7,13 +7,17 @@ function SvgOnDeviceTraining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 16h2v1h-2zm1-5c-1.1 0-2 .9-2 2 0 .74.4 1.38 1 1.72v.78h2v-.78c.6-.35 1-.98 1-1.72 0-1.1-.9-2-2-2z" + d: "M11 16h2v1h-2zm1-5c-1.1 0-2 .9-2 2 0 .74.4 1.38 1 1.72v.78h2v-.78c.6-.35 1-.98 1-1.72 0-1.1-.9-2-2-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20 1.01L4 1v22h16V1.01zM18 18H6V6h12v12z" + d: "M20 1.01L4 1v22h16V1.01zM18 18H6V6h12v12z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M16.01 15.95c.62-.83.99-1.84.99-2.95s-.37-2.12-.99-2.95l-1.07 1.07c.35.54.56 1.19.56 1.88s-.21 1.34-.56 1.88l1.07 1.07zm-6.95-1.07c-.35-.54-.56-1.19-.56-1.88 0-1.93 1.57-3.5 3.5-3.5v1.25l2.25-2-2.25-2V8c-2.76 0-5 2.24-5 5 0 1.11.37 2.12.99 2.95l1.07-1.07z" + d: "M16.01 15.95c.62-.83.99-1.84.99-2.95s-.37-2.12-.99-2.95l-1.07 1.07c.35.54.56 1.19.56 1.88s-.21 1.34-.56 1.88l1.07 1.07zm-6.95-1.07c-.35-.54-.56-1.19-.56-1.88 0-1.93 1.57-3.5 3.5-3.5v1.25l2.25-2-2.25-2V8c-2.76 0-5 2.24-5 5 0 1.11.37 2.12.99 2.95l1.07-1.07z", + fill: "currentColor" })); } diff --git a/icons/es5/OndemandVideo.js b/icons/es5/OndemandVideo.js index 6874ac49ea..466e2dcb4f 100644 --- a/icons/es5/OndemandVideo.js +++ b/icons/es5/OndemandVideo.js @@ -7,9 +7,11 @@ function SvgOndemandVideo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12zm-5-6l-7 4V7l7 4z" + d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12zm-5-6l-7 4V7l7 4z", + fill: "currentColor" })); } diff --git a/icons/es5/OnlinePrediction.js b/icons/es5/OnlinePrediction.js index d39845a4c2..d3cce49ca2 100644 --- a/icons/es5/OnlinePrediction.js +++ b/icons/es5/OnlinePrediction.js @@ -7,9 +7,11 @@ function SvgOnlinePrediction(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06A8.481 8.481 0 0120.5 12c0 2.34-.95 4.47-2.49 6.01l1.06 1.06A9.969 9.969 0 0022 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93A9.969 9.969 0 002 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06A8.481 8.481 0 013.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06A6.976 6.976 0 0019 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05A6.976 6.976 0 005 12c0 1.93.78 3.68 2.05 4.95z" + d: "M15.5 11.5c0 2-2.5 3.5-2.5 5h-2c0-1.5-2.5-3-2.5-5C8.5 9.57 10.07 8 12 8s3.5 1.57 3.5 3.5zm-2.5 6h-2V19h2v-1.5zm9-5.5c0-2.76-1.12-5.26-2.93-7.07l-1.06 1.06A8.481 8.481 0 0120.5 12c0 2.34-.95 4.47-2.49 6.01l1.06 1.06A9.969 9.969 0 0022 12zM3.5 12c0-2.34.95-4.47 2.49-6.01L4.93 4.93A9.969 9.969 0 002 12c0 2.76 1.12 5.26 2.93 7.07l1.06-1.06A8.481 8.481 0 013.5 12zm14 0c0 1.52-.62 2.89-1.61 3.89l1.06 1.06A6.976 6.976 0 0019 12c0-1.93-.78-3.68-2.05-4.95l-1.06 1.06c.99 1 1.61 2.37 1.61 3.89zM7.05 16.95l1.06-1.06c-1-1-1.61-2.37-1.61-3.89s.62-2.89 1.61-3.89L7.05 7.05A6.976 6.976 0 005 12c0 1.93.78 3.68 2.05 4.95z", + fill: "currentColor" })); } diff --git a/icons/es5/Opacity.js b/icons/es5/Opacity.js index 1e53d8626f..daabdabf69 100644 --- a/icons/es5/Opacity.js +++ b/icons/es5/Opacity.js @@ -7,9 +7,11 @@ function SvgOpacity(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.66 8L12 2.35 6.34 8A8.02 8.02 0 004 13.64c0 2 .78 4.11 2.34 5.67a7.99 7.99 0 0011.32 0c1.56-1.56 2.34-3.67 2.34-5.67S19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z" + d: "M17.66 8L12 2.35 6.34 8A8.02 8.02 0 004 13.64c0 2 .78 4.11 2.34 5.67a7.99 7.99 0 0011.32 0c1.56-1.56 2.34-3.67 2.34-5.67S19.22 9.56 17.66 8zM6 14c.01-2 .62-3.27 1.76-4.4L12 5.27l4.24 4.38C17.38 10.77 17.99 12 18 14H6z", + fill: "currentColor" })); } diff --git a/icons/es5/OpenInBrowser.js b/icons/es5/OpenInBrowser.js index d35959e75a..e8fb6d1998 100644 --- a/icons/es5/OpenInBrowser.js +++ b/icons/es5/OpenInBrowser.js @@ -7,9 +7,11 @@ function SvgOpenInBrowser(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 4v16h6v-2H5V8h14v10h-4v2h6V4H3zm9 6l-4 4h3v6h2v-6h3l-4-4z" + d: "M3 4v16h6v-2H5V8h14v10h-4v2h6V4H3zm9 6l-4 4h3v6h2v-6h3l-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/OpenInFull.js b/icons/es5/OpenInFull.js index 990dfacce0..31e166a951 100644 --- a/icons/es5/OpenInFull.js +++ b/icons/es5/OpenInFull.js @@ -7,9 +7,11 @@ function SvgOpenInFull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z" + d: "M21 11V3h-8l3.29 3.29-10 10L3 13v8h8l-3.29-3.29 10-10z", + fill: "currentColor" })); } diff --git a/icons/es5/OpenInNew.js b/icons/es5/OpenInNew.js index 3256ce230c..560e5c6ab6 100644 --- a/icons/es5/OpenInNew.js +++ b/icons/es5/OpenInNew.js @@ -7,9 +7,11 @@ function SvgOpenInNew(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 19H5V5h7V3H3v18h18v-9h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z" + d: "M19 19H5V5h7V3H3v18h18v-9h-2v7zM14 3v2h3.59l-9.83 9.83 1.41 1.41L19 6.41V10h2V3h-7z", + fill: "currentColor" })); } diff --git a/icons/es5/OpenInNewOff.js b/icons/es5/OpenInNewOff.js index 83986ceeb6..df8fdab873 100644 --- a/icons/es5/OpenInNewOff.js +++ b/icons/es5/OpenInNewOff.js @@ -7,9 +7,11 @@ function SvgOpenInNewOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.79 5.8L14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H3V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z" + d: "M16.79 5.8L14 3h7v7l-2.79-2.8-4.09 4.09-1.41-1.41 4.08-4.08zM19 12v4.17l2 2V12h-2zm.78 10.61L18.17 21H3V5.83L1.39 4.22 2.8 2.81l18.38 18.38-1.4 1.42zM16.17 19l-4.88-4.88-1.59 1.59-1.41-1.41 1.59-1.59L5 7.83V19h11.17zM7.83 5H12V3H5.83l2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/OpenWith.js b/icons/es5/OpenWith.js index d2a7888a4e..6afb6cb1c9 100644 --- a/icons/es5/OpenWith.js +++ b/icons/es5/OpenWith.js @@ -7,9 +7,11 @@ function SvgOpenWith(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z" + d: "M10 9h4V6h3l-5-5-5 5h3v3zm-1 1H6V7l-5 5 5 5v-3h3v-4zm14 2l-5-5v3h-3v4h3v3l5-5zm-9 3h-4v3H7l5 5 5-5h-3v-3z", + fill: "currentColor" })); } diff --git a/icons/es5/OtherHouses.js b/icons/es5/OtherHouses.js index b8becfccea..493aea1079 100644 --- a/icons/es5/OtherHouses.js +++ b/icons/es5/OtherHouses.js @@ -7,9 +7,11 @@ function SvgOtherHouses(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M12 3L1 11.4l1.21 1.59L4 11.62V21h16v-9.38l1.79 1.36L23 11.4 12 3zM8 15c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Outbond.js b/icons/es5/Outbond.js index 6a5832a395..9357f4d49d 100644 --- a/icons/es5/Outbond.js +++ b/icons/es5/Outbond.js @@ -7,9 +7,11 @@ function SvgOutbond(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z", + fill: "currentColor" })); } diff --git a/icons/es5/Outbound.js b/icons/es5/Outbound.js index a1ebca6308..45c3351eea 100644 --- a/icons/es5/Outbound.js +++ b/icons/es5/Outbound.js @@ -7,9 +7,11 @@ function SvgOutbound(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.88 9.54L8.92 16.5l-1.41-1.41 4.96-4.96L10.34 8l5.65.01.01 5.65-2.12-2.12z", + fill: "currentColor" })); } diff --git a/icons/es5/Outbox.js b/icons/es5/Outbox.js index fe2c839127..e17be8cd7c 100644 --- a/icons/es5/Outbox.js +++ b/icons/es5/Outbox.js @@ -7,11 +7,14 @@ function SvgOutbox(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 14h2v-3h3l-4-4-4 4h3z" + d: "M11 14h2v-3h3l-4-4-4 4h3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm16 11h-4.18c-.41 1.16-1.51 2-2.82 2s-2.4-.84-2.82-2H5V5h14v9z" + d: "M3 3v18h18V3H3zm16 11h-4.18c-.41 1.16-1.51 2-2.82 2s-2.4-.84-2.82-2H5V5h14v9z", + fill: "currentColor" })); } diff --git a/icons/es5/OutdoorGrill.js b/icons/es5/OutdoorGrill.js index 6a20cad178..e8bce062f0 100644 --- a/icons/es5/OutdoorGrill.js +++ b/icons/es5/OutdoorGrill.js @@ -7,9 +7,11 @@ function SvgOutdoorGrill(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06a6.36 6.36 0 001.74 0l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93A6.992 6.992 0 0019 8H5c0 2.84 1.69 5.27 4.12 6.37l-4.5 6.92 1.68 1.09L7.84 20h6.34c.42 1.16 1.52 2 2.82 2zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.41 7h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z" + d: "M17 22c1.66 0 3-1.34 3-3s-1.34-3-3-3c-1.3 0-2.4.84-2.82 2H9.14l1.99-3.06a6.36 6.36 0 001.74 0l1.02 1.57c.42-.53.96-.95 1.6-1.21l-.6-.93A6.992 6.992 0 0019 8H5c0 2.84 1.69 5.27 4.12 6.37l-4.5 6.92 1.68 1.09L7.84 20h6.34c.42 1.16 1.52 2 2.82 2zm0-4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9.41 7h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04zm2.48 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.78-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.23.24.8.67.45 2.04zm2.52 0h1c.15-1.15.23-1.64-.89-2.96-.42-.5-.68-.77-.46-2.04h-.99c-.21 1.11.03 2.05.89 2.96.22.24.79.67.45 2.04z", + fill: "currentColor" })); } diff --git a/icons/es5/Outlet.js b/icons/es5/Outlet.js index 6762020010..eb66b235d1 100644 --- a/icons/es5/Outlet.js +++ b/icons/es5/Outlet.js @@ -7,9 +7,11 @@ function SvgOutlet(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 12V7h2v5H8zm6 6h-4v-1.89c0-1 .68-1.92 1.66-2.08A2 2 0 0114 16v2zm2-6h-2V7h2v5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM8 12V7h2v5H8zm6 6h-4v-1.89c0-1 .68-1.92 1.66-2.08A2 2 0 0114 16v2zm2-6h-2V7h2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/OutlinedFlag.js b/icons/es5/OutlinedFlag.js index d9e0e5c5e9..f08a27ea2c 100644 --- a/icons/es5/OutlinedFlag.js +++ b/icons/es5/OutlinedFlag.js @@ -7,9 +7,11 @@ function SvgOutlinedFlag(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z" + d: "M14 6l-1-2H5v17h2v-7h5l1 2h7V6h-6zm4 8h-4l-1-2H7V6h5l1 2h5v6z", + fill: "currentColor" })); } diff --git a/icons/es5/Output.js b/icons/es5/Output.js index c189bd9972..55394b24d9 100644 --- a/icons/es5/Output.js +++ b/icons/es5/Output.js @@ -7,11 +7,14 @@ function SvgOutput(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 17l5-5-5-5-1.41 1.41L18.17 11H9v2h9.17l-2.58 2.59z" + d: "M17 17l5-5-5-5-1.41 1.41L18.17 11H9v2h9.17l-2.58 2.59z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M19 19H5V5h14v2h2V3H3v18h18v-4h-2z" + d: "M19 19H5V5h14v2h2V3H3v18h18v-4h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Padding.js b/icons/es5/Padding.js index a8573c4bcf..4385c1699a 100644 --- a/icons/es5/Padding.js +++ b/icons/es5/Padding.js @@ -7,9 +7,11 @@ function SvgPadding(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm6 6H7V7h2v2zm4 0h-2V7h2v2zm4 0h-2V7h2v2z" + d: "M3 3v18h18V3H3zm6 6H7V7h2v2zm4 0h-2V7h2v2zm4 0h-2V7h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Pages.js b/icons/es5/Pages.js index b3a57be67d..901fdd9afd 100644 --- a/icons/es5/Pages.js +++ b/icons/es5/Pages.js @@ -7,9 +7,11 @@ function SvgPages(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v8h5L7 7l4 1V3H3zm5 10H3v8h8v-5l-4 1 1-4zm9 4l-4-1v5h8v-8h-5l1 4zm4-14h-8v5l4-1-1 4h5V3z" + d: "M3 3v8h5L7 7l4 1V3H3zm5 10H3v8h8v-5l-4 1 1-4zm9 4l-4-1v5h8v-8h-5l1 4zm4-14h-8v5l4-1-1 4h5V3z", + fill: "currentColor" })); } diff --git a/icons/es5/Pageview.js b/icons/es5/Pageview.js index 9ea1fa95eb..b992b656a5 100644 --- a/icons/es5/Pageview.js +++ b/icons/es5/Pageview.js @@ -7,9 +7,11 @@ function SvgPageview(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.5 9a2.5 2.5 0 000 5 2.5 2.5 0 000-5zM22 4H2v16h20V4zm-5.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z" + d: "M11.5 9a2.5 2.5 0 000 5 2.5 2.5 0 000-5zM22 4H2v16h20V4zm-5.21 14.21l-2.91-2.91c-.69.44-1.51.7-2.39.7C9.01 16 7 13.99 7 11.5S9.01 7 11.5 7 16 9.01 16 11.5c0 .88-.26 1.69-.7 2.39l2.91 2.9-1.42 1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/Paid.js b/icons/es5/Paid.js index 352f8c1237..525402e1c3 100644 --- a/icons/es5/Paid.js +++ b/icons/es5/Paid.js @@ -7,9 +7,11 @@ function SvgPaid(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.88 15.76V19h-1.75v-1.29c-.74-.18-2.39-.77-3.02-2.96l1.65-.67c.06.22.58 2.09 2.4 2.09.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96V5h1.75v1.24c1.84.32 2.51 1.79 2.66 2.23l-1.58.67c-.11-.35-.59-1.34-1.9-1.34-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm.88 15.76V19h-1.75v-1.29c-.74-.18-2.39-.77-3.02-2.96l1.65-.67c.06.22.58 2.09 2.4 2.09.93 0 1.98-.48 1.98-1.61 0-.96-.7-1.46-2.28-2.03-1.1-.39-3.35-1.03-3.35-3.31 0-.1.01-2.4 2.62-2.96V5h1.75v1.24c1.84.32 2.51 1.79 2.66 2.23l-1.58.67c-.11-.35-.59-1.34-1.9-1.34-.7 0-1.81.37-1.81 1.39 0 .95.86 1.31 2.64 1.9 2.4.83 3.01 2.05 3.01 3.45 0 2.63-2.5 3.13-3.02 3.22z", + fill: "currentColor" })); } diff --git a/icons/es5/Palette.js b/icons/es5/Palette.js index a9e2116ba9..c16a7a43ab 100644 --- a/icons/es5/Palette.js +++ b/icons/es5/Palette.js @@ -7,9 +7,11 @@ function SvgPalette(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10a2.5 2.5 0 002.5-2.5c0-.61-.23-1.2-.64-1.67a.528.528 0 01-.13-.33c0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm5.5 11c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-3-4c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zM5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zm6-4c0 .83-.67 1.5-1.5 1.5S8 8.33 8 7.5 8.67 6 9.5 6s1.5.67 1.5 1.5z" + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10a2.5 2.5 0 002.5-2.5c0-.61-.23-1.2-.64-1.67a.528.528 0 01-.13-.33c0-.28.22-.5.5-.5H16c3.31 0 6-2.69 6-6 0-4.96-4.49-9-10-9zm5.5 11c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm-3-4c-.83 0-1.5-.67-1.5-1.5S13.67 6 14.5 6s1.5.67 1.5 1.5S15.33 9 14.5 9zM5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S7.33 13 6.5 13 5 12.33 5 11.5zm6-4c0 .83-.67 1.5-1.5 1.5S8 8.33 8 7.5 8.67 6 9.5 6s1.5.67 1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PanTool.js b/icons/es5/PanTool.js index ec44be3df9..efcc39b7d2 100644 --- a/icons/es5/PanTool.js +++ b/icons/es5/PanTool.js @@ -7,9 +7,11 @@ function SvgPanTool(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 4v20H10.02L1 14.83 2.9 13 8 15.91V3h3v8h1V0h3v11h1V1h3v10h1V4h3z" + d: "M23 4v20H10.02L1 14.83 2.9 13 8 15.91V3h3v8h1V0h3v11h1V1h3v10h1V4h3z", + fill: "currentColor" })); } diff --git a/icons/es5/PanToolAlt.js b/icons/es5/PanToolAlt.js index 5c9bc1551d..03a620b903 100644 --- a/icons/es5/PanToolAlt.js +++ b/icons/es5/PanToolAlt.js @@ -7,9 +7,11 @@ function SvgPanToolAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.18 13.4L19.1 21h-9L5 15.62l1.22-1.23 3.78.85V4.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h1.38l5.8 2.9z" + d: "M20.18 13.4L19.1 21h-9L5 15.62l1.22-1.23 3.78.85V4.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h1.38l5.8 2.9z", + fill: "currentColor" })); } diff --git a/icons/es5/Panorama.js b/icons/es5/Panorama.js index 1379e844e5..6be2ab4038 100644 --- a/icons/es5/Panorama.js +++ b/icons/es5/Panorama.js @@ -7,9 +7,11 @@ function SvgPanorama(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 20V4H1v16h22zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z" + d: "M23 20V4H1v16h22zM8.5 12.5l2.5 3.01L14.5 11l4.5 6H5l3.5-4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaFishEye.js b/icons/es5/PanoramaFishEye.js index 8de4defa37..21f313007d 100644 --- a/icons/es5/PanoramaFishEye.js +++ b/icons/es5/PanoramaFishEye.js @@ -7,9 +7,11 @@ function SvgPanoramaFishEye(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + d: "M12 2C6.47 2 2 6.47 2 12s4.47 10 10 10 10-4.47 10-10S17.53 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaHorizontal.js b/icons/es5/PanoramaHorizontal.js index 2e76c3739b..4f06fe34db 100644 --- a/icons/es5/PanoramaHorizontal.js +++ b/icons/es5/PanoramaHorizontal.js @@ -7,9 +7,11 @@ function SvgPanoramaHorizontal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6.55c2.6.77 5.28 1.16 8 1.16 2.72 0 5.41-.39 8-1.16v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.41.39-8 1.16V6.55M2 3.77v16.47s.77-.26.88-.3A26.24 26.24 0 0112 18.3c3.09 0 6.18.55 9.12 1.64.11.04.88.3.88.3V3.77s-.77.26-.88.3C18.18 5.15 15.09 5.71 12 5.71s-6.18-.56-9.12-1.64c-.11-.05-.88-.3-.88-.3z" + d: "M4 6.55c2.6.77 5.28 1.16 8 1.16 2.72 0 5.41-.39 8-1.16v10.91c-2.6-.77-5.28-1.16-8-1.16-2.72 0-5.41.39-8 1.16V6.55M2 3.77v16.47s.77-.26.88-.3A26.24 26.24 0 0112 18.3c3.09 0 6.18.55 9.12 1.64.11.04.88.3.88.3V3.77s-.77.26-.88.3C18.18 5.15 15.09 5.71 12 5.71s-6.18-.56-9.12-1.64c-.11-.05-.88-.3-.88-.3z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaHorizontalSelect.js b/icons/es5/PanoramaHorizontalSelect.js index f8ad04286c..a9ec563ea4 100644 --- a/icons/es5/PanoramaHorizontalSelect.js +++ b/icons/es5/PanoramaHorizontalSelect.js @@ -7,9 +7,11 @@ function SvgPanoramaHorizontalSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5.5c-5.25 0-9.01-1.54-10-1.92V20.4c2.16-.76 5.21-1.9 10-1.9 4.78 0 7.91 1.17 10 1.9V3.6c-2.09.73-5.23 1.9-10 1.9z" + d: "M12 5.5c-5.25 0-9.01-1.54-10-1.92V20.4c2.16-.76 5.21-1.9 10-1.9 4.78 0 7.91 1.17 10 1.9V3.6c-2.09.73-5.23 1.9-10 1.9z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaPhotosphere.js b/icons/es5/PanoramaPhotosphere.js index 43a7a937e0..641d5a679b 100644 --- a/icons/es5/PanoramaPhotosphere.js +++ b/icons/es5/PanoramaPhotosphere.js @@ -7,9 +7,11 @@ function SvgPanoramaPhotosphere(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 8.84c-.54-.43-1.23-.81-1.99-1.15C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.76.35-1.45.72-1.99 1.16v6.33c.54.43 1.23.81 1.99 1.15C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.76-.34 1.45-.72 1.99-1.15V8.84zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68A7.943 7.943 0 0112 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68A7.943 7.943 0 0112 20z" + d: "M23 8.84c-.54-.43-1.23-.81-1.99-1.15C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.76.35-1.45.72-1.99 1.16v6.33c.54.43 1.23.81 1.99 1.15C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.76-.34 1.45-.72 1.99-1.15V8.84zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68A7.943 7.943 0 0112 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68A7.943 7.943 0 0112 20z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaPhotosphereSelect.js b/icons/es5/PanoramaPhotosphereSelect.js index 15297288e8..6b6c9d9483 100644 --- a/icons/es5/PanoramaPhotosphereSelect.js +++ b/icons/es5/PanoramaPhotosphereSelect.js @@ -7,9 +7,11 @@ function SvgPanoramaPhotosphereSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 8.84c-.54-.43-1.23-.81-1.99-1.15C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.76.35-1.45.72-1.99 1.16v6.33c.54.43 1.23.81 1.99 1.15C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.76-.34 1.45-.72 1.99-1.15V8.84zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68A7.943 7.943 0 0112 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68A7.943 7.943 0 0112 20z" + d: "M23 8.84c-.54-.43-1.23-.81-1.99-1.15C19.4 4.33 15.98 2 12 2 8.02 2 4.6 4.33 2.99 7.68c-.76.35-1.45.72-1.99 1.16v6.33c.54.43 1.23.81 1.99 1.15C4.6 19.67 8.02 22 12 22c3.98 0 7.4-2.33 9.01-5.68.76-.34 1.45-.72 1.99-1.15V8.84zM12 4c2.37 0 4.49 1.04 5.95 2.68C16.17 6.25 14.15 6 12 6c-2.15 0-4.17.25-5.95.68A7.943 7.943 0 0112 4zm0 16c-2.37 0-4.49-1.04-5.95-2.68 1.78.43 3.8.68 5.95.68s4.17-.25 5.95-.68A7.943 7.943 0 0112 20z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaVertical.js b/icons/es5/PanoramaVertical.js index 31e21aea20..cf3ab5b559 100644 --- a/icons/es5/PanoramaVertical.js +++ b/icons/es5/PanoramaVertical.js @@ -7,9 +7,11 @@ function SvgPanoramaVertical(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.46 4c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.41 1.16 8H6.55c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.41-1.16-8h10.91m2.78-2H3.77s.26.77.3.88C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.04.11-.3.88-.3.88h16.47s-.26-.77-.3-.88c-1.09-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.3-.88.3-.88z" + d: "M17.46 4c-.77 2.6-1.16 5.28-1.16 8 0 2.72.39 5.41 1.16 8H6.55c.77-2.6 1.16-5.28 1.16-8 0-2.72-.39-5.41-1.16-8h10.91m2.78-2H3.77s.26.77.3.88C5.16 5.82 5.71 8.91 5.71 12s-.55 6.18-1.64 9.12c-.04.11-.3.88-.3.88h16.47s-.26-.77-.3-.88c-1.09-2.94-1.64-6.03-1.64-9.12s.55-6.18 1.64-9.12c.04-.11.3-.88.3-.88z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaVerticalSelect.js b/icons/es5/PanoramaVerticalSelect.js index 980c75f827..e2af69daff 100644 --- a/icons/es5/PanoramaVerticalSelect.js +++ b/icons/es5/PanoramaVerticalSelect.js @@ -7,9 +7,11 @@ function SvgPanoramaVerticalSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.49 11.99c0-5.25 1.54-9.01 1.92-10H3.59c.76 2.16 1.9 5.21 1.9 10 0 4.78-1.17 7.91-1.9 10H20.4c-.74-2.08-1.91-5.23-1.91-10z" + d: "M18.49 11.99c0-5.25 1.54-9.01 1.92-10H3.59c.76 2.16 1.9 5.21 1.9 10 0 4.78-1.17 7.91-1.9 10H20.4c-.74-2.08-1.91-5.23-1.91-10z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaWideAngle.js b/icons/es5/PanoramaWideAngle.js index c22c82d279..3fa8356afa 100644 --- a/icons/es5/PanoramaWideAngle.js +++ b/icons/es5/PanoramaWideAngle.js @@ -7,9 +7,11 @@ function SvgPanoramaWideAngle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z" + d: "M12 6c2.45 0 4.71.2 7.29.64.47 1.78.71 3.58.71 5.36s-.24 3.58-.71 5.36c-2.58.44-4.84.64-7.29.64s-4.71-.2-7.29-.64C4.24 15.58 4 13.78 4 12s.24-3.58.71-5.36C7.29 6.2 9.55 6 12 6m0-2c-2.73 0-5.22.24-7.95.72l-.93.16-.25.9C2.29 7.85 2 9.93 2 12s.29 4.15.87 6.22l.25.89.93.16c2.73.49 5.22.73 7.95.73s5.22-.24 7.95-.72l.93-.16.25-.89c.58-2.08.87-4.16.87-6.23s-.29-4.15-.87-6.22l-.25-.89-.93-.16C17.22 4.24 14.73 4 12 4z", + fill: "currentColor" })); } diff --git a/icons/es5/PanoramaWideAngleSelect.js b/icons/es5/PanoramaWideAngleSelect.js index b0a5b3261f..ea093b1a33 100644 --- a/icons/es5/PanoramaWideAngleSelect.js +++ b/icons/es5/PanoramaWideAngleSelect.js @@ -7,9 +7,11 @@ function SvgPanoramaWideAngleSelect(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.05 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.05-1-7-2.15-.37-4.98-1-9-1z" + d: "M12 4c-3.97 0-6.85.63-9 1-.55 1.97-1 3.92-1 7 0 3.03.45 5.05 1 7 2.15.37 4.98 1 9 1 3.97 0 6.85-.63 9-1 .57-2.02 1-3.99 1-7 0-3.03-.45-5.05-1-7-2.15-.37-4.98-1-9-1z", + fill: "currentColor" })); } diff --git a/icons/es5/Paragliding.js b/icons/es5/Paragliding.js index aab7cd421d..a2348c9f08 100644 --- a/icons/es5/Paragliding.js +++ b/icons/es5/Paragliding.js @@ -7,9 +7,11 @@ function SvgParagliding(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-3.48.94C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06zM12 0C5.92 0 1 1.9 1 4.25v3.49c0 .81.88 1.26 1.56.83.14-.09.28-.18.44-.26L5 13h2l1.5-6.28a27.852 27.852 0 017 0L17 13h2l2-4.69c.16.09.3.17.44.26.68.43 1.56-.02 1.56-.83V4.25C23 1.9 18.08 0 12 0zM5.88 11.24L4.37 7.69c.75-.28 1.6-.52 2.53-.71l-1.02 4.26zm12.24 0L17.1 6.98c.93.19 1.78.43 2.53.71l-1.51 3.55z" + d: "M12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm-3.48.94C8.04 17.55 7 16.76 7 14H5c0 2.7.93 4.41 2.3 5.5.5.4 1.1.7 1.7.9V24h6v-3.6c.6-.2 1.2-.5 1.7-.9 1.37-1.09 2.3-2.8 2.3-5.5h-2c0 2.76-1.04 3.55-1.52 3.94C14.68 18.54 14 19 12 19s-2.68-.46-3.48-1.06zM12 0C5.92 0 1 1.9 1 4.25v3.49c0 .81.88 1.26 1.56.83.14-.09.28-.18.44-.26L5 13h2l1.5-6.28a27.852 27.852 0 017 0L17 13h2l2-4.69c.16.09.3.17.44.26.68.43 1.56-.02 1.56-.83V4.25C23 1.9 18.08 0 12 0zM5.88 11.24L4.37 7.69c.75-.28 1.6-.52 2.53-.71l-1.02 4.26zm12.24 0L17.1 6.98c.93.19 1.78.43 2.53.71l-1.51 3.55z", + fill: "currentColor" })); } diff --git a/icons/es5/Park.js b/icons/es5/Park.js index 98c818d940..b597726474 100644 --- a/icons/es5/Park.js +++ b/icons/es5/Park.js @@ -7,9 +7,11 @@ function SvgPark(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.96v-4H21z" + d: "M17 12h2L12 2 5.05 12H7l-3.9 6h6.92v4h3.96v-4H21z", + fill: "currentColor" })); } diff --git a/icons/es5/PartyMode.js b/icons/es5/PartyMode.js index eea7f1ea41..5fe93345d3 100644 --- a/icons/es5/PartyMode.js +++ b/icons/es5/PartyMode.js @@ -7,9 +7,11 @@ function SvgPartyMode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 7c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1A5.002 5.002 0 0112 7zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08a5.002 5.002 0 01-4.9 6z" + d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zM12 7c1.63 0 3.06.79 3.98 2H12c-1.66 0-3 1.34-3 3 0 .35.07.69.18 1H7.1A5.002 5.002 0 0112 7zm0 10c-1.63 0-3.06-.79-3.98-2H12c1.66 0 3-1.34 3-3 0-.35-.07-.69-.18-1h2.08a5.002 5.002 0 01-4.9 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Password.js b/icons/es5/Password.js index 5ad7974508..74eb77b158 100644 --- a/icons/es5/Password.js +++ b/icons/es5/Password.js @@ -7,9 +7,11 @@ function SvgPassword(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75l1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z" + d: "M2 17h20v2H2v-2zm1.15-4.05L4 11.47l.85 1.48 1.3-.75-.85-1.48H7v-1.5H5.3l.85-1.47L4.85 7 4 8.47 3.15 7l-1.3.75.85 1.47H1v1.5h1.7l-.85 1.48 1.3.75zm6.7-.75l1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H15v-1.5h-1.7l.85-1.47-1.3-.75L12 8.47 11.15 7l-1.3.75.85 1.47H9v1.5h1.7l-.85 1.48zM23 9.22h-1.7l.85-1.47-1.3-.75L20 8.47 19.15 7l-1.3.75.85 1.47H17v1.5h1.7l-.85 1.48 1.3.75.85-1.48.85 1.48 1.3-.75-.85-1.48H23v-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Pattern.js b/icons/es5/Pattern.js index 58056a382c..73b785e8b8 100644 --- a/icons/es5/Pattern.js +++ b/icons/es5/Pattern.js @@ -7,9 +7,11 @@ function SvgPattern(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54a1.98 1.98 0 00-3.44 0H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57a1.98 1.98 0 003.44 0h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z" + d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm2 8c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6-6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm6 2c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-.02 6c-.74 0-1.37.4-1.72 1h-2.54a1.98 1.98 0 00-3.44 0H8.41l3.07-3.07c.17.04.34.07.52.07 1.1 0 2-.9 2-2 0-.18-.03-.35-.07-.51l3.56-3.56c.16.04.33.07.51.07 1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2c0 .18.03.35.07.51l-3.56 3.56c-.16-.04-.33-.07-.51-.07-1.1 0-2 .9-2 2 0 .18.03.35.07.51l-3.56 3.56C6.35 16.03 6.18 16 6 16c-1.1 0-2 .9-2 2s.9 2 2 2c.74 0 1.37-.4 1.72-1h2.57a1.98 1.98 0 003.44 0h2.55c.34.6.98 1 1.72 1 1.1 0 2-.9 2-2-.02-1.1-.92-2-2.02-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Pause.js b/icons/es5/Pause.js index 53248f7d2b..94cd52977f 100644 --- a/icons/es5/Pause.js +++ b/icons/es5/Pause.js @@ -7,9 +7,11 @@ function SvgPause(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z" + d: "M6 19h4V5H6v14zm8-14v14h4V5h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/PauseCircle.js b/icons/es5/PauseCircle.js index d1a8fe53be..81681aebde 100644 --- a/icons/es5/PauseCircle.js +++ b/icons/es5/PauseCircle.js @@ -7,9 +7,11 @@ function SvgPauseCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z", + fill: "currentColor" })); } diff --git a/icons/es5/PauseCircleFilled.js b/icons/es5/PauseCircleFilled.js index 3c8ea37128..76595f556e 100644 --- a/icons/es5/PauseCircleFilled.js +++ b/icons/es5/PauseCircleFilled.js @@ -7,9 +7,11 @@ function SvgPauseCircleFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 14H9V8h2v8zm4 0h-2V8h2v8z", + fill: "currentColor" })); } diff --git a/icons/es5/PauseCircleOutline.js b/icons/es5/PauseCircleOutline.js index 57effb1f99..4b06fddb7c 100644 --- a/icons/es5/PauseCircleOutline.js +++ b/icons/es5/PauseCircleOutline.js @@ -7,9 +7,11 @@ function SvgPauseCircleOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z" + d: "M9 16h2V8H9v8zm3-14C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8zm1-4h2V8h-2v8z", + fill: "currentColor" })); } diff --git a/icons/es5/PausePresentation.js b/icons/es5/PausePresentation.js index b1968ab750..f1009fcb20 100644 --- a/icons/es5/PausePresentation.js +++ b/icons/es5/PausePresentation.js @@ -7,9 +7,11 @@ function SvgPausePresentation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 3v18h22V3H1zm20 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z" + d: "M1 3v18h22V3H1zm20 16H3V5h18v14zM9 8h2v8H9zm4 0h2v8h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Payment.js b/icons/es5/Payment.js index cb0b25506b..d944fda27a 100644 --- a/icons/es5/Payment.js +++ b/icons/es5/Payment.js @@ -7,9 +7,11 @@ function SvgPayment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z" + d: "M22 4H2v16h20V4zm-2 14H4v-6h16v6zm0-10H4V6h16v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Payments.js b/icons/es5/Payments.js index e362d594d6..e0b1ca1303 100644 --- a/icons/es5/Payments.js +++ b/icons/es5/Payments.js @@ -7,9 +7,11 @@ function SvgPayments(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 7v13H4v-2h17V7h2zm-4 9H1V4h18v12zm-6-6c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" + d: "M23 7v13H4v-2h17V7h2zm-4 9H1V4h18v12zm-6-6c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Paypal.js b/icons/es5/Paypal.js index 149028037b..ddd088cbb8 100644 --- a/icons/es5/Paypal.js +++ b/icons/es5/Paypal.js @@ -7,11 +7,14 @@ function SvgPaypal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.93 12.99c.1 0 2.42.1 3.8-.24h.01c1.59-.39 3.8-1.51 4.37-5.17 0 0 1.27-4.58-5.03-4.58H7.67c-.49 0-.91.36-.99.84L4.38 18.4c-.05.3.19.58.49.58H8.3l.84-5.32c.06-.38.39-.67.79-.67z" + d: "M9.93 12.99c.1 0 2.42.1 3.8-.24h.01c1.59-.39 3.8-1.51 4.37-5.17 0 0 1.27-4.58-5.03-4.58H7.67c-.49 0-.91.36-.99.84L4.38 18.4c-.05.3.19.58.49.58H8.3l.84-5.32c.06-.38.39-.67.79-.67z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18.99 8.29c-.81 3.73-3.36 5.7-7.42 5.7H10.1l-1.03 6.52c-.04.26.16.49.42.49h1.9c.34 0 .64-.25.69-.59.08-.4.52-3.32.61-3.82.05-.34.35-.59.69-.59h.44c2.82 0 5.03-1.15 5.68-4.46.26-1.34.12-2.44-.51-3.25z" + d: "M18.99 8.29c-.81 3.73-3.36 5.7-7.42 5.7H10.1l-1.03 6.52c-.04.26.16.49.42.49h1.9c.34 0 .64-.25.69-.59.08-.4.52-3.32.61-3.82.05-.34.35-.59.69-.59h.44c2.82 0 5.03-1.15 5.68-4.46.26-1.34.12-2.44-.51-3.25z", + fill: "currentColor" })); } diff --git a/icons/es5/PedalBike.js b/icons/es5/PedalBike.js index fc4c42a10a..e3f02e1fa6 100644 --- a/icons/es5/PedalBike.js +++ b/icons/es5/PedalBike.js @@ -7,9 +7,11 @@ function SvgPedalBike(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.18 10L16 4h-4v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z" + d: "M18.18 10L16 4h-4v2h2.6l1.46 4h-4.81l-.36-1H12V7H7v2h1.75l1.82 5H9.9c-.44-2.23-2.31-3.88-4.65-3.99C2.45 9.87 0 12.2 0 15c0 2.8 2.2 5 5 5 2.46 0 4.45-1.69 4.9-4h4.2c.44 2.23 2.31 3.88 4.65 3.99 2.8.13 5.25-2.19 5.25-5 0-2.8-2.2-5-5-5h-.82zM7.82 16c-.4 1.17-1.49 2-2.82 2-1.68 0-3-1.32-3-3s1.32-3 3-3c1.33 0 2.42.83 2.82 2H5v2h2.82zm6.28-2h-1.4l-.73-2H15c-.44.58-.76 1.25-.9 2zm4.9 4c-1.68 0-3-1.32-3-3 0-.93.41-1.73 1.05-2.28l.96 2.64 1.88-.68-.97-2.67c.03 0 .06-.01.09-.01 1.68 0 3 1.32 3 3s-1.33 3-3.01 3z", + fill: "currentColor" })); } diff --git a/icons/es5/Pending.js b/icons/es5/Pending.js index a7bb9d2df1..07cde979ed 100644 --- a/icons/es5/Pending.js +++ b/icons/es5/Pending.js @@ -7,9 +7,11 @@ function SvgPending(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PendingActions.js b/icons/es5/PendingActions.js index 9b762a4133..d5c8131fe5 100644 --- a/icons/es5/PendingActions.js +++ b/icons/es5/PendingActions.js @@ -7,9 +7,11 @@ function SvgPendingActions(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM20 3h-5.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H4v19h8.11a6.743 6.743 0 01-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V3zm-8 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71zM20 3h-5.18C14.4 1.84 13.3 1 12 1s-2.4.84-2.82 2H4v19h8.11a6.743 6.743 0 01-1.42-2H6V5h2v3h8V5h2v5.08c.71.1 1.38.31 2 .6V3zm-8 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Pentagon.js b/icons/es5/Pentagon.js index 542e9d8f17..d8fd1a9d6e 100644 --- a/icons/es5/Pentagon.js +++ b/icons/es5/Pentagon.js @@ -7,9 +7,11 @@ function SvgPentagon(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 9l4 12h12l4-12-10-7z" + d: "M2 9l4 12h12l4-12-10-7z", + fill: "currentColor" })); } diff --git a/icons/es5/PeopleAlt.js b/icons/es5/PeopleAlt.js index a435d2a757..8d28630b1c 100644 --- a/icons/es5/PeopleAlt.js +++ b/icons/es5/PeopleAlt.js @@ -7,10 +7,12 @@ function SvgPeopleAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M16.67 13.13C18.04 14.06 19 15.32 19 17v3h4v-3c0-2.18-3.57-3.47-6.33-3.87z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 8, @@ -18,7 +20,8 @@ function SvgPeopleAlt(props) { r: 4 }), /*#__PURE__*/React.createElement("path", { d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4c-.47 0-.91.1-1.33.24a5.98 5.98 0 010 7.52c.42.14.86.24 1.33.24zm-6 1c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/PeopleOutline.js b/icons/es5/PeopleOutline.js index 4ca3a8b0ff..5ea673ceec 100644 --- a/icons/es5/PeopleOutline.js +++ b/icons/es5/PeopleOutline.js @@ -7,9 +7,11 @@ function SvgPeopleOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z" + d: "M9 12c1.93 0 3.5-1.57 3.5-3.5S10.93 5 9 5 5.5 6.57 5.5 8.5 7.07 12 9 12zm0-5c.83 0 1.5.67 1.5 1.5S9.83 10 9 10s-1.5-.67-1.5-1.5S8.17 7 9 7zm0 6.75c-2.34 0-7 1.17-7 3.5V19h14v-1.75c0-2.33-4.66-3.5-7-3.5zM4.34 17c.84-.58 2.87-1.25 4.66-1.25s3.82.67 4.66 1.25H4.34zm11.7-3.19c1.16.84 1.96 1.96 1.96 3.44V19h4v-1.75c0-2.02-3.5-3.17-5.96-3.44zM15 12c1.93 0 3.5-1.57 3.5-3.5S16.93 5 15 5c-.54 0-1.04.13-1.5.35.63.89 1 1.98 1 3.15s-.37 2.26-1 3.15c.46.22.96.35 1.5.35z", + fill: "currentColor" })); } diff --git a/icons/es5/Percent.js b/icons/es5/Percent.js index 665ea8a6b3..20b75cbafb 100644 --- a/icons/es5/Percent.js +++ b/icons/es5/Percent.js @@ -7,9 +7,11 @@ function SvgPercent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.5 4C5.57 4 4 5.57 4 7.5S5.57 11 7.5 11 11 9.43 11 7.5 9.43 4 7.5 4zm0 5C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm9 4c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.41 20L4 18.59 18.59 4 20 5.41 5.41 20z" + d: "M7.5 4C5.57 4 4 5.57 4 7.5S5.57 11 7.5 11 11 9.43 11 7.5 9.43 4 7.5 4zm0 5C6.67 9 6 8.33 6 7.5S6.67 6 7.5 6 9 6.67 9 7.5 8.33 9 7.5 9zm9 4c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm0 5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5.41 20L4 18.59 18.59 4 20 5.41 5.41 20z", + fill: "currentColor" })); } diff --git a/icons/es5/Percentage.js b/icons/es5/Percentage.js index 8396e5a50b..d07186764e 100644 --- a/icons/es5/Percentage.js +++ b/icons/es5/Percentage.js @@ -7,9 +7,11 @@ function SvgPercentage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.501 3.5l-15 15.001 1.996 1.996 15-15zM7.002 5a2 2 0 10-.004 4 2 2 0 00.004-4zm10 10a2 2 0 10-.004 4 2 2 0 00.004-4z" + d: "M18.501 3.5l-15 15.001 1.996 1.996 15-15zM7.002 5a2 2 0 10-.004 4 2 2 0 00.004-4zm10 10a2 2 0 10-.004 4 2 2 0 00.004-4z", + fill: "currentColor" })); } diff --git a/icons/es5/PermCameraMic.js b/icons/es5/PermCameraMic.js index 6b321faf53..66b93bc2af 100644 --- a/icons/es5/PermCameraMic.js +++ b/icons/es5/PermCameraMic.js @@ -7,9 +7,11 @@ function SvgPermCameraMic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 5h-5.17L15 3H9L7.17 5H2v16h9v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h9V5zm-8 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z" + d: "M22 5h-5.17L15 3H9L7.17 5H2v16h9v-2.09c-2.83-.48-5-2.94-5-5.91h2c0 2.21 1.79 4 4 4s4-1.79 4-4h2c0 2.97-2.17 5.43-5 5.91V21h9V5zm-8 8c0 1.1-.9 2-2 2s-2-.9-2-2V9c0-1.1.9-2 2-2s2 .9 2 2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/PermContactCalendar.js b/icons/es5/PermContactCalendar.js index 761a530ff6..38eae7b27c 100644 --- a/icons/es5/PermContactCalendar.js +++ b/icons/es5/PermContactCalendar.js @@ -7,9 +7,11 @@ function SvgPermContactCalendar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-9 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z" + d: "M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-9 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zm6 12H6v-1c0-2 4-3.1 6-3.1s6 1.1 6 3.1v1z", + fill: "currentColor" })); } diff --git a/icons/es5/PermDataSetting.js b/icons/es5/PermDataSetting.js index 4d6565c696..67b2384863 100644 --- a/icons/es5/PermDataSetting.js +++ b/icons/es5/PermDataSetting.js @@ -7,9 +7,11 @@ function SvgPermDataSetting(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83a.26.26 0 00.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83a3.908 3.908 0 000 .98l-1.06.83a.26.26 0 00-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73a.26.26 0 00-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M18.99 11.5c.34 0 .67.03 1 .07L20 0 0 20h11.56c-.04-.33-.07-.66-.07-1 0-4.14 3.36-7.5 7.5-7.5zm3.71 7.99c.02-.16.04-.32.04-.49s-.01-.33-.04-.49l1.06-.83a.26.26 0 00.06-.32l-1-1.73c-.06-.11-.19-.15-.31-.11l-1.24.5c-.26-.2-.54-.37-.85-.49l-.19-1.32c-.01-.12-.12-.21-.24-.21h-2c-.12 0-.23.09-.25.21l-.19 1.32c-.3.13-.59.29-.85.49l-1.24-.5c-.11-.04-.24 0-.31.11l-1 1.73c-.06.11-.04.24.06.32l1.06.83a3.908 3.908 0 000 .98l-1.06.83a.26.26 0 00-.06.32l1 1.73c.06.11.19.15.31.11l1.24-.5c.26.2.54.37.85.49l.19 1.32c.02.12.12.21.25.21h2c.12 0 .23-.09.25-.21l.19-1.32c.3-.13.59-.29.84-.49l1.25.5c.11.04.24 0 .31-.11l1-1.73a.26.26 0 00-.06-.32l-1.07-.83zm-3.71 1.01c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PermDeviceInformation.js b/icons/es5/PermDeviceInformation.js index fa76dd37e3..8430623fbf 100644 --- a/icons/es5/PermDeviceInformation.js +++ b/icons/es5/PermDeviceInformation.js @@ -7,9 +7,11 @@ function SvgPermDeviceInformation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 7h-2v2h2V7zm0 4h-2v6h2v-6zM5 1v22h14V1H5zm12 18H7V5h10v14z" + d: "M13 7h-2v2h2V7zm0 4h-2v6h2v-6zM5 1v22h14V1H5zm12 18H7V5h10v14z", + fill: "currentColor" })); } diff --git a/icons/es5/PermIdentity.js b/icons/es5/PermIdentity.js index 45135b43bc..3b24d59a71 100644 --- a/icons/es5/PermIdentity.js +++ b/icons/es5/PermIdentity.js @@ -7,9 +7,11 @@ function SvgPermIdentity(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z" + d: "M12 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm0-6c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm0 7c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4zm6 5H6v-.99c.2-.72 3.3-2.01 6-2.01s5.8 1.29 6 2v1z", + fill: "currentColor" })); } diff --git a/icons/es5/PermMedia.js b/icons/es5/PermMedia.js index ee1d7e3409..f6abbdf517 100644 --- a/icons/es5/PermMedia.js +++ b/icons/es5/PermMedia.js @@ -7,9 +7,11 @@ function SvgPermMedia(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 6H0v16h20v-2H2V6zm22-2H14l-2-2H4v16h20V4zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z" + d: "M2 6H0v16h20v-2H2V6zm22-2H14l-2-2H4v16h20V4zM7 15l4.5-6 3.5 4.51 2.5-3.01L21 15H7z", + fill: "currentColor" })); } diff --git a/icons/es5/PermPhoneMsg.js b/icons/es5/PermPhoneMsg.js index ab0ce29ac6..5c37527618 100644 --- a/icons/es5/PermPhoneMsg.js +++ b/icons/es5/PermPhoneMsg.js @@ -7,9 +7,11 @@ function SvgPermPhoneMsg(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3v10l3-3h6V3zm1.21 14.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" + d: "M12 3v10l3-3h6V3zm1.21 14.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z", + fill: "currentColor" })); } diff --git a/icons/es5/PermScanWifi.js b/icons/es5/PermScanWifi.js index 35017b9c34..3b46f94d08 100644 --- a/icons/es5/PermScanWifi.js +++ b/icons/es5/PermScanWifi.js @@ -7,9 +7,11 @@ function SvgPermScanWifi(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z" + d: "M12 3C6.95 3 3.15 4.85 0 7.23L12 22 24 7.25C20.85 4.87 17.05 3 12 3zm1 13h-2v-6h2v6zm-2-8V6h2v2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Person2.js b/icons/es5/Person2.js index 3b434ed6cd..3aefb40c8f 100644 --- a/icons/es5/Person2.js +++ b/icons/es5/Person2.js @@ -7,9 +7,11 @@ function SvgPerson2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.39 14.56C16.71 13.7 14.53 13 12 13s-4.71.7-6.39 1.56A2.97 2.97 0 004 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM9.78 12h4.44c1.21 0 2.14-1.06 1.98-2.26l-.32-2.45C15.57 5.39 13.92 4 12 4S8.43 5.39 8.12 7.29L7.8 9.74c-.16 1.2.77 2.26 1.98 2.26z" + d: "M18.39 14.56C16.71 13.7 14.53 13 12 13s-4.71.7-6.39 1.56A2.97 2.97 0 004 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM9.78 12h4.44c1.21 0 2.14-1.06 1.98-2.26l-.32-2.45C15.57 5.39 13.92 4 12 4S8.43 5.39 8.12 7.29L7.8 9.74c-.16 1.2.77 2.26 1.98 2.26z", + fill: "currentColor" })); } diff --git a/icons/es5/Person3.js b/icons/es5/Person3.js index f757d68851..83b1e8cbab 100644 --- a/icons/es5/Person3.js +++ b/icons/es5/Person3.js @@ -7,9 +7,11 @@ function SvgPerson3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.39 14.56C16.71 13.7 14.53 13 12 13s-4.71.7-6.39 1.56A2.97 2.97 0 004 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM10 12h4c1.66 0 3-1.34 3-3 0-.73-.27-1.4-.71-1.92.13-.33.21-.7.21-1.08a3 3 0 00-1.86-2.77C14 2.48 13.06 2 12 2s-2 .48-2.64 1.23A3 3 0 007.5 6c0 .38.08.75.21 1.08C7.27 7.6 7 8.27 7 9c0 1.66 1.34 3 3 3z" + d: "M18.39 14.56C16.71 13.7 14.53 13 12 13s-4.71.7-6.39 1.56A2.97 2.97 0 004 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM10 12h4c1.66 0 3-1.34 3-3 0-.73-.27-1.4-.71-1.92.13-.33.21-.7.21-1.08a3 3 0 00-1.86-2.77C14 2.48 13.06 2 12 2s-2 .48-2.64 1.23A3 3 0 007.5 6c0 .38.08.75.21 1.08C7.27 7.6 7 8.27 7 9c0 1.66 1.34 3 3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/Person4.js b/icons/es5/Person4.js index 3d5d7b3f0f..ffd64604c1 100644 --- a/icons/es5/Person4.js +++ b/icons/es5/Person4.js @@ -7,9 +7,11 @@ function SvgPerson4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.39 14.56C16.71 13.7 14.53 13 12 13s-4.71.7-6.39 1.56A2.97 2.97 0 004 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM12 12c2.21 0 4-1.79 4-4V4.5c0-.83-.67-1.5-1.5-1.5-.52 0-.98.27-1.25.67-.27-.4-.73-.67-1.25-.67s-.98.27-1.25.67c-.27-.4-.73-.67-1.25-.67C8.67 3 8 3.67 8 4.5V8c0 2.21 1.79 4 4 4z" + d: "M18.39 14.56C16.71 13.7 14.53 13 12 13s-4.71.7-6.39 1.56A2.97 2.97 0 004 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM12 12c2.21 0 4-1.79 4-4V4.5c0-.83-.67-1.5-1.5-1.5-.52 0-.98.27-1.25.67-.27-.4-.73-.67-1.25-.67s-.98.27-1.25.67c-.27-.4-.73-.67-1.25-.67C8.67 3 8 3.67 8 4.5V8c0 2.21 1.79 4 4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonAdd.js b/icons/es5/PersonAdd.js index 912446fdc7..453c98b4f3 100644 --- a/icons/es5/PersonAdd.js +++ b/icons/es5/PersonAdd.js @@ -7,9 +7,11 @@ function SvgPersonAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z" + d: "M15 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm-9-2V7H4v3H1v2h3v3h2v-3h3v-2H6zm9 4c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonAddAlt.js b/icons/es5/PersonAddAlt.js index 5b13d5f5c0..12db962798 100644 --- a/icons/es5/PersonAddAlt.js +++ b/icons/es5/PersonAddAlt.js @@ -7,9 +7,11 @@ function SvgPersonAddAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.39 14.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56A2.97 2.97 0 001 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm11-3V6h-2v3h-3v2h3v3h2v-3h3V9h-3z" + d: "M15.39 14.56C13.71 13.7 11.53 13 9 13s-4.71.7-6.39 1.56A2.97 2.97 0 001 17.22V20h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM9 12c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm11-3V6h-2v3h-3v2h3v3h2v-3h3V9h-3z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonAddAlt1.js b/icons/es5/PersonAddAlt1.js index 78e6855e65..0a5d38f0d6 100644 --- a/icons/es5/PersonAddAlt1.js +++ b/icons/es5/PersonAddAlt1.js @@ -7,9 +7,11 @@ function SvgPersonAddAlt1(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm2 2v2h3v3h2v-3h3v-2h-3V7h-2v3h-3zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" + d: "M13 8c0-2.21-1.79-4-4-4S5 5.79 5 8s1.79 4 4 4 4-1.79 4-4zm2 2v2h3v3h2v-3h3v-2h-3V7h-2v3h-3zM1 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonAddDisabled.js b/icons/es5/PersonAddDisabled.js index 88a02ce767..7fcfe1e521 100644 --- a/icons/es5/PersonAddDisabled.js +++ b/icons/es5/PersonAddDisabled.js @@ -7,9 +7,11 @@ function SvgPersonAddDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zm2.21 2.21L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zM6.88 10H6v-.88l.88.88z" + d: "M14.48 11.95c.17.02.34.05.52.05 2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4c0 .18.03.35.05.52l3.43 3.43zm2.21 2.21L22.53 20H23v-2c0-2.14-3.56-3.5-6.31-3.84zM0 3.12l4 4V10H1v2h3v3h2v-3h2.88l2.51 2.51C9.19 15.11 7 16.3 7 18v2h9.88l4 4 1.41-1.41L1.41 1.71 0 3.12zM6.88 10H6v-.88l.88.88z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonOff.js b/icons/es5/PersonOff.js index bfa8291edb..a4237e0b0b 100644 --- a/icons/es5/PersonOff.js +++ b/icons/es5/PersonOff.js @@ -7,9 +7,11 @@ function SvgPersonOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.65 5.82a3.999 3.999 0 115.53 5.53L8.65 5.82zM20 17.17c-.02-1.1-.63-2.11-1.61-2.62-.54-.28-1.13-.54-1.77-.76L20 17.17zm1.19 4.02L2.81 2.81 1.39 4.22l8.89 8.89c-1.81.23-3.39.79-4.67 1.45A2.97 2.97 0 004 17.22V20h13.17l2.61 2.61 1.41-1.42z" + d: "M8.65 5.82a3.999 3.999 0 115.53 5.53L8.65 5.82zM20 17.17c-.02-1.1-.63-2.11-1.61-2.62-.54-.28-1.13-.54-1.77-.76L20 17.17zm1.19 4.02L2.81 2.81 1.39 4.22l8.89 8.89c-1.81.23-3.39.79-4.67 1.45A2.97 2.97 0 004 17.22V20h13.17l2.61 2.61 1.41-1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonOutline.js b/icons/es5/PersonOutline.js index a2cecd38c7..f3e0e820f2 100644 --- a/icons/es5/PersonOutline.js +++ b/icons/es5/PersonOutline.js @@ -7,9 +7,11 @@ function SvgPersonOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5.9a2.1 2.1 0 110 4.2 2.1 2.1 0 010-4.2m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z" + d: "M12 5.9a2.1 2.1 0 110 4.2 2.1 2.1 0 010-4.2m0 9c2.97 0 6.1 1.46 6.1 2.1v1.1H5.9V17c0-.64 3.13-2.1 6.1-2.1M12 4C9.79 4 8 5.79 8 8s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm0 9c-2.67 0-8 1.34-8 4v3h16v-3c0-2.66-5.33-4-8-4z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonPin.js b/icons/es5/PersonPin.js index ac40028216..53c16b379b 100644 --- a/icons/es5/PersonPin.js +++ b/icons/es5/PersonPin.js @@ -7,9 +7,11 @@ function SvgPersonPin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 2H3v18h6l3 3 3-3h6V2zm-9 3.3c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7S9.3 9.49 9.3 8s1.21-2.7 2.7-2.7zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z" + d: "M21 2H3v18h6l3 3 3-3h6V2zm-9 3.3c1.49 0 2.7 1.21 2.7 2.7s-1.21 2.7-2.7 2.7S9.3 9.49 9.3 8s1.21-2.7 2.7-2.7zM18 16H6v-.9c0-2 4-3.1 6-3.1s6 1.1 6 3.1v.9z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonPinCircle.js b/icons/es5/PersonPinCircle.js index 59077f2dfc..bea9d4f09e 100644 --- a/icons/es5/PersonPinCircle.js +++ b/icons/es5/PersonPinCircle.js @@ -7,9 +7,11 @@ function SvgPersonPinCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 11c-1.33 0-4 .67-4 2v.16c.97 1.12 2.4 1.84 4 1.84s3.03-.72 4-1.84V13c0-1.33-2.67-2-4-2zm0-1c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-8c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z" + d: "M12 11c-1.33 0-4 .67-4 2v.16c.97 1.12 2.4 1.84 4 1.84s3.03-.72 4-1.84V13c0-1.33-2.67-2-4-2zm0-1c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm0-8c4.2 0 8 3.22 8 8.2 0 3.32-2.67 7.25-8 11.8-5.33-4.55-8-8.48-8-11.8C4 5.22 7.8 2 12 2z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonRemove.js b/icons/es5/PersonRemove.js index a9f83b8b57..d8c1184d97 100644 --- a/icons/es5/PersonRemove.js +++ b/icons/es5/PersonRemove.js @@ -7,9 +7,11 @@ function SvgPersonRemove(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonRemoveAlt1.js b/icons/es5/PersonRemoveAlt1.js index ddc53c20c7..acfe68f457 100644 --- a/icons/es5/PersonRemoveAlt1.js +++ b/icons/es5/PersonRemoveAlt1.js @@ -7,9 +7,11 @@ function SvgPersonRemoveAlt1(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z" + d: "M14 8c0-2.21-1.79-4-4-4S6 5.79 6 8s1.79 4 4 4 4-1.79 4-4zm3 2v2h6v-2h-6zM2 18v2h16v-2c0-2.66-5.33-4-8-4s-8 1.34-8 4z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonSearch.js b/icons/es5/PersonSearch.js index 8f85ffce47..7af80db51e 100644 --- a/icons/es5/PersonSearch.js +++ b/icons/es5/PersonSearch.js @@ -7,13 +7,15 @@ function SvgPersonSearch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 10, cy: 8, r: 4 }), /*#__PURE__*/React.createElement("path", { - d: "M10.35 14.01C7.62 13.91 2 15.27 2 18v2h9.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59l-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M10.35 14.01C7.62 13.91 2 15.27 2 18v2h9.54c-2.47-2.76-1.23-5.89-1.19-5.99zm9.08 4.01c.36-.59.57-1.28.57-2.02 0-2.21-1.79-4-4-4s-4 1.79-4 4 1.79 4 4 4c.74 0 1.43-.22 2.02-.57L20.59 22 22 20.59l-2.57-2.57zM16 18c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonalInjury.js b/icons/es5/PersonalInjury.js index bee09eb7b7..764f97fb69 100644 --- a/icons/es5/PersonalInjury.js +++ b/icons/es5/PersonalInjury.js @@ -7,9 +7,11 @@ function SvgPersonalInjury(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 6c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zm9 16h1c1.1 0 2-.9 2-2v-4.78c0-1.12-.61-2.15-1.61-2.66-.43-.22-.9-.43-1.39-.62V22zm-4.66-5L15 11.33c-.93-.21-1.93-.33-3-.33-2.53 0-4.71.7-6.39 1.56A2.97 2.97 0 004 15.22V22h2.34c-.22-.45-.34-.96-.34-1.5C6 18.57 7.57 17 9.5 17h2.84zM10 22l1.41-3H9.5c-.83 0-1.5.67-1.5 1.5S8.67 22 9.5 22h.5z" + d: "M8 6c0-2.21 1.79-4 4-4s4 1.79 4 4-1.79 4-4 4-4-1.79-4-4zm9 16h1c1.1 0 2-.9 2-2v-4.78c0-1.12-.61-2.15-1.61-2.66-.43-.22-.9-.43-1.39-.62V22zm-4.66-5L15 11.33c-.93-.21-1.93-.33-3-.33-2.53 0-4.71.7-6.39 1.56A2.97 2.97 0 004 15.22V22h2.34c-.22-.45-.34-.96-.34-1.5C6 18.57 7.57 17 9.5 17h2.84zM10 22l1.41-3H9.5c-.83 0-1.5.67-1.5 1.5S8.67 22 9.5 22h.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PersonalVideo.js b/icons/es5/PersonalVideo.js index a9c667cd74..013a194320 100644 --- a/icons/es5/PersonalVideo.js +++ b/icons/es5/PersonalVideo.js @@ -7,9 +7,11 @@ function SvgPersonalVideo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z" + d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z", + fill: "currentColor" })); } diff --git a/icons/es5/PestControl.js b/icons/es5/PestControl.js index dd5b78f2b2..e06fe14551 100644 --- a/icons/es5/PestControl.js +++ b/icons/es5/PestControl.js @@ -7,9 +7,11 @@ function SvgPestControl(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.04-.23.07-.46.07-.71 0-.8-.24-1.55-.65-2.18L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65A3.99 3.99 0 008 8c0 .25.03.48.07.72-.37.38-.71.81-.99 1.28L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-8 2h-2v-6h2v6z" + d: "M21 15v-2h-3.07c-.05-.39-.12-.77-.22-1.14l2.58-1.49-1-1.73L16.92 10c-.28-.48-.62-.91-.99-1.29.04-.23.07-.46.07-.71 0-.8-.24-1.55-.65-2.18L17 4.17l-1.41-1.41-1.72 1.72c-1.68-.89-3.1-.33-3.73 0L8.41 2.76 7 4.17l1.65 1.65A3.99 3.99 0 008 8c0 .25.03.48.07.72-.37.38-.71.81-.99 1.28L4.71 8.63l-1 1.73 2.58 1.49c-.1.37-.17.75-.22 1.14H3v2h3.07c.05.39.12.77.22 1.14l-2.58 1.49 1 1.73L7.08 18c1.08 1.81 2.88 3 4.92 3s3.84-1.19 4.92-3l2.37 1.37 1-1.73-2.58-1.49c.1-.37.17-.75.22-1.14H21zm-8 2h-2v-6h2v6z", + fill: "currentColor" })); } diff --git a/icons/es5/PestControlRodent.js b/icons/es5/PestControlRodent.js index 7c0cb09539..98303d640e 100644 --- a/icons/es5/PestControlRodent.js +++ b/icons/es5/PestControlRodent.js @@ -7,9 +7,11 @@ function SvgPestControlRodent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.31 17.38l-2.39-2.13c.52-2.36-1.36-4.25-3.42-4.25-1.16 0-3.5.9-3.5 3.5 0 .97.39 1.84 1.03 2.47l-.71.71A4.457 4.457 0 0111 14.5c0-1.7.96-3.17 2.35-3.93a5 5 0 00-2.28-.57c-2.38 0-4.37 1.65-4.91 3.87A2.997 2.997 0 014 11c0-1.66 1.34-3 3-3h2.5a2.5 2.5 0 000-5H7v2h2.5c.28 0 .5.22.5.5s-.22.5-.5.5H7a5.002 5.002 0 00-1 9.9v.03C6 18.73 8.27 21 11.07 21h8.86c1.87 0 2.81-2.34 1.38-3.62zM18 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M21.31 17.38l-2.39-2.13c.52-2.36-1.36-4.25-3.42-4.25-1.16 0-3.5.9-3.5 3.5 0 .97.39 1.84 1.03 2.47l-.71.71A4.457 4.457 0 0111 14.5c0-1.7.96-3.17 2.35-3.93a5 5 0 00-2.28-.57c-2.38 0-4.37 1.65-4.91 3.87A2.997 2.997 0 014 11c0-1.66 1.34-3 3-3h2.5a2.5 2.5 0 000-5H7v2h2.5c.28 0 .5.22.5.5s-.22.5-.5.5H7a5.002 5.002 0 00-1 9.9v.03C6 18.73 8.27 21 11.07 21h8.86c1.87 0 2.81-2.34 1.38-3.62zM18 19c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Pets.js b/icons/es5/Pets.js index 159b58b43a..0cc9bd776e 100644 --- a/icons/es5/Pets.js +++ b/icons/es5/Pets.js @@ -7,7 +7,8 @@ function SvgPets(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 4.5, cy: 9.5, @@ -25,7 +26,8 @@ function SvgPets(props) { cy: 9.5, r: 2.5 }), /*#__PURE__*/React.createElement("path", { - d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z" + d: "M17.34 14.86c-.87-1.02-1.6-1.89-2.48-2.91-.46-.54-1.05-1.08-1.75-1.32-.11-.04-.22-.07-.33-.09-.25-.04-.52-.04-.78-.04s-.53 0-.79.05c-.11.02-.22.05-.33.09-.7.24-1.28.78-1.75 1.32-.87 1.02-1.6 1.89-2.48 2.91-1.31 1.31-2.92 2.76-2.62 4.79.29 1.02 1.02 2.03 2.33 2.32.73.15 3.06-.44 5.54-.44h.18c2.48 0 4.81.58 5.54.44 1.31-.29 2.04-1.31 2.33-2.32.31-2.04-1.3-3.49-2.61-4.8z", + fill: "currentColor" })); } diff --git a/icons/es5/Phishing.js b/icons/es5/Phishing.js index 3b8b93455f..0fa88e79c1 100644 --- a/icons/es5/Phishing.js +++ b/icons/es5/Phishing.js @@ -7,9 +7,11 @@ function SvgPhishing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9c0-1.3-.84-2.4-2-2.82V2h-2v4.18C13.84 6.6 13 7.7 13 9s.84 2.4 2 2.82V15c0 2.21-1.79 4-4 4s-4-1.79-4-4v-1h3L5 9v6c0 3.31 2.69 6 6 6s6-2.69 6-6v-3.18c1.16-.42 2-1.52 2-2.82zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M19 9c0-1.3-.84-2.4-2-2.82V2h-2v4.18C13.84 6.6 13 7.7 13 9s.84 2.4 2 2.82V15c0 2.21-1.79 4-4 4s-4-1.79-4-4v-1h3L5 9v6c0 3.31 2.69 6 6 6s6-2.69 6-6v-3.18c1.16-.42 2-1.52 2-2.82zm-3 1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Phone.js b/icons/es5/Phone.js index 3dda5fa1c2..820feab859 100644 --- a/icons/es5/Phone.js +++ b/icons/es5/Phone.js @@ -7,9 +7,11 @@ function SvgPhone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 15.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" + d: "M21 15.46l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneAndroid.js b/icons/es5/PhoneAndroid.js index f750f58b33..544e0fd7ca 100644 --- a/icons/es5/PhoneAndroid.js +++ b/icons/es5/PhoneAndroid.js @@ -7,9 +7,11 @@ function SvgPhoneAndroid(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 1H5v22h14V1zm-5 20h-4v-1h4v1zm3-3H7V4h10v14z" + d: "M19 1H5v22h14V1zm-5 20h-4v-1h4v1zm3-3H7V4h10v14z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneBluetoothSpeaker.js b/icons/es5/PhoneBluetoothSpeaker.js index b760e3349d..95f9a133d9 100644 --- a/icons/es5/PhoneBluetoothSpeaker.js +++ b/icons/es5/PhoneBluetoothSpeaker.js @@ -7,9 +7,11 @@ function SvgPhoneBluetoothSpeaker(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21zm3 8.25l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z" + d: "M14.71 9.5L17 7.21V11h.5l2.85-2.85L18.21 6l2.15-2.15L17.5 1H17v3.79L14.71 2.5l-.71.71L16.79 6 14 8.79l.71.71zM18 2.91l.94.94-.94.94V2.91zm0 4.3l.94.94-.94.94V7.21zm3 8.25l-5.27-.61-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneCallback.js b/icons/es5/PhoneCallback.js index 0b1f70fb8d..4867b73c1a 100644 --- a/icons/es5/PhoneCallback.js +++ b/icons/es5/PhoneCallback.js @@ -7,9 +7,11 @@ function SvgPhoneCallback(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.73 14.85l-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z" + d: "M15.73 14.85l-2.52 2.52a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61zM18 9h-2.59l5.02-5.02-1.41-1.41L14 7.59V5h-2v6h6z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneDisabled.js b/icons/es5/PhoneDisabled.js index c6dda3ad9e..f0b3482a05 100644 --- a/icons/es5/PhoneDisabled.js +++ b/icons/es5/PhoneDisabled.js @@ -7,9 +7,11 @@ function SvgPhoneDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.52 17.35C11.39 19.83 7.36 21.22 3 20.97v-5.51l5.27-.61 2.52 2.52c.81-.41 1.58-.9 2.3-1.45L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26zm1.39-4.24c.56-.73 1.05-1.51 1.47-2.33l-2.53-2.53.61-5.25h5.51c.25 4.37-1.15 8.4-3.63 11.54l-1.43-1.43z" + d: "M14.52 17.35C11.39 19.83 7.36 21.22 3 20.97v-5.51l5.27-.61 2.52 2.52c.81-.41 1.58-.9 2.3-1.45L1.39 4.22l1.42-1.41L21.19 21.2l-1.41 1.41-5.26-5.26zm1.39-4.24c.56-.73 1.05-1.51 1.47-2.33l-2.53-2.53.61-5.25h5.51c.25 4.37-1.15 8.4-3.63 11.54l-1.43-1.43z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneEnabled.js b/icons/es5/PhoneEnabled.js index dd88b42691..f508efbf99 100644 --- a/icons/es5/PhoneEnabled.js +++ b/icons/es5/PhoneEnabled.js @@ -7,9 +7,11 @@ function SvgPhoneEnabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 15.46l5.27-.61 2.52 2.52c2.83-1.44 5.15-3.75 6.59-6.59l-2.53-2.53.61-5.25h5.51C21.55 13.18 13.18 21.55 3 20.97v-5.51z" + d: "M3 15.46l5.27-.61 2.52 2.52c2.83-1.44 5.15-3.75 6.59-6.59l-2.53-2.53.61-5.25h5.51C21.55 13.18 13.18 21.55 3 20.97v-5.51z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneForwarded.js b/icons/es5/PhoneForwarded.js index 11f8a8f9cb..62f96e74e2 100644 --- a/icons/es5/PhoneForwarded.js +++ b/icons/es5/PhoneForwarded.js @@ -7,9 +7,11 @@ function SvgPhoneForwarded(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 11l5-5-5-5v3h-4v4h4zm-4.79 6.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" + d: "M18 11l5-5-5-5v3h-4v4h4zm-4.79 6.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneInTalk.js b/icons/es5/PhoneInTalk.js index e2f77924d8..4f6e245f0e 100644 --- a/icons/es5/PhoneInTalk.js +++ b/icons/es5/PhoneInTalk.js @@ -7,9 +7,11 @@ function SvgPhoneInTalk(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 12h2a9 9 0 00-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm-1.79 5.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" + d: "M19 12h2a9 9 0 00-9-9v2c3.87 0 7 3.13 7 7zm-4 0h2c0-2.76-2.24-5-5-5v2c1.66 0 3 1.34 3 3zm-1.79 5.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneLocked.js b/icons/es5/PhoneLocked.js index 56c690bb72..990dad8722 100644 --- a/icons/es5/PhoneLocked.js +++ b/icons/es5/PhoneLocked.js @@ -7,11 +7,14 @@ function SvgPhoneLocked(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 5V4c0-1.1-.9-2-2-2s-2 .9-2 2v1h-1v5h6V5h-1zm-1 0h-2V4c0-.55.45-1 1-1s1 .45 1 1v1z" + d: "M20 5V4c0-1.1-.9-2-2-2s-2 .9-2 2v1h-1v5h6V5h-1zm-1 0h-2V4c0-.55.45-1 1-1s1 .45 1 1v1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21 15l-5-1-2.9 2.9c-2.5-1.43-4.57-3.5-6-6L10 8 9 3H3c0 3.28.89 6.35 2.43 9 1.58 2.73 3.85 4.99 6.57 6.57C14.65 20.1 17.72 21 21 21v-6z" + d: "M21 15l-5-1-2.9 2.9c-2.5-1.43-4.57-3.5-6-6L10 8 9 3H3c0 3.28.89 6.35 2.43 9 1.58 2.73 3.85 4.99 6.57 6.57C14.65 20.1 17.72 21 21 21v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/PhoneMissed.js b/icons/es5/PhoneMissed.js index 8107d405b0..3794153664 100644 --- a/icons/es5/PhoneMissed.js +++ b/icons/es5/PhoneMissed.js @@ -7,9 +7,11 @@ function SvgPhoneMissed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23.32 16.67a16.413 16.413 0 00-11.31-4.51c-4.39 0-8.37 1.72-11.31 4.51l-.69.69L3.65 21l3.93-2.72-.01-3.49c1.4-.45 2.9-.7 4.44-.7 1.55 0 3.04.24 4.44.7l-.01 3.49L20.37 21l3.64-3.64c0-.01-.52-.52-.69-.69zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z" + d: "M23.32 16.67a16.413 16.413 0 00-11.31-4.51c-4.39 0-8.37 1.72-11.31 4.51l-.69.69L3.65 21l3.93-2.72-.01-3.49c1.4-.45 2.9-.7 4.44-.7 1.55 0 3.04.24 4.44.7l-.01 3.49L20.37 21l3.64-3.64c0-.01-.52-.52-.69-.69zM7 6.43l4.94 4.94 7.07-7.07-1.41-1.42-5.66 5.66L8.4 5H11V3H5v6h2z", + fill: "currentColor" })); } diff --git a/icons/es5/PhonePaused.js b/icons/es5/PhonePaused.js index 1f0d72bfe8..d89f2d0971 100644 --- a/icons/es5/PhonePaused.js +++ b/icons/es5/PhonePaused.js @@ -7,9 +7,11 @@ function SvgPhonePaused(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 3h2v7h-2zm4 0h2v7h-2zm-5.79 14.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" + d: "M15 3h2v7h-2zm4 0h2v7h-2zm-5.79 14.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z", + fill: "currentColor" })); } diff --git a/icons/es5/Phonelink.js b/icons/es5/Phonelink.js index 6f273990ff..77b31c47fc 100644 --- a/icons/es5/Phonelink.js +++ b/icons/es5/Phonelink.js @@ -7,9 +7,11 @@ function SvgPhonelink(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z" + d: "M4 6h18V4H2v13H0v3h14v-3H4V6zm20 2h-8v12h8V8zm-2 9h-4v-7h4v7z", + fill: "currentColor" })); } diff --git a/icons/es5/PhonelinkErase.js b/icons/es5/PhonelinkErase.js index 7a82a50638..d084426ff9 100644 --- a/icons/es5/PhonelinkErase.js +++ b/icons/es5/PhonelinkErase.js @@ -7,9 +7,11 @@ function SvgPhonelinkErase(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM21 1H7v5h2V4h10v16H9v-2H7v5h14V1z" + d: "M13 8.2l-1-1-4 4-4-4-1 1 4 4-4 4 1 1 4-4 4 4 1-1-4-4 4-4zM21 1H7v5h2V4h10v16H9v-2H7v5h14V1z", + fill: "currentColor" })); } diff --git a/icons/es5/PhonelinkLock.js b/icons/es5/PhonelinkLock.js index 50c5088fd2..0ec5619b2a 100644 --- a/icons/es5/PhonelinkLock.js +++ b/icons/es5/PhonelinkLock.js @@ -7,9 +7,11 @@ function SvgPhonelinkLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM10.8 11V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11H4v6h8v-6h-1.2zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z" + d: "M21 1H7v5h2V4h10v16H9v-2H7v5h14V1zM10.8 11V9.5C10.8 8.1 9.4 7 8 7S5.2 8.1 5.2 9.5V11H4v6h8v-6h-1.2zm-1.3 0h-3V9.5c0-.8.7-1.3 1.5-1.3s1.5.5 1.5 1.3V11z", + fill: "currentColor" })); } diff --git a/icons/es5/PhonelinkOff.js b/icons/es5/PhonelinkOff.js index 9f6438d802..ca3df5f353 100644 --- a/icons/es5/PhonelinkOff.js +++ b/icons/es5/PhonelinkOff.js @@ -7,9 +7,11 @@ function SvgPhonelinkOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.56 4l-2.5-2.49L4.56 4zM24 8h-8v4.61l2 2V10h4v7h-1.61l3 3H24zm-2-2V4H7.39l2 2zM2.06 1.51L.65 2.92 2 4.27V17H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z" + d: "M4.56 4l-2.5-2.49L4.56 4zM24 8h-8v4.61l2 2V10h4v7h-1.61l3 3H24zm-2-2V4H7.39l2 2zM2.06 1.51L.65 2.92 2 4.27V17H0v3h17.73l2.35 2.35 1.41-1.41L2.06 1.51zM4 17V6.27L14.73 17H4z", + fill: "currentColor" })); } diff --git a/icons/es5/PhonelinkRing.js b/icons/es5/PhonelinkRing.js index 82ba0dfc10..1c01074d13 100644 --- a/icons/es5/PhonelinkRing.js +++ b/icons/es5/PhonelinkRing.js @@ -7,9 +7,11 @@ function SvgPhonelinkRing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM16 1H2v22h14V1zm-2 19H4V4h10v16z" + d: "M20.1 7.7l-1 1c1.8 1.8 1.8 4.6 0 6.5l1 1c2.5-2.3 2.5-6.1 0-8.5zM18 9.8l-1 1c.5.7.5 1.6 0 2.3l1 1c1.2-1.2 1.2-3 0-4.3zM16 1H2v22h14V1zm-2 19H4V4h10v16z", + fill: "currentColor" })); } diff --git a/icons/es5/PhonelinkSetup.js b/icons/es5/PhonelinkSetup.js index c575900582..a0dc55ab37 100644 --- a/icons/es5/PhonelinkSetup.js +++ b/icons/es5/PhonelinkSetup.js @@ -7,9 +7,11 @@ function SvgPhonelinkSetup(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 1v5h2V4h10v16H9v-2H7v5h14V1zm2.5 14.5c.29-.12.55-.29.8-.48l-.02.03 1.41.55 1.27-2.2-1.18-.95-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03 1.18-.95-1.26-2.2-1.41.55.02.03c-.26-.19-.52-.36-.81-.48L9.27 7H6.73L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03L4.3 8.4l-1.27 2.2 1.18.95.02-.03c-.01.16-.04.32-.04.48s.03.32.05.48l-.02-.03-1.18.95 1.27 2.2 1.41-.55-.02-.03c.25.19.51.36.8.48l.23 1.5h2.54l.23-1.5zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" + d: "M7 1v5h2V4h10v16H9v-2H7v5h14V1zm2.5 14.5c.29-.12.55-.29.8-.48l-.02.03 1.41.55 1.27-2.2-1.18-.95-.02.03c.02-.16.05-.32.05-.48s-.03-.32-.05-.48l.02.03 1.18-.95-1.26-2.2-1.41.55.02.03c-.26-.19-.52-.36-.81-.48L9.27 7H6.73L6.5 8.5c-.29.12-.55.29-.8.48l.02-.03L4.3 8.4l-1.27 2.2 1.18.95.02-.03c-.01.16-.04.32-.04.48s.03.32.05.48l-.02-.03-1.18.95 1.27 2.2 1.41-.55-.02-.03c.25.19.51.36.8.48l.23 1.5h2.54l.23-1.5zM6 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Photo.js b/icons/es5/Photo.js index e4db643030..7a398820c5 100644 --- a/icons/es5/Photo.js +++ b/icons/es5/Photo.js @@ -7,9 +7,11 @@ function SvgPhoto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z" + d: "M21 21V3H3v18h18zM8.5 13.5l2.5 3.01L14.5 12l4.5 6H5l3.5-4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PhotoAlbum.js b/icons/es5/PhotoAlbum.js index 8949d4f3a1..833678b665 100644 --- a/icons/es5/PhotoAlbum.js +++ b/icons/es5/PhotoAlbum.js @@ -7,9 +7,11 @@ function SvgPhotoAlbum(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H4v20h16V2zm-9 2h5v7l-2.5-1.5L11 11V4zM7 18l2.38-3.17L11 17l2.62-3.5L17 18H7z" + d: "M20 2H4v20h16V2zm-9 2h5v7l-2.5-1.5L11 11V4zM7 18l2.38-3.17L11 17l2.62-3.5L17 18H7z", + fill: "currentColor" })); } diff --git a/icons/es5/PhotoCameraBack.js b/icons/es5/PhotoCameraBack.js index c8c44d266b..5aeefe23c5 100644 --- a/icons/es5/PhotoCameraBack.js +++ b/icons/es5/PhotoCameraBack.js @@ -7,9 +7,11 @@ function SvgPhotoCameraBack(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM6 17l3-4 2.25 3 3-4L18 17H6z" + d: "M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM6 17l3-4 2.25 3 3-4L18 17H6z", + fill: "currentColor" })); } diff --git a/icons/es5/PhotoCameraFront.js b/icons/es5/PhotoCameraFront.js index adeba4cc69..605a782e7f 100644 --- a/icons/es5/PhotoCameraFront.js +++ b/icons/es5/PhotoCameraFront.js @@ -7,9 +7,11 @@ function SvgPhotoCameraFront(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM12 9c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0116 16.43V17z" + d: "M16.83 5L15 3H9L7.17 5H2v16h20V5h-5.17zM12 9c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0116 16.43V17z", + fill: "currentColor" })); } diff --git a/icons/es5/PhotoFilter.js b/icons/es5/PhotoFilter.js index 00fc0b164c..f3afe96d1d 100644 --- a/icons/es5/PhotoFilter.js +++ b/icons/es5/PhotoFilter.js @@ -7,9 +7,11 @@ function SvgPhotoFilter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 10v9H4.98V5h9V3H3v18h18V10h-2zm-2 0l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94L17 10zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z" + d: "M19 10v9H4.98V5h9V3H3v18h18V10h-2zm-2 0l.94-2.06L20 7l-2.06-.94L17 4l-.94 2.06L14 7l2.06.94L17 10zm-3.75.75L12 8l-1.25 2.75L8 12l2.75 1.25L12 16l1.25-2.75L16 12l-2.75-1.25z", + fill: "currentColor" })); } diff --git a/icons/es5/PhotoLibrary.js b/icons/es5/PhotoLibrary.js index 229981c5b7..453e88b7d8 100644 --- a/icons/es5/PhotoLibrary.js +++ b/icons/es5/PhotoLibrary.js @@ -7,9 +7,11 @@ function SvgPhotoLibrary(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 18V2H6v16h16zm-11-6l2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z" + d: "M22 18V2H6v16h16zm-11-6l2.03 2.71L16 11l4 5H8l3-4zM2 6v16h16v-2H4V6H2z", + fill: "currentColor" })); } diff --git a/icons/es5/PhotoSizeSelectActual.js b/icons/es5/PhotoSizeSelectActual.js index f007952880..07b22046d7 100644 --- a/icons/es5/PhotoSizeSelectActual.js +++ b/icons/es5/PhotoSizeSelectActual.js @@ -7,9 +7,11 @@ function SvgPhotoSizeSelectActual(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z" + d: "M23 3H1v18h22V3zM5 17l3.5-4.5 2.5 3.01L14.5 11l4.5 6H5z", + fill: "currentColor" })); } diff --git a/icons/es5/PhotoSizeSelectLarge.js b/icons/es5/PhotoSizeSelectLarge.js index 5bf7bf7b8a..1fa6bf1a1d 100644 --- a/icons/es5/PhotoSizeSelectLarge.js +++ b/icons/es5/PhotoSizeSelectLarge.js @@ -7,9 +7,11 @@ function SvgPhotoSizeSelectLarge(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 15h2v2h-2v-2zm0 4h2v2h-2v-2zm0-8h2v2h-2v-2zm-8-8h2v2h-2V3zm8 4h2v2h-2V7zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3H1v2h2V3zm20 0h-2v2h2V3zM9 3h2v2H9V3zM5 3h2v2H5V3zm-4 8v10h14V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z" + d: "M21 15h2v2h-2v-2zm0 4h2v2h-2v-2zm0-8h2v2h-2v-2zm-8-8h2v2h-2V3zm8 4h2v2h-2V7zM1 7h2v2H1V7zm16-4h2v2h-2V3zm0 16h2v2h-2v-2zM3 3H1v2h2V3zm20 0h-2v2h2V3zM9 3h2v2H9V3zM5 3h2v2H5V3zm-4 8v10h14V11H1zm2 8l2.5-3.21 1.79 2.15 2.5-3.22L13 19H3z", + fill: "currentColor" })); } diff --git a/icons/es5/PhotoSizeSelectSmall.js b/icons/es5/PhotoSizeSelectSmall.js index aa7a48728e..4d5f46f939 100644 --- a/icons/es5/PhotoSizeSelectSmall.js +++ b/icons/es5/PhotoSizeSelectSmall.js @@ -7,9 +7,11 @@ function SvgPhotoSizeSelectSmall(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 15h-2v2h2v-2zm0 4h-2v2h2v-2zm0-8h-2v2h2v-2zm-8-8h-2v2h2V3zm8 4h-2v2h2V7zM1 21h10v-6H1v6zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm4 0h-2v2h2V3zm-4 16h-2v2h2v-2zM3 11H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3zM3 3H1v2h2V3z" + d: "M23 15h-2v2h2v-2zm0 4h-2v2h2v-2zm0-8h-2v2h2v-2zm-8-8h-2v2h2V3zm8 4h-2v2h2V7zM1 21h10v-6H1v6zM3 7H1v2h2V7zm12 12h-2v2h2v-2zm4-16h-2v2h2V3zm4 0h-2v2h2V3zm-4 16h-2v2h2v-2zM3 11H1v2h2v-2zm8-8H9v2h2V3zM7 3H5v2h2V3zM3 3H1v2h2V3z", + fill: "currentColor" })); } diff --git a/icons/es5/Php.js b/icons/es5/Php.js index c13036ce25..e9ea28ec53 100644 --- a/icons/es5/Php.js +++ b/icons/es5/Php.js @@ -7,9 +7,11 @@ function SvgPhp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9zM8 9v4H4.5v2H3V9h5zm-1.5 1.5h-2v1h2v-1zm15-1.5v4H18v2h-1.5V9h5zM20 10.5h-2v1h2v-1z" + d: "M13 9h1.5v6H13v-2.5h-2V15H9.5V9H11v2h2V9zM8 9v4H4.5v2H3V9h5zm-1.5 1.5h-2v1h2v-1zm15-1.5v4H18v2h-1.5V9h5zM20 10.5h-2v1h2v-1z", + fill: "currentColor" })); } diff --git a/icons/es5/Piano.js b/icons/es5/Piano.js index 82b9d49864..0f4ba4e7f9 100644 --- a/icons/es5/Piano.js +++ b/icons/es5/Piano.js @@ -7,9 +7,11 @@ function SvgPiano(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-8 11.5h1.25V19h-4.5v-4.5H11V5h2v9.5zM5 5h2v9.5h1.25V19H5V5zm14 14h-3.25v-4.5H17V5h2v14z" + d: "M21 3H3v18h18V3zm-8 11.5h1.25V19h-4.5v-4.5H11V5h2v9.5zM5 5h2v9.5h1.25V19H5V5zm14 14h-3.25v-4.5H17V5h2v14z", + fill: "currentColor" })); } diff --git a/icons/es5/PianoOff.js b/icons/es5/PianoOff.js index b1772c9db2..4ea58dac2c 100644 --- a/icons/es5/PianoOff.js +++ b/icons/es5/PianoOff.js @@ -7,9 +7,11 @@ function SvgPianoOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.19 21.19L2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v4.67h1.25V19zm1.5 0v-4.5H11v-.67l3.25 3.25V19h-4.5zM5.83 3H21v15.17l-2-2V5h-2v9.17l-4-4V5h-2v3.17L5.83 3z" + d: "M21.19 21.19L2.81 2.81 1.39 4.22 3 5.83V21h15.17l1.61 1.61 1.41-1.42zM8.25 19H5V7.83l2 2v4.67h1.25V19zm1.5 0v-4.5H11v-.67l3.25 3.25V19h-4.5zM5.83 3H21v15.17l-2-2V5h-2v9.17l-4-4V5h-2v3.17L5.83 3z", + fill: "currentColor" })); } diff --git a/icons/es5/PictureAsPdf.js b/icons/es5/PictureAsPdf.js index 4d26d8713f..b1b4b3f1e4 100644 --- a/icons/es5/PictureAsPdf.js +++ b/icons/es5/PictureAsPdf.js @@ -7,9 +7,11 @@ function SvgPictureAsPdf(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H6v16h16V2zm-10.5 9H9v2H7.5V7h4v4zm5 .5c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v16h16v-2H4V6zm10 5.5h1v-3h-1v3z" + d: "M22 2H6v16h16V2zm-10.5 9H9v2H7.5V7h4v4zm5 .5c0 .83-.67 1.5-1.5 1.5h-2.5V7H15c.83 0 1.5.67 1.5 1.5v3zm4-3H19v1h1.5V11H19v2h-1.5V7h3v1.5zM9 9.5h1v-1H9v1zM4 6H2v16h16v-2H4V6zm10 5.5h1v-3h-1v3z", + fill: "currentColor" })); } diff --git a/icons/es5/PictureInPicture.js b/icons/es5/PictureInPicture.js index fa5153d4f7..3f90445df3 100644 --- a/icons/es5/PictureInPicture.js +++ b/icons/es5/PictureInPicture.js @@ -7,9 +7,11 @@ function SvgPictureInPicture(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 7h-8v6h8V7zm4-4H1v17.98h22V3zm-2 16.01H3V4.98h18v14.03z" + d: "M19 7h-8v6h8V7zm4-4H1v17.98h22V3zm-2 16.01H3V4.98h18v14.03z", + fill: "currentColor" })); } diff --git a/icons/es5/PictureInPictureAlt.js b/icons/es5/PictureInPictureAlt.js index c8e30b0538..c039f3f936 100644 --- a/icons/es5/PictureInPictureAlt.js +++ b/icons/es5/PictureInPictureAlt.js @@ -7,9 +7,11 @@ function SvgPictureInPictureAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 11h-8v6h8v-6zm4 10V3H1v18h22zm-2-1.98H3V4.97h18v14.05z" + d: "M19 11h-8v6h8v-6zm4 10V3H1v18h22zm-2-1.98H3V4.97h18v14.05z", + fill: "currentColor" })); } diff --git a/icons/es5/PieChart.js b/icons/es5/PieChart.js index d2b26f4543..16e9d6fe6f 100644 --- a/icons/es5/PieChart.js +++ b/icons/es5/PieChart.js @@ -7,9 +7,11 @@ function SvgPieChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z" + d: "M11 2v20c-5.07-.5-9-4.79-9-10s3.93-9.5 9-10zm2.03 0v8.99H22c-.47-4.74-4.24-8.52-8.97-8.99zm0 11.01V22c4.74-.47 8.5-4.25 8.97-8.99h-8.97z", + fill: "currentColor" })); } diff --git a/icons/es5/PieChartOutline.js b/icons/es5/PieChartOutline.js index d10971b768..c753acbb06 100644 --- a/icons/es5/PieChartOutline.js +++ b/icons/es5/PieChartOutline.js @@ -7,9 +7,11 @@ function SvgPieChartOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93A8.002 8.002 0 0113 19.93z" + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm1 2.07c3.61.45 6.48 3.33 6.93 6.93H13V4.07zM4 12c0-4.06 3.07-7.44 7-7.93v15.87c-3.93-.5-7-3.88-7-7.94zm9 7.93V13h6.93A8.002 8.002 0 0113 19.93z", + fill: "currentColor" })); } diff --git a/icons/es5/PinDrop.js b/icons/es5/PinDrop.js index 40f6647f21..9682428bc3 100644 --- a/icons/es5/PinDrop.js +++ b/icons/es5/PinDrop.js @@ -7,10 +7,12 @@ function SvgPinDrop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M5 20h14v2H5v-2zm7-13c-1.1 0-2 .9-2 2s.9 2 2 2a2 2 0 100-4zm0-5c3.27 0 7 2.46 7 7.15 0 3.12-2.33 6.41-7 9.85-4.67-3.44-7-6.73-7-9.85C5 4.46 8.73 2 12 2z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/PinEnd.js b/icons/es5/PinEnd.js index e85d137857..44d84e0c23 100644 --- a/icons/es5/PinEnd.js +++ b/icons/es5/PinEnd.js @@ -7,9 +7,11 @@ function SvgPinEnd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 12V6H4v12h10v2H2V4h20v8h-2zm-1 2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-4.34-6H9v5.66l2.12-2.12 2.83 2.83 1.41-1.41-2.83-2.83L14.66 8z" + d: "M20 12V6H4v12h10v2H2V4h20v8h-2zm-1 2c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3zm-4.34-6H9v5.66l2.12-2.12 2.83 2.83 1.41-1.41-2.83-2.83L14.66 8z", + fill: "currentColor" })); } diff --git a/icons/es5/PinInvoke.js b/icons/es5/PinInvoke.js index df50e14008..55a5f9ad38 100644 --- a/icons/es5/PinInvoke.js +++ b/icons/es5/PinInvoke.js @@ -7,9 +7,11 @@ function SvgPinInvoke(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12v8H2V4h12v2H4v12h16v-6h2zm0-5c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm-10.53 5.12l-2.83 2.83 1.41 1.41 2.83-2.83L15 15.66V10H9.34l2.13 2.12z" + d: "M22 12v8H2V4h12v2H4v12h16v-6h2zm0-5c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3zm-10.53 5.12l-2.83 2.83 1.41 1.41 2.83-2.83L15 15.66V10H9.34l2.13 2.12z", + fill: "currentColor" })); } diff --git a/icons/es5/PinOff.js b/icons/es5/PinOff.js index d225795281..7d94b9087d 100644 --- a/icons/es5/PinOff.js +++ b/icons/es5/PinOff.js @@ -7,11 +7,14 @@ function SvgPinOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 9l7 7h-3v4l-1 3-1-3v-4H6v-3l3-3V9zm8-7v2l-2 1v5l3 3v2.461L12.27 9.73 9 6.46V5L7 4V2h10z" + d: "M9 9l7 7h-3v4l-1 3-1-3v-4H6v-3l3-3V9zm8-7v2l-2 1v5l3 3v2.461L12.27 9.73 9 6.46V5L7 4V2h10z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M2.27 2.27L1 3.54 20.46 23l1.27-1.27L11 11z" + d: "M2.27 2.27L1 3.54 20.46 23l1.27-1.27L11 11z", + fill: "currentColor" })); } diff --git a/icons/es5/Pinch.js b/icons/es5/Pinch.js index 370143b661..bd6e8493cc 100644 --- a/icons/es5/Pinch.js +++ b/icons/es5/Pinch.js @@ -7,9 +7,11 @@ function SvgPinch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23.18 15.4L22.1 23h-9L8 17.62l1.22-1.23 3.78.85V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h1.38l5.8 2.9zM6 2.5V1h5v5H9.5V3.56L3.56 9.5H6V11H1V6h1.5v2.44L8.44 2.5H6z" + d: "M23.18 15.4L22.1 23h-9L8 17.62l1.22-1.23 3.78.85V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h1.38l5.8 2.9zM6 2.5V1h5v5H9.5V3.56L3.56 9.5H6V11H1V6h1.5v2.44L8.44 2.5H6z", + fill: "currentColor" })); } diff --git a/icons/es5/PivotTableChart.js b/icons/es5/PivotTableChart.js index 8c6375bd1b..a6c4f18df4 100644 --- a/icons/es5/PivotTableChart.js +++ b/icons/es5/PivotTableChart.js @@ -7,9 +7,11 @@ function SvgPivotTableChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 3h11v5H10zm-7 7h5v11H3zm0-7h5v5H3zm15 6l-4 4h3v4h-4v-3l-4 4 4 4v-3h6v-6h3z" + d: "M10 3h11v5H10zm-7 7h5v11H3zm0-7h5v5H3zm15 6l-4 4h3v4h-4v-3l-4 4 4 4v-3h6v-6h3z", + fill: "currentColor" })); } diff --git a/icons/es5/Pix.js b/icons/es5/Pix.js index 577ea72cfa..a70a5f0975 100644 --- a/icons/es5/Pix.js +++ b/icons/es5/Pix.js @@ -7,11 +7,14 @@ function SvgPix(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.45 16.52l-3.01-3.01c-.11-.11-.24-.13-.31-.13s-.2.02-.31.13L8.8 16.53c-.34.34-.87.89-2.64.89l3.71 3.7a3 3 0 004.24 0l3.72-3.71c-.91 0-1.67-.18-2.38-.89zM8.8 7.47l3.02 3.02c.08.08.2.13.31.13s.23-.05.31-.13l2.99-2.99c.71-.74 1.52-.91 2.43-.91l-3.72-3.71a3 3 0 00-4.24 0l-3.71 3.7c1.76 0 2.3.58 2.61.89z" + d: "M15.45 16.52l-3.01-3.01c-.11-.11-.24-.13-.31-.13s-.2.02-.31.13L8.8 16.53c-.34.34-.87.89-2.64.89l3.71 3.7a3 3 0 004.24 0l3.72-3.71c-.91 0-1.67-.18-2.38-.89zM8.8 7.47l3.02 3.02c.08.08.2.13.31.13s.23-.05.31-.13l2.99-2.99c.71-.74 1.52-.91 2.43-.91l-3.72-3.71a3 3 0 00-4.24 0l-3.71 3.7c1.76 0 2.3.58 2.61.89z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21.11 9.85l-2.25-2.26H17.6c-.54 0-1.08.22-1.45.61l-3 3c-.28.28-.65.42-1.02.42a1.5 1.5 0 01-1.02-.42L8.09 8.17c-.38-.38-.9-.6-1.45-.6H5.17l-2.29 2.3a3 3 0 000 4.24l2.29 2.3h1.48c.54 0 1.06-.22 1.45-.6l3.02-3.02c.28-.28.65-.42 1.02-.42s.74.14 1.02.42l3.01 3.01c.38.38.9.6 1.45.6h1.26l2.25-2.26a3.042 3.042 0 00-.02-4.29z" + d: "M21.11 9.85l-2.25-2.26H17.6c-.54 0-1.08.22-1.45.61l-3 3c-.28.28-.65.42-1.02.42a1.5 1.5 0 01-1.02-.42L8.09 8.17c-.38-.38-.9-.6-1.45-.6H5.17l-2.29 2.3a3 3 0 000 4.24l2.29 2.3h1.48c.54 0 1.06-.22 1.45-.6l3.02-3.02c.28-.28.65-.42 1.02-.42s.74.14 1.02.42l3.01 3.01c.38.38.9.6 1.45.6h1.26l2.25-2.26a3.042 3.042 0 00-.02-4.29z", + fill: "currentColor" })); } diff --git a/icons/es5/Place.js b/icons/es5/Place.js index bf3a26c91f..4bbc6530d2 100644 --- a/icons/es5/Place.js +++ b/icons/es5/Place.js @@ -7,9 +7,11 @@ function SvgPlace(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0-10c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2z" + d: "M12 12c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zm0-10c-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8C20 5.22 16.2 2 12 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Plagiarism.js b/icons/es5/Plagiarism.js index ad964d4e48..d2e8bb8e7c 100644 --- a/icons/es5/Plagiarism.js +++ b/icons/es5/Plagiarism.js @@ -7,13 +7,15 @@ function SvgPlagiarism(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 11.5, cy: 14.5, r: 1.5 }), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm1.04 17.45l-1.88-1.88c-1.33.71-3.01.53-4.13-.59a3.495 3.495 0 010-4.95 3.495 3.495 0 014.95 0 3.48 3.48 0 01.59 4.13l1.88 1.88-1.41 1.41zM13 9V3.5L18.5 9H13z" + d: "M14 2H4v20h16V8l-6-6zm1.04 17.45l-1.88-1.88c-1.33.71-3.01.53-4.13-.59a3.495 3.495 0 010-4.95 3.495 3.495 0 014.95 0 3.48 3.48 0 01.59 4.13l1.88 1.88-1.41 1.41zM13 9V3.5L18.5 9H13z", + fill: "currentColor" })); } diff --git a/icons/es5/PlayCircle.js b/icons/es5/PlayCircle.js index 436e532c02..4f26801e16 100644 --- a/icons/es5/PlayCircle.js +++ b/icons/es5/PlayCircle.js @@ -7,9 +7,11 @@ function SvgPlayCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.5 16.5v-9l7 4.5-7 4.5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM9.5 16.5v-9l7 4.5-7 4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PlayCircleFilledWhite.js b/icons/es5/PlayCircleFilledWhite.js index ad8691dd92..cef5ac42a8 100644 --- a/icons/es5/PlayCircleFilledWhite.js +++ b/icons/es5/PlayCircleFilledWhite.js @@ -7,9 +7,11 @@ function SvgPlayCircleFilledWhite(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 14.5v-9l6 4.5-6 4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PlayDisabled.js b/icons/es5/PlayDisabled.js index 9967886b69..7e7574ce5b 100644 --- a/icons/es5/PlayDisabled.js +++ b/icons/es5/PlayDisabled.js @@ -7,9 +7,11 @@ function SvgPlayDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.45 13.62L19 12 8 5v.17zM2.81 2.81L1.39 4.22 8 10.83V19l4.99-3.18 6.79 6.79 1.41-1.42z" + d: "M16.45 13.62L19 12 8 5v.17zM2.81 2.81L1.39 4.22 8 10.83V19l4.99-3.18 6.79 6.79 1.41-1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/PlayForWork.js b/icons/es5/PlayForWork.js index 7af3800622..1a8c29c750 100644 --- a/icons/es5/PlayForWork.js +++ b/icons/es5/PlayForWork.js @@ -7,9 +7,11 @@ function SvgPlayForWork(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z" + d: "M11 5v5.59H7.5l4.5 4.5 4.5-4.5H13V5h-2zm-5 9c0 3.31 2.69 6 6 6s6-2.69 6-6h-2c0 2.21-1.79 4-4 4s-4-1.79-4-4H6z", + fill: "currentColor" })); } diff --git a/icons/es5/PlayLesson.js b/icons/es5/PlayLesson.js index a0a18bb48f..24ce1bd9b7 100644 --- a/icons/es5/PlayLesson.js +++ b/icons/es5/PlayLesson.js @@ -7,11 +7,14 @@ function SvgPlayLesson(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 11c.34 0 .67.03 1 .08V2H3v20h9.26A6.995 6.995 0 0118 11zM7 11V4h5v7L9.5 9.5 7 11z" + d: "M18 11c.34 0 .67.03 1 .08V2H3v20h9.26A6.995 6.995 0 0118 11zM7 11V4h5v7L9.5 9.5 7 11z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z" + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm-1.25 7.5v-5l4 2.5-4 2.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PlaylistAdd.js b/icons/es5/PlaylistAdd.js index ea584cf992..23720541b4 100644 --- a/icons/es5/PlaylistAdd.js +++ b/icons/es5/PlaylistAdd.js @@ -7,9 +7,11 @@ function SvgPlaylistAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z" + d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zm4 8v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zM3 16h7v-2H3v2z", + fill: "currentColor" })); } diff --git a/icons/es5/PlaylistAddCheck.js b/icons/es5/PlaylistAddCheck.js index 1c1763607d..bb6579094c 100644 --- a/icons/es5/PlaylistAddCheck.js +++ b/icons/es5/PlaylistAddCheck.js @@ -7,9 +7,11 @@ function SvgPlaylistAddCheck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07l-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z" + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm17.59-2.07l-4.25 4.24-2.12-2.12-1.41 1.41L16.34 19 22 13.34z", + fill: "currentColor" })); } diff --git a/icons/es5/PlaylistAddCheckCircle.js b/icons/es5/PlaylistAddCheckCircle.js index 422de5af19..6638761657 100644 --- a/icons/es5/PlaylistAddCheckCircle.js +++ b/icons/es5/PlaylistAddCheckCircle.js @@ -7,9 +7,11 @@ function SvgPlaylistAddCheckCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 7h7v2H7V7zm0 3h7v2H7v-2zm3 5H7v-2h3v2zm4.05 3.36l-2.83-2.83 1.41-1.41 1.41 1.41L17.59 12 19 13.41l-4.95 4.95z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 7h7v2H7V7zm0 3h7v2H7v-2zm3 5H7v-2h3v2zm4.05 3.36l-2.83-2.83 1.41-1.41 1.41 1.41L17.59 12 19 13.41l-4.95 4.95z", + fill: "currentColor" })); } diff --git a/icons/es5/PlaylistAddCircle.js b/icons/es5/PlaylistAddCircle.js index f07b14cf90..44e3e5e0d6 100644 --- a/icons/es5/PlaylistAddCircle.js +++ b/icons/es5/PlaylistAddCircle.js @@ -7,9 +7,11 @@ function SvgPlaylistAddCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 7h7v2H7V7zm3 8H7v-2h3v2zm-3-3v-2h7v2H7zm12 3h-2v2h-2v-2h-2v-2h2v-2h2v2h2v2z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM7 7h7v2H7V7zm3 8H7v-2h3v2zm-3-3v-2h7v2H7zm12 3h-2v2h-2v-2h-2v-2h2v-2h2v2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/PlaylistPlay.js b/icons/es5/PlaylistPlay.js index 04833518f6..17c0837e94 100644 --- a/icons/es5/PlaylistPlay.js +++ b/icons/es5/PlaylistPlay.js @@ -7,9 +7,11 @@ function SvgPlaylistPlay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z" + d: "M3 10h11v2H3zm0-4h11v2H3zm0 8h7v2H3zm13-1v8l6-4z", + fill: "currentColor" })); } diff --git a/icons/es5/PlaylistRemove.js b/icons/es5/PlaylistRemove.js index cdc6188589..7e7ebc6a08 100644 --- a/icons/es5/PlaylistRemove.js +++ b/icons/es5/PlaylistRemove.js @@ -7,9 +7,11 @@ function SvgPlaylistRemove(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zM3 16h7v-2H3v2zm11.41 6L17 19.41 19.59 22 21 20.59 18.41 18 21 15.41 19.59 14 17 16.59 14.41 14 13 15.41 15.59 18 13 20.59 14.41 22z" + d: "M14 10H3v2h11v-2zm0-4H3v2h11V6zM3 16h7v-2H3v2zm11.41 6L17 19.41 19.59 22 21 20.59 18.41 18 21 15.41 19.59 14 17 16.59 14.41 14 13 15.41 15.59 18 13 20.59 14.41 22z", + fill: "currentColor" })); } diff --git a/icons/es5/Plumbing.js b/icons/es5/Plumbing.js index f3c0546e02..eb0117fdc7 100644 --- a/icons/es5/Plumbing.js +++ b/icons/es5/Plumbing.js @@ -7,11 +7,14 @@ function SvgPlumbing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.16 5.64l3.54 3.54a3 3 0 000-4.24L16.16 1.4l-4.24 4.24 2.12 2.12 2.12-2.12zM4.842 12.708l3.535-3.535 2.122 2.12-3.536 3.536z" + d: "M16.16 5.64l3.54 3.54a3 3 0 000-4.24L16.16 1.4l-4.24 4.24 2.12 2.12 2.12-2.12zM4.842 12.708l3.535-3.535 2.122 2.12-3.536 3.536z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15.45 7.76l-1.41 1.41-4.25-4.24-2.12 2.12 4.24 4.24-8.49 8.49 2.83 2.83L16.86 12l.71.71 1.41-1.41-3.53-3.54z" + d: "M15.45 7.76l-1.41 1.41-4.25-4.24-2.12 2.12 4.24 4.24-8.49 8.49 2.83 2.83L16.86 12l.71.71 1.41-1.41-3.53-3.54z", + fill: "currentColor" })); } diff --git a/icons/es5/Plus.js b/icons/es5/Plus.js index 1f4824d632..b18b1a71fe 100644 --- a/icons/es5/Plus.js +++ b/icons/es5/Plus.js @@ -7,9 +7,11 @@ function SvgPlus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 12.998h-6v6h-2v-6H5v-2h6v-6h2v6h6z" + d: "M19 12.998h-6v6h-2v-6H5v-2h6v-6h2v6h6z", + fill: "currentColor" })); } diff --git a/icons/es5/PlusMinus.js b/icons/es5/PlusMinus.js index 1c0113d716..8a012dc6d4 100644 --- a/icons/es5/PlusMinus.js +++ b/icons/es5/PlusMinus.js @@ -7,9 +7,11 @@ function SvgPlusMinus(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 10.998h-6v6h-2v-6H5v-2h6v-6h2v6h6zm0 10H5v-2h14z" + d: "M19 10.998h-6v6h-2v-6H5v-2h6v-6h2v6h6zm0 10H5v-2h14z", + fill: "currentColor" })); } diff --git a/icons/es5/PlusMinusAlt.js b/icons/es5/PlusMinusAlt.js index 2d067056f7..033ff175f5 100644 --- a/icons/es5/PlusMinusAlt.js +++ b/icons/es5/PlusMinusAlt.js @@ -7,9 +7,11 @@ function SvgPlusMinusAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7.998H8v4H6v-4H2v-2h4v-4h2v4h4zm10 10h-8v-2h8zM18.5 4L4 18.5 5.5 20 20 5.5z" + d: "M12 7.998H8v4H6v-4H2v-2h4v-4h2v4h4zm10 10h-8v-2h8zM18.5 4L4 18.5 5.5 20 20 5.5z", + fill: "currentColor" })); } diff --git a/icons/es5/PlusOne.js b/icons/es5/PlusOne.js index e39c7f2a7c..f55f038f2e 100644 --- a/icons/es5/PlusOne.js +++ b/icons/es5/PlusOne.js @@ -7,9 +7,11 @@ function SvgPlusOne(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z" + d: "M10 8H8v4H4v2h4v4h2v-4h4v-2h-4V8zm4.5-1.92V7.9l2.5-.5V18h2V5l-4.5 1.08z", + fill: "currentColor" })); } diff --git a/icons/es5/Podcasts.js b/icons/es5/Podcasts.js index bb5ecb3693..c1181fa649 100644 --- a/icons/es5/Podcasts.js +++ b/icons/es5/Podcasts.js @@ -7,9 +7,11 @@ function SvgPodcasts(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42A3.957 3.957 0 018 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42A5.957 5.957 0 0018 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42A7.987 7.987 0 014 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z" + d: "M14 12c0 .74-.4 1.38-1 1.72V22h-2v-8.28c-.6-.35-1-.98-1-1.72 0-1.1.9-2 2-2s2 .9 2 2zm-2-6c-3.31 0-6 2.69-6 6 0 1.74.75 3.31 1.94 4.4l1.42-1.42A3.957 3.957 0 018 12c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.19-.53 2.25-1.36 2.98l1.42 1.42A5.957 5.957 0 0018 12c0-3.31-2.69-6-6-6zm0-4C6.48 2 2 6.48 2 12c0 2.85 1.2 5.41 3.11 7.24l1.42-1.42A7.987 7.987 0 014 12c0-4.41 3.59-8 8-8s8 3.59 8 8c0 2.29-.98 4.36-2.53 5.82l1.42 1.42C20.8 17.41 22 14.85 22 12c0-5.52-4.48-10-10-10z", + fill: "currentColor" })); } diff --git a/icons/es5/PointOfSale.js b/icons/es5/PointOfSale.js index f0718bb386..a57f8d9d90 100644 --- a/icons/es5/PointOfSale.js +++ b/icons/es5/PointOfSale.js @@ -7,9 +7,11 @@ function SvgPointOfSale(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 2H5v6h14V2zm-2 4H7V4h10v2zm5 16H2v-3h20v3zM18 9H6l-4 9h20l-4-9zm-8 7H8v-1h2v1zm0-2H8v-1h2v1zm0-2H8v-1h2v1zm3 4h-2v-1h2v1zm0-2h-2v-1h2v1zm0-2h-2v-1h2v1zm3 4h-2v-1h2v1zm0-2h-2v-1h2v1zm0-2h-2v-1h2v1z" + d: "M19 2H5v6h14V2zm-2 4H7V4h10v2zm5 16H2v-3h20v3zM18 9H6l-4 9h20l-4-9zm-8 7H8v-1h2v1zm0-2H8v-1h2v1zm0-2H8v-1h2v1zm3 4h-2v-1h2v1zm0-2h-2v-1h2v1zm0-2h-2v-1h2v1zm3 4h-2v-1h2v1zm0-2h-2v-1h2v1zm0-2h-2v-1h2v1z", + fill: "currentColor" })); } diff --git a/icons/es5/Policy.js b/icons/es5/Policy.js index 3b5471fd24..99d2b1357c 100644 --- a/icons/es5/Policy.js +++ b/icons/es5/Policy.js @@ -7,9 +7,11 @@ function SvgPolicy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5l-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12a4.994 4.994 0 01-6.29-.64 5.003 5.003 0 010-7.07 5.003 5.003 0 017.07 0 5.006 5.006 0 01.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z" + d: "M21 5l-9-4-9 4v6c0 5.55 3.84 10.74 9 12 2.3-.56 4.33-1.9 5.88-3.71l-3.12-3.12a4.994 4.994 0 01-6.29-.64 5.003 5.003 0 010-7.07 5.003 5.003 0 017.07 0 5.006 5.006 0 01.64 6.29l2.9 2.9C20.29 15.69 21 13.38 21 11V5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, diff --git a/icons/es5/Poll.js b/icons/es5/Poll.js index 0db4988f1c..e0d01be63e 100644 --- a/icons/es5/Poll.js +++ b/icons/es5/Poll.js @@ -7,9 +7,11 @@ function SvgPoll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm6 14H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z" + d: "M3 3v18h18V3H3zm6 14H7v-7h2v7zm4 0h-2V7h2v10zm4 0h-2v-4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Polyline.js b/icons/es5/Polyline.js index ea7d437276..ac2f9a4508 100644 --- a/icons/es5/Polyline.js +++ b/icons/es5/Polyline.js @@ -7,9 +7,11 @@ function SvgPolyline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 16v1.26l-6-3v-3.17L11.7 8H16V2h-6v4.9L7.3 10H3v6h5l7 3.5V22h6v-6z" + d: "M15 16v1.26l-6-3v-3.17L11.7 8H16V2h-6v4.9L7.3 10H3v6h5l7 3.5V22h6v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/Polymer.js b/icons/es5/Polymer.js index 1c66aad850..8b34cbbfa8 100644 --- a/icons/es5/Polymer.js +++ b/icons/es5/Polymer.js @@ -7,9 +7,11 @@ function SvgPolymer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z" + d: "M19 4h-4L7.11 16.63 4.5 12 9 4H5L.5 12 5 20h4l7.89-12.63L19.5 12 15 20h4l4.5-8L19 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Pool.js b/icons/es5/Pool.js index 18ef522c18..1851a7716c 100644 --- a/icons/es5/Pool.js +++ b/icons/es5/Pool.js @@ -7,9 +7,11 @@ function SvgPool(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5 5 3v2.5L9 7l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z" + d: "M10 8l-3.25 3.25c.31.12.56.27.77.39.37.23.59.36 1.15.36s.78-.13 1.15-.36c.46-.27 1.08-.64 2.19-.64s1.73.37 2.18.64c.37.22.6.36 1.15.36.55 0 .78-.13 1.15-.36.12-.07.26-.15.41-.23L10.48 5 5 3v2.5L9 7l1 1zm12 8.5h-.02.02zm-16.65-1c.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.06.63 2.16.64v-2c-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.6.36-1.15.36s-.78-.14-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.18.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.2-.64.37-.23.6-.36 1.15-.36zM18.67 18c-1.11 0-1.73.37-2.18.64-.37.23-.6.36-1.15.36-.55 0-.78-.14-1.15-.36-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36s-.78-.13-1.15-.36c-.45-.27-1.07-.64-2.18-.64s-1.73.37-2.19.64c-.37.23-.59.36-1.15.36v2c1.11 0 1.73-.37 2.19-.64.37-.23.6-.36 1.15-.36.55 0 .78.13 1.15.36.45.27 1.07.64 2.18.64s1.73-.37 2.19-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64s1.72-.37 2.18-.64c.37-.23.59-.36 1.15-.36.55 0 .78.14 1.15.36.45.27 1.07.64 2.18.64v-2c-.56 0-.78-.13-1.15-.36-.45-.27-1.07-.64-2.18-.64z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 16.5, cy: 5.5, diff --git a/icons/es5/PortableWifiOff.js b/icons/es5/PortableWifiOff.js index 04f36d361d..8930e7aff6 100644 --- a/icons/es5/PortableWifiOff.js +++ b/icons/es5/PortableWifiOff.js @@ -7,9 +7,11 @@ function SvgPortableWifiOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49A9.82 9.82 0 0022 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z" + d: "M3.42 2.36L2.01 3.78 4.1 5.87C2.79 7.57 2 9.69 2 12c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 17.53 4 14.96 4 12c0-1.76.57-3.38 1.53-4.69l1.43 1.44C6.36 9.68 6 10.8 6 12c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-.65.17-1.25.44-1.79l1.58 1.58L10 12c0 1.1.9 2 2 2l.21-.02 7.52 7.52 1.41-1.41L3.42 2.36zm14.29 11.46c.18-.57.29-1.19.29-1.82 0-3.31-2.69-6-6-6-.63 0-1.25.11-1.82.29l1.72 1.72c.03 0 .06-.01.1-.01 2.21 0 4 1.79 4 4 0 .04-.01.07-.01.11l1.72 1.71zM12 4c4.42 0 8 3.58 8 8 0 1.2-.29 2.32-.77 3.35l1.49 1.49A9.82 9.82 0 0022 12c0-5.52-4.48-10-10-10-1.76 0-3.4.48-4.84 1.28l1.48 1.48C9.66 4.28 10.8 4 12 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Portrait.js b/icons/es5/Portrait.js index 2b0e7d687b..f103ea463d 100644 --- a/icons/es5/Portrait.js +++ b/icons/es5/Portrait.js @@ -7,9 +7,11 @@ function SvgPortrait(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM21 3H3v18h18V3zm-2 16H5V5h14v14z" + d: "M12 12.25c1.24 0 2.25-1.01 2.25-2.25S13.24 7.75 12 7.75 9.75 8.76 9.75 10s1.01 2.25 2.25 2.25zm4.5 4c0-1.5-3-2.25-4.5-2.25s-4.5.75-4.5 2.25V17h9v-.75zM21 3H3v18h18V3zm-2 16H5V5h14v14z", + fill: "currentColor" })); } diff --git a/icons/es5/PostAdd.js b/icons/es5/PostAdd.js index 21b1c6372b..ed4fadd0e1 100644 --- a/icons/es5/PostAdd.js +++ b/icons/es5/PostAdd.js @@ -7,11 +7,14 @@ function SvgPostAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 19.22H5V7h7V5H3v16h16v-9h-2z" + d: "M17 19.22H5V7h7V5H3v16h16v-9h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z" + d: "M19 2h-2v3h-3c.01.01 0 2 0 2h3v2.99c.01.01 2 0 2 0V7h3V5h-3V2zM7 9h8v2H7zm0 3v2h8v-2h-3zm0 3h8v2H7z", + fill: "currentColor" })); } diff --git a/icons/es5/Power.js b/icons/es5/Power.js index 8943e96893..799ca8ef58 100644 --- a/icons/es5/Power.js +++ b/icons/es5/Power.js @@ -7,9 +7,11 @@ function SvgPower(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 7V3h-2v4h-4V3H8v4H6v7.5L9.5 18v3h5v-3l3.5-3.51V7h-2z" + d: "M16 7V3h-2v4h-4V3H8v4H6v7.5L9.5 18v3h5v-3l3.5-3.51V7h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/PowerInput.js b/icons/es5/PowerInput.js index bf36c732af..215bc5cbbb 100644 --- a/icons/es5/PowerInput.js +++ b/icons/es5/PowerInput.js @@ -7,9 +7,11 @@ function SvgPowerInput(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z" + d: "M2 9v2h19V9H2zm0 6h5v-2H2v2zm7 0h5v-2H9v2zm7 0h5v-2h-5v2z", + fill: "currentColor" })); } diff --git a/icons/es5/PowerOff.js b/icons/es5/PowerOff.js index c2482ed957..3e86dd4ec2 100644 --- a/icons/es5/PowerOff.js +++ b/icons/es5/PowerOff.js @@ -7,9 +7,11 @@ function SvgPowerOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 14.49V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l7.69 7.69.19-.2zM10 3H8v1.88l2 2zm-5.88.84L2.71 5.25l3.34 3.34c-.03.13-.05.27-.05.4v5.51L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84z" + d: "M18 14.49V9c0-1.1-.9-2-2-2V3h-2v4h-3.88l7.69 7.69.19-.2zM10 3H8v1.88l2 2zm-5.88.84L2.71 5.25l3.34 3.34c-.03.13-.05.27-.05.4v5.51L9.5 18v3h5v-3l.48-.48 4.47 4.47 1.41-1.41L4.12 3.84z", + fill: "currentColor" })); } diff --git a/icons/es5/PowerSettingsNew.js b/icons/es5/PowerSettingsNew.js index 5d226cfa5f..aef963eb77 100644 --- a/icons/es5/PowerSettingsNew.js +++ b/icons/es5/PowerSettingsNew.js @@ -7,9 +7,11 @@ function SvgPowerSettingsNew(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42A6.92 6.92 0 0119 12c0 3.87-3.13 7-7 7A6.995 6.995 0 017.58 6.58L6.17 5.17A8.932 8.932 0 003 12a9 9 0 0018 0c0-2.74-1.23-5.18-3.17-6.83z" + d: "M13 3h-2v10h2V3zm4.83 2.17l-1.42 1.42A6.92 6.92 0 0119 12c0 3.87-3.13 7-7 7A6.995 6.995 0 017.58 6.58L6.17 5.17A8.932 8.932 0 003 12a9 9 0 0018 0c0-2.74-1.23-5.18-3.17-6.83z", + fill: "currentColor" })); } diff --git a/icons/es5/PrecisionManufacturing.js b/icons/es5/PrecisionManufacturing.js index 5ed577f73e..f2d40ba06b 100644 --- a/icons/es5/PrecisionManufacturing.js +++ b/icons/es5/PrecisionManufacturing.js @@ -7,9 +7,11 @@ function SvgPrecisionManufacturing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 10v-.18l2.01 2.01 5.23-2.44-.63-1.36-4.28 2L14 7.7V6.3l2.33-2.33 4.28 2 .63-1.36-5.23-2.44L14 4.18V4h-2v2H8.82C8.4 4.84 7.3 4 6 4 4.34 4 3 5.34 3 7c0 1.1.6 2.05 1.48 2.58L7.08 18H4v3h13v-3h-3.62L8.41 8.76c.17-.23.31-.48.41-.76H12v2h2zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M14 10v-.18l2.01 2.01 5.23-2.44-.63-1.36-4.28 2L14 7.7V6.3l2.33-2.33 4.28 2 .63-1.36-5.23-2.44L14 4.18V4h-2v2H8.82C8.4 4.84 7.3 4 6 4 4.34 4 3 5.34 3 7c0 1.1.6 2.05 1.48 2.58L7.08 18H4v3h13v-3h-3.62L8.41 8.76c.17-.23.31-.48.41-.76H12v2h2zM6 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/PregnantWoman.js b/icons/es5/PregnantWoman.js index 72cc1dd54b..64c8cfcbdd 100644 --- a/icons/es5/PregnantWoman.js +++ b/icons/es5/PregnantWoman.js @@ -7,9 +7,11 @@ function SvgPregnantWoman(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9a3.285 3.285 0 00-2-3c0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z" + d: "M9 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm7 9a3.285 3.285 0 00-2-3c0-1.66-1.34-3-3-3s-3 1.34-3 3v7h2v5h3v-5h3v-4z", + fill: "currentColor" })); } diff --git a/icons/es5/PresentToAll.js b/icons/es5/PresentToAll.js index 5aa356f26e..4fa79a3df4 100644 --- a/icons/es5/PresentToAll.js +++ b/icons/es5/PresentToAll.js @@ -7,9 +7,11 @@ function SvgPresentToAll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zm-2 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z" + d: "M23 3H1v18h22V3zm-2 16.02H3V4.98h18v14.04zM10 12H8l4-4 4 4h-2v4h-4v-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Preview.js b/icons/es5/Preview.js index ab6874c284..7b7e361e69 100644 --- a/icons/es5/Preview.js +++ b/icons/es5/Preview.js @@ -7,9 +7,11 @@ function SvgPreview(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm16 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z" + d: "M3 3v18h18V3H3zm16 16H5V7h14v12zm-5.5-6c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM12 9c-2.73 0-5.06 1.66-6 4 .94 2.34 3.27 4 6 4s5.06-1.66 6-4c-.94-2.34-3.27-4-6-4zm0 6.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z", + fill: "currentColor" })); } diff --git a/icons/es5/PriceChange.js b/icons/es5/PriceChange.js index 1636c4db95..9b0a158076 100644 --- a/icons/es5/PriceChange.js +++ b/icons/es5/PriceChange.js @@ -7,9 +7,11 @@ function SvgPriceChange(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 4v16h20V4H2zm10 6H8v1h4v5h-2v1H8v-1H6v-2h4v-1H6V8h2V7h2v1h2v2zm4 6.25l-2-2h4l-2 2zM14 10l2-2 2 2h-4z" + d: "M2 4v16h20V4H2zm10 6H8v1h4v5h-2v1H8v-1H6v-2h4v-1H6V8h2V7h2v1h2v2zm4 6.25l-2-2h4l-2 2zM14 10l2-2 2 2h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/PriceCheck.js b/icons/es5/PriceCheck.js index b6d225d475..d9218db133 100644 --- a/icons/es5/PriceCheck.js +++ b/icons/es5/PriceCheck.js @@ -7,9 +7,11 @@ function SvgPriceCheck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 8H6V6h5V4H8.5V3h-2v1H4v6h5v2H4v2h2.5v1h2v-1H11zm8.59 4.52l-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z" + d: "M11 8H6V6h5V4H8.5V3h-2v1H4v6h5v2H4v2h2.5v1h2v-1H11zm8.59 4.52l-5.66 5.65-2.83-2.83-1.41 1.42L13.93 21 21 13.93z", + fill: "currentColor" })); } diff --git a/icons/es5/Print.js b/icons/es5/Print.js index bd8a92439e..460dab35f3 100644 --- a/icons/es5/Print.js +++ b/icons/es5/Print.js @@ -7,9 +7,11 @@ function SvgPrint(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 8H2v9h4v4h12v-4h4V8zm-6 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z" + d: "M22 8H2v9h4v4h12v-4h4V8zm-6 11H8v-5h8v5zm3-7c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-1-9H6v4h12V3z", + fill: "currentColor" })); } diff --git a/icons/es5/PrintDisabled.js b/icons/es5/PrintDisabled.js index 2654e898b8..e7d538c0ff 100644 --- a/icons/es5/PrintDisabled.js +++ b/icons/es5/PrintDisabled.js @@ -7,9 +7,11 @@ function SvgPrintDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.65 7H18V3.01H6v.35zm1.01 1.01l9 8.99H22v-5.99c0-1.66-1.34-3-3-3h-8.34zM19 10c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM1.41 1.6L0 3.01l5 5c-1.66 0-3 1.33-3 2.99v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM8 19.01V15h4l4 4-8 .01z" + d: "M9.65 7H18V3.01H6v.35zm1.01 1.01l9 8.99H22v-5.99c0-1.66-1.34-3-3-3h-8.34zM19 10c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM1.41 1.6L0 3.01l5 5c-1.66 0-3 1.33-3 2.99v6h4v4h12l2.95 2.96 1.41-1.41L1.41 1.6zM8 19.01V15h4l4 4-8 .01z", + fill: "currentColor" })); } diff --git a/icons/es5/PriorityHigh.js b/icons/es5/PriorityHigh.js index 8c18ff0066..6783130491 100644 --- a/icons/es5/PriorityHigh.js +++ b/icons/es5/PriorityHigh.js @@ -7,13 +7,15 @@ function SvgPriorityHigh(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 19, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M10 3h4v12h-4z" + d: "M10 3h4v12h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/PrivacyTip.js b/icons/es5/PrivacyTip.js index 877a476193..fdabd95570 100644 --- a/icons/es5/PrivacyTip.js +++ b/icons/es5/PrivacyTip.js @@ -7,9 +7,11 @@ function SvgPrivacyTip(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z" + d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-1 6h2v2h-2V7zm0 4h2v6h-2v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/PrivateConnectivity.js b/icons/es5/PrivateConnectivity.js index ee5d0fdd6e..834f6fb552 100644 --- a/icons/es5/PrivateConnectivity.js +++ b/icons/es5/PrivateConnectivity.js @@ -7,9 +7,11 @@ function SvgPrivateConnectivity(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.93 11c-.49-3.39-3.4-6-6.93-6s-6.44 2.61-6.93 6H2v2h3.07c.49 3.39 3.4 6 6.93 6s6.44-2.61 6.93-6H22v-2h-3.07zM15 10.5v5H9v-5h1v-1a2 2 0 012.34-1.97c.98.16 1.66 1.08 1.66 2.08v.89h1zM12.75 13c0 .41-.34.75-.75.75s-.75-.34-.75-.75.34-.75.75-.75.75.34.75.75zM13 9.5v1h-2v-1c0-.55.45-1 1-1s1 .45 1 1z" + d: "M18.93 11c-.49-3.39-3.4-6-6.93-6s-6.44 2.61-6.93 6H2v2h3.07c.49 3.39 3.4 6 6.93 6s6.44-2.61 6.93-6H22v-2h-3.07zM15 10.5v5H9v-5h1v-1a2 2 0 012.34-1.97c.98.16 1.66 1.08 1.66 2.08v.89h1zM12.75 13c0 .41-.34.75-.75.75s-.75-.34-.75-.75.34-.75.75-.75.75.34.75.75zM13 9.5v1h-2v-1c0-.55.45-1 1-1s1 .45 1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/ProductionQuantityLimits.js b/icons/es5/ProductionQuantityLimits.js index bda1152a64..e32ff229ad 100644 --- a/icons/es5/ProductionQuantityLimits.js +++ b/icons/es5/ProductionQuantityLimits.js @@ -7,9 +7,11 @@ function SvgProductionQuantityLimits(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z" + d: "M13 10h-2V8h2v2zm0-4h-2V1h2v5zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h7.45c.75 0 1.41-.41 1.75-1.03L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59-1.35 2.44C4.52 15.37 5.48 17 7 17h12v-2H7l1.1-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Propane.js b/icons/es5/Propane.js index 0e0fecf641..bca95f15ea 100644 --- a/icons/es5/Propane.js +++ b/icons/es5/Propane.js @@ -7,9 +7,11 @@ function SvgPropane(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.75 6H16V3H8v3h-.75C3.97 6 1.1 8.53 1 11.82A6.001 6.001 0 007 18v3h2v-3h6v3h2v-3c3.38 0 6.1-2.79 6-6.18C22.9 8.53 20.03 6 16.75 6zM10 5h4v1h-4V5z" + d: "M16.75 6H16V3H8v3h-.75C3.97 6 1.1 8.53 1 11.82A6.001 6.001 0 007 18v3h2v-3h6v3h2v-3c3.38 0 6.1-2.79 6-6.18C22.9 8.53 20.03 6 16.75 6zM10 5h4v1h-4V5z", + fill: "currentColor" })); } diff --git a/icons/es5/PropaneTank.js b/icons/es5/PropaneTank.js index dde748db1e..58a8213059 100644 --- a/icons/es5/PropaneTank.js +++ b/icons/es5/PropaneTank.js @@ -7,9 +7,11 @@ function SvgPropaneTank(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 15v3c0 2.21 1.79 4 4 4h8c2.21 0 4-1.79 4-4v-3H4zm16-2v-3c0-1.86-1.28-3.41-3-3.86V2H7v4.14c-1.72.45-3 2-3 3.86v3h16zM9 4h6v2h-2V5h-2v1H9V4z" + d: "M4 15v3c0 2.21 1.79 4 4 4h8c2.21 0 4-1.79 4-4v-3H4zm16-2v-3c0-1.86-1.28-3.41-3-3.86V2H7v4.14c-1.72.45-3 2-3 3.86v3h16zM9 4h6v2h-2V5h-2v1H9V4z", + fill: "currentColor" })); } diff --git a/icons/es5/Psychology.js b/icons/es5/Psychology.js index 798462f4ac..4dde99f85a 100644 --- a/icons/es5/Psychology.js +++ b/icons/es5/Psychology.js @@ -7,11 +7,14 @@ function SvgPsychology(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 8.57a1.43 1.43 0 100 2.86 1.43 1.43 0 000-2.86z" + d: "M13 8.57a1.43 1.43 0 100 2.86 1.43 1.43 0 000-2.86z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13 3C9.25 3 6.2 5.94 6.02 9.64L4.1 12.2a.5.5 0 00.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.68A6.999 6.999 0 0013 3zm3 7c0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39a.19.19 0 01.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38a.2.2 0 01-.05.26l-.85.66c.03.12.04.25.04.39z" + d: "M13 3C9.25 3 6.2 5.94 6.02 9.64L4.1 12.2a.5.5 0 00.4.8H6v3c0 1.1.9 2 2 2h1v3h7v-4.68A6.999 6.999 0 0013 3zm3 7c0 .13-.01.26-.02.39l.83.66c.08.06.1.16.05.25l-.8 1.39c-.05.09-.16.12-.24.09l-.99-.4c-.21.16-.43.29-.67.39L14 13.83c-.01.1-.1.17-.2.17h-1.6c-.1 0-.18-.07-.2-.17l-.15-1.06c-.25-.1-.47-.23-.68-.39l-.99.4c-.09.03-.2 0-.25-.09l-.8-1.39a.19.19 0 01.05-.25l.84-.66c-.01-.13-.02-.26-.02-.39s.02-.27.04-.39l-.85-.66c-.08-.06-.1-.16-.05-.26l.8-1.38c.05-.09.15-.12.24-.09l1 .4c.2-.15.43-.29.67-.39L12 6.17c.02-.1.1-.17.2-.17h1.6c.1 0 .18.07.2.17l.15 1.06c.24.1.46.23.67.39l1-.4c.09-.03.2 0 .24.09l.8 1.38a.2.2 0 01-.05.26l-.85.66c.03.12.04.25.04.39z", + fill: "currentColor" })); } diff --git a/icons/es5/PsychologyAlt.js b/icons/es5/PsychologyAlt.js index 0c8464e9a0..498477ad2b 100644 --- a/icons/es5/PsychologyAlt.js +++ b/icons/es5/PsychologyAlt.js @@ -7,9 +7,11 @@ function SvgPsychologyAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.94 9.06C19.5 5.73 16.57 3 13 3 9.47 3 6.57 5.61 6.08 9l-1.93 3.48c-.41.66.07 1.52.85 1.52h1v4h3v3h7v-4.68a7.016 7.016 0 003.94-7.26zM12.5 14c-.41 0-.74-.33-.74-.74s.33-.73.74-.73.73.32.73.73-.31.74-.73.74zm1.76-4.32c-.44.65-.86.85-1.09 1.27-.09.17-.13.28-.13.82h-1.06c0-.29-.04-.75.18-1.16.28-.51.83-.81 1.14-1.26.33-.47.15-1.36-.8-1.36-.62 0-.92.47-1.05.86l-.96-.4c.27-.78.97-1.45 2.01-1.45.86 0 1.45.39 1.75.88.26.43.41 1.22.01 1.8z" + d: "M19.94 9.06C19.5 5.73 16.57 3 13 3 9.47 3 6.57 5.61 6.08 9l-1.93 3.48c-.41.66.07 1.52.85 1.52h1v4h3v3h7v-4.68a7.016 7.016 0 003.94-7.26zM12.5 14c-.41 0-.74-.33-.74-.74s.33-.73.74-.73.73.32.73.73-.31.74-.73.74zm1.76-4.32c-.44.65-.86.85-1.09 1.27-.09.17-.13.28-.13.82h-1.06c0-.29-.04-.75.18-1.16.28-.51.83-.81 1.14-1.26.33-.47.15-1.36-.8-1.36-.62 0-.92.47-1.05.86l-.96-.4c.27-.78.97-1.45 2.01-1.45.86 0 1.45.39 1.75.88.26.43.41 1.22.01 1.8z", + fill: "currentColor" })); } diff --git a/icons/es5/Public.js b/icons/es5/Public.js index 34e4b45b89..0d8f65d523 100644 --- a/icons/es5/Public.js +++ b/icons/es5/Public.js @@ -7,9 +7,11 @@ function SvgPublic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L9 15v1c0 1.1.9 2 2 2v1.93zm6.9-2.54c-.26-.81-1-1.39-1.9-1.39h-1v-3c0-.55-.45-1-1-1H8v-2h2c.55 0 1-.45 1-1V7h2c1.1 0 2-.9 2-2v-.41c2.93 1.19 5 4.06 5 7.41 0 2.08-.8 3.97-2.1 5.39z", + fill: "currentColor" })); } diff --git a/icons/es5/PublicOff.js b/icons/es5/PublicOff.js index bb89f05090..fe8dc3990f 100644 --- a/icons/es5/PublicOff.js +++ b/icons/es5/PublicOff.js @@ -7,9 +7,11 @@ function SvgPublicOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 8.17L6.49 3.66A9.91 9.91 0 0112 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46A7.842 7.842 0 0020 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02l-1.41 1.41-2.27-2.27A9.839 9.839 0 0112 22C6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z" + d: "M11 8.17L6.49 3.66A9.91 9.91 0 0112 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51l-1.46-1.46A7.842 7.842 0 0020 12c0-3.35-2.07-6.22-5-7.41V5c0 1.1-.9 2-2 2h-2v1.17zm10.19 13.02l-1.41 1.41-2.27-2.27A9.839 9.839 0 0112 22C6.48 22 2 17.52 2 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.39 18.38zM11 18c-1.1 0-2-.9-2-2v-1l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.08 3.05 7.44 7 7.93V18z", + fill: "currentColor" })); } diff --git a/icons/es5/Publish.js b/icons/es5/Publish.js index 9d9adc945d..868a469759 100644 --- a/icons/es5/Publish.js +++ b/icons/es5/Publish.js @@ -7,9 +7,11 @@ function SvgPublish(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z" + d: "M5 4v2h14V4H5zm0 10h4v6h6v-6h4l-7-7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/PublishedWithChanges.js b/icons/es5/PublishedWithChanges.js index 5e7e272b7a..1a923b7e18 100644 --- a/icons/es5/PublishedWithChanges.js +++ b/icons/es5/PublishedWithChanges.js @@ -7,9 +7,11 @@ function SvgPublishedWithChanges(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.66 9.53l-7.07 7.07-4.24-4.24 1.41-1.41 2.83 2.83 5.66-5.66 1.41 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88L9 8.5v-6H3l2.2 2.2C3.24 6.52 2 9.11 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm18 0c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.33-1.02 4.42-2.62 5.88L15 15.5v6h6l-2.2-2.2c1.96-1.82 3.2-4.41 3.2-7.3z" + d: "M17.66 9.53l-7.07 7.07-4.24-4.24 1.41-1.41 2.83 2.83 5.66-5.66 1.41 1.41zM4 12c0-2.33 1.02-4.42 2.62-5.88L9 8.5v-6H3l2.2 2.2C3.24 6.52 2 9.11 2 12c0 5.19 3.95 9.45 9 9.95v-2.02c-3.94-.49-7-3.86-7-7.93zm18 0c0-5.19-3.95-9.45-9-9.95v2.02c3.94.49 7 3.86 7 7.93 0 2.33-1.02 4.42-2.62 5.88L15 15.5v6h6l-2.2-2.2c1.96-1.82 3.2-4.41 3.2-7.3z", + fill: "currentColor" })); } diff --git a/icons/es5/PunchClock.js b/icons/es5/PunchClock.js index fa1cb6f666..99b4430aa9 100644 --- a/icons/es5/PunchClock.js +++ b/icons/es5/PunchClock.js @@ -7,11 +7,14 @@ function SvgPunchClock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 6h-3V1H6v5H3v16h18V6zM8 3h8v3H8V3zm4 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z" + d: "M21 6h-3V1H6v5H3v16h18V6zM8 3h8v3H8V3zm4 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12.5 11.5h-1v2.71l1.64 1.64.71-.71-1.35-1.35z" + d: "M12.5 11.5h-1v2.71l1.64 1.64.71-.71-1.35-1.35z", + fill: "currentColor" })); } diff --git a/icons/es5/PushPin.js b/icons/es5/PushPin.js index eb5f3fe0bb..bba583d8de 100644 --- a/icons/es5/PushPin.js +++ b/icons/es5/PushPin.js @@ -7,10 +7,12 @@ function SvgPushPin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { d: "M16 9V4h2V2H6v2h2v5c0 1.66-1.34 3-3 3v2h5.97v7l1 1 1-1v-7H19v-2c-1.66 0-3-1.34-3-3z", - fillRule: "evenodd" + fillRule: "evenodd", + fill: "currentColor" })); } diff --git a/icons/es5/QrCode2.js b/icons/es5/QrCode2.js index da0e4fb99b..a208e1815c 100644 --- a/icons/es5/QrCode2.js +++ b/icons/es5/QrCode2.js @@ -7,9 +7,11 @@ function SvgQrCode2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z" + d: "M15 21h-2v-2h2v2zm-2-7h-2v5h2v-5zm8-2h-2v4h2v-4zm-2-2h-2v2h2v-2zM7 12H5v2h2v-2zm-2-2H3v2h2v-2zm7-5h2V3h-2v2zm-7.5-.5v3h3v-3h-3zM9 9H3V3h6v6zm-4.5 7.5v3h3v-3h-3zM9 21H3v-6h6v6zm7.5-16.5v3h3v-3h-3zM21 9h-6V3h6v6zm-2 10v-3h-4v2h2v3h4v-2h-2zm-2-7h-4v2h4v-2zm-4-2H7v2h2v2h2v-2h2v-2zm1-1V7h-2V5h-2v4h4zM6.75 5.25h-1.5v1.5h1.5v-1.5zm0 12h-1.5v1.5h1.5v-1.5zm12-12h-1.5v1.5h1.5v-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/QrCodeScanner.js b/icons/es5/QrCodeScanner.js index c217b34f28..03d94e77c6 100644 --- a/icons/es5/QrCodeScanner.js +++ b/icons/es5/QrCodeScanner.js @@ -7,9 +7,11 @@ function SvgQrCodeScanner(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z" + d: "M9.5 6.5v3h-3v-3h3M11 5H5v6h6V5zm-1.5 9.5v3h-3v-3h3M11 13H5v6h6v-6zm6.5-6.5v3h-3v-3h3M19 5h-6v6h6V5zm-6 8h1.5v1.5H13V13zm1.5 1.5H16V16h-1.5v-1.5zM16 13h1.5v1.5H16V13zm-3 3h1.5v1.5H13V16zm1.5 1.5H16V19h-1.5v-1.5zM16 16h1.5v1.5H16V16zm1.5-1.5H19V16h-1.5v-1.5zm0 3H19V19h-1.5v-1.5zM22 7h-2V4h-3V2h5v5zm0 15v-5h-2v3h-3v2h5zM2 22h5v-2H4v-3H2v5zM2 2v5h2V4h3V2H2z", + fill: "currentColor" })); } diff --git a/icons/es5/Qrcode.js b/icons/es5/Qrcode.js index f84dafaaa7..6030683805 100644 --- a/icons/es5/Qrcode.js +++ b/icons/es5/Qrcode.js @@ -7,9 +7,11 @@ function SvgQrcode(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z" + d: "M3 11h8V3H3v8zm2-6h4v4H5V5zM3 21h8v-8H3v8zm2-6h4v4H5v-4zm8-12v8h8V3h-8zm6 6h-4V5h4v4zm0 10h2v2h-2zm-6-6h2v2h-2zm2 2h2v2h-2zm-2 2h2v2h-2zm2 2h2v2h-2zm2-2h2v2h-2zm0-4h2v2h-2zm2 2h2v2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/QueryBuilder.js b/icons/es5/QueryBuilder.js index 8df3305441..9f5290a531 100644 --- a/icons/es5/QueryBuilder.js +++ b/icons/es5/QueryBuilder.js @@ -7,9 +7,11 @@ function SvgQueryBuilder(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z", + fill: "currentColor" })); } diff --git a/icons/es5/QueryStats.js b/icons/es5/QueryStats.js index a1c8678dff..b4eb0be607 100644 --- a/icons/es5/QueryStats.js +++ b/icons/es5/QueryStats.js @@ -7,9 +7,11 @@ function SvgQueryStats(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11a2.5 2.5 0 010-5 2.5 2.5 0 010 5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z" + d: "M19.88 18.47c.44-.7.7-1.51.7-2.39 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5 2.01 4.5 4.49 4.5c.88 0 1.7-.26 2.39-.7L21.58 23 23 21.58l-3.12-3.11zm-3.8.11a2.5 2.5 0 010-5 2.5 2.5 0 010 5zm-.36-8.5c-.74.02-1.45.18-2.1.45l-.55-.83-3.8 6.18-3.01-3.52-3.63 5.81L1 17l5-8 3 3.5L13 6l2.72 4.08zm2.59.5c-.64-.28-1.33-.45-2.05-.49L21.38 2 23 3.18l-4.69 7.4z", + fill: "currentColor" })); } diff --git a/icons/es5/Question.js b/icons/es5/Question.js index 98ca222bd5..2a679f30e2 100644 --- a/icons/es5/Question.js +++ b/icons/es5/Question.js @@ -11,10 +11,10 @@ function SvgQuestion(props) { xmlns: "http://www.w3.org/2000/svg" }, props), /*#__PURE__*/React.createElement("path", { d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2z", - fill: "#2D494E" + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { d: "M11 19h2v-2h-2v2zM14.17 12.17l.9-.92c.57-.57.93-1.37.93-2.25 0-2.21-1.79-4-4-4S8 6.79 8 9h2c0-1.1.9-2 2-2s2 .9 2 2c0 .55-.22 1.05-.59 1.41l-1.24 1.26C11.45 12.4 11 13.4 11 14.5v.5h2c0-1.5.45-2.1 1.17-2.83z", - fill: "#fff" + fill: "currentColor" })); } diff --git a/icons/es5/QuestionMark.js b/icons/es5/QuestionMark.js index 785703dd0e..a128c61318 100644 --- a/icons/es5/QuestionMark.js +++ b/icons/es5/QuestionMark.js @@ -7,9 +7,11 @@ function SvgQuestionMark(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.07 12.85c.77-1.39 2.25-2.21 3.11-3.44.91-1.29.4-3.7-2.18-3.7-1.69 0-2.52 1.28-2.87 2.34L6.54 6.96C7.25 4.83 9.18 3 11.99 3c2.35 0 3.96 1.07 4.78 2.41.7 1.15 1.11 3.3.03 4.9-1.2 1.77-2.35 2.31-2.97 3.45-.25.46-.35.76-.35 2.24h-2.89c-.01-.78-.13-2.05.48-3.15zM14 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" + d: "M11.07 12.85c.77-1.39 2.25-2.21 3.11-3.44.91-1.29.4-3.7-2.18-3.7-1.69 0-2.52 1.28-2.87 2.34L6.54 6.96C7.25 4.83 9.18 3 11.99 3c2.35 0 3.96 1.07 4.78 2.41.7 1.15 1.11 3.3.03 4.9-1.2 1.77-2.35 2.31-2.97 3.45-.25.46-.35.76-.35 2.24h-2.89c-.01-.78-.13-2.05.48-3.15zM14 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Queue.js b/icons/es5/Queue.js index 29663e7e20..a1b2dc610f 100644 --- a/icons/es5/Queue.js +++ b/icons/es5/Queue.js @@ -7,9 +7,11 @@ function SvgQueue(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z" + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zm-3 9h-4v4h-2v-4H9V9h4V5h2v4h4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/QueueMusic.js b/icons/es5/QueueMusic.js index c70a025e0a..fbcff9f5b9 100644 --- a/icons/es5/QueueMusic.js +++ b/icons/es5/QueueMusic.js @@ -7,9 +7,11 @@ function SvgQueueMusic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z" + d: "M15 6H3v2h12V6zm0 4H3v2h12v-2zM3 16h8v-2H3v2zM17 6v8.18c-.31-.11-.65-.18-1-.18-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3V8h3V6h-5z", + fill: "currentColor" })); } diff --git a/icons/es5/QueuePlayNext.js b/icons/es5/QueuePlayNext.js index dc1b638dd7..a774e73f0b 100644 --- a/icons/es5/QueuePlayNext.js +++ b/icons/es5/QueuePlayNext.js @@ -7,9 +7,11 @@ function SvgQueuePlayNext(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v16h7v2h8v-2h2v-2H3V5h18v8h2V3zm-10 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z" + d: "M23 3H1v16h7v2h8v-2h2v-2H3V5h18v8h2V3zm-10 7V7h-2v3H8v2h3v3h2v-3h3v-2h-3zm11 8l-4.5 4.5L18 21l3-3-3-3 1.5-1.5L24 18z", + fill: "currentColor" })); } diff --git a/icons/es5/Quickreply.js b/icons/es5/Quickreply.js index 7ea077c61b..f69570c1b5 100644 --- a/icons/es5/Quickreply.js +++ b/icons/es5/Quickreply.js @@ -7,11 +7,14 @@ function SvgQuickreply(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h9v-8h7z" + d: "M22 2H2v20l4-4h9v-8h7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22.5 16h-2.2l1.7-4h-5v6h2v5z" + d: "M22.5 16h-2.2l1.7-4h-5v6h2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/Quiz.js b/icons/es5/Quiz.js index 31852d4b9f..465feee928 100644 --- a/icons/es5/Quiz.js +++ b/icons/es5/Quiz.js @@ -7,11 +7,14 @@ function SvgQuiz(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4z" + d: "M4 6H2v16h16v-2H4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6 2v16h16V2H6zm7.51 8.16c.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.6.58 1.73.01 2.57-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c.01-.41-.06-1.08.26-1.66zm-.56 3.79c0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05-.58 0-1.05-.47-1.05-1.05z" + d: "M6 2v16h16V2H6zm7.51 8.16c.41-.73 1.18-1.16 1.63-1.8.48-.68.21-1.94-1.14-1.94-.88 0-1.32.67-1.5 1.23l-1.37-.57C11.51 5.96 12.52 5 13.99 5c1.23 0 2.08.56 2.51 1.26.37.6.58 1.73.01 2.57-.63.93-1.23 1.21-1.56 1.81-.13.24-.18.4-.18 1.18h-1.52c.01-.41-.06-1.08.26-1.66zm-.56 3.79c0-.59.47-1.04 1.05-1.04.59 0 1.04.45 1.04 1.04 0 .58-.44 1.05-1.04 1.05-.58 0-1.05-.47-1.05-1.05z", + fill: "currentColor" })); } diff --git a/icons/es5/Quora.js b/icons/es5/Quora.js index 4b4eaed353..842df04a98 100644 --- a/icons/es5/Quora.js +++ b/icons/es5/Quora.js @@ -7,9 +7,11 @@ function SvgQuora(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.94 17.46h-1.11c-.06.52-.4 1.17-1.25 1.17-.78 0-1.34-.54-1.88-1.36a7.233 7.233 0 002.84-5.81C19.54 7 15.86 4 12.01 4 8.21 4 4.5 7.03 4.5 11.47c0 4.4 3.71 7.43 7.51 7.43.66 0 1.32-.09 1.95-.26.74 1.27 1.73 2.36 3.6 2.36 3.1 0 3.45-2.86 3.38-3.54zm-5.45-2.18c-.73-1.11-1.66-1.98-3.46-1.98-1.16 0-2.06.38-2.62.86l.46.92c.24-.11.49-.15.75-.15 1.35 0 2.04 1.17 2.63 2.33-.38.11-.79.16-1.24.16-2.85 0-4.08-2.01-4.08-5.95 0-3.96 1.23-5.99 4.08-5.99 2.89 0 4.13 2.03 4.13 5.99-.01 1.58-.21 2.86-.65 3.81z" + d: "M20.94 17.46h-1.11c-.06.52-.4 1.17-1.25 1.17-.78 0-1.34-.54-1.88-1.36a7.233 7.233 0 002.84-5.81C19.54 7 15.86 4 12.01 4 8.21 4 4.5 7.03 4.5 11.47c0 4.4 3.71 7.43 7.51 7.43.66 0 1.32-.09 1.95-.26.74 1.27 1.73 2.36 3.6 2.36 3.1 0 3.45-2.86 3.38-3.54zm-5.45-2.18c-.73-1.11-1.66-1.98-3.46-1.98-1.16 0-2.06.38-2.62.86l.46.92c.24-.11.49-.15.75-.15 1.35 0 2.04 1.17 2.63 2.33-.38.11-.79.16-1.24.16-2.85 0-4.08-2.01-4.08-5.95 0-3.96 1.23-5.99 4.08-5.99 2.89 0 4.13 2.03 4.13 5.99-.01 1.58-.21 2.86-.65 3.81z", + fill: "currentColor" })); } diff --git a/icons/es5/RMobiledata.js b/icons/es5/RMobiledata.js index 39135f5337..ae0063de31 100644 --- a/icons/es5/RMobiledata.js +++ b/icons/es5/RMobiledata.js @@ -7,9 +7,11 @@ function SvgRMobiledata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.8 7.2L9 10H7L5.87 7.33H4V10H2V2h7v5.2H7.8zM7 4H4v1.33h3V4z" + d: "M7.8 7.2L9 10H7L5.87 7.33H4V10H2V2h7v5.2H7.8zM7 4H4v1.33h3V4z", + fill: "currentColor" })); } diff --git a/icons/es5/Radar.js b/icons/es5/Radar.js index d4a1778d97..2e85e1fdc1 100644 --- a/icons/es5/Radar.js +++ b/icons/es5/Radar.js @@ -7,9 +7,11 @@ function SvgRadar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.74 18.33A9.984 9.984 0 0022 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10a9.984 9.984 0 007.11-2.97c.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42A7.822 7.822 0 0112 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z" + d: "M19.74 18.33A9.984 9.984 0 0022 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10a9.984 9.984 0 007.11-2.97c.03-.03.05-.06.07-.08.2-.2.39-.41.56-.62zM12 20c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8c0 1.85-.63 3.54-1.69 4.9l-1.43-1.43c.69-.98 1.1-2.17 1.1-3.46 0-3.31-2.69-6-6-6s-6 2.69-6 6 2.69 6 6 6c1.3 0 2.51-.42 3.49-1.13l1.42 1.42A7.822 7.822 0 0112 20zm1.92-7.49c.17-.66.02-1.38-.49-1.9l-.02-.02c-.77-.77-2-.78-2.78-.04-.01.01-.03.02-.05.04-.78.78-.78 2.05 0 2.83l.02.02c.52.51 1.25.67 1.91.49l1.51 1.51c-.6.36-1.29.58-2.04.58-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4c0 .73-.21 1.41-.56 2l-1.5-1.51z", + fill: "currentColor" })); } diff --git a/icons/es5/Radio.js b/icons/es5/Radio.js index bd79def11a..bdc31eb1aa 100644 --- a/icons/es5/Radio.js +++ b/icons/es5/Radio.js @@ -7,9 +7,11 @@ function SvgRadio(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 6.67V22h20V6H8.3l8.26-3.34L15.88 1 2 6.67zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z" + d: "M2 6.67V22h20V6H8.3l8.26-3.34L15.88 1 2 6.67zM7 20c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm13-8h-2v-2h-2v2H4V8h16v4z", + fill: "currentColor" })); } diff --git a/icons/es5/RailwayAlert.js b/icons/es5/RailwayAlert.js index 4bef086b3d..5503727789 100644 --- a/icons/es5/RailwayAlert.js +++ b/icons/es5/RailwayAlert.js @@ -7,11 +7,14 @@ function SvgRailwayAlert(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20L4 21v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm6 6c-.83 0-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5S10.83 17 10 17z" + d: "M4 11V8h7.29c-.77-2.6.21-4.61.37-4.97C2.97 2.67 2 5.02 2 7v9.5C2 18.43 3.57 20 5.5 20L4 21v1h12v-1l-1.5-1c1.93 0 3.5-1.57 3.5-3.5V13c-1.91 0-3.63-.76-4.89-2H4zm6 6c-.83 0-1.5-.67-1.5-1.5S9.17 14 10 14s1.5.67 1.5 1.5S10.83 17 10 17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z", + fill: "currentColor" })); } diff --git a/icons/es5/RamenDining.js b/icons/es5/RamenDining.js index fad3312783..7ccea26c25 100644 --- a/icons/es5/RamenDining.js +++ b/icons/es5/RamenDining.js @@ -7,9 +7,11 @@ function SvgRamenDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 3.51V2L4 3.99V12H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10.5V8H22V6.5H10.5V4.78L22 3.51zM6.5 5.22V6.5h-1V5.34l1-.12zM5.5 8h1v4h-1V8zM9 12H8V8h1v4zm0-5.5H8V5.06l1-.11V6.5z" + d: "M22 3.51V2L4 3.99V12H2c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25H10.5V8H22V6.5H10.5V4.78L22 3.51zM6.5 5.22V6.5h-1V5.34l1-.12zM5.5 8h1v4h-1V8zM9 12H8V8h1v4zm0-5.5H8V5.06l1-.11V6.5z", + fill: "currentColor" })); } diff --git a/icons/es5/RampLeft.js b/icons/es5/RampLeft.js index 4def4f5735..5771fd759f 100644 --- a/icons/es5/RampLeft.js +++ b/icons/es5/RampLeft.js @@ -7,9 +7,11 @@ function SvgRampLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 21h-2V6.83L9.41 8.41 8 7l4-4 4 4-1.41 1.41L13 6.83V9c0 4.27 4.03 7.13 6 8.27l-1.46 1.46c-1.91-1.16-3.44-2.53-4.54-4.02V21z" + d: "M13 21h-2V6.83L9.41 8.41 8 7l4-4 4 4-1.41 1.41L13 6.83V9c0 4.27 4.03 7.13 6 8.27l-1.46 1.46c-1.91-1.16-3.44-2.53-4.54-4.02V21z", + fill: "currentColor" })); } diff --git a/icons/es5/RampRight.js b/icons/es5/RampRight.js index 1bcaa2f730..2879503796 100644 --- a/icons/es5/RampRight.js +++ b/icons/es5/RampRight.js @@ -7,9 +7,11 @@ function SvgRampRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 21h2V6.83l1.59 1.59L16 7l-4-4-4 4 1.41 1.41L11 6.83V9c0 4.27-4.03 7.13-6 8.27l1.46 1.46C8.37 17.56 9.9 16.19 11 14.7V21z" + d: "M11 21h2V6.83l1.59 1.59L16 7l-4-4-4 4 1.41 1.41L11 6.83V9c0 4.27-4.03 7.13-6 8.27l1.46 1.46C8.37 17.56 9.9 16.19 11 14.7V21z", + fill: "currentColor" })); } diff --git a/icons/es5/RateReview.js b/icons/es5/RateReview.js index 9002687879..0d837c68a3 100644 --- a/icons/es5/RateReview.js +++ b/icons/es5/RateReview.js @@ -7,9 +7,11 @@ function SvgRateReview(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z" + d: "M22 2H2v20l4-4h16V2zM6 14v-2.47l6.88-6.88c.2-.2.51-.2.71 0l1.77 1.77c.2.2.2.51 0 .71L8.47 14H6zm12 0h-7.5l2-2H18v2z", + fill: "currentColor" })); } diff --git a/icons/es5/RawOff.js b/icons/es5/RawOff.js index a199d41ee9..9f7a22ba72 100644 --- a/icons/es5/RawOff.js +++ b/icons/es5/RawOff.js @@ -7,9 +7,11 @@ function SvgRawOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.15 14.32l.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22L6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z" + d: "M17.15 14.32l.59-2.36.76 3.04h1.48l1.5-6h-1.5l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l.72 2.9zM1.39 4.22L6.17 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-.67l1.43 1.43L8.75 15h1.5l.38-1.5h.04l9.11 9.11 1.41-1.41L2.81 2.81 1.39 4.22zM6.5 11.5h-2v-1h2v1z", + fill: "currentColor" })); } diff --git a/icons/es5/RawOn.js b/icons/es5/RawOn.js index 7a86d6562e..eb7e976cd8 100644 --- a/icons/es5/RawOn.js +++ b/icons/es5/RawOn.js @@ -7,9 +7,11 @@ function SvgRawOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3l.25-1h.5l.25 1h-1zm8.98-3l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z" + d: "M6.5 9H3v6h1.5v-2h1.1l.9 2H8l-.9-2.1c.5-.3.9-.8.9-1.4v-1C8 9.7 7.3 9 6.5 9zm0 2.5h-2v-1h2v1zM10.25 9l-1.5 6h1.5l.38-1.5h1.75l.37 1.5h1.5l-1.5-6h-2.5zm.75 3l.25-1h.5l.25 1h-1zm8.98-3l-.74 3-.74-3h-1.52l-.74 3-.74-3H14l1.5 6h1.48l.76-3.04.76 3.04h1.48l1.5-6z", + fill: "currentColor" })); } diff --git a/icons/es5/ReadMore.js b/icons/es5/ReadMore.js index 1b4ac2aded..c73239c7a9 100644 --- a/icons/es5/ReadMore.js +++ b/icons/es5/ReadMore.js @@ -7,9 +7,11 @@ function SvgReadMore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z" + d: "M13 7h9v2h-9zm0 8h9v2h-9zm3-4h6v2h-6zm-3 1L8 7v4H2v2h6v4z", + fill: "currentColor" })); } diff --git a/icons/es5/RealEstateAgent.js b/icons/es5/RealEstateAgent.js index 608eb06675..92eff8f380 100644 --- a/icons/es5/RealEstateAgent.js +++ b/icons/es5/RealEstateAgent.js @@ -7,9 +7,11 @@ function SvgRealEstateAgent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 22h4V11H1v11zM14 1.5l-7 5V9h2l10 4v2h2V6.5l-7-5zm-.5 8.5h-1V9h1v1zm0-2h-1V7h1v1zm2 2h-1V9h1v1zm0-2h-1V7h1v1zM22 19l-8 3-7-1.98V11h1.97L17 14v2h-4l-1.76-.68-.33.94L13 17h9v2z" + d: "M1 22h4V11H1v11zM14 1.5l-7 5V9h2l10 4v2h2V6.5l-7-5zm-.5 8.5h-1V9h1v1zm0-2h-1V7h1v1zm2 2h-1V9h1v1zm0-2h-1V7h1v1zM22 19l-8 3-7-1.98V11h1.97L17 14v2h-4l-1.76-.68-.33.94L13 17h9v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Receipt.js b/icons/es5/Receipt.js index 8671b3279c..f2d05729c7 100644 --- a/icons/es5/Receipt.js +++ b/icons/es5/Receipt.js @@ -7,9 +7,11 @@ function SvgReceipt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z" + d: "M18 17H6v-2h12v2zm0-4H6v-2h12v2zm0-4H6V7h12v2zM3 22l1.5-1.5L6 22l1.5-1.5L9 22l1.5-1.5L12 22l1.5-1.5L15 22l1.5-1.5L18 22l1.5-1.5L21 22V2l-1.5 1.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2 4.5 3.5 3 2v20z", + fill: "currentColor" })); } diff --git a/icons/es5/ReceiptLong.js b/icons/es5/ReceiptLong.js index 7ee2fa9217..4aa6e874ac 100644 --- a/icons/es5/ReceiptLong.js +++ b/icons/es5/ReceiptLong.js @@ -7,11 +7,14 @@ function SvgReceiptLong(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM15 20H6c-.55 0-1-.45-1-1v-1h10v2zm4-1c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z" + d: "M19.5 3.5L18 2l-1.5 1.5L15 2l-1.5 1.5L12 2l-1.5 1.5L9 2 7.5 3.5 6 2v14H3v3c0 1.66 1.34 3 3 3h12c1.66 0 3-1.34 3-3V2l-1.5 1.5zM15 20H6c-.55 0-1-.45-1-1v-1h10v2zm4-1c0 .55-.45 1-1 1s-1-.45-1-1v-3H8V5h11v14z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M9 7h6v2H9zm0 3h6v2H9zm7-3h2v2h-2zm0 3h2v2h-2z" + d: "M9 7h6v2H9zm0 3h6v2H9zm7-3h2v2h-2zm0 3h2v2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/RecentActors.js b/icons/es5/RecentActors.js index caf186f979..2bec9d4fc9 100644 --- a/icons/es5/RecentActors.js +++ b/icons/es5/RecentActors.js @@ -7,9 +7,11 @@ function SvgRecentActors(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM15 5H1v14h14V5zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z" + d: "M21 5v14h2V5h-2zm-4 14h2V5h-2v14zM15 5H1v14h14V5zM8 7.75c1.24 0 2.25 1.01 2.25 2.25S9.24 12.25 8 12.25 5.75 11.24 5.75 10 6.76 7.75 8 7.75zM12.5 17h-9v-.75c0-1.5 3-2.25 4.5-2.25s4.5.75 4.5 2.25V17z", + fill: "currentColor" })); } diff --git a/icons/es5/Recommend.js b/icons/es5/Recommend.js index 592be2b135..5e0474b3ad 100644 --- a/icons/es5/Recommend.js +++ b/icons/es5/Recommend.js @@ -7,9 +7,11 @@ function SvgRecommend(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.05L15.46 18H7v-7.56L12 5l1 1v.53L12.41 10H18v2.05z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.05L15.46 18H7v-7.56L12 5l1 1v.53L12.41 10H18v2.05z", + fill: "currentColor" })); } diff --git a/icons/es5/RecordVoiceOver.js b/icons/es5/RecordVoiceOver.js index a23aa07617..c8fd151c9a 100644 --- a/icons/es5/RecordVoiceOver.js +++ b/icons/es5/RecordVoiceOver.js @@ -7,13 +7,15 @@ function SvgRecordVoiceOver(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 9, r: 4 }), /*#__PURE__*/React.createElement("path", { - d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm6.08-7.95c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z" + d: "M9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-2.66-5.33-4-8-4zm6.08-7.95c.84 1.18.84 2.71 0 3.89l1.68 1.69c2.02-2.02 2.02-5.07 0-7.27l-1.68 1.69zM20.07 2l-1.63 1.63c2.77 3.02 2.77 7.56 0 10.74L20.07 16c3.9-3.89 3.91-9.95 0-14z", + fill: "currentColor" })); } diff --git a/icons/es5/Rectangle.js b/icons/es5/Rectangle.js index 6322e13be7..a296f0f79c 100644 --- a/icons/es5/Rectangle.js +++ b/icons/es5/Rectangle.js @@ -7,9 +7,11 @@ function SvgRectangle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 4h20v16H2z" + d: "M2 4h20v16H2z", + fill: "currentColor" })); } diff --git a/icons/es5/Recycling.js b/icons/es5/Recycling.js index 172e23c64d..d378cdf17c 100644 --- a/icons/es5/Recycling.js +++ b/icons/es5/Recycling.js @@ -7,9 +7,11 @@ function SvgRecycling(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.77 7.15L7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-1 1.62-3.43-2.06zm15.95 5.82l-1.6-2.66-3.46 2L18.87 16H20a2 2 0 002-2c0-.36-.1-.71-.28-1.03zM16 21h1.5a2 2 0 001.79-1.11L20.74 17H16v-2l-4 4 4 4v-2zm-6-4H5.7l-.84 1.41c-.3.5-.32 1.12-.06 1.65.28.57.87.94 1.52.94H10v-4zm-3.88-2.65l1.73 1.04L6.48 9.9 1 11.27l1.7 1.02-.41.69c-.35.59-.38 1.31-.07 1.92l1.63 3.26 2.27-3.81zm10.9-9.21l-1.3-2.17C15.35 2.37 14.7 2 14 2h-3.53l3.12 5.2-1.72 1.03 5.49 1.37 1.37-5.49-1.71 1.03z" + d: "M5.77 7.15L7.2 4.78l1.03-1.71c.39-.65 1.33-.65 1.72 0l1.48 2.46-1.23 2.06-1 1.62-3.43-2.06zm15.95 5.82l-1.6-2.66-3.46 2L18.87 16H20a2 2 0 002-2c0-.36-.1-.71-.28-1.03zM16 21h1.5a2 2 0 001.79-1.11L20.74 17H16v-2l-4 4 4 4v-2zm-6-4H5.7l-.84 1.41c-.3.5-.32 1.12-.06 1.65.28.57.87.94 1.52.94H10v-4zm-3.88-2.65l1.73 1.04L6.48 9.9 1 11.27l1.7 1.02-.41.69c-.35.59-.38 1.31-.07 1.92l1.63 3.26 2.27-3.81zm10.9-9.21l-1.3-2.17C15.35 2.37 14.7 2 14 2h-3.53l3.12 5.2-1.72 1.03 5.49 1.37 1.37-5.49-1.71 1.03z", + fill: "currentColor" })); } diff --git a/icons/es5/Reddit.js b/icons/es5/Reddit.js index 2c9d3d5205..093a8b0c83 100644 --- a/icons/es5/Reddit.js +++ b/icons/es5/Reddit.js @@ -7,11 +7,14 @@ function SvgReddit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.75 13.04c0-.57-.47-1.04-1.04-1.04-.57 0-1.04.47-1.04 1.04a1.04 1.04 0 102.08 0zm3.34 2.37c-.45.45-1.41.61-2.09.61s-1.64-.16-2.09-.61a.26.26 0 00-.38 0 .26.26 0 000 .38c.71.71 2.07.77 2.47.77.4 0 1.76-.06 2.47-.77a.26.26 0 000-.38c-.1-.1-.27-.1-.38 0zm.2-3.41c-.57 0-1.04.47-1.04 1.04 0 .57.47 1.04 1.04 1.04s1.04-.47 1.04-1.04c0-.57-.46-1.04-1.04-1.04z" + d: "M10.75 13.04c0-.57-.47-1.04-1.04-1.04-.57 0-1.04.47-1.04 1.04a1.04 1.04 0 102.08 0zm3.34 2.37c-.45.45-1.41.61-2.09.61s-1.64-.16-2.09-.61a.26.26 0 00-.38 0 .26.26 0 000 .38c.71.71 2.07.77 2.47.77.4 0 1.76-.06 2.47-.77a.26.26 0 000-.38c-.1-.1-.27-.1-.38 0zm.2-3.41c-.57 0-1.04.47-1.04 1.04 0 .57.47 1.04 1.04 1.04s1.04-.47 1.04-1.04c0-.57-.46-1.04-1.04-1.04z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5.8 11.33c.02.14.03.29.03.44 0 2.24-2.61 4.06-5.83 4.06s-5.83-1.82-5.83-4.06c0-.15.01-.3.03-.44-.51-.23-.86-.74-.86-1.33a1.455 1.455 0 012.47-1.05c1.01-.73 2.41-1.19 3.96-1.24l.74-3.49c.01-.07.05-.13.11-.16.06-.04.13-.05.2-.04l2.42.52a1.04 1.04 0 11.93 1.5c-.56 0-1.01-.44-1.04-.99l-2.17-.46-.66 3.12c1.53.05 2.9.52 3.9 1.24a1.455 1.455 0 111.6 2.38z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm5.8 11.33c.02.14.03.29.03.44 0 2.24-2.61 4.06-5.83 4.06s-5.83-1.82-5.83-4.06c0-.15.01-.3.03-.44-.51-.23-.86-.74-.86-1.33a1.455 1.455 0 012.47-1.05c1.01-.73 2.41-1.19 3.96-1.24l.74-3.49c.01-.07.05-.13.11-.16.06-.04.13-.05.2-.04l2.42.52a1.04 1.04 0 11.93 1.5c-.56 0-1.01-.44-1.04-.99l-2.17-.46-.66 3.12c1.53.05 2.9.52 3.9 1.24a1.455 1.455 0 111.6 2.38z", + fill: "currentColor" })); } diff --git a/icons/es5/Redeem.js b/icons/es5/Redeem.js index 41f4716468..ffde4cb6a0 100644 --- a/icons/es5/Redeem.js +++ b/icons/es5/Redeem.js @@ -7,9 +7,11 @@ function SvgRedeem(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6h-4.18c.11-.31.18-.65.18-1a2.996 2.996 0 00-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2v15h20V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z" + d: "M22 6h-4.18c.11-.31.18-.65.18-1a2.996 2.996 0 00-5.5-1.65l-.5.67-.5-.68C10.96 2.54 10.05 2 9 2 7.34 2 6 3.34 6 5c0 .35.07.69.18 1H2v15h20V6zm-7-2c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zM9 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm11 15H4v-2h16v2zm0-5H4V8h5.08L7 10.83 8.62 12 12 7.4l3.38 4.6L17 10.83 14.92 8H20v6z", + fill: "currentColor" })); } diff --git a/icons/es5/ReduceCapacity.js b/icons/es5/ReduceCapacity.js index a2ceb8c7e0..8a14acb5d4 100644 --- a/icons/es5/ReduceCapacity.js +++ b/icons/es5/ReduceCapacity.js @@ -7,9 +7,11 @@ function SvgReduceCapacity(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58A6.95 6.95 0 0018 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58A2.01 2.01 0 002 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0116 9.43V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0121 21.43V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0111 21.43V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z" + d: "M16 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58A6.95 6.95 0 0018 7c-.67 0-1.31.1-1.92.28.58.55.92 1.32.92 2.15V10h5v-.57c0-.81-.48-1.53-1.22-1.85zM6 6c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm1.92 1.28C7.31 7.1 6.67 7 6 7c-.99 0-1.93.21-2.78.58A2.01 2.01 0 002 9.43V10h5v-.57c0-.83.34-1.6.92-2.15zM10 4c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0116 9.43V10zm-1 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6h-8v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0121 21.43V22zM5 16c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm6 6H3v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0111 21.43V22zm1.75-9v-2h-1.5v2H9l3 3 3-3h-2.25z", + fill: "currentColor" })); } diff --git a/icons/es5/Refresh.js b/icons/es5/Refresh.js index ba8d858395..da2f9325af 100644 --- a/icons/es5/Refresh.js +++ b/icons/es5/Refresh.js @@ -7,9 +7,11 @@ function SvgRefresh(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.65 6.35A7.958 7.958 0 0012 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 0112 18c-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z" + d: "M17.65 6.35A7.958 7.958 0 0012 4c-4.42 0-7.99 3.58-7.99 8s3.57 8 7.99 8c3.73 0 6.84-2.55 7.73-6h-2.08A5.99 5.99 0 0112 18c-3.31 0-6-2.69-6-6s2.69-6 6-6c1.66 0 3.14.69 4.22 1.78L13 11h7V4l-2.35 2.35z", + fill: "currentColor" })); } diff --git a/icons/es5/RememberMe.js b/icons/es5/RememberMe.js index 78b4fa4af9..e7bd15c8bd 100644 --- a/icons/es5/RememberMe.js +++ b/icons/es5/RememberMe.js @@ -7,9 +7,11 @@ function SvgRememberMe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 1H5v22h14V1zm-2 14.21c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21z" + d: "M19 1H5v22h14V1zm-2 14.21c-1.5-.77-3.2-1.21-5-1.21s-3.5.44-5 1.21V6h10v9.21z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 10, diff --git a/icons/es5/RemoveCircleOutline.js b/icons/es5/RemoveCircleOutline.js index 40eadf8fc4..9ca70f5cb5 100644 --- a/icons/es5/RemoveCircleOutline.js +++ b/icons/es5/RemoveCircleOutline.js @@ -7,9 +7,11 @@ function SvgRemoveCircleOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z" + d: "M7 11v2h10v-2H7zm5-9C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm0 18c-4.41 0-8-3.59-8-8s3.59-8 8-8 8 3.59 8 8-3.59 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/RemoveDone.js b/icons/es5/RemoveDone.js index 392f6155fe..0bfa709972 100644 --- a/icons/es5/RemoveDone.js +++ b/icons/es5/RemoveDone.js @@ -7,9 +7,11 @@ function SvgRemoveDone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.84 1.98L3.43 3.39l10.38 10.38-1.41 1.41-4.24-4.24-1.41 1.41 5.66 5.66 2.83-2.83 6.6 6.6 1.41-1.41L4.84 1.98zm13.21 10.38L23 7.4 21.57 6l-4.94 4.94 1.42 1.42zm-.71-4.96l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM1.08 12.35l5.66 5.66 1.41-1.41-5.66-5.66-1.41 1.41z" + d: "M4.84 1.98L3.43 3.39l10.38 10.38-1.41 1.41-4.24-4.24-1.41 1.41 5.66 5.66 2.83-2.83 6.6 6.6 1.41-1.41L4.84 1.98zm13.21 10.38L23 7.4 21.57 6l-4.94 4.94 1.42 1.42zm-.71-4.96l-1.41-1.41-2.12 2.12 1.41 1.41 2.12-2.12zM1.08 12.35l5.66 5.66 1.41-1.41-5.66-5.66-1.41 1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/RemoveFromQueue.js b/icons/es5/RemoveFromQueue.js index 4516373989..c3dd20bb7c 100644 --- a/icons/es5/RemoveFromQueue.js +++ b/icons/es5/RemoveFromQueue.js @@ -7,9 +7,11 @@ function SvgRemoveFromQueue(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2H8v-2h8z" + d: "M23 3H1v16h7v2h8v-2h7V3zm-2 14H3V5h18v12zm-5-7v2H8v-2h8z", + fill: "currentColor" })); } diff --git a/icons/es5/RemoveModerator.js b/icons/es5/RemoveModerator.js index 5ee056dc96..2d93d15565 100644 --- a/icons/es5/RemoveModerator.js +++ b/icons/es5/RemoveModerator.js @@ -7,9 +7,11 @@ function SvgRemoveModerator(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 11.09V5l-8-3-5.22 1.96 12.09 12.09c.72-1.53 1.13-3.22 1.13-4.96zM2.81 2.81L1.39 4.22 4 6.83v4.26c0 5.05 3.41 9.76 8 10.91 1.72-.43 3.28-1.36 4.55-2.62l3.23 3.23 1.41-1.41L2.81 2.81z" + d: "M20 11.09V5l-8-3-5.22 1.96 12.09 12.09c.72-1.53 1.13-3.22 1.13-4.96zM2.81 2.81L1.39 4.22 4 6.83v4.26c0 5.05 3.41 9.76 8 10.91 1.72-.43 3.28-1.36 4.55-2.62l3.23 3.23 1.41-1.41L2.81 2.81z", + fill: "currentColor" })); } diff --git a/icons/es5/RemoveRedEye.js b/icons/es5/RemoveRedEye.js index b9394c33ef..db763bcbde 100644 --- a/icons/es5/RemoveRedEye.js +++ b/icons/es5/RemoveRedEye.js @@ -7,9 +7,11 @@ function SvgRemoveRedEye(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + d: "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/RemoveRoad.js b/icons/es5/RemoveRoad.js index b2962ce315..c6ec8233d0 100644 --- a/icons/es5/RemoveRoad.js +++ b/icons/es5/RemoveRoad.js @@ -7,9 +7,11 @@ function SvgRemoveRoad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm11.5.41L21.09 15 19 17.09 16.91 15l-1.41 1.41 2.09 2.09-2.09 2.09L16.91 22 19 19.91 21.09 22l1.41-1.41-2.09-2.09z" + d: "M18 4h2v9h-2zM4 4h2v16H4zm7 0h2v4h-2zm0 6h2v4h-2zm0 6h2v4h-2zm11.5.41L21.09 15 19 17.09 16.91 15l-1.41 1.41 2.09 2.09-2.09 2.09L16.91 22 19 19.91 21.09 22l1.41-1.41-2.09-2.09z", + fill: "currentColor" })); } diff --git a/icons/es5/RemoveShoppingCart.js b/icons/es5/RemoveShoppingCart.js index 57642a3323..8939590dd3 100644 --- a/icons/es5/RemoveShoppingCart.js +++ b/icons/es5/RemoveShoppingCart.js @@ -7,9 +7,11 @@ function SvgRemoveShoppingCart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66L3.62 17h10.84l1.38 1.38A1.997 1.997 0 0017 22c.67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zm9.05-2.06h.73L21.7 4H7.12l8.93 8.94zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z" + d: "M1.41 1.13L0 2.54l4.39 4.39 2.21 4.66L3.62 17h10.84l1.38 1.38A1.997 1.997 0 0017 22c.67 0 1.26-.33 1.62-.84L21.46 24l1.41-1.41L1.41 1.13zM7 15l1.1-2h2.36l2 2H7zm9.05-2.06h.73L21.7 4H7.12l8.93 8.94zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Reorder.js b/icons/es5/Reorder.js index 61c5c5c8b3..cd2752b614 100644 --- a/icons/es5/Reorder.js +++ b/icons/es5/Reorder.js @@ -7,9 +7,11 @@ function SvgReorder(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z" + d: "M3 15h18v-2H3v2zm0 4h18v-2H3v2zm0-8h18V9H3v2zm0-6v2h18V5H3z", + fill: "currentColor" })); } diff --git a/icons/es5/Repartition.js b/icons/es5/Repartition.js index 559eba349f..02ffcbe74c 100644 --- a/icons/es5/Repartition.js +++ b/icons/es5/Repartition.js @@ -7,9 +7,11 @@ function SvgRepartition(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 21h18v-6H3v6zm7.33-2v-2h3.33v2h-3.33zM19 19h-3.33v-2H19v2zM5 17h3.33v2H5v-2zm1-7l1.42-1.42L5.83 7H17c1.1 0 2 .9 2 2s-.9 2-2 2H3v2h14c2.21 0 4-1.79 4-4s-1.79-4-4-4H5.83l1.59-1.59L6 2 2 6l4 4z" + d: "M3 21h18v-6H3v6zm7.33-2v-2h3.33v2h-3.33zM19 19h-3.33v-2H19v2zM5 17h3.33v2H5v-2zm1-7l1.42-1.42L5.83 7H17c1.1 0 2 .9 2 2s-.9 2-2 2H3v2h14c2.21 0 4-1.79 4-4s-1.79-4-4-4H5.83l1.59-1.59L6 2 2 6l4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Repeat.js b/icons/es5/Repeat.js index 48104cf735..e6c7914c69 100644 --- a/icons/es5/Repeat.js +++ b/icons/es5/Repeat.js @@ -7,9 +7,11 @@ function SvgRepeat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z" + d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/RepeatOn.js b/icons/es5/RepeatOn.js index 9e349699c8..a1990498eb 100644 --- a/icons/es5/RepeatOn.js +++ b/icons/es5/RepeatOn.js @@ -7,9 +7,11 @@ function SvgRepeatOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-2-9V7H7v4H5V5h12V2l4 4-4 4z" + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-2-9V7H7v4H5V5h12V2l4 4-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/RepeatOne.js b/icons/es5/RepeatOne.js index 8898679901..451e39106c 100644 --- a/icons/es5/RepeatOne.js +++ b/icons/es5/RepeatOne.js @@ -7,9 +7,11 @@ function SvgRepeatOne(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z" + d: "M7 7h10v3l4-4-4-4v3H5v6h2V7zm10 10H7v-3l-4 4 4 4v-3h12v-6h-2v4zm-4-2V9h-1l-2 1v1h1.5v4H13z", + fill: "currentColor" })); } diff --git a/icons/es5/RepeatOneOn.js b/icons/es5/RepeatOneOn.js index e7799dbf3f..7ab8c4c704 100644 --- a/icons/es5/RepeatOneOn.js +++ b/icons/es5/RepeatOneOn.js @@ -7,9 +7,11 @@ function SvgRepeatOneOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-9-8.5V9h3v6h-1.5v-4.5H10zm7-.5V7H7v4H5V5h12V2l4 4-4 4z" + d: "M21 1H3c-1.1 0-2 .9-2 2v18c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V3c0-1.1-.9-2-2-2zm-2 18H7v3l-4-4 4-4v3h10v-4h2v6zm-9-8.5V9h3v6h-1.5v-4.5H10zm7-.5V7H7v4H5V5h12V2l4 4-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Replay.js b/icons/es5/Replay.js index c225c1cd0d..a678d88d39 100644 --- a/icons/es5/Replay.js +++ b/icons/es5/Replay.js @@ -7,9 +7,11 @@ function SvgReplay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z" + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8z", + fill: "currentColor" })); } diff --git a/icons/es5/Replay10.js b/icons/es5/Replay10.js index 5cd7f4860a..3b7cb8de51 100644 --- a/icons/es5/Replay10.js +++ b/icons/es5/Replay10.js @@ -7,9 +7,11 @@ function SvgReplay10(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z" + d: "M11.99 5V1l-5 5 5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6h-2c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.1 11h-.85v-3.26l-1.01.31v-.69l1.77-.63h.09V16zm4.28-1.76c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32.04-.29.04-.48v-.97z", + fill: "currentColor" })); } diff --git a/icons/es5/Replay30.js b/icons/es5/Replay30.js index 0bfc6b773b..64eeeb6538 100644 --- a/icons/es5/Replay30.js +++ b/icons/es5/Replay30.js @@ -7,9 +7,11 @@ function SvgReplay30(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43a.538.538 0 00-.15-.39c-.05-.05-.11-.09-.18-.11s-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85a1.06 1.06 0 01.41-.85c.13-.1.27-.18.44-.23s.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53a.842.842 0 01-.17.52 1.1 1.1 0 01-.48.39c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z" + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-2.44 8.49h.45c.21 0 .37-.05.48-.16s.16-.25.16-.43a.538.538 0 00-.15-.39c-.05-.05-.11-.09-.18-.11s-.16-.04-.25-.04c-.08 0-.15.01-.22.03s-.13.05-.18.1-.09.09-.12.15-.05.13-.05.2h-.85a1.06 1.06 0 01.41-.85c.13-.1.27-.18.44-.23s.35-.08.54-.08c.21 0 .41.03.59.08s.33.13.46.23.23.23.3.38.11.33.11.53a.842.842 0 01-.17.52 1.1 1.1 0 01-.48.39c.24.09.42.21.54.39s.18.38.18.61c0 .2-.04.38-.12.53s-.18.29-.32.39-.29.19-.48.24-.38.08-.6.08c-.18 0-.36-.02-.53-.07s-.33-.12-.46-.23-.25-.23-.33-.38-.12-.34-.12-.55h.85c0 .08.02.15.05.22s.07.12.13.17.12.09.2.11.16.04.25.04c.1 0 .19-.01.27-.04s.15-.07.2-.12.1-.11.13-.18.04-.15.04-.24c0-.11-.02-.21-.05-.29s-.08-.15-.14-.2-.13-.09-.22-.11-.18-.04-.29-.04h-.47v-.65zm5.74.75c0 .32-.03.6-.1.82s-.17.42-.29.57-.28.26-.45.33-.37.1-.59.1-.41-.03-.59-.1-.33-.18-.46-.33-.23-.34-.3-.57-.11-.5-.11-.82v-.74c0-.32.03-.6.1-.82s.17-.42.29-.57.28-.26.45-.33.37-.1.59-.1.41.03.59.1.33.18.46.33.23.34.3.57.11.5.11.82v.74zm-.85-.86c0-.19-.01-.35-.04-.48s-.07-.23-.12-.31-.11-.14-.19-.17-.16-.05-.25-.05-.18.02-.25.05-.14.09-.19.17-.09.18-.12.31-.04.29-.04.48v.97c0 .19.01.35.04.48s.07.24.12.32.11.14.19.17.16.05.25.05.18-.02.25-.05.14-.09.19-.17.09-.19.11-.32c.03-.13.04-.29.04-.48v-.97z", + fill: "currentColor" })); } diff --git a/icons/es5/Replay5.js b/icons/es5/Replay5.js index 347cd97a1b..ee60b26bec 100644 --- a/icons/es5/Replay5.js +++ b/icons/es5/Replay5.js @@ -7,9 +7,11 @@ function SvgReplay5(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15a.49.49 0 00.45-.23c.04-.07.08-.15.11-.25s.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z" + d: "M12 5V1L7 6l5 5V7c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6H4c0 4.42 3.58 8 8 8s8-3.58 8-8-3.58-8-8-8zm-1.31 8.9l.25-2.17h2.39v.71h-1.7l-.11.92c.03-.02.07-.03.11-.05s.09-.04.15-.05.12-.03.18-.04.13-.02.2-.02c.21 0 .39.03.55.1s.3.16.41.28.2.27.25.45.09.38.09.6c0 .19-.03.37-.09.54s-.15.32-.27.45-.27.24-.45.31-.39.12-.64.12c-.18 0-.36-.03-.53-.08s-.32-.14-.46-.24-.24-.24-.32-.39-.13-.33-.13-.53h.84c.02.18.08.32.19.41s.25.15.42.15a.49.49 0 00.45-.23c.04-.07.08-.15.11-.25s.03-.2.03-.31-.01-.21-.04-.31-.07-.17-.13-.24-.13-.12-.21-.15-.19-.05-.3-.05c-.08 0-.15.01-.2.02s-.11.03-.15.05-.08.05-.12.07-.07.06-.1.09l-.67-.16z", + fill: "currentColor" })); } diff --git a/icons/es5/ReplayCircleFilled.js b/icons/es5/ReplayCircleFilled.js index b4a3b10e6d..55b62b5538 100644 --- a/icons/es5/ReplayCircleFilled.js +++ b/icons/es5/ReplayCircleFilled.js @@ -7,9 +7,11 @@ function SvgReplayCircleFilled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.5c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3l-4-4 4-4v3c3.31 0 6 2.69 6 6z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm6 10.5c0 3.31-2.69 6-6 6s-6-2.69-6-6h2c0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4v3l-4-4 4-4v3c3.31 0 6 2.69 6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Reply.js b/icons/es5/Reply.js index b68ee968dc..a7a545e6b6 100644 --- a/icons/es5/Reply.js +++ b/icons/es5/Reply.js @@ -7,9 +7,11 @@ function SvgReply(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" + d: "M10 9V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z", + fill: "currentColor" })); } diff --git a/icons/es5/ReplyAll.js b/icons/es5/ReplyAll.js index 1ea7c51409..69d1c058bd 100644 --- a/icons/es5/ReplyAll.js +++ b/icons/es5/ReplyAll.js @@ -7,9 +7,11 @@ function SvgReplyAll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z" + d: "M7 8V5l-7 7 7 7v-3l-4-4 4-4zm6 1V5l-7 7 7 7v-4.1c5 0 8.5 1.6 11 5.1-1-5-4-10-11-11z", + fill: "currentColor" })); } diff --git a/icons/es5/ReportGmailerrorred.js b/icons/es5/ReportGmailerrorred.js index e8c9ecef41..125597661a 100644 --- a/icons/es5/ReportGmailerrorred.js +++ b/icons/es5/ReportGmailerrorred.js @@ -7,15 +7,18 @@ function SvgReportGmailerrorred(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z" + d: "M15.73 3H8.27L3 8.27v7.46L8.27 21h7.46L21 15.73V8.27L15.73 3zM19 14.9L14.9 19H9.1L5 14.9V9.1L9.1 5h5.8L19 9.1v5.8z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 16, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M11 7h2v7h-2z" + d: "M11 7h2v7h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/ReportOff.js b/icons/es5/ReportOff.js index dbf568ce81..d4f8b662fd 100644 --- a/icons/es5/ReportOff.js +++ b/icons/es5/ReportOff.js @@ -7,9 +7,11 @@ function SvgReportOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 7h2v2.33l7.2 7.2.8-.8V8.27L15.73 3H8.27l-.8.8L11 7.33zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM11 12.99l.01.01H11v-.01zm1 4.31c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3s1.3.58 1.3 1.3c0 .72-.58 1.3-1.3 1.3z" + d: "M11 7h2v2.33l7.2 7.2.8-.8V8.27L15.73 3H8.27l-.8.8L11 7.33zM2.41 1.58L1 2.99l3.64 3.64L3 8.27v7.46L8.27 21h7.46l1.64-1.64L21.01 23l1.41-1.41L2.41 1.58zM11 12.99l.01.01H11v-.01zm1 4.31c-.72 0-1.3-.58-1.3-1.3 0-.72.58-1.3 1.3-1.3s1.3.58 1.3 1.3c0 .72-.58 1.3-1.3 1.3z", + fill: "currentColor" })); } diff --git a/icons/es5/ReportProblem.js b/icons/es5/ReportProblem.js index 15c637678e..0639b06320 100644 --- a/icons/es5/ReportProblem.js +++ b/icons/es5/ReportProblem.js @@ -7,9 +7,11 @@ function SvgReportProblem(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z" + d: "M1 21h22L12 2 1 21zm12-3h-2v-2h2v2zm0-4h-2v-4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/RequestPage.js b/icons/es5/RequestPage.js index 46e03d8fbe..e02da2de9e 100644 --- a/icons/es5/RequestPage.js +++ b/icons/es5/RequestPage.js @@ -7,9 +7,11 @@ function SvgRequestPage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4.01L4 22h16V8l-6-6zm1 9h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9V9h2V8h2v1h2v2z" + d: "M14 2H4.01L4 22h16V8l-6-6zm1 9h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9V9h2V8h2v1h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/RequestQuote.js b/icons/es5/RequestQuote.js index c6c5d70d36..4aa55305f3 100644 --- a/icons/es5/RequestQuote.js +++ b/icons/es5/RequestQuote.js @@ -7,9 +7,11 @@ function SvgRequestQuote(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm1 10h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9v-5h2V9h2v1h2v2zm-2-4V3.5L17.5 8H13z" + d: "M14 2H4v20h16V8l-6-6zm1 10h-4v1h4v5h-2v1h-2v-1H9v-2h4v-1H9v-5h2V9h2v1h2v2zm-2-4V3.5L17.5 8H13z", + fill: "currentColor" })); } diff --git a/icons/es5/ResetTv.js b/icons/es5/ResetTv.js index f09ad896d6..ce0243b99e 100644 --- a/icons/es5/ResetTv.js +++ b/icons/es5/ResetTv.js @@ -7,9 +7,11 @@ function SvgResetTv(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 10h-9.01V7L9 11l3.99 4v-3H20v5H4V5h16v3h2V3H2v16h6v2h8v-2h6z" + d: "M22 10h-9.01V7L9 11l3.99 4v-3H20v5H4V5h16v3h2V3H2v16h6v2h8v-2h6z", + fill: "currentColor" })); } diff --git a/icons/es5/RestartAlt.js b/icons/es5/RestartAlt.js index 59afba5305..8544bce901 100644 --- a/icons/es5/RestartAlt.js +++ b/icons/es5/RestartAlt.js @@ -7,9 +7,11 @@ function SvgRestartAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34A8.014 8.014 0 004 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z" + d: "M12 5V2L8 6l4 4V7c3.31 0 6 2.69 6 6 0 2.97-2.17 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93 0-4.42-3.58-8-8-8zm-6 8c0-1.65.67-3.15 1.76-4.24L6.34 7.34A8.014 8.014 0 004 13c0 4.08 3.05 7.44 7 7.93v-2.02c-2.83-.48-5-2.94-5-5.91z", + fill: "currentColor" })); } diff --git a/icons/es5/Restaurant.js b/icons/es5/Restaurant.js index 906bf8ecae..cf20bf820b 100644 --- a/icons/es5/Restaurant.js +++ b/icons/es5/Restaurant.js @@ -7,9 +7,11 @@ function SvgRestaurant(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z" + d: "M16 6v8h3v8h2V2c-2.76 0-5 2.24-5 4zm-5 3H9V2H7v7H5V2H3v7c0 2.21 1.79 4 4 4v9h2v-9c2.21 0 4-1.79 4-4V2h-2v7z", + fill: "currentColor" })); } diff --git a/icons/es5/RestaurantMenu.js b/icons/es5/RestaurantMenu.js index 863460ec98..cf483c67f9 100644 --- a/icons/es5/RestaurantMenu.js +++ b/icons/es5/RestaurantMenu.js @@ -7,9 +7,11 @@ function SvgRestaurantMenu(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.1 13.34l2.83-2.83L3.91 3.5a4.008 4.008 0 000 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z" + d: "M8.1 13.34l2.83-2.83L3.91 3.5a4.008 4.008 0 000 5.66l4.19 4.18zm6.78-1.81c1.53.71 3.68.21 5.27-1.38 1.91-1.91 2.28-4.65.81-6.12-1.46-1.46-4.2-1.1-6.12.81-1.59 1.59-2.09 3.74-1.38 5.27L3.7 19.87l1.41 1.41L12 14.41l6.88 6.88 1.41-1.41L13.41 13l1.47-1.47z", + fill: "currentColor" })); } diff --git a/icons/es5/Restore.js b/icons/es5/Restore.js index b60903fe65..5dbfeabd96 100644 --- a/icons/es5/Restore.js +++ b/icons/es5/Restore.js @@ -7,9 +7,11 @@ function SvgRestore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 3a9 9 0 00-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0013 21a9 9 0 000-18zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z" + d: "M13 3a9 9 0 00-9 9H1l4 3.99L9 12H6c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.93 0-3.68-.79-4.94-2.06l-1.42 1.42A8.954 8.954 0 0013 21a9 9 0 000-18zm-1 5v5l4.25 2.52.77-1.28-3.52-2.09V8z", + fill: "currentColor" })); } diff --git a/icons/es5/RestoreFromTrash.js b/icons/es5/RestoreFromTrash.js index 91d598fae2..a988f25184 100644 --- a/icons/es5/RestoreFromTrash.js +++ b/icons/es5/RestoreFromTrash.js @@ -7,9 +7,11 @@ function SvgRestoreFromTrash(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 21h12V7H6v14zm6-11l4 4h-2v4h-4v-4H8l4-4zm3.5-6l-1-1h-5l-1 1H5v2h14V4z" + d: "M6 21h12V7H6v14zm6-11l4 4h-2v4h-4v-4H8l4-4zm3.5-6l-1-1h-5l-1 1H5v2h14V4z", + fill: "currentColor" })); } diff --git a/icons/es5/RestorePage.js b/icons/es5/RestorePage.js index bf311b6615..aff95f267f 100644 --- a/icons/es5/RestorePage.js +++ b/icons/es5/RestorePage.js @@ -7,9 +7,11 @@ function SvgRestorePage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5a3.5 3.5 0 00-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z" + d: "M14 2H4v20h16V8l-6-6zm-2 16c-2.05 0-3.81-1.24-4.58-3h1.71c.63.9 1.68 1.5 2.87 1.5 1.93 0 3.5-1.57 3.5-3.5S13.93 9.5 12 9.5a3.5 3.5 0 00-3.1 1.9l1.6 1.6h-4V9l1.3 1.3C8.69 8.92 10.23 8 12 8c2.76 0 5 2.24 5 5s-2.24 5-5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/Reviews.js b/icons/es5/Reviews.js index 91a94539d4..2d38733ad1 100644 --- a/icons/es5/Reviews.js +++ b/icons/es5/Reviews.js @@ -7,9 +7,11 @@ function SvgReviews(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2zm-8.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" + d: "M22 2H2v20l4-4h16V2zm-8.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z", + fill: "currentColor" })); } diff --git a/icons/es5/RiceBowl.js b/icons/es5/RiceBowl.js index b250626252..9941be0b27 100644 --- a/icons/es5/RiceBowl.js +++ b/icons/es5/RiceBowl.js @@ -7,9 +7,11 @@ function SvgRiceBowl(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25zm-2 0h-4V5.08c2.39 1.39 4 3.97 4 6.92zm-6-7.74V12h-4V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z" + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12c0 3.69 2.47 6.86 6 8.25V22h8v-1.75c3.53-1.39 6-4.56 6-8.25zm-2 0h-4V5.08c2.39 1.39 4 3.97 4 6.92zm-6-7.74V12h-4V4.26c.64-.16 1.31-.26 2-.26s1.36.1 2 .26zM4 12c0-2.95 1.61-5.53 4-6.92V12H4z", + fill: "currentColor" })); } diff --git a/icons/es5/RingVolume.js b/icons/es5/RingVolume.js index 7fe58903d3..a846e75e79 100644 --- a/icons/es5/RingVolume.js +++ b/icons/es5/RingVolume.js @@ -7,9 +7,11 @@ function SvgRingVolume(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55zM0 17.39l3.68 3.68 3.92-3.11v-3.37c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 17.39c-6.41-7.19-17.59-7.19-24 0z" + d: "M21.16 6.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 2h2v5h-2zM6.4 9.81L7.81 8.4 4.26 4.84 2.84 6.26c.11.03 3.56 3.55 3.56 3.55zM0 17.39l3.68 3.68 3.92-3.11v-3.37c2.85-.93 5.94-.93 8.8 0v3.38l3.91 3.1L24 17.39c-6.41-7.19-17.59-7.19-24 0z", + fill: "currentColor" })); } diff --git a/icons/es5/Rocket.js b/icons/es5/Rocket.js index ec562f0648..13f5de3a15 100644 --- a/icons/es5/Rocket.js +++ b/icons/es5/Rocket.js @@ -7,9 +7,11 @@ function SvgRocket(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2.5s4.5 2.04 4.5 10.5c0 2.49-1.04 5.57-1.6 7H9.1c-.56-1.43-1.6-4.51-1.6-7C7.5 4.54 12 2.5 12 2.5zm2 8.5c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-6.31 9.52c-.48-1.23-1.52-4.17-1.67-6.87L4 15v7l3.69-1.48zM20 22v-7l-2.02-1.35c-.15 2.69-1.2 5.64-1.67 6.87L20 22z" + d: "M12 2.5s4.5 2.04 4.5 10.5c0 2.49-1.04 5.57-1.6 7H9.1c-.56-1.43-1.6-4.51-1.6-7C7.5 4.54 12 2.5 12 2.5zm2 8.5c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-6.31 9.52c-.48-1.23-1.52-4.17-1.67-6.87L4 15v7l3.69-1.48zM20 22v-7l-2.02-1.35c-.15 2.69-1.2 5.64-1.67 6.87L20 22z", + fill: "currentColor" })); } diff --git a/icons/es5/RocketLaunch.js b/icons/es5/RocketLaunch.js index 11a4a8914a..2eba2bbd11 100644 --- a/icons/es5/RocketLaunch.js +++ b/icons/es5/RocketLaunch.js @@ -7,9 +7,11 @@ function SvgRocketLaunch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.19 6.35c-2.04 2.29-3.44 5.58-3.57 5.89L2 10.69l4.81-4.81 2.38.47zM11.17 17s3.74-1.55 5.89-3.7c5.4-5.4 4.5-9.62 4.21-10.57-.95-.3-5.17-1.19-10.57 4.21C8.55 9.09 7 12.83 7 12.83L11.17 17zm6.48-2.19c-2.29 2.04-5.58 3.44-5.89 3.57L13.31 22l4.81-4.81-.47-2.38zM9 18c0 .83-.34 1.58-.88 2.12C6.94 21.3 2 22 2 22s.7-4.94 1.88-6.12A2.996 2.996 0 019 18zm4-9c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z" + d: "M9.19 6.35c-2.04 2.29-3.44 5.58-3.57 5.89L2 10.69l4.81-4.81 2.38.47zM11.17 17s3.74-1.55 5.89-3.7c5.4-5.4 4.5-9.62 4.21-10.57-.95-.3-5.17-1.19-10.57 4.21C8.55 9.09 7 12.83 7 12.83L11.17 17zm6.48-2.19c-2.29 2.04-5.58 3.44-5.89 3.57L13.31 22l4.81-4.81-.47-2.38zM9 18c0 .83-.34 1.58-.88 2.12C6.94 21.3 2 22 2 22s.7-4.94 1.88-6.12A2.996 2.996 0 019 18zm4-9c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/RollerShades.js b/icons/es5/RollerShades.js index 6c3eec8720..4556458c40 100644 --- a/icons/es5/RollerShades.js +++ b/icons/es5/RollerShades.js @@ -7,9 +7,11 @@ function SvgRollerShades(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3H4v16H2v2h20v-2h-2zM6 19v-6h5v1.8c-.4.3-.8.8-.8 1.4 0 1 .8 1.8 1.8 1.8s1.8-.8 1.8-1.8c0-.6-.3-1.1-.8-1.4V13h5v6H6z" + d: "M20 19V3H4v16H2v2h20v-2h-2zM6 19v-6h5v1.8c-.4.3-.8.8-.8 1.4 0 1 .8 1.8 1.8 1.8s1.8-.8 1.8-1.8c0-.6-.3-1.1-.8-1.4V13h5v6H6z", + fill: "currentColor" })); } diff --git a/icons/es5/RollerShadesClosed.js b/icons/es5/RollerShadesClosed.js index b02688dfba..8dddefee9a 100644 --- a/icons/es5/RollerShadesClosed.js +++ b/icons/es5/RollerShadesClosed.js @@ -7,9 +7,11 @@ function SvgRollerShadesClosed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3H4v16H2v2h8.25c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75H22v-2h-2zM6 19v-2h5v2H6zm7 0v-2h5v2h-5z" + d: "M20 19V3H4v16H2v2h8.25c0 .97.78 1.75 1.75 1.75s1.75-.78 1.75-1.75H22v-2h-2zM6 19v-2h5v2H6zm7 0v-2h5v2h-5z", + fill: "currentColor" })); } diff --git a/icons/es5/RollerSkating.js b/icons/es5/RollerSkating.js index bfd3bfc37d..54be78cd36 100644 --- a/icons/es5/RollerSkating.js +++ b/icons/es5/RollerSkating.js @@ -7,9 +7,11 @@ function SvgRollerSkating(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 16l-.01-6-5.71-1.43A3 3 0 0112.32 7H9V6h3.02L12 5H9V4h3V1H4v15h16zM5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm14 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm-7 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + d: "M20 16l-.01-6-5.71-1.43A3 3 0 0112.32 7H9V6h3.02L12 5H9V4h3V1H4v15h16zM5 23c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm14 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm-7 0c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/Roofing.js b/icons/es5/Roofing.js index 8a4ed88b1e..ae095d16c6 100644 --- a/icons/es5/Roofing.js +++ b/icons/es5/Roofing.js @@ -7,9 +7,11 @@ function SvgRoofing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z" + d: "M13 18h-2v-2h2v2zm2-4H9v6h6v-6zm4-4.7V4h-3v2.6L12 3 2 12h3l7-6.31L19 12h3l-3-2.7z", + fill: "currentColor" })); } diff --git a/icons/es5/Room.js b/icons/es5/Room.js index 6b55081f4c..525ecf4c81 100644 --- a/icons/es5/Room.js +++ b/icons/es5/Room.js @@ -7,9 +7,11 @@ function SvgRoom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z" + d: "M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5a2.5 2.5 0 010-5 2.5 2.5 0 010 5z", + fill: "currentColor" })); } diff --git a/icons/es5/RoomPreferences.js b/icons/es5/RoomPreferences.js index 84be6104dd..a62d1efc8b 100644 --- a/icons/es5/RoomPreferences.js +++ b/icons/es5/RoomPreferences.js @@ -7,9 +7,11 @@ function SvgRoomPreferences(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26A6.963 6.963 0 0111 17c0-2.38 1.19-4.47 3-5.74zM10 11h2v2h-2v-2zm11.69 5.37l1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L19 12h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L17 22h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M14 11.26V6h3v4h2V4h-5V3H5v16H3v2h9.26A6.963 6.963 0 0111 17c0-2.38 1.19-4.47 3-5.74zM10 11h2v2h-2v-2zm11.69 5.37l1.14-1-1-1.73-1.45.49c-.32-.27-.68-.48-1.08-.63L19 12h-2l-.3 1.49c-.4.15-.76.36-1.08.63l-1.45-.49-1 1.73 1.14 1c-.08.5-.08.76 0 1.26l-1.14 1 1 1.73 1.45-.49c.32.27.68.48 1.08.63L17 22h2l.3-1.49c.4-.15.76-.36 1.08-.63l1.45.49 1-1.73-1.14-1c.08-.51.08-.77 0-1.27zM18 19c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/RoomService.js b/icons/es5/RoomService.js index 3395b356d0..31a6492130 100644 --- a/icons/es5/RoomService.js +++ b/icons/es5/RoomService.js @@ -7,9 +7,11 @@ function SvgRoomService(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 17h20v2H2v-2zm11.84-9.21A2.006 2.006 0 0012 5a2.006 2.006 0 00-1.84 2.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z" + d: "M2 17h20v2H2v-2zm11.84-9.21A2.006 2.006 0 0012 5a2.006 2.006 0 00-1.84 2.79C6.25 8.6 3.27 11.93 3 16h18c-.27-4.07-3.25-7.4-7.16-8.21z", + fill: "currentColor" })); } diff --git a/icons/es5/Rotate90DegreesCcw.js b/icons/es5/Rotate90DegreesCcw.js index 8445d27bd2..5fc7373ac6 100644 --- a/icons/es5/Rotate90DegreesCcw.js +++ b/icons/es5/Rotate90DegreesCcw.js @@ -7,9 +7,11 @@ function SvgRotate90DegreesCcw(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26A8.95 8.95 0 0013 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05a7.007 7.007 0 010 9.9 6.973 6.973 0 01-7.79 1.44l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64a8.98 8.98 0 000-12.72z" + d: "M7.34 6.41L.86 12.9l6.49 6.48 6.49-6.48-6.5-6.49zM3.69 12.9l3.66-3.66L11 12.9l-3.66 3.66-3.65-3.66zm15.67-6.26A8.95 8.95 0 0013 4V.76L8.76 5 13 9.24V6c1.79 0 3.58.68 4.95 2.05a7.007 7.007 0 010 9.9 6.973 6.973 0 01-7.79 1.44l-1.49 1.49C10.02 21.62 11.51 22 13 22c2.3 0 4.61-.88 6.36-2.64a8.98 8.98 0 000-12.72z", + fill: "currentColor" })); } diff --git a/icons/es5/Rotate90DegreesCw.js b/icons/es5/Rotate90DegreesCw.js index 62fc6faf31..b2da4bd81f 100644 --- a/icons/es5/Rotate90DegreesCw.js +++ b/icons/es5/Rotate90DegreesCw.js @@ -7,11 +7,14 @@ function SvgRotate90DegreesCw(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.64 19.37c3.03 3.03 7.67 3.44 11.15 1.25l-1.46-1.46c-2.66 1.43-6.04 1.03-8.28-1.21a7.007 7.007 0 010-9.9C7.42 6.69 9.21 6.03 11 6.03V9l4-4-4-4v3.01c-2.3 0-4.61.87-6.36 2.63-3.52 3.51-3.52 9.21 0 12.73z" + d: "M4.64 19.37c3.03 3.03 7.67 3.44 11.15 1.25l-1.46-1.46c-2.66 1.43-6.04 1.03-8.28-1.21a7.007 7.007 0 010-9.9C7.42 6.69 9.21 6.03 11 6.03V9l4-4-4-4v3.01c-2.3 0-4.61.87-6.36 2.63-3.52 3.51-3.52 9.21 0 12.73z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 7l-6 6 6 6 6-6-6-6z" + d: "M17 7l-6 6 6 6 6-6-6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/RotateLeft.js b/icons/es5/RotateLeft.js index cbd813e176..0708535a87 100644 --- a/icons/es5/RotateLeft.js +++ b/icons/es5/RotateLeft.js @@ -7,9 +7,11 @@ function SvgRotateLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z" + d: "M7.11 8.53L5.7 7.11C4.8 8.27 4.24 9.61 4.07 11h2.02c.14-.87.49-1.72 1.02-2.47zM6.09 13H4.07c.17 1.39.72 2.73 1.62 3.89l1.41-1.42c-.52-.75-.87-1.59-1.01-2.47zm1.01 5.32c1.16.9 2.51 1.44 3.9 1.61V17.9c-.87-.15-1.71-.49-2.46-1.03L7.1 18.32zM13 4.07V1L8.45 5.55 13 10V6.09c2.84.48 5 2.94 5 5.91s-2.16 5.43-5 5.91v2.02c3.95-.49 7-3.85 7-7.93s-3.05-7.44-7-7.93z", + fill: "currentColor" })); } diff --git a/icons/es5/RotateRight.js b/icons/es5/RotateRight.js index 4a1b804f79..362ae696c9 100644 --- a/icons/es5/RotateRight.js +++ b/icons/es5/RotateRight.js @@ -7,9 +7,11 @@ function SvgRotateRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11a7.906 7.906 0 00-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z" + d: "M15.55 5.55L11 1v3.07C7.06 4.56 4 7.92 4 12s3.05 7.44 7 7.93v-2.02c-2.84-.48-5-2.94-5-5.91s2.16-5.43 5-5.91V10l4.55-4.45zM19.93 11a7.906 7.906 0 00-1.62-3.89l-1.42 1.42c.54.75.88 1.6 1.02 2.47h2.02zM13 17.9v2.02c1.39-.17 2.74-.71 3.9-1.61l-1.44-1.44c-.75.54-1.59.89-2.46 1.03zm3.89-2.42l1.42 1.41c.9-1.16 1.45-2.5 1.62-3.89h-2.02c-.14.87-.48 1.72-1.02 2.48z", + fill: "currentColor" })); } diff --git a/icons/es5/RoundaboutLeft.js b/icons/es5/RoundaboutLeft.js index c37d8a02df..ddefea1e84 100644 --- a/icons/es5/RoundaboutLeft.js +++ b/icons/es5/RoundaboutLeft.js @@ -7,9 +7,11 @@ function SvgRoundaboutLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4v1H5.83l1.59 1.59L6 13 2 9l4-4 1.41 1.41L5.83 8h4.25A6 6 0 0116 3c3.31 0 6 2.69 6 6 0 2.97-2.16 5.44-5 5.92V21h-2v-8h1z" + d: "M16 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4v1H5.83l1.59 1.59L6 13 2 9l4-4 1.41 1.41L5.83 8h4.25A6 6 0 0116 3c3.31 0 6 2.69 6 6 0 2.97-2.16 5.44-5 5.92V21h-2v-8h1z", + fill: "currentColor" })); } diff --git a/icons/es5/RoundaboutRight.js b/icons/es5/RoundaboutRight.js index 0a7827a80b..9fd7e6a1f9 100644 --- a/icons/es5/RoundaboutRight.js +++ b/icons/es5/RoundaboutRight.js @@ -7,9 +7,11 @@ function SvgRoundaboutRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 13c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4v1h6.17l-1.59 1.59L18 13l4-4-4-4-1.41 1.41L18.17 8h-4.25C13.44 5.16 10.97 3 8 3 4.69 3 2 5.69 2 9c0 2.97 2.16 5.44 5 5.92V21h2v-8H8z" + d: "M8 13c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4v1h6.17l-1.59 1.59L18 13l4-4-4-4-1.41 1.41L18.17 8h-4.25C13.44 5.16 10.97 3 8 3 4.69 3 2 5.69 2 9c0 2.97 2.16 5.44 5 5.92V21h2v-8H8z", + fill: "currentColor" })); } diff --git a/icons/es5/RoundedCorner.js b/icons/es5/RoundedCorner.js index d6dad6d5a2..010d769ef3 100644 --- a/icons/es5/RoundedCorner.js +++ b/icons/es5/RoundedCorner.js @@ -7,9 +7,11 @@ function SvgRoundedCorner(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 3H11v2h8v8h2V3z" + d: "M19 19h2v2h-2v-2zm0-2h2v-2h-2v2zM3 13h2v-2H3v2zm0 4h2v-2H3v2zm0-8h2V7H3v2zm0-4h2V3H3v2zm4 0h2V3H7v2zm8 16h2v-2h-2v2zm-4 0h2v-2h-2v2zm4 0h2v-2h-2v2zm-8 0h2v-2H7v2zm-4 0h2v-2H3v2zM21 3H11v2h8v8h2V3z", + fill: "currentColor" })); } diff --git a/icons/es5/Route.js b/icons/es5/Route.js index 4e04c26621..fb999512f3 100644 --- a/icons/es5/Route.js +++ b/icons/es5/Route.js @@ -7,9 +7,11 @@ function SvgRoute(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 15.18V3h-8v16H7V8.82C8.16 8.4 9 7.3 9 6c0-1.66-1.34-3-3-3S3 4.34 3 6c0 1.3.84 2.4 2 2.82V21h8V5h4v10.18A2.996 2.996 0 0018 21c1.66 0 3-1.34 3-3 0-1.3-.84-2.4-2-2.82z" + d: "M19 15.18V3h-8v16H7V8.82C8.16 8.4 9 7.3 9 6c0-1.66-1.34-3-3-3S3 4.34 3 6c0 1.3.84 2.4 2 2.82V21h8V5h4v10.18A2.996 2.996 0 0018 21c1.66 0 3-1.34 3-3 0-1.3-.84-2.4-2-2.82z", + fill: "currentColor" })); } diff --git a/icons/es5/Router.js b/icons/es5/Router.js index d004db65cc..f9a065e938 100644 --- a/icons/es5/Router.js +++ b/icons/es5/Router.js @@ -7,9 +7,11 @@ function SvgRouter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.2 5.9l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8zM21 13h-4V9h-2v4H3v8h18v-8zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z" + d: "M20.2 5.9l.8-.8C19.6 3.7 17.8 3 16 3s-3.6.7-5 2.1l.8.8C13 4.8 14.5 4.2 16 4.2s3 .6 4.2 1.7zm-.9.8c-.9-.9-2.1-1.4-3.3-1.4s-2.4.5-3.3 1.4l.8.8c.7-.7 1.6-1 2.5-1s1.8.3 2.5 1l.8-.8zM21 13h-4V9h-2v4H3v8h18v-8zM8 18H6v-2h2v2zm3.5 0h-2v-2h2v2zm3.5 0h-2v-2h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Rowing.js b/icons/es5/Rowing.js index 1d68742869..9c7a48ff84 100644 --- a/icons/es5/Rowing.js +++ b/icons/es5/Rowing.js @@ -7,9 +7,11 @@ function SvgRowing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6 17 7.01 17 8.25V17l-.92-.83-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z" + d: "M8.5 14.5L4 19l1.5 1.5L9 17h2l-2.5-2.5zM15 1c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 20.01L18 24l-2.99-3.01V19.5l-7.1-7.09c-.31.05-.61.07-.91.07v-2.16c1.66.03 3.61-.87 4.67-2.04l1.4-1.55c.19-.21.43-.38.69-.5.29-.14.62-.23.96-.23h.03C15.99 6 17 7.01 17 8.25V17l-.92-.83-3.58-3.58v-2.27c-.63.52-1.43 1.02-2.29 1.39L16.5 18H18l3 3.01z", + fill: "currentColor" })); } diff --git a/icons/es5/RssFeed.js b/icons/es5/RssFeed.js index 65a74906eb..3d574ef2d5 100644 --- a/icons/es5/RssFeed.js +++ b/icons/es5/RssFeed.js @@ -7,13 +7,15 @@ function SvgRssFeed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 6.18, cy: 17.82, r: 2.18 }), /*#__PURE__*/React.createElement("path", { - d: "M4 10.1v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9zm0-5.66v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56z" + d: "M4 10.1v2.83c3.9 0 7.07 3.17 7.07 7.07h2.83c0-5.47-4.43-9.9-9.9-9.9zm0-5.66v2.83c7.03 0 12.73 5.7 12.73 12.73h2.83c0-8.59-6.97-15.56-15.56-15.56z", + fill: "currentColor" })); } diff --git a/icons/es5/Rsvp.js b/icons/es5/Rsvp.js index 6ac38cc112..df2b154f4c 100644 --- a/icons/es5/Rsvp.js +++ b/icons/es5/Rsvp.js @@ -7,9 +7,11 @@ function SvgRsvp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.14 13L6 15H4.5l-.85-2H2.5v2H1V9h5v4h-.86zm-.64-2.5h-2v1h2v-1zM23 13h-3.5v2H18V9h5v4zm-1.5-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h3V15H7v-1.5h3v-.75H7V9h4.5z" + d: "M16 9h1.5l-1.75 6h-1.5L12.5 9H14l1 3.43L16 9zM5.14 13L6 15H4.5l-.85-2H2.5v2H1V9h5v4h-.86zm-.64-2.5h-2v1h2v-1zM23 13h-3.5v2H18V9h5v4zm-1.5-2.5h-2v1h2v-1zM11.5 9v1.5h-3v.75h3V15H7v-1.5h3v-.75H7V9h4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Rtt.js b/icons/es5/Rtt.js index 85f7151f35..e808ba7dc2 100644 --- a/icons/es5/Rtt.js +++ b/icons/es5/Rtt.js @@ -7,9 +7,11 @@ function SvgRtt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.03 3l-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z" + d: "M9.03 3l-1.11 7.07h2.62l.7-4.5h2.58L11.8 18.43H9.47L9.06 21h7.27l.4-2.57h-2.35l2-12.86h2.58l-.71 4.5h2.65L22 3H9.03zM8 5H4l-.31 2h4L8 5zm-.61 4h-4l-.31 2h4l.31-2zm.92 8h-6L2 19h6l.31-2zm.62-4h-6l-.31 2h6.01l.3-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Rule.js b/icons/es5/Rule.js index 4373583684..96df8764d2 100644 --- a/icons/es5/Rule.js +++ b/icons/es5/Rule.js @@ -7,9 +7,11 @@ function SvgRule(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.54 11L13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z" + d: "M16.54 11L13 7.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L16.54 11zM11 7H2v2h9V7zm10 6.41L19.59 12 17 14.59 14.41 12 13 13.41 15.59 16 13 18.59 14.41 20 17 17.41 19.59 20 21 18.59 18.41 16 21 13.41zM11 15H2v2h9v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/RuleFolder.js b/icons/es5/RuleFolder.js index 3ffd6f59a2..a59c180908 100644 --- a/icons/es5/RuleFolder.js +++ b/icons/es5/RuleFolder.js @@ -7,9 +7,11 @@ function SvgRuleFolder(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6H12l-2-2H2v16h20V6zM7.83 16L5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13z" + d: "M22 6H12l-2-2H2v16h20V6zM7.83 16L5 13.17l1.41-1.41 1.41 1.41 3.54-3.54 1.41 1.41L7.83 16zm9.58-3L19 14.59 17.59 16 16 14.41 14.41 16 13 14.59 14.59 13 13 11.41 14.41 10 16 11.59 17.59 10 19 11.41 17.41 13z", + fill: "currentColor" })); } diff --git a/icons/es5/RunCircle.js b/icons/es5/RunCircle.js index 09633be83a..e6d831b645 100644 --- a/icons/es5/RunCircle.js +++ b/icons/es5/RunCircle.js @@ -7,9 +7,11 @@ function SvgRunCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.5 6c-.7 0-2.01-.54-2.91-1.76l-.41 2.35L14 14.03V18h-1v-3.58l-1.11-1.21-.52 2.64-3.77-.77.2-.98 2.78.57.96-4.89-1.54.57V12H9V9.65l3.28-1.21c.49-.18 1.03.06 1.26.53.83 1.7 2.05 2.03 2.46 2.03v1z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1.5 4c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm2.5 6c-.7 0-2.01-.54-2.91-1.76l-.41 2.35L14 14.03V18h-1v-3.58l-1.11-1.21-.52 2.64-3.77-.77.2-.98 2.78.57.96-4.89-1.54.57V12H9V9.65l3.28-1.21c.49-.18 1.03.06 1.26.53.83 1.7 2.05 2.03 2.46 2.03v1z", + fill: "currentColor" })); } diff --git a/icons/es5/RunningWithErrors.js b/icons/es5/RunningWithErrors.js index 3a7581b6dc..51fc9e7dd0 100644 --- a/icons/es5/RunningWithErrors.js +++ b/icons/es5/RunningWithErrors.js @@ -7,9 +7,11 @@ function SvgRunningWithErrors(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71A7.99 7.99 0 0112 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55A9.965 9.965 0 0012 2C6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z" + d: "M22 10v8h-2v-8h2zm-2 10v2h2v-2h-2zm-2-2.71A7.99 7.99 0 0112 20c-4.41 0-8-3.59-8-8s3.59-8 8-8v9l7.55-7.55A9.965 9.965 0 0012 2C6.48 2 2 6.48 2 12s4.48 10 10 10c2.25 0 4.33-.74 6-2v-2.71z", + fill: "currentColor" })); } diff --git a/icons/es5/RvHookup.js b/icons/es5/RvHookup.js index b455a264d3..b1062109dd 100644 --- a/icons/es5/RvHookup.js +++ b/icons/es5/RvHookup.js @@ -7,9 +7,11 @@ function SvgRvHookup(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 17V9H7V7l-3 3 3 3v-2h4v3H4v5h4c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z" + d: "M20 17V9H7V7l-3 3 3 3v-2h4v3H4v5h4c0 1.66 1.34 3 3 3s3-1.34 3-3h8v-2h-2zm-9 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm7-6h-4v-3h4v3zM17 2v2H9v2h8v2l3-3-3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/SafetyCheck.js b/icons/es5/SafetyCheck.js index 7b2739e9ac..ec7d75c7d2 100644 --- a/icons/es5/SafetyCheck.js +++ b/icons/es5/SafetyCheck.js @@ -7,9 +7,11 @@ function SvgSafetyCheck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm0 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm1.65-2.65L11.5 12.2V9h1v2.79l1.85 1.85-.7.71z" + d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm0 15c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm1.65-2.65L11.5 12.2V9h1v2.79l1.85 1.85-.7.71z", + fill: "currentColor" })); } diff --git a/icons/es5/SafetyDivider.js b/icons/es5/SafetyDivider.js index 6e383d99eb..7b2bb3b80b 100644 --- a/icons/es5/SafetyDivider.js +++ b/icons/es5/SafetyDivider.js @@ -7,9 +7,11 @@ function SvgSafetyDivider(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58a6.95 6.95 0 00-5.56 0A2.01 2.01 0 001 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58a6.95 6.95 0 00-5.56 0A2.01 2.01 0 0015 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85z" + d: "M11 5h2v14h-2V5zm-6 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58a6.95 6.95 0 00-5.56 0A2.01 2.01 0 001 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85zM19 12c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58a6.95 6.95 0 00-5.56 0A2.01 2.01 0 0015 15.43V16h8v-.57c0-.81-.48-1.53-1.22-1.85z", + fill: "currentColor" })); } diff --git a/icons/es5/Sailing.js b/icons/es5/Sailing.js index e67360ab15..6c5eb17efb 100644 --- a/icons/es5/Sailing.js +++ b/icons/es5/Sailing.js @@ -7,9 +7,11 @@ function SvgSailing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 13.5V2L3 13.5h8zm10 0C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm1 1.5H2a6.233 6.233 0 002.33 3.73c.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z" + d: "M11 13.5V2L3 13.5h8zm10 0C21 6.5 14.5 1 12.5 1c0 0 1 3 1 6.5s-1 6-1 6H21zm1 1.5H2a6.233 6.233 0 002.33 3.73c.65-.27 1.22-.72 1.67-1.23.73.84 1.8 1.5 3 1.5s2.27-.66 3-1.5c.73.84 1.8 1.5 3 1.5s2.26-.66 3-1.5c.45.51 1.02.96 1.67 1.23 1.17-.89 2.02-2.2 2.33-3.73zm0 8v-2h-1c-1.04 0-2.08-.35-3-1-1.83 1.3-4.17 1.3-6 0-1.83 1.3-4.17 1.3-6 0-.91.65-1.96 1-3 1H2v2h1c1.03 0 2.05-.25 3-.75 1.89 1 4.11 1 6 0 1.89 1 4.11 1 6 0 .95.5 1.97.75 3 .75h1z", + fill: "currentColor" })); } diff --git a/icons/es5/Sanitizer.js b/icons/es5/Sanitizer.js index a24243b6e5..5a30812af9 100644 --- a/icons/es5/Sanitizer.js +++ b/icons/es5/Sanitizer.js @@ -7,9 +7,11 @@ function SvgSanitizer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5a2.5 2.5 0 002.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5a2.5 2.5 0 002.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v10H4V12c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91z" + d: "M15.5 6.5C15.5 5.66 17 4 17 4s1.5 1.66 1.5 2.5c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5zm4 8.5a2.5 2.5 0 002.5-2.5c0-1.67-2.5-4.5-2.5-4.5S17 10.83 17 12.5a2.5 2.5 0 002.5 2.5zM13 14h-2v-2H9v2H7v2h2v2h2v-2h2v-2zm3-2v10H4V12c0-2.97 2.16-5.43 5-5.91V4H7V2h6c1.13 0 2.15.39 2.99 1.01l-1.43 1.43C14.1 4.17 13.57 4 13 4h-2v2.09c2.84.48 5 2.94 5 5.91z", + fill: "currentColor" })); } diff --git a/icons/es5/Satellite.js b/icons/es5/Satellite.js index a2958929a1..9978f6bb33 100644 --- a/icons/es5/Satellite.js +++ b/icons/es5/Satellite.js @@ -7,9 +7,11 @@ function SvgSatellite(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6l3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z" + d: "M21 3H3v18h18V3zM5 4.99h3C8 6.65 6.66 8 5 8V4.99zM5 12v-2c2.76 0 5-2.25 5-5.01h2C12 8.86 8.87 12 5 12zm0 6l3.5-4.5 2.5 3.01L14.5 12l4.5 6H5z", + fill: "currentColor" })); } diff --git a/icons/es5/SatelliteAlt.js b/icons/es5/SatelliteAlt.js index af69ca5014..02406cd8c2 100644 --- a/icons/es5/SatelliteAlt.js +++ b/icons/es5/SatelliteAlt.js @@ -7,9 +7,11 @@ function SvgSatelliteAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.44.59l-3.18 3.18c-.78.78-.78 2.05 0 2.83l1.24 1.24-.71.71-2.65-2.65-4.24 4.24 2.65 2.65-.71.71-1.24-1.25c-.78-.78-2.05-.78-2.83 0L.59 15.43c-.78.78-.78 2.05 0 2.83l3.54 3.54c.78.78 2.05.78 2.83 0l3.18-3.18c.78-.78.78-2.05 0-2.83L8.9 14.55l.71-.71 2.65 2.65 4.24-4.24-2.66-2.65.71-.71 1.24 1.24c.78.78 2.05.78 2.83 0l3.18-3.18c.78-.78.78-2.05 0-2.83L18.26.58c-.78-.78-2.04-.78-2.82.01zM6.6 19.32l-1.06 1.06L2 16.85l1.06-1.06 3.54 3.53zm2.12-2.12l-1.06 1.06-3.54-3.54 1.06-1.06 3.54 3.54zm9.54-9.54L17.2 8.72l-3.54-3.54 1.06-1.06 3.54 3.54zm2.12-2.12L19.32 6.6l-3.54-3.54L16.85 2l3.53 3.54zM21 14h2a9 9 0 01-9 9v-2c3.87 0 7-3.13 7-7zm-4 0h2c0 2.76-2.24 5-5 5v-2c1.66 0 3-1.34 3-3z" + d: "M15.44.59l-3.18 3.18c-.78.78-.78 2.05 0 2.83l1.24 1.24-.71.71-2.65-2.65-4.24 4.24 2.65 2.65-.71.71-1.24-1.25c-.78-.78-2.05-.78-2.83 0L.59 15.43c-.78.78-.78 2.05 0 2.83l3.54 3.54c.78.78 2.05.78 2.83 0l3.18-3.18c.78-.78.78-2.05 0-2.83L8.9 14.55l.71-.71 2.65 2.65 4.24-4.24-2.66-2.65.71-.71 1.24 1.24c.78.78 2.05.78 2.83 0l3.18-3.18c.78-.78.78-2.05 0-2.83L18.26.58c-.78-.78-2.04-.78-2.82.01zM6.6 19.32l-1.06 1.06L2 16.85l1.06-1.06 3.54 3.53zm2.12-2.12l-1.06 1.06-3.54-3.54 1.06-1.06 3.54 3.54zm9.54-9.54L17.2 8.72l-3.54-3.54 1.06-1.06 3.54 3.54zm2.12-2.12L19.32 6.6l-3.54-3.54L16.85 2l3.53 3.54zM21 14h2a9 9 0 01-9 9v-2c3.87 0 7-3.13 7-7zm-4 0h2c0 2.76-2.24 5-5 5v-2c1.66 0 3-1.34 3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Save.js b/icons/es5/Save.js index 6fc47a4722..19bf02ad33 100644 --- a/icons/es5/Save.js +++ b/icons/es5/Save.js @@ -7,9 +7,11 @@ function SvgSave(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 3H3v18h18V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z" + d: "M17 3H3v18h18V7l-4-4zm-5 16c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zm3-10H5V5h10v4z", + fill: "currentColor" })); } diff --git a/icons/es5/SaveAll.js b/icons/es5/SaveAll.js index 0636014135..f12761a4f7 100644 --- a/icons/es5/SaveAll.js +++ b/icons/es5/SaveAll.js @@ -7,13 +7,16 @@ function SvgSaveAll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillRule: "evenodd", clipRule: "evenodd", - d: "M6 6h11l4 4v11H6V6zm2 2h7v3H8V8zm5.5 11a2.5 2.5 0 100-5 2.5 2.5 0 000 5z" + d: "M6 6h11l4 4v11H6V6zm2 2h7v3H8V8zm5.5 11a2.5 2.5 0 100-5 2.5 2.5 0 000 5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M2 2h12v2H4v10H2V2z" + d: "M2 2h12v2H4v10H2V2z", + fill: "currentColor" })); } diff --git a/icons/es5/SaveAlt.js b/icons/es5/SaveAlt.js index 95b6250642..d175665ad7 100644 --- a/icons/es5/SaveAlt.js +++ b/icons/es5/SaveAlt.js @@ -7,9 +7,11 @@ function SvgSaveAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 12v7H5v-7H3v9h18v-9h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z" + d: "M19 12v7H5v-7H3v9h18v-9h-2zm-6 .67l2.59-2.58L17 11.5l-5 5-5-5 1.41-1.41L11 12.67V3h2v9.67z", + fill: "currentColor" })); } diff --git a/icons/es5/SaveAs.js b/icons/es5/SaveAs.js index 9d3c694b74..b66485324a 100644 --- a/icons/es5/SaveAs.js +++ b/icons/es5/SaveAs.js @@ -7,9 +7,11 @@ function SvgSaveAs(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 12.4V7l-4-4H3v18h9.4l8.6-8.6zM15 15c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zM6 6h9v4H6V6zm13.99 10.25l1.77 1.77L16.77 23H15v-1.77l4.99-4.98zm3.62-.09l-1.2 1.2-1.77-1.77 1.2-1.2 1.77 1.77z" + d: "M21 12.4V7l-4-4H3v18h9.4l8.6-8.6zM15 15c0 1.66-1.34 3-3 3s-3-1.34-3-3 1.34-3 3-3 3 1.34 3 3zM6 6h9v4H6V6zm13.99 10.25l1.77 1.77L16.77 23H15v-1.77l4.99-4.98zm3.62-.09l-1.2 1.2-1.77-1.77 1.2-1.2 1.77 1.77z", + fill: "currentColor" })); } diff --git a/icons/es5/SavedSearch.js b/icons/es5/SavedSearch.js index 6c39a84a39..ee7a4a15f7 100644 --- a/icons/es5/SavedSearch.js +++ b/icons/es5/SavedSearch.js @@ -7,11 +7,14 @@ function SvgSavedSearch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.73 13.31A6.388 6.388 0 0016 9.5 6.5 6.5 0 109.5 16c1.43 0 2.74-.48 3.81-1.27L19.59 21 21 19.59l-6.27-6.28zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z" + d: "M14.73 13.31A6.388 6.388 0 0016 9.5 6.5 6.5 0 109.5 16c1.43 0 2.74-.48 3.81-1.27L19.59 21 21 19.59l-6.27-6.28zM9.5 14C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M10.29 8.44L9.5 6l-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59z" + d: "M10.29 8.44L9.5 6l-.79 2.44H6.25l2.01 1.59-.77 2.47 2.01-1.53 2.01 1.53-.77-2.47 2.01-1.59z", + fill: "currentColor" })); } diff --git a/icons/es5/Savings.js b/icons/es5/Savings.js index fb4a189c80..f88c09293c 100644 --- a/icons/es5/Savings.js +++ b/icons/es5/Savings.js @@ -7,9 +7,11 @@ function SvgSavings(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.83 7.5l-2.27-2.27c.07-.42.18-.81.32-1.15.23-.56.56-1.06.97-1.5-.7-.37-1.5-.58-2.35-.58-1.64 0-3.09.79-4 2h-5C4.46 4 2 6.46 2 9.5S4.5 21 4.5 21H10v-2h2v2h5.5l1.68-5.59 2.82-.94V7.5h-2.17zM13 9H8V7h5v2zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M19.83 7.5l-2.27-2.27c.07-.42.18-.81.32-1.15.23-.56.56-1.06.97-1.5-.7-.37-1.5-.58-2.35-.58-1.64 0-3.09.79-4 2h-5C4.46 4 2 6.46 2 9.5S4.5 21 4.5 21H10v-2h2v2h5.5l1.68-5.59 2.82-.94V7.5h-2.17zM13 9H8V7h5v2zm3 2c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Scale.js b/icons/es5/Scale.js index 251151879a..7e3702516e 100644 --- a/icons/es5/Scale.js +++ b/icons/es5/Scale.js @@ -7,9 +7,11 @@ function SvgScale(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 11V8c4.56-.58 8-3.1 8-6H2c0 2.9 3.44 5.42 8 6v3c-3.68.73-8 3.61-8 11h6v-2H4.13c.93-6.83 6.65-7.2 7.87-7.2s6.94.37 7.87 7.2H16v2h6c0-7.39-4.32-10.27-8-11zm-2 11c-1.1 0-2-.9-2-2 0-.55.22-1.05.59-1.41C11.39 17.79 16 16 16 16s-1.79 4.61-2.59 5.41c-.36.37-.86.59-1.41.59z" + d: "M14 11V8c4.56-.58 8-3.1 8-6H2c0 2.9 3.44 5.42 8 6v3c-3.68.73-8 3.61-8 11h6v-2H4.13c.93-6.83 6.65-7.2 7.87-7.2s6.94.37 7.87 7.2H16v2h6c0-7.39-4.32-10.27-8-11zm-2 11c-1.1 0-2-.9-2-2 0-.55.22-1.05.59-1.41C11.39 17.79 16 16 16 16s-1.79 4.61-2.59 5.41c-.36.37-.86.59-1.41.59z", + fill: "currentColor" })); } diff --git a/icons/es5/Scanner.js b/icons/es5/Scanner.js index 67147e480b..f2a0d8049a 100644 --- a/icons/es5/Scanner.js +++ b/icons/es5/Scanner.js @@ -7,9 +7,11 @@ function SvgScanner(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.2 5l-.7 1.9L17.6 12H3v8h18v-8.86L4.2 5zM7 17H5v-2h2v2zm12 0H9v-2h10v2z" + d: "M4.2 5l-.7 1.9L17.6 12H3v8h18v-8.86L4.2 5zM7 17H5v-2h2v2zm12 0H9v-2h10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ScatterPlot.js b/icons/es5/ScatterPlot.js index 52015f217e..856dd1975f 100644 --- a/icons/es5/ScatterPlot.js +++ b/icons/es5/ScatterPlot.js @@ -7,7 +7,8 @@ function SvgScatterPlot(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 7, cy: 14, diff --git a/icons/es5/Schedule.js b/icons/es5/Schedule.js index 7bd1013987..4da0183419 100644 --- a/icons/es5/Schedule.js +++ b/icons/es5/Schedule.js @@ -7,9 +7,11 @@ function SvgSchedule(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm.5-13H11v6l5.25 3.15.75-1.23-4.5-2.67z", + fill: "currentColor" })); } diff --git a/icons/es5/ScheduleSend.js b/icons/es5/ScheduleSend.js index 36515ee87e..a0603d5853 100644 --- a/icons/es5/ScheduleSend.js +++ b/icons/es5/ScheduleSend.js @@ -7,11 +7,14 @@ function SvgScheduleSend(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.86 3.14-7 7-7z" + d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.86 3.14-7 7-7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71z" + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L16.5 17.2V14h1v2.79l1.85 1.85-.7.71z", + fill: "currentColor" })); } diff --git a/icons/es5/Schema.js b/icons/es5/Schema.js index 79d73d3f21..af6802a795 100644 --- a/icons/es5/Schema.js +++ b/icons/es5/Schema.js @@ -7,9 +7,11 @@ function SvgSchema(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7z" + d: "M14 9v2h-3V9H8.5V7H11V1H4v6h2.5v2H4v6h2.5v2H4v6h7v-6H8.5v-2H11v-2h3v2h7V9h-7z", + fill: "currentColor" })); } diff --git a/icons/es5/Science.js b/icons/es5/Science.js index 5caee73009..05b2d677bb 100644 --- a/icons/es5/Science.js +++ b/icons/es5/Science.js @@ -7,9 +7,11 @@ function SvgScience(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.8 18.4L14 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81H9.04c-.42 0-.65.48-.39.81L10 6.5v4.17L4.2 18.4c-.49.66-.02 1.6.8 1.6h14c.82 0 1.29-.94.8-1.6z" + d: "M19.8 18.4L14 10.67V6.5l1.35-1.69c.26-.33.03-.81-.39-.81H9.04c-.42 0-.65.48-.39.81L10 6.5v4.17L4.2 18.4c-.49.66-.02 1.6.8 1.6h14c.82 0 1.29-.94.8-1.6z", + fill: "currentColor" })); } diff --git a/icons/es5/Score.js b/icons/es5/Score.js index 0b6ba83f44..fee0a946c5 100644 --- a/icons/es5/Score.js +++ b/icons/es5/Score.js @@ -7,9 +7,11 @@ function SvgScore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-9 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z" + d: "M21 3H3v18h18V3zm-9 2h1.5v3l2-3h1.7l-2 3 2 3h-1.7l-2-3v3H12V5zM7 7.25h2.5V6.5H7V5h4v3.75H8.5v.75H11V11H7V7.25zM19 13l-6 6-4-4-4 4v-2.5l4-4 4 4 6-6V13z", + fill: "currentColor" })); } diff --git a/icons/es5/Scoreboard.js b/icons/es5/Scoreboard.js index 1ec0fcaef9..63761ec9ea 100644 --- a/icons/es5/Scoreboard.js +++ b/icons/es5/Scoreboard.js @@ -7,9 +7,11 @@ function SvgScoreboard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.5 13.5H16v-3h1.5v3zM22 4h-5V2h-2v2H9V2H7v2H2v16h20V4zM9.5 12.5h-3v1h3V15H5v-3.5h3v-1H5V9h4.5v3.5zm3.25 5.5h-1.5v-1.5h1.5V18zm0-3.5h-1.5V13h1.5v1.5zm0-3.5h-1.5V9.5h1.5V11zm0-3.5h-1.5V6h1.5v1.5zM19 9v6h-4.5V9H19z" + d: "M17.5 13.5H16v-3h1.5v3zM22 4h-5V2h-2v2H9V2H7v2H2v16h20V4zM9.5 12.5h-3v1h3V15H5v-3.5h3v-1H5V9h4.5v3.5zm3.25 5.5h-1.5v-1.5h1.5V18zm0-3.5h-1.5V13h1.5v1.5zm0-3.5h-1.5V9.5h1.5V11zm0-3.5h-1.5V6h1.5v1.5zM19 9v6h-4.5V9H19z", + fill: "currentColor" })); } diff --git a/icons/es5/ScreenLockLandscape.js b/icons/es5/ScreenLockLandscape.js index 0142a7adcd..dd8ff6a1c9 100644 --- a/icons/es5/ScreenLockLandscape.js +++ b/icons/es5/ScreenLockLandscape.js @@ -7,9 +7,11 @@ function SvgScreenLockLandscape(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 5H1v14h22V5zm-4 12H5V7h14v10zM9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z" + d: "M23 5H1v14h22V5zm-4 12H5V7h14v10zM9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1z", + fill: "currentColor" })); } diff --git a/icons/es5/ScreenLockPortrait.js b/icons/es5/ScreenLockPortrait.js index 1f8b63e4c7..1804161015 100644 --- a/icons/es5/ScreenLockPortrait.js +++ b/icons/es5/ScreenLockPortrait.js @@ -7,9 +7,11 @@ function SvgScreenLockPortrait(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM19 1H5v22h14V1zm-2 18H7V5h10v14z" + d: "M9 16h6v-5h-1v-.9c0-1-.69-1.92-1.68-2.08C11.07 7.83 10 8.79 10 10v1H9v5zm1.8-6c0-.66.54-1.2 1.2-1.2s1.2.54 1.2 1.2v1h-2.4v-1zM19 1H5v22h14V1zm-2 18H7V5h10v14z", + fill: "currentColor" })); } diff --git a/icons/es5/ScreenLockRotation.js b/icons/es5/ScreenLockRotation.js index 8b42cad43c..7ca4291c06 100644 --- a/icons/es5/ScreenLockRotation.js +++ b/icons/es5/ScreenLockRotation.js @@ -7,9 +7,11 @@ function SvgScreenLockRotation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.52 21.48A10.487 10.487 0 011.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM20.05 4v-.36c0-1.31-.94-2.5-2.24-2.63a2.5 2.5 0 00-2.76 2.49V4h-1v6h7V4h-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm.48 7.2l-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41L9.22.69.74 9.17l14.14 14.14 8.48-8.48z" + d: "M7.52 21.48A10.487 10.487 0 011.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.82-1.33 1.33zM20.05 4v-.36c0-1.31-.94-2.5-2.24-2.63a2.5 2.5 0 00-2.76 2.49V4h-1v6h7V4h-1zm-.8 0h-3.4v-.5c0-.94.76-1.7 1.7-1.7s1.7.76 1.7 1.7V4zm.48 7.2l-1.41 1.41 2.22 2.22-5.66 5.66L3.56 9.17l5.66-5.66 2.1 2.1 1.41-1.41L9.22.69.74 9.17l14.14 14.14 8.48-8.48z", + fill: "currentColor" })); } diff --git a/icons/es5/ScreenRotation.js b/icons/es5/ScreenRotation.js index 67cbf08d68..66ed07d19a 100644 --- a/icons/es5/ScreenRotation.js +++ b/icons/es5/ScreenRotation.js @@ -7,9 +7,11 @@ function SvgScreenRotation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zM7.52 21.48A10.487 10.487 0 011.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zM9.17.69L.69 9.17l14.14 14.14 8.48-8.48L9.17.69zm5.66 20.5L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36z" + d: "M16.48 2.52c3.27 1.55 5.61 4.72 5.97 8.48h1.5C23.44 4.84 18.29 0 12 0l-.66.03 3.81 3.81 1.33-1.32zM7.52 21.48A10.487 10.487 0 011.55 13H.05C.56 19.16 5.71 24 12 24l.66-.03-3.81-3.81-1.33 1.32zM9.17.69L.69 9.17l14.14 14.14 8.48-8.48L9.17.69zm5.66 20.5L2.81 9.17l6.36-6.36 12.02 12.02-6.36 6.36z", + fill: "currentColor" })); } diff --git a/icons/es5/ScreenRotationAlt.js b/icons/es5/ScreenRotationAlt.js index b646d6007a..b56f3d94c5 100644 --- a/icons/es5/ScreenRotationAlt.js +++ b/icons/es5/ScreenRotationAlt.js @@ -7,9 +7,11 @@ function SvgScreenRotationAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 7.59l6.41-6.41L20.24 11h-2.83L10.4 4 5.41 9H8v2H2V5h2v2.59zM20 19h2v-6h-6v2h2.59l-4.99 5-7.01-7H3.76l9.83 9.83L20 16.41V19z" + d: "M4 7.59l6.41-6.41L20.24 11h-2.83L10.4 4 5.41 9H8v2H2V5h2v2.59zM20 19h2v-6h-6v2h2.59l-4.99 5-7.01-7H3.76l9.83 9.83L20 16.41V19z", + fill: "currentColor" })); } diff --git a/icons/es5/ScreenSearchDesktop.js b/icons/es5/ScreenSearchDesktop.js index a098f596f6..b361f2c6ff 100644 --- a/icons/es5/ScreenSearchDesktop.js +++ b/icons/es5/ScreenSearchDesktop.js @@ -7,9 +7,11 @@ function SvgScreenSearchDesktop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 19h22v2H1zM22 3H2v15h19.99L22 3zm-6.53 12.03l-2.09-2.09c-1.35.87-3.17.71-4.36-.47-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.18 1.18 1.34 3 .47 4.36l2.09 2.09-1.06 1.06z" + d: "M1 19h22v2H1zM22 3H2v15h19.99L22 3zm-6.53 12.03l-2.09-2.09c-1.35.87-3.17.71-4.36-.47-1.37-1.37-1.37-3.58 0-4.95s3.58-1.37 4.95 0c1.18 1.18 1.34 3 .47 4.36l2.09 2.09-1.06 1.06z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 11.5, cy: 10, diff --git a/icons/es5/ScreenShare.js b/icons/es5/ScreenShare.js index a1f409f4bb..6e6b025c39 100644 --- a/icons/es5/ScreenShare.js +++ b/icons/es5/ScreenShare.js @@ -7,9 +7,11 @@ function SvgScreenShare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 18l2-2V4H2v12l2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z" + d: "M20 18l2-2V4H2v12l2 2H0v2h24v-2h-4zm-7-3.53v-2.19c-2.78 0-4.61.85-6 2.72.56-2.67 2.11-5.33 6-5.87V7l4 3.73-4 3.74z", + fill: "currentColor" })); } diff --git a/icons/es5/Screenshot.js b/icons/es5/Screenshot.js index cdf771e53e..d7f76e64bd 100644 --- a/icons/es5/Screenshot.js +++ b/icons/es5/Screenshot.js @@ -7,9 +7,11 @@ function SvgScreenshot(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 1v22h14V1H5zm12 17H7V6h10v12zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z" + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zM9.5 8.5H12V7H8v4h1.5V8.5zM12 17h4v-4h-1.5v2.5H12V17z", + fill: "currentColor" })); } diff --git a/icons/es5/ScreenshotMonitor.js b/icons/es5/ScreenshotMonitor.js index d7d90115d8..6a10d92c27 100644 --- a/icons/es5/ScreenshotMonitor.js +++ b/icons/es5/ScreenshotMonitor.js @@ -7,11 +7,14 @@ function SvgScreenshotMonitor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 3H2v16h6v2h8v-2h6V3zm-2 14H4V5h16v12z" + d: "M22 3H2v16h6v2h8v-2h6V3zm-2 14H4V5h16v12z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6.5 7.5H9V6H5v4h1.5zM19 12h-1.5v2.5H15V16h4z" + d: "M6.5 7.5H9V6H5v4h1.5zM19 12h-1.5v2.5H15V16h4z", + fill: "currentColor" })); } diff --git a/icons/es5/ScubaDiving.js b/icons/es5/ScubaDiving.js index a4fd60d7d7..8adaca25d3 100644 --- a/icons/es5/ScubaDiving.js +++ b/icons/es5/ScubaDiving.js @@ -7,9 +7,11 @@ function SvgScubaDiving(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.89-2.89l4.53-1.21-.78-2.9-4.53 1.21c-.8.21-1.28 1.04-1.06 1.84.22.8 1.04 1.28 1.84 1.06zM20.5 5.9L23 3l-1-1-3 3-2 4-9.48 2.87c-.82.2-1.39.89-1.5 1.68L5.24 18 2.4 21.8 4 23l3-4 1.14-3.14L14 14l5-3.5 1.5-4.6z" + d: "M1 13c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.89-2.89l4.53-1.21-.78-2.9-4.53 1.21c-.8.21-1.28 1.04-1.06 1.84.22.8 1.04 1.28 1.84 1.06zM20.5 5.9L23 3l-1-1-3 3-2 4-9.48 2.87c-.82.2-1.39.89-1.5 1.68L5.24 18 2.4 21.8 4 23l3-4 1.14-3.14L14 14l5-3.5 1.5-4.6z", + fill: "currentColor" })); } diff --git a/icons/es5/Sd.js b/icons/es5/Sd.js index 0e79e1f264..77b90b9f56 100644 --- a/icons/es5/Sd.js +++ b/icons/es5/Sd.js @@ -7,9 +7,11 @@ function SvgSd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 4v16h20V4H2zm11 5h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H6V9h5v2H9.5v-.5h-2v1H11V15H6v-2h1.5v.5h2zm5 0h2v-3h-2v3z" + d: "M2 4v16h20V4H2zm11 5h4c.55 0 1 .45 1 1v4c0 .55-.45 1-1 1h-4V9zm-3.5 4.5v-1H6V9h5v2H9.5v-.5h-2v1H11V15H6v-2h1.5v.5h2zm5 0h2v-3h-2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/SdCard.js b/icons/es5/SdCard.js index 017a1685d1..555297de6e 100644 --- a/icons/es5/SdCard.js +++ b/icons/es5/SdCard.js @@ -7,9 +7,11 @@ function SvgSdCard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" + d: "M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/SdCardAlert.js b/icons/es5/SdCardAlert.js index f101c55dd7..10dd33c3dd 100644 --- a/icons/es5/SdCardAlert.js +++ b/icons/es5/SdCardAlert.js @@ -7,9 +7,11 @@ function SvgSdCardAlert(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z" + d: "M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/SdStorage.js b/icons/es5/SdStorage.js index 93c5dbb751..0a8483b797 100644 --- a/icons/es5/SdStorage.js +++ b/icons/es5/SdStorage.js @@ -7,9 +7,11 @@ function SvgSdStorage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z" + d: "M20 2H10L4 8v14h16V2zm-8 6h-2V4h2v4zm3 0h-2V4h2v4zm3 0h-2V4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/SearchOff.js b/icons/es5/SearchOff.js index 1f603b61df..077578b857 100644 --- a/icons/es5/SearchOff.js +++ b/icons/es5/SearchOff.js @@ -7,11 +7,14 @@ function SvgSearchOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 009.5 3C6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z" + d: "M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 009.5 3C6.08 3 3.28 5.64 3.03 9h2.02C5.3 6.75 7.18 5 9.5 5 11.99 5 14 7.01 14 9.5S11.99 14 9.5 14c-.17 0-.33-.03-.5-.05v2.02c.17.02.33.03.5.03 1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6.47 10.82L4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z" + d: "M6.47 10.82L4 13.29l-2.47-2.47-.71.71L3.29 14 .82 16.47l.71.71L4 14.71l2.47 2.47.71-.71L4.71 14l2.47-2.47z", + fill: "currentColor" })); } diff --git a/icons/es5/Security.js b/icons/es5/Security.js index f0853608f2..e31d7993dd 100644 --- a/icons/es5/Security.js +++ b/icons/es5/Security.js @@ -7,9 +7,11 @@ function SvgSecurity(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z" + d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm0 10.99h7c-.53 4.12-3.28 7.79-7 8.94V12H5V6.3l7-3.11v8.8z", + fill: "currentColor" })); } diff --git a/icons/es5/SecurityUpdate.js b/icons/es5/SecurityUpdate.js index 6387e5a9c5..b453f396b8 100644 --- a/icons/es5/SecurityUpdate.js +++ b/icons/es5/SecurityUpdate.js @@ -7,9 +7,11 @@ function SvgSecurityUpdate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/SecurityUpdateGood.js b/icons/es5/SecurityUpdateGood.js index 8784d3e04e..03d23ad6d9 100644 --- a/icons/es5/SecurityUpdateGood.js +++ b/icons/es5/SecurityUpdateGood.js @@ -7,9 +7,11 @@ function SvgSecurityUpdateGood(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-7.95l-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-7.95l-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z", + fill: "currentColor" })); } diff --git a/icons/es5/SecurityUpdateWarning.js b/icons/es5/SecurityUpdateWarning.js index 1f8c2bd87a..a924831e11 100644 --- a/icons/es5/SecurityUpdateWarning.js +++ b/icons/es5/SecurityUpdateWarning.js @@ -7,11 +7,14 @@ function SvgSecurityUpdateWarning(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 15h2v2h-2zm0-8h2v6h-2z" + d: "M11 15h2v2h-2zm0-8h2v6h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M5.01 1v22H19V1H5.01zM17 18H7V6h10v12z" + d: "M5.01 1v22H19V1H5.01zM17 18H7V6h10v12z", + fill: "currentColor" })); } diff --git a/icons/es5/Segment.js b/icons/es5/Segment.js index cf0e3c7485..94afc5d8dd 100644 --- a/icons/es5/Segment.js +++ b/icons/es5/Segment.js @@ -7,9 +7,11 @@ function SvgSegment(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z" + d: "M9 18h12v-2H9v2zM3 6v2h18V6H3zm6 7h12v-2H9v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SelectAll.js b/icons/es5/SelectAll.js index 36f03f83c2..ae6e0784cd 100644 --- a/icons/es5/SelectAll.js +++ b/icons/es5/SelectAll.js @@ -7,9 +7,11 @@ function SvgSelectAll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 13h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm6 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0-4h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zm4 0h2V3h-2v2zm0 16h2v-2h-2v2zM3 21h2v-2H3v2zm4-4h10V7H7v10zm2-8h6v6H9V9z" + d: "M3 13h2v-2H3v2zm4 8h2v-2H7v2zM3 9h2V7H3v2zm10-6h-2v2h2V3zM3 17h2v-2H3v2zM9 3H7v2h2V3zM5 3H3v2h2V3zm6 18h2v-2h-2v2zm8-8h2v-2h-2v2zm0-4h2V7h-2v2zm0 8h2v-2h-2v2zm-4 4h2v-2h-2v2zm0-16h2V3h-2v2zm4 0h2V3h-2v2zm0 16h2v-2h-2v2zM3 21h2v-2H3v2zm4-4h10V7H7v10zm2-8h6v6H9V9z", + fill: "currentColor" })); } diff --git a/icons/es5/SelfImprovement.js b/icons/es5/SelfImprovement.js index 81c160ed9e..69929f256a 100644 --- a/icons/es5/SelfImprovement.js +++ b/icons/es5/SelfImprovement.js @@ -7,13 +7,15 @@ function SvgSelfImprovement(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 6, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6A1.98 1.98 0 0012.53 9h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5a2.5 2.5 0 012.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z" + d: "M21 16v-2c-2.24 0-4.16-.96-5.6-2.68l-1.34-1.6A1.98 1.98 0 0012.53 9h-1.05c-.59 0-1.15.26-1.53.72l-1.34 1.6C7.16 13.04 5.24 14 3 14v2c2.77 0 5.19-1.17 7-3.25V15l-3.88 1.55c-.67.27-1.12.93-1.12 1.66C5 19.2 5.8 20 6.79 20H9v-.5a2.5 2.5 0 012.5-2.5h3c.28 0 .5.22.5.5s-.22.5-.5.5h-3c-.83 0-1.5.67-1.5 1.5v.5h7.21c.99 0 1.79-.8 1.79-1.79 0-.73-.45-1.39-1.12-1.66L14 15v-2.25c1.81 2.08 4.23 3.25 7 3.25z", + fill: "currentColor" })); } diff --git a/icons/es5/Sell.js b/icons/es5/Sell.js index 7f46b160cf..c53ebe8c03 100644 --- a/icons/es5/Sell.js +++ b/icons/es5/Sell.js @@ -7,9 +7,11 @@ function SvgSell(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22.83 12.83L12 2H2v10l10.83 10.83 10-10zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z" + d: "M22.83 12.83L12 2H2v10l10.83 10.83 10-10zM6.5 8C5.67 8 5 7.33 5 6.5S5.67 5 6.5 5 8 5.67 8 6.5 7.33 8 6.5 8z", + fill: "currentColor" })); } diff --git a/icons/es5/SendAndArchive.js b/icons/es5/SendAndArchive.js index a847797b8e..e20864b2c1 100644 --- a/icons/es5/SendAndArchive.js +++ b/icons/es5/SendAndArchive.js @@ -7,11 +7,14 @@ function SvgSendAndArchive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.87 3.13-7 7-7z" + d: "M17 10c.1 0 .19.01.28.01L3 4v6l8 2-8 2v6l7-2.95V17c0-3.87 3.13-7 7-7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8l-3-3h2.5v-3h1v3H20l-3 3z" + d: "M17 12c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm0 8l-3-3h2.5v-3h1v3H20l-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/SendTimeExtension.js b/icons/es5/SendTimeExtension.js index a23a7279a8..93cf02ee56 100644 --- a/icons/es5/SendTimeExtension.js +++ b/icons/es5/SendTimeExtension.js @@ -7,11 +7,14 @@ function SvgSendTimeExtension(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 4h-6a2.5 2.5 0 00-5 0H3.01v5.8C5.7 9.8 6 11.96 6 12.5s-.29 2.7-3 2.7V21h5.8c0-2.16 1.37-2.78 2.2-2.94v-9.3l9 4.5V4z" + d: "M20 4h-6a2.5 2.5 0 00-5 0H3.01v5.8C5.7 9.8 6 11.96 6 12.5s-.29 2.7-3 2.7V21h5.8c0-2.16 1.37-2.78 2.2-2.94v-9.3l9 4.5V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13 12v4l4 1-4 1v4l10-5z" + d: "M13 12v4l4 1-4 1v4l10-5z", + fill: "currentColor" })); } diff --git a/icons/es5/SendToMobile.js b/icons/es5/SendToMobile.js index a2f73698ff..927c424b67 100644 --- a/icons/es5/SendToMobile.js +++ b/icons/es5/SendToMobile.js @@ -7,11 +7,14 @@ function SvgSendToMobile(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 18H7V6h10v1h2V1H5v22h14v-6h-2z" + d: "M17 18H7V6h10v1h2V1H5v22h14v-6h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 12l-4-4v3h-5v2h5v3z" + d: "M22 12l-4-4v3h-5v2h5v3z", + fill: "currentColor" })); } diff --git a/icons/es5/SensorDoor.js b/icons/es5/SensorDoor.js index 2dedffdf71..0ecc9dd6fa 100644 --- a/icons/es5/SensorDoor.js +++ b/icons/es5/SensorDoor.js @@ -7,9 +7,11 @@ function SvgSensorDoor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H4v20h16V2zm-4.5 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M20 2H4v20h16V2zm-4.5 11.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SensorOccupied.js b/icons/es5/SensorOccupied.js index b454971686..eaa5657295 100644 --- a/icons/es5/SensorOccupied.js +++ b/icons/es5/SensorOccupied.js @@ -7,9 +7,11 @@ function SvgSensorOccupied(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0 1c-1.84 0-3.56.5-5.03 1.37-.61.35-.97 1.02-.97 1.72V17h12v-1.91c0-.7-.36-1.36-.97-1.72A9.844 9.844 0 0012 12zm9.23-3.85l1.85-.77A12.056 12.056 0 0016.62.92l-.77 1.85c2.42 1.02 4.36 2.96 5.38 5.38zM8.15 2.77L7.38.92A12.089 12.089 0 00.92 7.38l1.85.77c1.02-2.42 2.96-4.36 5.38-5.38zM2.77 15.85l-1.85.77c1.22 2.91 3.55 5.25 6.46 6.46l.77-1.85a10.117 10.117 0 01-5.38-5.38zm13.08 5.38l.77 1.85c2.91-1.22 5.25-3.55 6.46-6.46l-1.85-.77a10.117 10.117 0 01-5.38 5.38z" + d: "M12 11c1.66 0 3-1.34 3-3s-1.34-3-3-3-3 1.34-3 3 1.34 3 3 3zm0 1c-1.84 0-3.56.5-5.03 1.37-.61.35-.97 1.02-.97 1.72V17h12v-1.91c0-.7-.36-1.36-.97-1.72A9.844 9.844 0 0012 12zm9.23-3.85l1.85-.77A12.056 12.056 0 0016.62.92l-.77 1.85c2.42 1.02 4.36 2.96 5.38 5.38zM8.15 2.77L7.38.92A12.089 12.089 0 00.92 7.38l1.85.77c1.02-2.42 2.96-4.36 5.38-5.38zM2.77 15.85l-1.85.77c1.22 2.91 3.55 5.25 6.46 6.46l.77-1.85a10.117 10.117 0 01-5.38-5.38zm13.08 5.38l.77 1.85c2.91-1.22 5.25-3.55 6.46-6.46l-1.85-.77a10.117 10.117 0 01-5.38 5.38z", + fill: "currentColor" })); } diff --git a/icons/es5/SensorWindow.js b/icons/es5/SensorWindow.js index b646acf7ea..8206a4679e 100644 --- a/icons/es5/SensorWindow.js +++ b/icons/es5/SensorWindow.js @@ -7,9 +7,11 @@ function SvgSensorWindow(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4v16H6V4h12M4 2v20h16V2H4zm3 17h10v-6H7v6zm3-9h4v1h3V5H7v6h3v-1z" + d: "M18 4v16H6V4h12M4 2v20h16V2H4zm3 17h10v-6H7v6zm3-9h4v1h3V5H7v6h3v-1z", + fill: "currentColor" })); } diff --git a/icons/es5/Sensors.js b/icons/es5/Sensors.js index c301e7b288..57e8ba7554 100644 --- a/icons/es5/Sensors.js +++ b/icons/es5/Sensors.js @@ -7,9 +7,11 @@ function SvgSensors(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42A7.94 7.94 0 0120 12zM6.35 6.35L4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z" + d: "M7.76 16.24C6.67 15.16 6 13.66 6 12s.67-3.16 1.76-4.24l1.42 1.42C8.45 9.9 8 10.9 8 12c0 1.1.45 2.1 1.17 2.83l-1.41 1.41zm8.48 0C17.33 15.16 18 13.66 18 12s-.67-3.16-1.76-4.24l-1.42 1.42C15.55 9.9 16 10.9 16 12c0 1.1-.45 2.1-1.17 2.83l1.41 1.41zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm8 2c0 2.21-.9 4.21-2.35 5.65l1.42 1.42C20.88 17.26 22 14.76 22 12s-1.12-5.26-2.93-7.07l-1.42 1.42A7.94 7.94 0 0120 12zM6.35 6.35L4.93 4.93C3.12 6.74 2 9.24 2 12s1.12 5.26 2.93 7.07l1.42-1.42C4.9 16.21 4 14.21 4 12s.9-4.21 2.35-5.65z", + fill: "currentColor" })); } diff --git a/icons/es5/SensorsOff.js b/icons/es5/SensorsOff.js index a747fe422f..1a216d35ac 100644 --- a/icons/es5/SensorsOff.js +++ b/icons/es5/SensorsOff.js @@ -7,9 +7,11 @@ function SvgSensorsOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42A6.018 6.018 0 016 12c0-.93.21-1.8.58-2.59L5.11 7.94A7.897 7.897 0 004 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42A9.969 9.969 0 012 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42a3.951 3.951 0 011.04 3.86l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45A9.91 9.91 0 0022 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42A7.94 7.94 0 0120 12z" + d: "M8.14 10.96c-.09.33-.14.68-.14 1.04 0 1.1.45 2.1 1.17 2.83l-1.42 1.42A6.018 6.018 0 016 12c0-.93.21-1.8.58-2.59L5.11 7.94A7.897 7.897 0 004 12c0 2.21.9 4.21 2.35 5.65l-1.42 1.42A9.969 9.969 0 012 12c0-2.04.61-3.93 1.66-5.51L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41L8.14 10.96zm9.28 3.63c.37-.79.58-1.66.58-2.59 0-1.66-.67-3.16-1.76-4.24l-1.42 1.42a3.951 3.951 0 011.04 3.86l1.56 1.55zM20 12c0 1.48-.4 2.87-1.11 4.06l1.45 1.45A9.91 9.91 0 0022 12c0-2.76-1.12-5.26-2.93-7.07l-1.42 1.42A7.94 7.94 0 0120 12z", + fill: "currentColor" })); } diff --git a/icons/es5/SentimentDissatisfied.js b/icons/es5/SentimentDissatisfied.js index 31f7f427d9..7521f2007e 100644 --- a/icons/es5/SentimentDissatisfied.js +++ b/icons/es5/SentimentDissatisfied.js @@ -7,7 +7,8 @@ function SvgSentimentDissatisfied(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 15.5, cy: 9.5, @@ -17,7 +18,8 @@ function SvgSentimentDissatisfied(props) { cy: 9.5, r: 1.5 }), /*#__PURE__*/React.createElement("path", { - d: "M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + d: "M12 14c-2.33 0-4.32 1.45-5.12 3.5h1.67c.69-1.19 1.97-2 3.45-2s2.75.81 3.45 2h1.67c-.8-2.05-2.79-3.5-5.12-3.5zm-.01-12C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/SentimentNeutral.js b/icons/es5/SentimentNeutral.js index 18c43e0b59..437d467efe 100644 --- a/icons/es5/SentimentNeutral.js +++ b/icons/es5/SentimentNeutral.js @@ -7,9 +7,11 @@ function SvgSentimentNeutral(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM7 9.5C7 8.67 7.67 8 8.5 8s1.5.67 1.5 1.5S9.33 11 8.5 11 7 10.33 7 9.5zm8 6H9V14h6v1.5zm.5-4.5c-.83 0-1.5-.67-1.5-1.5S14.67 8 15.5 8s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SentimentSatisfied.js b/icons/es5/SentimentSatisfied.js index cfecd4e473..110340ac56 100644 --- a/icons/es5/SentimentSatisfied.js +++ b/icons/es5/SentimentSatisfied.js @@ -7,7 +7,8 @@ function SvgSentimentSatisfied(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 15.5, cy: 9.5, @@ -17,7 +18,8 @@ function SvgSentimentSatisfied(props) { cy: 9.5, r: 1.5 }), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88a5.495 5.495 0 0010.24 0h-1.67c-.7 1.19-1.97 2-3.45 2z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88a5.495 5.495 0 0010.24 0h-1.67c-.7 1.19-1.97 2-3.45 2z", + fill: "currentColor" })); } diff --git a/icons/es5/SentimentSatisfiedAlt.js b/icons/es5/SentimentSatisfiedAlt.js index e4e9c34149..fb3d80ab27 100644 --- a/icons/es5/SentimentSatisfiedAlt.js +++ b/icons/es5/SentimentSatisfiedAlt.js @@ -7,7 +7,8 @@ function SvgSentimentSatisfiedAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 15.5, cy: 9.5, @@ -17,7 +18,8 @@ function SvgSentimentSatisfiedAlt(props) { cy: 9.5, r: 1.5 }), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88a5.495 5.495 0 0010.24 0h-1.67c-.69 1.19-1.97 2-3.45 2z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-4c-1.48 0-2.75-.81-3.45-2H6.88a5.495 5.495 0 0010.24 0h-1.67c-.69 1.19-1.97 2-3.45 2z", + fill: "currentColor" })); } diff --git a/icons/es5/SentimentSlightlyDissatisfied.js b/icons/es5/SentimentSlightlyDissatisfied.js index c2b2c86080..f109628d2d 100644 --- a/icons/es5/SentimentSlightlyDissatisfied.js +++ b/icons/es5/SentimentSlightlyDissatisfied.js @@ -7,7 +7,8 @@ function SvgSentimentSlightlyDissatisfied(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 15.5, cy: 9.5, @@ -17,7 +18,8 @@ function SvgSentimentSlightlyDissatisfied(props) { cy: 9.5, r: 1.5 }), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-3.5c.73 0 1.39.19 1.97.53.12-.14.86-.98 1.01-1.14A5.39 5.39 0 0012 15c-1.11 0-2.13.33-2.99.88.97 1.09.01.02 1.01 1.14.59-.33 1.25-.52 1.98-.52z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm0-3.5c.73 0 1.39.19 1.97.53.12-.14.86-.98 1.01-1.14A5.39 5.39 0 0012 15c-1.11 0-2.13.33-2.99.88.97 1.09.01.02 1.01 1.14.59-.33 1.25-.52 1.98-.52z", + fill: "currentColor" })); } diff --git a/icons/es5/SentimentVeryDissatisfied.js b/icons/es5/SentimentVeryDissatisfied.js index 777351dbec..c1ba8e0dc9 100644 --- a/icons/es5/SentimentVeryDissatisfied.js +++ b/icons/es5/SentimentVeryDissatisfied.js @@ -7,9 +7,11 @@ function SvgSentimentVeryDissatisfied(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z" + d: "M12 13.5c-2.33 0-4.31 1.46-5.11 3.5h10.22c-.8-2.04-2.78-3.5-5.11-3.5zM7.82 12l1.06-1.06L9.94 12 11 10.94 9.94 9.88 11 8.82 9.94 7.76 8.88 8.82 7.82 7.76 6.76 8.82l1.06 1.06-1.06 1.06zm4.17-10C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm4.18-12.24l-1.06 1.06-1.06-1.06L13 8.82l1.06 1.06L13 10.94 14.06 12l1.06-1.06L16.18 12l1.06-1.06-1.06-1.06 1.06-1.06z", + fill: "currentColor" })); } diff --git a/icons/es5/SentimentVerySatisfied.js b/icons/es5/SentimentVerySatisfied.js index d2f7386ab5..3b9a49975b 100644 --- a/icons/es5/SentimentVerySatisfied.js +++ b/icons/es5/SentimentVerySatisfied.js @@ -7,9 +7,11 @@ function SvgSentimentVerySatisfied(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.88 9.94L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm1-7.56L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z" + d: "M8.88 9.94L9.94 11 11 9.94 8.88 7.82 6.76 9.94 7.82 11zM12 17.5c2.33 0 4.31-1.46 5.11-3.5H6.89c.8 2.04 2.78 3.5 5.11 3.5zm1-7.56L14.06 11l1.06-1.06L16.18 11l1.06-1.06-2.12-2.12zM11.99 2C6.47 2 2 6.47 2 12s4.47 10 9.99 10S22 17.53 22 12 17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/SetMeal.js b/icons/es5/SetMeal.js index 0ce0e0e3f5..d9148982b8 100644 --- a/icons/es5/SetMeal.js +++ b/icons/es5/SetMeal.js @@ -7,9 +7,11 @@ function SvgSetMeal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.05 17.56l-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM22 3v11H2V3h20zm-2 3c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z" + d: "M21.05 17.56l-17.97.94L3 17l17.98-.94.07 1.5zM21 19.48H3v1.5h18v-1.5zM22 3v11H2V3h20zm-2 3c-1.68 0-3.04.98-3.21 2.23-.64-.73-2.73-2.73-6.54-2.73-4.67 0-6.75 3-6.75 3s2.08 3 6.75 3c3.81 0 5.9-2 6.54-2.73C16.96 10.02 18.32 11 20 11V6z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsAccessibility.js b/icons/es5/SettingsAccessibility.js index cb7810b080..06c43acd43 100644 --- a/icons/es5/SettingsAccessibility.js +++ b/icons/es5/SettingsAccessibility.js @@ -7,9 +7,11 @@ function SvgSettingsAccessibility(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" + d: "M20.5 4c-2.61.7-5.67 1-8.5 1s-5.89-.3-8.5-1L3 6c1.86.5 4 .83 6 1v12h2v-6h2v6h2V7c2-.17 4.14-.5 6-1l-.5-2zM12 4c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsApplications.js b/icons/es5/SettingsApplications.js index 95badef925..ccd85b17c0 100644 --- a/icons/es5/SettingsApplications.js +++ b/icons/es5/SettingsApplications.js @@ -7,9 +7,11 @@ function SvgSettingsApplications(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V5a2 2 0 00-2-2zm-1.75 9c0 .24-.02.47-.05.71l.01-.02 1.47 1.16c.14.1.23.18.23.18l-1.7 2.94-2.02-.8.02-.03c-.37.29-.77.53-1.21.71h.01l-.27 1.85c-.02.17-.04.3-.04.3h-3.4l-.31-2.15H10a5.06 5.06 0 01-1.21-.71l.02.03-2.02.8-1.7-2.94s.1-.08.23-.18l1.47-1.16.01.02c-.03-.24-.05-.47-.05-.71s.02-.47.05-.69l-.01.01-1.7-1.34 1.7-2.95 2.01.81v.01c.37-.28.77-.52 1.2-.7h-.01L10.3 5h3.41l.3 2.15H14c.43.18.83.42 1.2.7v-.01l2.01-.81 1.7 2.95-1.71 1.34-.01-.01c.04.22.06.45.06.69z" + d: "M19 3H5a2 2 0 00-2 2v14a2 2 0 002 2h14a2 2 0 002-2V5a2 2 0 00-2-2zm-1.75 9c0 .24-.02.47-.05.71l.01-.02 1.47 1.16c.14.1.23.18.23.18l-1.7 2.94-2.02-.8.02-.03c-.37.29-.77.53-1.21.71h.01l-.27 1.85c-.02.17-.04.3-.04.3h-3.4l-.31-2.15H10a5.06 5.06 0 01-1.21-.71l.02.03-2.02.8-1.7-2.94s.1-.08.23-.18l1.47-1.16.01.02c-.03-.24-.05-.47-.05-.71s.02-.47.05-.69l-.01.01-1.7-1.34 1.7-2.95 2.01.81v.01c.37-.28.77-.52 1.2-.7h-.01L10.3 5h3.41l.3 2.15H14c.43.18.83.42 1.2.7v-.01l2.01-.81 1.7 2.95-1.71 1.34-.01-.01c.04.22.06.45.06.69z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 12, diff --git a/icons/es5/SettingsBackupRestore.js b/icons/es5/SettingsBackupRestore.js index e9e4b5cd99..432fd76159 100644 --- a/icons/es5/SettingsBackupRestore.js +++ b/icons/es5/SettingsBackupRestore.js @@ -7,9 +7,11 @@ function SvgSettingsBackupRestore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9a9 9 0 00-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7a6.995 6.995 0 01-11.06 5.7l-1.42 1.44A9 9 0 1012 3z" + d: "M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9a9 9 0 00-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7a6.995 6.995 0 01-11.06 5.7l-1.42 1.44A9 9 0 1012 3z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsBluetooth.js b/icons/es5/SettingsBluetooth.js index 5331e6898e..88def99fde 100644 --- a/icons/es5/SettingsBluetooth.js +++ b/icons/es5/SettingsBluetooth.js @@ -7,9 +7,11 @@ function SvgSettingsBluetooth(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z" + d: "M11 24h2v-2h-2v2zm-4 0h2v-2H7v2zm8 0h2v-2h-2v2zm2.71-18.29L12 0h-1v7.59L6.41 3 5 4.41 10.59 10 5 15.59 6.41 17 11 12.41V20h1l5.71-5.71-4.3-4.29 4.3-4.29zM13 3.83l1.88 1.88L13 7.59V3.83zm1.88 10.46L13 16.17v-3.76l1.88 1.88z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsBrightness.js b/icons/es5/SettingsBrightness.js index b3314a6a28..8e379412ed 100644 --- a/icons/es5/SettingsBrightness.js +++ b/icons/es5/SettingsBrightness.js @@ -7,9 +7,11 @@ function SvgSettingsBrightness(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z" + d: "M23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02zM8 16h2.5l1.5 1.5 1.5-1.5H16v-2.5l1.5-1.5-1.5-1.5V8h-2.5L12 6.5 10.5 8H8v2.5L6.5 12 8 13.5V16zm4-7c1.66 0 3 1.34 3 3s-1.34 3-3 3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsCell.js b/icons/es5/SettingsCell.js index f1a2ac3639..8457b9c328 100644 --- a/icons/es5/SettingsCell.js +++ b/icons/es5/SettingsCell.js @@ -7,9 +7,11 @@ function SvgSettingsCell(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM6 0v20h12V0H6zm10 16H8V4h8v12z" + d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2zM6 0v20h12V0H6zm10 16H8V4h8v12z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsEthernet.js b/icons/es5/SettingsEthernet.js index 814dac8e77..bfde0f2377 100644 --- a/icons/es5/SettingsEthernet.js +++ b/icons/es5/SettingsEthernet.js @@ -7,9 +7,11 @@ function SvgSettingsEthernet(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z" + d: "M7.77 6.76L6.23 5.48.82 12l5.41 6.52 1.54-1.28L3.42 12l4.35-5.24zM7 13h2v-2H7v2zm10-2h-2v2h2v-2zm-6 2h2v-2h-2v2zm6.77-7.52l-1.54 1.28L20.58 12l-4.35 5.24 1.54 1.28L23.18 12l-5.41-6.52z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsInputAntenna.js b/icons/es5/SettingsInputAntenna.js index 09232df2c9..4656205b12 100644 --- a/icons/es5/SettingsInputAntenna.js +++ b/icons/es5/SettingsInputAntenna.js @@ -7,9 +7,11 @@ function SvgSettingsInputAntenna(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29a2.5 2.5 0 00-5 0c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2a9 9 0 0118 0h2c0-6.07-4.93-11-11-11z" + d: "M12 5c-3.87 0-7 3.13-7 7h2c0-2.76 2.24-5 5-5s5 2.24 5 5h2c0-3.87-3.13-7-7-7zm1 9.29c.88-.39 1.5-1.26 1.5-2.29a2.5 2.5 0 00-5 0c0 1.02.62 1.9 1.5 2.29v3.3L7.59 21 9 22.41l3-3 3 3L16.41 21 13 17.59v-3.3zM12 1C5.93 1 1 5.93 1 12h2a9 9 0 0118 0h2c0-6.07-4.93-11-11-11z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsInputComponent.js b/icons/es5/SettingsInputComponent.js index d76e7e8437..38650ee4a5 100644 --- a/icons/es5/SettingsInputComponent.js +++ b/icons/es5/SettingsInputComponent.js @@ -7,9 +7,11 @@ function SvgSettingsInputComponent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z" + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsInputComposite.js b/icons/es5/SettingsInputComposite.js index fca14df452..e35b776a5f 100644 --- a/icons/es5/SettingsInputComposite.js +++ b/icons/es5/SettingsInputComposite.js @@ -7,9 +7,11 @@ function SvgSettingsInputComposite(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z" + d: "M5 2c0-.55-.45-1-1-1s-1 .45-1 1v4H1v6h6V6H5V2zm4 16.82h2V23h2v-4.18h2V14H9v4.82zm-8 0h2V23h2v-4.18h2V14H1v4.82zM21 6V2c0-.55-.45-1-1-1s-1 .45-1 1v4h-2v6h6V6h-2zm-8-4c0-.55-.45-1-1-1s-1 .45-1 1v4H9v6h6V6h-2V2zm4 16.82h2V23h2v-4.18h2V14h-6v4.82z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsInputHdmi.js b/icons/es5/SettingsInputHdmi.js index b3689d8eca..2b3b4d46e7 100644 --- a/icons/es5/SettingsInputHdmi.js +++ b/icons/es5/SettingsInputHdmi.js @@ -7,9 +7,11 @@ function SvgSettingsInputHdmi(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 7V2H6v5H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z" + d: "M18 7V2H6v5H5v6l3 6v3h8v-3l3-6V7h-1zM8 4h8v3h-2V5h-1v2h-2V5h-1v2H8V4z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsInputSvideo.js b/icons/es5/SettingsInputSvideo.js index e375bed476..58ef5c117f 100644 --- a/icons/es5/SettingsInputSvideo.js +++ b/icons/es5/SettingsInputSvideo.js @@ -7,9 +7,11 @@ function SvgSettingsInputSvideo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z" + d: "M8 11.5c0-.83-.67-1.5-1.5-1.5S5 10.67 5 11.5 5.67 13 6.5 13 8 12.33 8 11.5zm7-5c0-.83-.67-1.5-1.5-1.5h-3C9.67 5 9 5.67 9 6.5S9.67 8 10.5 8h3c.83 0 1.5-.67 1.5-1.5zM8.5 15c-.83 0-1.5.67-1.5 1.5S7.67 18 8.5 18s1.5-.67 1.5-1.5S9.33 15 8.5 15zM12 1C5.93 1 1 5.93 1 12s4.93 11 11 11 11-4.93 11-11S18.07 1 12 1zm0 20c-4.96 0-9-4.04-9-9s4.04-9 9-9 9 4.04 9 9-4.04 9-9 9zm5.5-11c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5zm-2 5c-.83 0-1.5.67-1.5 1.5s.67 1.5 1.5 1.5 1.5-.67 1.5-1.5-.67-1.5-1.5-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsOverscan.js b/icons/es5/SettingsOverscan.js index c6eac539e7..0332618e8f 100644 --- a/icons/es5/SettingsOverscan.js +++ b/icons/es5/SettingsOverscan.js @@ -7,9 +7,11 @@ function SvgSettingsOverscan(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm9-13H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" + d: "M12.01 5.5L10 8h4l-1.99-2.5zM18 10v4l2.5-1.99L18 10zM6 10l-2.5 2.01L6 14v-4zm8 6h-4l2.01 2.5L14 16zm9-13H1v18h22V3zm-2 16.01H3V4.99h18v14.02z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsPhone.js b/icons/es5/SettingsPhone.js index 20794c0349..5690defa27 100644 --- a/icons/es5/SettingsPhone.js +++ b/icons/es5/SettingsPhone.js @@ -7,9 +7,11 @@ function SvgSettingsPhone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.21 17.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52zM11 9h2v2h-2zm4 0h2v2h-2zm4 0h2v2h-2z" + d: "M13.21 17.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52zM11 9h2v2h-2zm4 0h2v2h-2zm4 0h2v2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsPower.js b/icons/es5/SettingsPower.js index d74d633d24..7e8f09efba 100644 --- a/icons/es5/SettingsPower.js +++ b/icons/es5/SettingsPower.js @@ -7,9 +7,11 @@ function SvgSettingsPower(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45A5.969 5.969 0 0118 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44A7.961 7.961 0 004 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z" + d: "M7 24h2v-2H7v2zm4 0h2v-2h-2v2zm2-22h-2v10h2V2zm3.56 2.44l-1.45 1.45A5.969 5.969 0 0118 11c0 3.31-2.69 6-6 6s-6-2.69-6-6c0-2.17 1.16-4.06 2.88-5.12L7.44 4.44A7.961 7.961 0 004 11c0 4.42 3.58 8 8 8s8-3.58 8-8c0-2.72-1.36-5.12-3.44-6.56zM15 24h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsRemote.js b/icons/es5/SettingsRemote.js index 02980e1dbd..23c485414a 100644 --- a/icons/es5/SettingsRemote.js +++ b/icons/es5/SettingsRemote.js @@ -7,9 +7,11 @@ function SvgSettingsRemote(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 9H8v14h8V9zm-4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41a5.022 5.022 0 017.08 0l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z" + d: "M16 9H8v14h8V9zm-4 6c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM7.05 6.05l1.41 1.41a5.022 5.022 0 017.08 0l1.41-1.41C15.68 4.78 13.93 4 12 4s-3.68.78-4.95 2.05zM12 0C8.96 0 6.21 1.23 4.22 3.22l1.41 1.41C7.26 3.01 9.51 2 12 2s4.74 1.01 6.36 2.64l1.41-1.41C17.79 1.23 15.04 0 12 0z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsSuggest.js b/icons/es5/SettingsSuggest.js index 03cb47795a..f681a7ec81 100644 --- a/icons/es5/SettingsSuggest.js +++ b/icons/es5/SettingsSuggest.js @@ -7,9 +7,11 @@ function SvgSettingsSuggest(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.41 6.59L15 5.5l2.41-1.09L18.5 2l1.09 2.41L22 5.5l-2.41 1.09L18.5 9l-1.09-2.41zm3.87 6.13L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zm-5.04 1.65l1.94 1.47-2.5 4.33-2.24-.94c-.2.13-.42.26-.64.37l-.3 2.4h-5l-.3-2.41c-.22-.11-.43-.23-.64-.37l-2.24.94-2.5-4.33 1.94-1.47c-.01-.11-.01-.24-.01-.36s0-.25.01-.37l-1.94-1.47 2.5-4.33 2.24.94c.2-.13.42-.26.64-.37L7.5 6h5l.3 2.41c.22.11.43.23.64.37l2.24-.94 2.5 4.33-1.94 1.47c.01.12.01.24.01.37s0 .24-.01.36zM13 14c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z" + d: "M17.41 6.59L15 5.5l2.41-1.09L18.5 2l1.09 2.41L22 5.5l-2.41 1.09L18.5 9l-1.09-2.41zm3.87 6.13L20.5 11l-.78 1.72-1.72.78 1.72.78.78 1.72.78-1.72L23 13.5l-1.72-.78zm-5.04 1.65l1.94 1.47-2.5 4.33-2.24-.94c-.2.13-.42.26-.64.37l-.3 2.4h-5l-.3-2.41c-.22-.11-.43-.23-.64-.37l-2.24.94-2.5-4.33 1.94-1.47c-.01-.11-.01-.24-.01-.36s0-.25.01-.37l-1.94-1.47 2.5-4.33 2.24.94c.2-.13.42-.26.64-.37L7.5 6h5l.3 2.41c.22.11.43.23.64.37l2.24-.94 2.5 4.33-1.94 1.47c.01.12.01.24.01.37s0 .24-.01.36zM13 14c0-1.66-1.34-3-3-3s-3 1.34-3 3 1.34 3 3 3 3-1.34 3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsSystemDaydream.js b/icons/es5/SettingsSystemDaydream.js index 583fdd145b..6aae25f4b5 100644 --- a/icons/es5/SettingsSystemDaydream.js +++ b/icons/es5/SettingsSystemDaydream.js @@ -7,9 +7,11 @@ function SvgSettingsSystemDaydream(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 16h6.5a2.5 2.5 0 000-5h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16A2.994 2.994 0 006 13c0 1.66 1.34 3 3 3zM23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02z" + d: "M9 16h6.5a2.5 2.5 0 000-5h-.05c-.24-1.69-1.69-3-3.45-3-1.4 0-2.6.83-3.16 2.02h-.16A2.994 2.994 0 006 13c0 1.66 1.34 3 3 3zM23 3H1v18h22V3zm-2 16.01H3V4.99h18v14.02z", + fill: "currentColor" })); } diff --git a/icons/es5/SettingsVoice.js b/icons/es5/SettingsVoice.js index 57a7a35986..99816fb800 100644 --- a/icons/es5/SettingsVoice.js +++ b/icons/es5/SettingsVoice.js @@ -7,9 +7,11 @@ function SvgSettingsVoice(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z" + d: "M7 24h2v-2H7v2zm5-11c1.66 0 2.99-1.34 2.99-3L15 4c0-1.66-1.34-3-3-3S9 2.34 9 4v6c0 1.66 1.34 3 3 3zm-1 11h2v-2h-2v2zm4 0h2v-2h-2v2zm4-14h-1.7c0 3-2.54 5.1-5.3 5.1S6.7 13 6.7 10H5c0 3.41 2.72 6.23 6 6.72V20h2v-3.28c3.28-.49 6-3.31 6-6.72z", + fill: "currentColor" })); } diff --git a/icons/es5/SevereCold.js b/icons/es5/SevereCold.js index 77563649d8..2c0322c03d 100644 --- a/icons/es5/SevereCold.js +++ b/icons/es5/SevereCold.js @@ -7,9 +7,11 @@ function SvgSevereCold(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 10.41l4-4L14.59 5 12 7.59V4h-2v3.59L7.41 5 6 6.41l4 4V12H8.41l-4-4L3 9.41 5.59 12H2v2h3.59L3 16.59 4.41 18l4-4H10v1.59l-4 4L7.41 21 10 18.41V22h2v-3.59L14.59 21 16 19.59l-4-4V14h1.59l4 4L19 16.59 16.41 14H20v-2h-8zM19 2h2v5h-2zm0 6h2v2h-2z" + d: "M12 10.41l4-4L14.59 5 12 7.59V4h-2v3.59L7.41 5 6 6.41l4 4V12H8.41l-4-4L3 9.41 5.59 12H2v2h3.59L3 16.59 4.41 18l4-4H10v1.59l-4 4L7.41 21 10 18.41V22h2v-3.59L14.59 21 16 19.59l-4-4V14h1.59l4 4L19 16.59 16.41 14H20v-2h-8zM19 2h2v5h-2zm0 6h2v2h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/ShapeLine.js b/icons/es5/ShapeLine.js index 2bbd0a93c7..2a9537fd07 100644 --- a/icons/es5/ShapeLine.js +++ b/icons/es5/ShapeLine.js @@ -7,11 +7,14 @@ function SvgShapeLine(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 11c2.76 0 5-2.24 5-5S8.76 1 6 1 1 3.24 1 6s2.24 5 5 5zm17 3h-9v9h9v-9z" + d: "M6 11c2.76 0 5-2.24 5-5S8.76 1 6 1 1 3.24 1 6s2.24 5 5 5zm17 3h-9v9h9v-9z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17.71 7.7c.4.19.83.3 1.29.3 1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3c0 .46.11.89.3 1.29L6.29 16.3c-.4-.19-.83-.3-1.29-.3-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3c0-.46-.11-.89-.3-1.29L17.71 7.7z" + d: "M17.71 7.7c.4.19.83.3 1.29.3 1.65 0 3-1.35 3-3s-1.35-3-3-3-3 1.35-3 3c0 .46.11.89.3 1.29L6.29 16.3c-.4-.19-.83-.3-1.29-.3-1.65 0-3 1.35-3 3s1.35 3 3 3 3-1.35 3-3c0-.46-.11-.89-.3-1.29L17.71 7.7z", + fill: "currentColor" })); } diff --git a/icons/es5/ShareArrivalTime.js b/icons/es5/ShareArrivalTime.js index 8b2d848381..3e5b78425d 100644 --- a/icons/es5/ShareArrivalTime.js +++ b/icons/es5/ShareArrivalTime.js @@ -7,9 +7,11 @@ function SvgShareArrivalTime(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm10.5 8c0 .69-.28 1.32-.73 1.77l1.41 1.41c.82-.81 1.32-1.94 1.32-3.18s-.5-2.37-1.32-3.18l-1.41 1.41c.45.45.73 1.08.73 1.77zm3.5 0c0 1.66-.67 3.16-1.76 4.24l1.41 1.41C23.1 16.21 24 14.21 24 12s-.9-4.21-2.35-5.65l-1.41 1.41A5.944 5.944 0 0122 12zm-10.19 2.42l-1.39 1.39L7 12.39V8h2v3.61l2.81 2.81z" + d: "M8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm10.5 8c0 .69-.28 1.32-.73 1.77l1.41 1.41c.82-.81 1.32-1.94 1.32-3.18s-.5-2.37-1.32-3.18l-1.41 1.41c.45.45.73 1.08.73 1.77zm3.5 0c0 1.66-.67 3.16-1.76 4.24l1.41 1.41C23.1 16.21 24 14.21 24 12s-.9-4.21-2.35-5.65l-1.41 1.41A5.944 5.944 0 0122 12zm-10.19 2.42l-1.39 1.39L7 12.39V8h2v3.61l2.81 2.81z", + fill: "currentColor" })); } diff --git a/icons/es5/ShareLocation.js b/icons/es5/ShareLocation.js index a5ec93c915..61b56a9a94 100644 --- a/icons/es5/ShareLocation.js +++ b/icons/es5/ShareLocation.js @@ -7,11 +7,14 @@ function SvgShareLocation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43a7.941 7.941 0 01-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74a9.981 9.981 0 00-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64l1.43 1.42A9.949 9.949 0 0021.97 13h-2.02a7.941 7.941 0 01-1.62 3.9z" + d: "M13.02 19.93v2.02c2.01-.2 3.84-1 5.32-2.21l-1.42-1.43a7.941 7.941 0 01-3.9 1.62zM4.03 12c0-4.05 3.03-7.41 6.95-7.93V2.05C5.95 2.58 2.03 6.84 2.03 12c0 5.16 3.92 9.42 8.95 9.95v-2.02c-3.92-.52-6.95-3.88-6.95-7.93zm15.92-1h2.02c-.2-2.01-1-3.84-2.21-5.32l-1.43 1.43c.86 1.1 1.44 2.43 1.62 3.89zm-1.61-6.74a9.981 9.981 0 00-5.32-2.21v2.02c1.46.18 2.79.76 3.9 1.62l1.42-1.43zm-.01 12.64l1.43 1.42A9.949 9.949 0 0021.97 13h-2.02a7.941 7.941 0 01-1.62 3.9z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9a1.071 1.071 0 010-2.14A1.071 1.071 0 0112 12z" + d: "M16 11.1C16 8.61 14.1 7 12 7s-4 1.61-4 4.1c0 1.66 1.33 3.63 4 5.9 2.67-2.27 4-4.24 4-5.9zm-4 .9a1.071 1.071 0 010-2.14A1.071 1.071 0 0112 12z", + fill: "currentColor" })); } diff --git a/icons/es5/Shield.js b/icons/es5/Shield.js index 45c8b016e0..fc5f77b462 100644 --- a/icons/es5/Shield.js +++ b/icons/es5/Shield.js @@ -7,9 +7,11 @@ function SvgShield(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z" + d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3z", + fill: "currentColor" })); } diff --git a/icons/es5/ShieldMoon.js b/icons/es5/ShieldMoon.js index 05af9c8efc..6ddb072727 100644 --- a/icons/es5/ShieldMoon.js +++ b/icons/es5/ShieldMoon.js @@ -7,9 +7,11 @@ function SvgShieldMoon(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.97 12.41c-1.84 2.17-5.21 2.1-6.96-.07-2.19-2.72-.65-6.72 2.69-7.33.34-.06.63.27.51.6-.46 1.23-.39 2.64.32 3.86a4.51 4.51 0 003.18 2.2c.34.05.49.47.26.74z" + d: "M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm3.97 12.41c-1.84 2.17-5.21 2.1-6.96-.07-2.19-2.72-.65-6.72 2.69-7.33.34-.06.63.27.51.6-.46 1.23-.39 2.64.32 3.86a4.51 4.51 0 003.18 2.2c.34.05.49.47.26.74z", + fill: "currentColor" })); } diff --git a/icons/es5/Shop.js b/icons/es5/Shop.js index 60cad59592..9bf3133d05 100644 --- a/icons/es5/Shop.js +++ b/icons/es5/Shop.js @@ -7,9 +7,11 @@ function SvgShop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z" + d: "M16 6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6h-6zm-6-2h4v2h-4V4zM9 18V9l7.5 4L9 18z", + fill: "currentColor" })); } diff --git a/icons/es5/Shop2.js b/icons/es5/Shop2.js index 7e130ed898..e9c73beb21 100644 --- a/icons/es5/Shop2.js +++ b/icons/es5/Shop2.js @@ -7,11 +7,14 @@ function SvgShop2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 9H1v13h18v-2H3z" + d: "M3 9H1v13h18v-2H3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 5V1h-8v4H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3.5L12 15z" + d: "M18 5V1h-8v4H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3.5L12 15z", + fill: "currentColor" })); } diff --git a/icons/es5/ShopTwo.js b/icons/es5/ShopTwo.js index 32a88cfb63..3205d2083e 100644 --- a/icons/es5/ShopTwo.js +++ b/icons/es5/ShopTwo.js @@ -7,9 +7,11 @@ function SvgShopTwo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 9H1v13h18v-2H3V9zm15-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z" + d: "M3 9H1v13h18v-2H3V9zm15-4V3c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H5v13h18V5h-5zm-6-2h4v2h-4V3zm0 12V8l5.5 3-5.5 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Shopify.js b/icons/es5/Shopify.js index a4fd9c7464..232783ecc8 100644 --- a/icons/es5/Shopify.js +++ b/icons/es5/Shopify.js @@ -7,9 +7,11 @@ function SvgShopify(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.9 5.1s-.2.06-.54.17c-.06-.18-.14-.41-.26-.63-.38-.73-.94-1.11-1.62-1.12-.05 0-.09 0-.14.01-.02-.02-.04-.05-.06-.07-.29-.32-.67-.47-1.12-.46-.87.03-1.74.66-2.45 1.78-.5.79-.87 1.78-.98 2.54-1 .31-1.7.53-1.72.53-.51.16-.52.18-.59.65-.05.36-1.37 10.6-1.37 10.6L15.03 21V5.08c-.05 0-.1.01-.13.02zm-2.54.79c-.58.18-1.22.38-1.85.57.18-.69.52-1.37.94-1.82.16-.17.37-.35.63-.46.24.51.29 1.22.28 1.71zm-1.19-2.31c.2 0 .38.04.53.14-.24.12-.46.3-.68.53-.55.59-.98 1.52-1.15 2.41-.53.16-1.04.32-1.52.47.3-1.41 1.48-3.51 2.82-3.55zm-1.7 7.99c.06.93 2.52 1.14 2.66 3.33.11 1.72-.91 2.9-2.39 2.99C7.98 18 7 16.96 7 16.96l.37-1.59s.98.74 1.76.69c.51-.03.69-.45.68-.74-.08-1.22-2.08-1.15-2.2-3.15-.11-1.69 1-3.39 3.44-3.55.95-.06 1.43.18 1.43.18l-.56 2.09s-.62-.28-1.36-.24c-1.08.07-1.1.75-1.09.92zm3.47-5.86c-.01-.44-.06-1.06-.27-1.59.66.13.99.87 1.13 1.32-.25.08-.54.17-.86.27zm2.45 15.25l4.56-1.13S17.99 6.57 17.98 6.48c-.01-.09-.09-.14-.16-.15-.07-.01-1.35-.03-1.35-.03s-.78-.76-1.08-1.05v15.71z" + d: "M14.9 5.1s-.2.06-.54.17c-.06-.18-.14-.41-.26-.63-.38-.73-.94-1.11-1.62-1.12-.05 0-.09 0-.14.01-.02-.02-.04-.05-.06-.07-.29-.32-.67-.47-1.12-.46-.87.03-1.74.66-2.45 1.78-.5.79-.87 1.78-.98 2.54-1 .31-1.7.53-1.72.53-.51.16-.52.18-.59.65-.05.36-1.37 10.6-1.37 10.6L15.03 21V5.08c-.05 0-.1.01-.13.02zm-2.54.79c-.58.18-1.22.38-1.85.57.18-.69.52-1.37.94-1.82.16-.17.37-.35.63-.46.24.51.29 1.22.28 1.71zm-1.19-2.31c.2 0 .38.04.53.14-.24.12-.46.3-.68.53-.55.59-.98 1.52-1.15 2.41-.53.16-1.04.32-1.52.47.3-1.41 1.48-3.51 2.82-3.55zm-1.7 7.99c.06.93 2.52 1.14 2.66 3.33.11 1.72-.91 2.9-2.39 2.99C7.98 18 7 16.96 7 16.96l.37-1.59s.98.74 1.76.69c.51-.03.69-.45.68-.74-.08-1.22-2.08-1.15-2.2-3.15-.11-1.69 1-3.39 3.44-3.55.95-.06 1.43.18 1.43.18l-.56 2.09s-.62-.28-1.36-.24c-1.08.07-1.1.75-1.09.92zm3.47-5.86c-.01-.44-.06-1.06-.27-1.59.66.13.99.87 1.13 1.32-.25.08-.54.17-.86.27zm2.45 15.25l4.56-1.13S17.99 6.57 17.98 6.48c-.01-.09-.09-.14-.16-.15-.07-.01-1.35-.03-1.35-.03s-.78-.76-1.08-1.05v15.71z", + fill: "currentColor" })); } diff --git a/icons/es5/ShoppingBag.js b/icons/es5/ShoppingBag.js index 848d8569f5..7509c6c078 100644 --- a/icons/es5/ShoppingBag.js +++ b/icons/es5/ShoppingBag.js @@ -7,9 +7,11 @@ function SvgShoppingBag(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 6h-4c0-2.21-1.79-4-4-4S8 3.79 8 6H4v16h16V6zm-10 5H8V8h2v3zm2-7c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 7h-2V8h2v3z" + d: "M20 6h-4c0-2.21-1.79-4-4-4S8 3.79 8 6H4v16h16V6zm-10 5H8V8h2v3zm2-7c1.1 0 2 .9 2 2h-4c0-1.1.9-2 2-2zm4 7h-2V8h2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/ShoppingBasket.js b/icons/es5/ShoppingBasket.js index 900f2e9a7c..fc5473acf0 100644 --- a/icons/es5/ShoppingBasket.js +++ b/icons/es5/ShoppingBasket.js @@ -7,9 +7,11 @@ function SvgShoppingBasket(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.21 9l-4.39-6.57a1 1 0 00-1.66 0L6.77 9H.69L4 21h16.02l3.29-12h-6.1zm-5.22-4.21L14.8 9H9.18l2.81-4.21zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M17.21 9l-4.39-6.57a1 1 0 00-1.66 0L6.77 9H.69L4 21h16.02l3.29-12h-6.1zm-5.22-4.21L14.8 9H9.18l2.81-4.21zM12 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/ShoppingCart.js b/icons/es5/ShoppingCart.js index de1491f5f2..addfab6541 100644 --- a/icons/es5/ShoppingCart.js +++ b/icons/es5/ShoppingCart.js @@ -7,9 +7,11 @@ function SvgShoppingCart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 18c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm0-3l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03L21.7 4H5.21l-.94-2H1v2h2l3.6 7.59L3.62 17H19v-2H7z" + d: "M17 18c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zM7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm0-3l1.1-2h7.45c.75 0 1.41-.41 1.75-1.03L21.7 4H5.21l-.94-2H1v2h2l3.6 7.59L3.62 17H19v-2H7z", + fill: "currentColor" })); } diff --git a/icons/es5/ShoppingCartCheckout.js b/icons/es5/ShoppingCartCheckout.js index 97836a7239..a029e97c9e 100644 --- a/icons/es5/ShoppingCartCheckout.js +++ b/icons/es5/ShoppingCartCheckout.js @@ -7,9 +7,11 @@ function SvgShoppingCartCheckout(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h8.66L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59L3.61 17H19v-2H7l1.1-2zM12 2l4 4-4 4-1.41-1.41L12.17 7H8V5h4.17l-1.59-1.59L12 2z" + d: "M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zm10 0c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2zm-8.9-5h8.66L21 4.96 19.25 4l-3.7 7H8.53L4.27 2H1v2h2l3.6 7.59L3.61 17H19v-2H7l1.1-2zM12 2l4 4-4 4-1.41-1.41L12.17 7H8V5h4.17l-1.59-1.59L12 2z", + fill: "currentColor" })); } diff --git a/icons/es5/ShortText.js b/icons/es5/ShortText.js index 96101940af..2ce6312707 100644 --- a/icons/es5/ShortText.js +++ b/icons/es5/ShortText.js @@ -7,9 +7,11 @@ function SvgShortText(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 9h16v2H4V9zm0 4h10v2H4v-2z" + d: "M4 9h16v2H4V9zm0 4h10v2H4v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Shortcut.js b/icons/es5/Shortcut.js index 9baab1f704..464f946d08 100644 --- a/icons/es5/Shortcut.js +++ b/icons/es5/Shortcut.js @@ -7,9 +7,11 @@ function SvgShortcut(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11l-6-6v5H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h7v5l6-6z" + d: "M21 11l-6-6v5H8c-2.76 0-5 2.24-5 5v4h2v-4c0-1.65 1.35-3 3-3h7v5l6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/ShowChart.js b/icons/es5/ShowChart.js index 69418dac84..7d5db34bd0 100644 --- a/icons/es5/ShowChart.js +++ b/icons/es5/ShowChart.js @@ -7,9 +7,11 @@ function SvgShowChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z" + d: "M3.5 18.49l6-6.01 4 4L22 6.92l-1.41-1.41-7.09 7.97-4-4L2 16.99l1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Shower.js b/icons/es5/Shower.js index 2929af6649..bed34dded7 100644 --- a/icons/es5/Shower.js +++ b/icons/es5/Shower.js @@ -7,7 +7,8 @@ function SvgShower(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 8, cy: 17, @@ -21,7 +22,8 @@ function SvgShower(props) { cy: 17, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92z" + d: "M13 5.08V3h-2v2.08C7.61 5.57 5 8.47 5 12v2h14v-2c0-3.53-2.61-6.43-6-6.92z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 8, cy: 20, diff --git a/icons/es5/Shuffle.js b/icons/es5/Shuffle.js index 5c29c1df01..2cf81fd24d 100644 --- a/icons/es5/Shuffle.js +++ b/icons/es5/Shuffle.js @@ -7,9 +7,11 @@ function SvgShuffle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z" + d: "M10.59 9.17L5.41 4 4 5.41l5.17 5.17 1.42-1.41zM14.5 4l2.04 2.04L4 18.59 5.41 20 17.96 7.46 20 9.5V4h-5.5zm.33 9.41l-1.41 1.41 3.13 3.13L14.5 20H20v-5.5l-2.04 2.04-3.13-3.13z", + fill: "currentColor" })); } diff --git a/icons/es5/ShuffleOn.js b/icons/es5/ShuffleOn.js index b6786f84d3..5c50e60a9c 100644 --- a/icons/es5/ShuffleOn.js +++ b/icons/es5/ShuffleOn.js @@ -7,9 +7,11 @@ function SvgShuffleOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 1v22h22V1H1zm4.41 3l5.18 5.17-1.42 1.41L4 5.41 5.41 4zM20 20h-5.5l2.05-2.05-3.13-3.13 1.41-1.41 3.13 3.13L20 14.5V20zm0-10.5l-2.04-2.04L5.41 20 4 18.59 16.54 6.04 14.5 4H20v5.5z" + d: "M1 1v22h22V1H1zm4.41 3l5.18 5.17-1.42 1.41L4 5.41 5.41 4zM20 20h-5.5l2.05-2.05-3.13-3.13 1.41-1.41 3.13 3.13L20 14.5V20zm0-10.5l-2.04-2.04L5.41 20 4 18.59 16.54 6.04 14.5 4H20v5.5z", + fill: "currentColor" })); } diff --git a/icons/es5/ShutterSpeed.js b/icons/es5/ShutterSpeed.js index 157c0c4fcc..c96d1b4daf 100644 --- a/icons/es5/ShutterSpeed.js +++ b/icons/es5/ShutterSpeed.js @@ -7,9 +7,11 @@ function SvgShutterSpeed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42A8.962 8.962 0 0012 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a8.994 8.994 0 007.03-14.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35a5.992 5.992 0 003.41 3.56l-.11-.06 2.03-3.5zm5.97-4a6.012 6.012 0 00-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99A5.965 5.965 0 006 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14A5.94 5.94 0 0018 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z" + d: "M15 1H9v2h6V1zm4.03 6.39l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42A8.962 8.962 0 0012 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a8.994 8.994 0 007.03-14.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7zm-.32-5H6.35a5.992 5.992 0 003.41 3.56l-.11-.06 2.03-3.5zm5.97-4a6.012 6.012 0 00-3.34-3.54L12.26 11h5.39zm-7.04 7.83c.45.11.91.17 1.39.17 1.34 0 2.57-.45 3.57-1.19l-2.11-3.9-2.85 4.92zM7.55 8.99A5.965 5.965 0 006 13c0 .34.04.67.09 1h4.72L7.55 8.99zm8.79 8.14A5.94 5.94 0 0018 13c0-.34-.04-.67-.09-1h-4.34l2.77 5.13zm-3.01-9.98C12.9 7.06 12.46 7 12 7c-1.4 0-2.69.49-3.71 1.29l2.32 3.56 2.72-4.7z", + fill: "currentColor" })); } diff --git a/icons/es5/Sick.js b/icons/es5/Sick.js index 99af045b05..36177cb174 100644 --- a/icons/es5/Sick.js +++ b/icons/es5/Sick.js @@ -7,9 +7,11 @@ function SvgSick(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 9c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2zm-3.5-2c0-.73.41-1.71.92-2.66A9.965 9.965 0 0011.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62a3.5 3.5 0 01-.86.12c-1.93 0-3.5-1.57-3.5-3.5zm-1.88.38l1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06L13.5 9.5l2.12-2.12zm-8.3 1.06l1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06L8.38 9.5 7.32 8.44zM15.44 17c-.69-1.19-1.97-2-3.44-2s-2.75.81-3.44 2H6.88c.3-.76.76-1.43 1.34-1.99L5.24 13.3c-.45.26-1.01.28-1.49 0a1.501 1.501 0 011.5-2.6c.48.28.74.78.74 1.29l3.58 2.07c.73-.36 1.55-.56 2.43-.56 2.33 0 4.32 1.45 5.12 3.5h-1.68z" + d: "M21 9c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2zm-3.5-2c0-.73.41-1.71.92-2.66A9.965 9.965 0 0011.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12c0-.55-.06-1.09-.14-1.62a3.5 3.5 0 01-.86.12c-1.93 0-3.5-1.57-3.5-3.5zm-1.88.38l1.06 1.06-1.06 1.06 1.06 1.06-1.06 1.06L13.5 9.5l2.12-2.12zm-8.3 1.06l1.06-1.06L10.5 9.5l-2.12 2.12-1.06-1.06L8.38 9.5 7.32 8.44zM15.44 17c-.69-1.19-1.97-2-3.44-2s-2.75.81-3.44 2H6.88c.3-.76.76-1.43 1.34-1.99L5.24 13.3c-.45.26-1.01.28-1.49 0a1.501 1.501 0 011.5-2.6c.48.28.74.78.74 1.29l3.58 2.07c.73-.36 1.55-.56 2.43-.56 2.33 0 4.32 1.45 5.12 3.5h-1.68z", + fill: "currentColor" })); } diff --git a/icons/es5/SignLanguage.js b/icons/es5/SignLanguage.js index ad5f9338fb..dbe3195403 100644 --- a/icons/es5/SignLanguage.js +++ b/icons/es5/SignLanguage.js @@ -7,9 +7,11 @@ function SvgSignLanguage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.49 13l-1.39-2.7L12.49 9 19 15.2V24H4.5v-2H10v-1H3v-2h7v-1H2v-2h8v-1H3.5v-2h8.99zm-.71-5.88c-.84.4-1.17.62-1.63 1.19L6.76 4.74l1.45-1.38 3.57 3.76zM9.64 9.21a3.46 3.46 0 00-.2 1.79h-.86L5.62 7.89l1.45-1.38 2.57 2.7zm12.34 3.13L22 3.35l-1.9-.1-1 2.86L13.3 0l-1.45 1.38 4.09 4.3-.73.69L9.74.64 8.3 2l3.36 3.53 1.06 1.11 2.65 2.33 5.08 4.83 1.53-1.46z" + d: "M12.49 13l-1.39-2.7L12.49 9 19 15.2V24H4.5v-2H10v-1H3v-2h7v-1H2v-2h8v-1H3.5v-2h8.99zm-.71-5.88c-.84.4-1.17.62-1.63 1.19L6.76 4.74l1.45-1.38 3.57 3.76zM9.64 9.21a3.46 3.46 0 00-.2 1.79h-.86L5.62 7.89l1.45-1.38 2.57 2.7zm12.34 3.13L22 3.35l-1.9-.1-1 2.86L13.3 0l-1.45 1.38 4.09 4.3-.73.69L9.74.64 8.3 2l3.36 3.53 1.06 1.11 2.65 2.33 5.08 4.83 1.53-1.46z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellular0Bar.js b/icons/es5/SignalCellular0Bar.js index 1b186f2f7b..9b89824035 100644 --- a/icons/es5/SignalCellular0Bar.js +++ b/icons/es5/SignalCellular0Bar.js @@ -7,9 +7,11 @@ function SvgSignalCellular0Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 22h20V2L2 22zm18-2H6.83L20 6.83V20z" + d: "M2 22h20V2L2 22zm18-2H6.83L20 6.83V20z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellular1Bar.js b/icons/es5/SignalCellular1Bar.js index 138b66a72f..7b39583468 100644 --- a/icons/es5/SignalCellular1Bar.js +++ b/icons/es5/SignalCellular1Bar.js @@ -7,12 +7,15 @@ function SvgSignalCellular1Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M2 22h20V2L2 22z" + d: "M2 22h20V2L2 22z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 12L2 22h10V12z" + d: "M12 12L2 22h10V12z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellular2Bar.js b/icons/es5/SignalCellular2Bar.js index bb45bc81f7..b9fb6d6fd0 100644 --- a/icons/es5/SignalCellular2Bar.js +++ b/icons/es5/SignalCellular2Bar.js @@ -7,12 +7,15 @@ function SvgSignalCellular2Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M2 22h20V2L2 22z" + d: "M2 22h20V2L2 22z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14 10L2 22h12V10z" + d: "M14 10L2 22h12V10z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellular3Bar.js b/icons/es5/SignalCellular3Bar.js index f26f7b0042..c5213815e3 100644 --- a/icons/es5/SignalCellular3Bar.js +++ b/icons/es5/SignalCellular3Bar.js @@ -7,12 +7,15 @@ function SvgSignalCellular3Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M2 22h20V2L2 22z" + d: "M2 22h20V2L2 22z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17 7L2 22h15V7z" + d: "M17 7L2 22h15V7z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellular4Bar.js b/icons/es5/SignalCellular4Bar.js index 03173bad28..d519c5efac 100644 --- a/icons/es5/SignalCellular4Bar.js +++ b/icons/es5/SignalCellular4Bar.js @@ -7,9 +7,11 @@ function SvgSignalCellular4Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 22h20V2L2 22z" + d: "M2 22h20V2L2 22z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularAlt.js b/icons/es5/SignalCellularAlt.js index 23f0c77db6..cea595013b 100644 --- a/icons/es5/SignalCellularAlt.js +++ b/icons/es5/SignalCellularAlt.js @@ -7,9 +7,11 @@ function SvgSignalCellularAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z" + d: "M17 4h3v16h-3V4zM5 14h3v6H5v-6zm6-5h3v11h-3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularAlt1Bar.js b/icons/es5/SignalCellularAlt1Bar.js index d449cd9bd3..db12cd9475 100644 --- a/icons/es5/SignalCellularAlt1Bar.js +++ b/icons/es5/SignalCellularAlt1Bar.js @@ -7,9 +7,11 @@ function SvgSignalCellularAlt1Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 14h3v6H5v-6z" + d: "M5 14h3v6H5v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularAlt2Bar.js b/icons/es5/SignalCellularAlt2Bar.js index c62da1ba58..39cd84f75b 100644 --- a/icons/es5/SignalCellularAlt2Bar.js +++ b/icons/es5/SignalCellularAlt2Bar.js @@ -7,9 +7,11 @@ function SvgSignalCellularAlt2Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 14h3v6H5v-6zm6-5h3v11h-3V9z" + d: "M5 14h3v6H5v-6zm6-5h3v11h-3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularConnectedNoInternet0Bar.js b/icons/es5/SignalCellularConnectedNoInternet0Bar.js index 68b95ccffd..b6eeda0596 100644 --- a/icons/es5/SignalCellularConnectedNoInternet0Bar.js +++ b/icons/es5/SignalCellularConnectedNoInternet0Bar.js @@ -7,9 +7,11 @@ function SvgSignalCellularConnectedNoInternet0Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z" + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zm-2-2v2H2L22 2v6h-2V6.83L6.83 20H18z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularConnectedNoInternet1Bar.js b/icons/es5/SignalCellularConnectedNoInternet1Bar.js index 21e0e4cb87..2f1c587aef 100644 --- a/icons/es5/SignalCellularConnectedNoInternet1Bar.js +++ b/icons/es5/SignalCellularConnectedNoInternet1Bar.js @@ -7,12 +7,15 @@ function SvgSignalCellularConnectedNoInternet1Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M22 8V2L2 22h16V8h4z" + d: "M22 8V2L2 22h16V8h4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z" + d: "M20 10v8h2v-8h-2zm-8 12V12L2 22h10zm8 0h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularConnectedNoInternet2Bar.js b/icons/es5/SignalCellularConnectedNoInternet2Bar.js index 39ae539122..813c405714 100644 --- a/icons/es5/SignalCellularConnectedNoInternet2Bar.js +++ b/icons/es5/SignalCellularConnectedNoInternet2Bar.js @@ -7,12 +7,15 @@ function SvgSignalCellularConnectedNoInternet2Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M22 8V2L2 22h16V8h4z" + d: "M22 8V2L2 22h16V8h4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + d: "M14 22V10L2 22h12zm6-12v8h2v-8h-2zm0 12h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularConnectedNoInternet3Bar.js b/icons/es5/SignalCellularConnectedNoInternet3Bar.js index 6c1f367660..a7db3362f5 100644 --- a/icons/es5/SignalCellularConnectedNoInternet3Bar.js +++ b/icons/es5/SignalCellularConnectedNoInternet3Bar.js @@ -7,12 +7,15 @@ function SvgSignalCellularConnectedNoInternet3Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M22 8V2L2 22h16V8h4z" + d: "M22 8V2L2 22h16V8h4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z" + d: "M18 22V6L2 22h16zm2-12v8h2v-8h-2zm0 12h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularConnectedNoInternet4Bar.js b/icons/es5/SignalCellularConnectedNoInternet4Bar.js index bd7dc27719..154e039a7b 100644 --- a/icons/es5/SignalCellularConnectedNoInternet4Bar.js +++ b/icons/es5/SignalCellularConnectedNoInternet4Bar.js @@ -7,9 +7,11 @@ function SvgSignalCellularConnectedNoInternet4Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z" + d: "M20 18h2v-8h-2v8zm0 4h2v-2h-2v2zM2 22h16V8h4V2L2 22z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularNoSim.js b/icons/es5/SignalCellularNoSim.js index c78fb43a03..c9311af2d1 100644 --- a/icons/es5/SignalCellularNoSim.js +++ b/icons/es5/SignalCellularNoSim.js @@ -7,9 +7,11 @@ function SvgSignalCellularNoSim(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3h-9L7.95 5.06 19 16.11zm-15.21.74L2.38 5.15 5 7.77V21h13.23l1.62 1.62 1.41-1.41z" + d: "M19 3h-9L7.95 5.06 19 16.11zm-15.21.74L2.38 5.15 5 7.77V21h13.23l1.62 1.62 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularNodata.js b/icons/es5/SignalCellularNodata.js index 0fe18f097a..c1e32c2a68 100644 --- a/icons/es5/SignalCellularNodata.js +++ b/icons/es5/SignalCellularNodata.js @@ -7,9 +7,11 @@ function SvgSignalCellularNodata(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z" + d: "M22 13h-9v9H2L22 2v11zm-1 2.41L19.59 14l-2.09 2.09L15.41 14 14 15.41l2.09 2.09L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularNull.js b/icons/es5/SignalCellularNull.js index 1f397140f1..c63c0a6e2d 100644 --- a/icons/es5/SignalCellularNull.js +++ b/icons/es5/SignalCellularNull.js @@ -7,9 +7,11 @@ function SvgSignalCellularNull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z" + d: "M20 6.83V20H6.83L20 6.83M22 2L2 22h20V2z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalCellularOff.js b/icons/es5/SignalCellularOff.js index 9b5e7f53c5..1236c9e348 100644 --- a/icons/es5/SignalCellularOff.js +++ b/icons/es5/SignalCellularOff.js @@ -7,9 +7,11 @@ function SvgSignalCellularOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z" + d: "M21 1l-8.31 8.31 8.31 8.3zM4.91 4.36L3.5 5.77l6.36 6.37L1 21h17.73l2 2 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi0Bar.js b/icons/es5/SignalWifi0Bar.js index b1611827b2..097af86826 100644 --- a/icons/es5/SignalWifi0Bar.js +++ b/icons/es5/SignalWifi0Bar.js @@ -7,9 +7,11 @@ function SvgSignalWifi0Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi1Bar.js b/icons/es5/SignalWifi1Bar.js index 969a90426c..792e3c03b4 100644 --- a/icons/es5/SignalWifi1Bar.js +++ b/icons/es5/SignalWifi1Bar.js @@ -7,12 +7,15 @@ function SvgSignalWifi1Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z" + d: "M6.67 14.86L12 21.49v.01l.01-.01 5.33-6.63C17.06 14.65 15.03 13 12 13s-5.06 1.65-5.33 1.86z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi1BarLock.js b/icons/es5/SignalWifi1BarLock.js index 711a3e8146..ea2d0de6a5 100644 --- a/icons/es5/SignalWifi1BarLock.js +++ b/icons/es5/SignalWifi1BarLock.js @@ -7,14 +7,18 @@ function SvgSignalWifi1BarLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 16v-1.34c0-1.47-1.2-2.75-2.66-2.66A2.484 2.484 0 0018 14.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + d: "M23 16v-1.34c0-1.47-1.2-2.75-2.66-2.66A2.484 2.484 0 0018 14.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5z" + d: "M15.5 14.5c0-.23.04-.46.07-.68-.92-.43-2.14-.82-3.57-.82-3 0-5.1 1.7-5.3 1.9l5.3 6.6 3.5-4.36V14.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi2Bar.js b/icons/es5/SignalWifi2Bar.js index 43cf86170b..9eda46d1a6 100644 --- a/icons/es5/SignalWifi2Bar.js +++ b/icons/es5/SignalWifi2Bar.js @@ -7,12 +7,15 @@ function SvgSignalWifi2Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z" + d: "M4.79 12.52L12 21.5l7.21-8.99C18.85 12.24 16.1 10 12 10s-6.85 2.24-7.21 2.52z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi2BarLock.js b/icons/es5/SignalWifi2BarLock.js index 1449f89f5c..9713f87988 100644 --- a/icons/es5/SignalWifi2BarLock.js +++ b/icons/es5/SignalWifi2BarLock.js @@ -7,14 +7,18 @@ function SvgSignalWifi2BarLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z" + d: "M23 16v-1.5c0-1.4-1.1-2.5-2.5-2.5S18 13.1 18 14.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5z" + d: "M15.5 14.5c0-1.34.51-2.53 1.34-3.42C15.62 10.51 13.98 10 12 10c-4.1 0-6.8 2.2-7.2 2.5l7.2 9 3.5-4.38V14.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi3Bar.js b/icons/es5/SignalWifi3Bar.js index 872965a9ed..e22b1f760f 100644 --- a/icons/es5/SignalWifi3Bar.js +++ b/icons/es5/SignalWifi3Bar.js @@ -7,12 +7,15 @@ function SvgSignalWifi3Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z" + d: "M23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5 23.64 7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z" + d: "M3.53 10.95L12 21.5l8.47-10.55C20.04 10.62 16.81 8 12 8s-8.04 2.62-8.47 2.95z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi3BarLock.js b/icons/es5/SignalWifi3BarLock.js index e3568570bb..fdeb43c9d4 100644 --- a/icons/es5/SignalWifi3BarLock.js +++ b/icons/es5/SignalWifi3BarLock.js @@ -7,12 +7,15 @@ function SvgSignalWifi3BarLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { fillOpacity: 0.3, - d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z" + d: "M15.5 14.5c0-2.8 2.2-5 5-5 .36 0 .71.04 1.05.11L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7L12 21.5l3.5-4.36V14.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M23 16v-1.34c0-1.47-1.2-2.75-2.66-2.66A2.484 2.484 0 0018 14.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5a4.92 4.92 0 013.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z" + d: "M23 16v-1.34c0-1.47-1.2-2.75-2.66-2.66A2.484 2.484 0 0018 14.5V16h-1v6h7v-6h-1zm-1 0h-3v-1.5c0-.8.7-1.5 1.5-1.5s1.5.7 1.5 1.5V16zm-6.5-1.5a4.92 4.92 0 013.27-4.68C17.29 8.98 14.94 8 12 8c-4.81 0-8.04 2.62-8.47 2.95L12 21.5l3.5-4.36V14.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi4Bar.js b/icons/es5/SignalWifi4Bar.js index 4eab0fbd8c..242c56d9a1 100644 --- a/icons/es5/SignalWifi4Bar.js +++ b/icons/es5/SignalWifi4Bar.js @@ -7,9 +7,11 @@ function SvgSignalWifi4Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z" + d: "M12.01 21.49L23.64 7c-.45-.34-4.93-4-11.64-4C5.28 3 .81 6.66.36 7l11.63 14.49.01.01.01-.01z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifi4BarLock.js b/icons/es5/SignalWifi4BarLock.js index 046a0185be..93b4099584 100644 --- a/icons/es5/SignalWifi4BarLock.js +++ b/icons/es5/SignalWifi4BarLock.js @@ -7,11 +7,14 @@ function SvgSignalWifi4BarLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.98 11L24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" + d: "M21.98 11L24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 15.11c0-1-.68-1.92-1.66-2.08-.12-.02-.24-.02-.36-.02h-.01c-1.09.02-1.97.9-1.97 1.99v1h-1v5h6v-5h-1v-.89zM21 16h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" + d: "M22 15.11c0-1-.68-1.92-1.66-2.08-.12-.02-.24-.02-.36-.02h-.01c-1.09.02-1.97.9-1.97 1.99v1h-1v5h6v-5h-1v-.89zM21 16h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifiBad.js b/icons/es5/SignalWifiBad.js index 19bab7ee29..df52ea0667 100644 --- a/icons/es5/SignalWifiBad.js +++ b/icons/es5/SignalWifiBad.js @@ -7,9 +7,11 @@ function SvgSignalWifiBad(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" + d: "M24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifiConnectedNoInternet4.js b/icons/es5/SignalWifiConnectedNoInternet4.js index 2345955898..0d039720b0 100644 --- a/icons/es5/SignalWifiConnectedNoInternet4.js +++ b/icons/es5/SignalWifiConnectedNoInternet4.js @@ -7,9 +7,11 @@ function SvgSignalWifiConnectedNoInternet4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z" + d: "M24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98L12 21v-9h8.99L24 8.98zM19.59 14l-2.09 2.09-.3-.3L15.41 14 14 15.41l1.79 1.79.3.3L14 19.59 15.41 21l2.09-2.08L19.59 21 21 19.59l-2.08-2.09L21 15.41 19.59 14z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifiOff.js b/icons/es5/SignalWifiOff.js index a3966a53a7..2cdf03b9b6 100644 --- a/icons/es5/SignalWifiOff.js +++ b/icons/es5/SignalWifiOff.js @@ -7,9 +7,11 @@ function SvgSignalWifiOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z" + d: "M23.64 7c-.45-.34-4.93-4-11.64-4-1.32 0-2.55.14-3.69.38L18.43 13.5 23.64 7zM3.41 1.31L2 2.72l2.05 2.05C1.91 5.76.59 6.82.36 7L12 21.5l3.91-4.87 3.32 3.32 1.41-1.41L3.41 1.31z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifiStatusbar4Bar.js b/icons/es5/SignalWifiStatusbar4Bar.js index 6497ce2942..d22f09f57a 100644 --- a/icons/es5/SignalWifiStatusbar4Bar.js +++ b/icons/es5/SignalWifiStatusbar4Bar.js @@ -7,9 +7,11 @@ function SvgSignalWifiStatusbar4Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4z" + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifiStatusbarConnectedNoInternet4.js b/icons/es5/SignalWifiStatusbarConnectedNoInternet4.js index 5c735bed68..1a6643acfb 100644 --- a/icons/es5/SignalWifiStatusbarConnectedNoInternet4.js +++ b/icons/es5/SignalWifiStatusbarConnectedNoInternet4.js @@ -7,11 +7,14 @@ function SvgSignalWifiStatusbarConnectedNoInternet4(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 18h2v2h-2zm0-8h2v6h-2z" + d: "M19 18h2v2h-2zm0-8h2v6h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4z" + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21l5-5.01V8h5.92C19.97 5.51 16.16 4 12 4z", + fill: "currentColor" })); } diff --git a/icons/es5/SignalWifiStatusbarNull.js b/icons/es5/SignalWifiStatusbarNull.js index c54efb7d1c..cf2b9e23e6 100644 --- a/icons/es5/SignalWifiStatusbarNull.js +++ b/icons/es5/SignalWifiStatusbarNull.js @@ -7,9 +7,11 @@ function SvgSignalWifiStatusbarNull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z" + d: "M12 4C7.31 4 3.07 5.9 0 8.98L12 21 24 8.98A16.88 16.88 0 0012 4zM2.92 9.07C5.51 7.08 8.67 6 12 6s6.49 1.08 9.08 3.07L12 18.17l-9.08-9.1z", + fill: "currentColor" })); } diff --git a/icons/es5/Signpost.js b/icons/es5/Signpost.js index a8396f6049..d82d249c75 100644 --- a/icons/es5/Signpost.js +++ b/icons/es5/Signpost.js @@ -7,9 +7,11 @@ function SvgSignpost(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-.55 0-1 .45-1 1v1H5.5C4.67 4 4 4.67 4 5.5v3c0 .83.67 1.5 1.5 1.5H11v2H6.62c-.4 0-.78.16-1.06.44l-1.5 1.5a1.49 1.49 0 000 2.12l1.5 1.5c.28.28.66.44 1.06.44H11v3c0 .55.45 1 1 1s1-.45 1-1v-3h5.5c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5H13v-2h4.38c.4 0 .78-.16 1.06-.44l1.5-1.5c.59-.59.59-1.54 0-2.12l-1.5-1.5c-.28-.28-.66-.44-1.06-.44H13V3c0-.55-.45-1-1-1z" + d: "M12 2c-.55 0-1 .45-1 1v1H5.5C4.67 4 4 4.67 4 5.5v3c0 .83.67 1.5 1.5 1.5H11v2H6.62c-.4 0-.78.16-1.06.44l-1.5 1.5a1.49 1.49 0 000 2.12l1.5 1.5c.28.28.66.44 1.06.44H11v3c0 .55.45 1 1 1s1-.45 1-1v-3h5.5c.83 0 1.5-.67 1.5-1.5v-3c0-.83-.67-1.5-1.5-1.5H13v-2h4.38c.4 0 .78-.16 1.06-.44l1.5-1.5c.59-.59.59-1.54 0-2.12l-1.5-1.5c-.28-.28-.66-.44-1.06-.44H13V3c0-.55-.45-1-1-1z", + fill: "currentColor" })); } diff --git a/icons/es5/SimCard.js b/icons/es5/SimCard.js index c9dd3d405c..2c96f1f0d8 100644 --- a/icons/es5/SimCard.js +++ b/icons/es5/SimCard.js @@ -7,9 +7,11 @@ function SvgSimCard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.99 2H10L4 8v14h16l-.01-20zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z" + d: "M19.99 2H10L4 8v14h16l-.01-20zM9 19H7v-2h2v2zm8 0h-2v-2h2v2zm-8-4H7v-4h2v4zm4 4h-2v-4h2v4zm0-6h-2v-2h2v2zm4 2h-2v-4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/SimCardAlert.js b/icons/es5/SimCardAlert.js index 5a0437f0f9..6e3f7a2f34 100644 --- a/icons/es5/SimCardAlert.js +++ b/icons/es5/SimCardAlert.js @@ -7,9 +7,11 @@ function SvgSimCardAlert(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z" + d: "M20 2H10L4 8v14h16V2zm-7 15h-2v-2h2v2zm0-4h-2V8h2v5z", + fill: "currentColor" })); } diff --git a/icons/es5/SimCardDownload.js b/icons/es5/SimCardDownload.js index 27fe4af3ac..5142dc60f8 100644 --- a/icons/es5/SimCardDownload.js +++ b/icons/es5/SimCardDownload.js @@ -7,9 +7,11 @@ function SvgSimCardDownload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 2H10L4 8v14h16V2zm-8 15l-4-4h3V9.02L13 9v4h3l-4 4z" + d: "M20 2H10L4 8v14h16V2zm-8 15l-4-4h3V9.02L13 9v4h3l-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/SingleBed.js b/icons/es5/SingleBed.js index 79a50c5d1d..4040b80ef0 100644 --- a/icons/es5/SingleBed.js +++ b/icons/es5/SingleBed.js @@ -7,9 +7,11 @@ function SvgSingleBed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 10V5H6v5H4v7h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-7h-2zm-7 0H8V7h3v3zm5 0h-3V7h3v3z" + d: "M18 10V5H6v5H4v7h1.33L6 19h1l.67-2h8.67l.66 2h1l.67-2H20v-7h-2zm-7 0H8V7h3v3zm5 0h-3V7h3v3z", + fill: "currentColor" })); } diff --git a/icons/es5/Sip.js b/icons/es5/Sip.js index e2ed74f7ea..0574d66255 100644 --- a/icons/es5/Sip.js +++ b/icons/es5/Sip.js @@ -7,11 +7,14 @@ function SvgSip(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 10.5h2v1h-2z" + d: "M15.5 10.5h2v1h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-10 6.5H6.5v.75H10V15H5v-1.5h3.5v-.75H5V9h5v1.5zm3 4.5h-2V9h2v6zm6-6v4h-3.5v2H14V9h5z" + d: "M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm-10 6.5H6.5v.75H10V15H5v-1.5h3.5v-.75H5V9h5v1.5zm3 4.5h-2V9h2v6zm6-6v4h-3.5v2H14V9h5z", + fill: "currentColor" })); } diff --git a/icons/es5/Skateboarding.js b/icons/es5/Skateboarding.js index db7f8cff53..7230da79c6 100644 --- a/icons/es5/Skateboarding.js +++ b/icons/es5/Skateboarding.js @@ -7,9 +7,11 @@ function SvgSkateboarding(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5a.72.72 0 00-.59.3c-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89A6.507 6.507 0 0019 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.89 4.63 1.62 5.03-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12a.749.749 0 10-1.2.9c.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z" + d: "M13 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM7.25 22.5c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm8.5 0c-.41 0-.75.34-.75.75s.34.75.75.75.75-.34.75-.75-.34-.75-.75-.75zm3.49-3.5a.72.72 0 00-.59.3c-.55.73-1.42 1.2-2.4 1.2H16v-6l-4.32-2.67 1.8-2.89A6.507 6.507 0 0019 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C14.16 5.64 13.61 5 12.7 5H7L4.5 9l1.7 1.06L8.1 7h2.35l-2.89 4.63 1.62 5.03-3.12 3.76c-.7-.16-1.3-.57-1.71-1.12a.749.749 0 10-1.2.9c.82 1.1 2.13 1.8 3.6 1.8h9.5c1.47 0 2.78-.7 3.6-1.8.1-.14.15-.3.15-.45 0-.39-.32-.75-.76-.75zM14 20.5H8.6l2.9-3.5-1-3.3 3.5 2.2v4.6z", + fill: "currentColor" })); } diff --git a/icons/es5/SkipNext.js b/icons/es5/SkipNext.js index 9b12e249c8..2b2f4a53fe 100644 --- a/icons/es5/SkipNext.js +++ b/icons/es5/SkipNext.js @@ -7,9 +7,11 @@ function SvgSkipNext(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z" + d: "M6 18l8.5-6L6 6v12zM16 6v12h2V6h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/SkipPrevious.js b/icons/es5/SkipPrevious.js index cc3e9b9862..1af98608a9 100644 --- a/icons/es5/SkipPrevious.js +++ b/icons/es5/SkipPrevious.js @@ -7,9 +7,11 @@ function SvgSkipPrevious(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 6h2v12H6V6zm3.5 6l8.5 6V6l-8.5 6z" + d: "M6 6h2v12H6V6zm3.5 6l8.5 6V6l-8.5 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Sledding.js b/icons/es5/Sledding.js index 30190c7d3f..bf6bc7cc30 100644 --- a/icons/es5/Sledding.js +++ b/icons/es5/Sledding.js @@ -7,9 +7,11 @@ function SvgSledding(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm3.22 13.4l1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.1.68 3.25 2.94 2.57 5.04a4.003 4.003 0 01-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24L14.5 12l2.72 5.9zM6 14.25l.48.16.75-2.31.69-2.1-1.92.82v3.43zm7.94 4.16l-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36l-1.18-2.56-3.97.89 5.15 1.67z" + d: "M14 4.5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zm3.22 13.4l1.93.63-.46 1.43-3.32-1.08-.47 1.42 3.32 1.08c1.31.43 2.72-.29 3.15-1.61.43-1.31-.29-2.72-1.61-3.15l.46-1.43c2.1.68 3.25 2.94 2.57 5.04a4.003 4.003 0 01-5.04 2.57L1 17.36l.46-1.43 3.93 1.28.46-1.43-3.92-1.28.46-1.43L4 13.6V9.5l5.47-2.35c.39-.17.84-.21 1.28-.07.95.31 1.46 1.32 1.16 2.27l-1.05 3.24L14.5 12l2.72 5.9zM6 14.25l.48.16.75-2.31.69-2.1-1.92.82v3.43zm7.94 4.16l-6.66-2.16-.46 1.43 6.66 2.16.46-1.43zm.69-1.36l-1.18-2.56-3.97.89 5.15 1.67z", + fill: "currentColor" })); } diff --git a/icons/es5/Slideshow.js b/icons/es5/Slideshow.js index bb9c19dfef..1175c20127 100644 --- a/icons/es5/Slideshow.js +++ b/icons/es5/Slideshow.js @@ -7,9 +7,11 @@ function SvgSlideshow(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 8v8l5-4-5-4zm11-5H3v18h18V3zm-2 16H5V5h14v14z" + d: "M10 8v8l5-4-5-4zm11-5H3v18h18V3zm-2 16H5V5h14v14z", + fill: "currentColor" })); } diff --git a/icons/es5/SlowMotionVideo.js b/icons/es5/SlowMotionVideo.js index 1f09d85ffd..5af64130d8 100644 --- a/icons/es5/SlowMotionVideo.js +++ b/icons/es5/SlowMotionVideo.js @@ -7,9 +7,11 @@ function SvgSlowMotionVideo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.05 9.79L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69A7.941 7.941 0 0111 4.07zM5.69 7.1L4.26 5.68A9.949 9.949 0 002.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43A7.868 7.868 0 014.07 13zm1.61 6.74A9.981 9.981 0 0011 21.95v-2.02a7.941 7.941 0 01-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z" + d: "M13.05 9.79L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zm0 0L10 7.5v9l3.05-2.29L16 12l-2.95-2.21zM11 4.07V2.05c-2.01.2-3.84 1-5.32 2.21L7.1 5.69A7.941 7.941 0 0111 4.07zM5.69 7.1L4.26 5.68A9.949 9.949 0 002.05 11h2.02c.18-1.46.76-2.79 1.62-3.9zM4.07 13H2.05c.2 2.01 1 3.84 2.21 5.32l1.43-1.43A7.868 7.868 0 014.07 13zm1.61 6.74A9.981 9.981 0 0011 21.95v-2.02a7.941 7.941 0 01-3.9-1.62l-1.42 1.43zM22 12c0 5.16-3.92 9.42-8.95 9.95v-2.02C16.97 19.41 20 16.05 20 12s-3.03-7.41-6.95-7.93V2.05C18.08 2.58 22 6.84 22 12z", + fill: "currentColor" })); } diff --git a/icons/es5/SmartButton.js b/icons/es5/SmartButton.js index 1206db16db..85758f17a6 100644 --- a/icons/es5/SmartButton.js +++ b/icons/es5/SmartButton.js @@ -7,9 +7,11 @@ function SvgSmartButton(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 17h-3v-2h1V9H4v6h6v2H2V7h20v10zm-7.5 2l1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5l.62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z" + d: "M22 17h-3v-2h1V9H4v6h6v2H2V7h20v10zm-7.5 2l1.09-2.41L18 15.5l-2.41-1.09L14.5 12l-1.09 2.41L11 15.5l2.41 1.09L14.5 19zm2.5-5l.62-1.38L19 12l-1.38-.62L17 10l-.62 1.38L15 12l1.38.62L17 14z", + fill: "currentColor" })); } diff --git a/icons/es5/SmartDisplay.js b/icons/es5/SmartDisplay.js index 5117711261..8c758efb48 100644 --- a/icons/es5/SmartDisplay.js +++ b/icons/es5/SmartDisplay.js @@ -7,9 +7,11 @@ function SvgSmartDisplay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM9.5 16.5v-9l7 4.5-7 4.5z" + d: "M22 4H2v16h20V4zM9.5 16.5v-9l7 4.5-7 4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SmartScreen.js b/icons/es5/SmartScreen.js index 9246189ee2..fd180ceda0 100644 --- a/icons/es5/SmartScreen.js +++ b/icons/es5/SmartScreen.js @@ -7,11 +7,14 @@ function SvgSmartScreen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 5v14h22V5H1zm17 12H6V7h12v10z" + d: "M1 5v14h22V5H1zm17 12H6V7h12v10z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12.5 11.25H14v1.5h-1.5zm2.5 0h1.5v1.5H15zm-5 0h1.5v1.5H10zm-2.5 0H9v1.5H7.5z" + d: "M12.5 11.25H14v1.5h-1.5zm2.5 0h1.5v1.5H15zm-5 0h1.5v1.5H10zm-2.5 0H9v1.5H7.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SmartToy.js b/icons/es5/SmartToy.js index 1527f91c1c..0d93349847 100644 --- a/icons/es5/SmartToy.js +++ b/icons/es5/SmartToy.js @@ -7,9 +7,11 @@ function SvgSmartToy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 9V5h-5V2H9v3H4v4H1v6h3v6h16v-6h3V9h-3zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM16 17H8v-2h8v2zm-1-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z" + d: "M20 9V5h-5V2H9v3H4v4H1v6h3v6h16v-6h3V9h-3zM7.5 11.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5S9.83 13 9 13s-1.5-.67-1.5-1.5zM16 17H8v-2h8v2zm-1-4c-.83 0-1.5-.67-1.5-1.5S14.17 10 15 10s1.5.67 1.5 1.5S15.83 13 15 13z", + fill: "currentColor" })); } diff --git a/icons/es5/Smartphone.js b/icons/es5/Smartphone.js index 02fe298599..be32fd0505 100644 --- a/icons/es5/Smartphone.js +++ b/icons/es5/Smartphone.js @@ -7,9 +7,11 @@ function SvgSmartphone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 1v22h14V1H5zm12 18H7V5h10v14z" + d: "M5 1v22h14V1H5zm12 18H7V5h10v14z", + fill: "currentColor" })); } diff --git a/icons/es5/SmokeFree.js b/icons/es5/SmokeFree.js index 6306ae12a7..97faa1d90c 100644 --- a/icons/es5/SmokeFree.js +++ b/icons/es5/SmokeFree.js @@ -7,9 +7,11 @@ function SvgSmokeFree(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.5 13H22v3h-1.5zm-6-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5a3.35 3.35 0 000 6.7zM17 13h-2.34L17 15.34zm1.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM18 13h1.5v3H18zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z" + d: "M20.5 13H22v3h-1.5zm-6-4.35h1.53c1.05 0 1.97.74 1.97 2.05V12h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5a3.35 3.35 0 000 6.7zM17 13h-2.34L17 15.34zm1.85-8.27c.62-.61 1-1.45 1-2.38h-1.5c0 1.02-.83 1.85-1.85 1.85v1.5c2.24 0 4 1.83 4 4.07V12H22V9.76c0-2.22-1.28-4.14-3.15-5.03zM18 13h1.5v3H18zM3.41 4.59L2 6l7 7H2v3h10l7 7 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/SmokingRooms.js b/icons/es5/SmokingRooms.js index 6f5b56fbe0..3bd928107c 100644 --- a/icons/es5/SmokingRooms.js +++ b/icons/es5/SmokingRooms.js @@ -7,9 +7,11 @@ function SvgSmokingRooms(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5a3.35 3.35 0 000 6.7h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z" + d: "M2 16h15v3H2v-3zm18.5 0H22v3h-1.5v-3zM18 16h1.5v3H18v-3zm.85-8.27c.62-.61 1-1.45 1-2.38C19.85 3.5 18.35 2 16.5 2v1.5c1.02 0 1.85.83 1.85 1.85S17.52 7.2 16.5 7.2v1.5c2.24 0 4 1.83 4 4.07V15H22v-2.24c0-2.22-1.28-4.14-3.15-5.03zm-2.82 2.47H14.5c-1.02 0-1.85-.98-1.85-2s.83-1.75 1.85-1.75v-1.5a3.35 3.35 0 000 6.7h1.53c1.05 0 1.97.74 1.97 2.05V15h1.5v-1.64c0-1.81-1.6-3.16-3.47-3.16z", + fill: "currentColor" })); } diff --git a/icons/es5/Sms.js b/icons/es5/Sms.js index 67da26d1cf..e55977fc5c 100644 --- a/icons/es5/Sms.js +++ b/icons/es5/Sms.js @@ -7,9 +7,11 @@ function SvgSms(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" + d: "M22 2H2v20l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SmsFailed.js b/icons/es5/SmsFailed.js index 7e60843564..039bb384c5 100644 --- a/icons/es5/SmsFailed.js +++ b/icons/es5/SmsFailed.js @@ -7,9 +7,11 @@ function SvgSmsFailed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z" + d: "M22 2H2v20l4-4h16V2zm-9 12h-2v-2h2v2zm0-4h-2V6h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Snapchat.js b/icons/es5/Snapchat.js index b7c7c3648a..701581d37f 100644 --- a/icons/es5/Snapchat.js +++ b/icons/es5/Snapchat.js @@ -7,9 +7,11 @@ function SvgSnapchat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.07 16.17c-.34-.93-2.4-1.06-3.36-3.19-.06-.16-.05-.27.11-.37.74-.49 1.26-.76 1.56-1.33.22-.41.25-.89.08-1.33-.23-.61-.81-1-1.52-1-.25 0-.45.05-.55.07.01-.42 0-.86-.04-1.3-.13-1.53-.67-2.34-1.23-2.98C15.79 4.37 14.48 3 12 3 9.52 3 8.21 4.37 7.88 4.74c-.56.64-1.1 1.45-1.23 2.98-.03.44-.04.88-.04 1.3-.11-.03-.3-.07-.55-.07-.7 0-1.29.38-1.52 1-.17.43-.14.92.08 1.33.31.58.82.84 1.56 1.33.16.11.17.21.11.37-.97 2.13-3.02 2.26-3.36 3.19-.15.4-.05.85.32 1.23.57.59 1.63.77 1.84.91.17.14.15.56.63.9.38.26.8.28 1.25.29 1.31.05 1.6.27 2.1.58.63.39 1.49.92 2.93.92 1.44 0 2.3-.53 2.93-.92.5-.31.79-.53 2.1-.58.45-.02.87-.03 1.25-.29.49-.34.47-.76.63-.9.21-.14 1.27-.32 1.84-.91.37-.38.47-.83.32-1.23zm-1.03.53c-.37.39-1.26.5-1.73.82-.48.42-.4.74-.59.87-.13.09-.36.1-.72.12-1.4.05-1.91.31-2.52.69-1.43.88-2.23.8-2.48.8s-1.05.08-2.47-.81c-.61-.38-1.11-.63-2.52-.69-.36-.01-.59-.03-.72-.12-.19-.13-.12-.45-.59-.87-.48-.32-1.36-.43-1.73-.82-.06-.06-.11-.14-.12-.15.07-.1.41-.3.66-.44.78-.46 1.98-1.14 2.71-2.75.26-.7.03-1.26-.48-1.59-1.15-.73-1.13-.76-1.24-.96a.62.62 0 01-.03-.5c.12-.32.45-.35.58-.35.19 0 .18.01 1.57.37-.02-1.4-.04-1.85.02-2.51.11-1.31.57-1.93.98-2.4C8.9 5.11 9.99 3.98 12 4c2.01-.02 3.1 1.11 3.37 1.41.41.47.87 1.09.98 2.4.06.66.04 1.11.02 2.51 1.4-.36 1.38-.37 1.57-.37.14 0 .46.03.58.35.07.17.06.35-.03.5-.11.2-.09.22-1.23.97-.51.33-.74.89-.48 1.59.73 1.61 1.93 2.29 2.71 2.75.25.15.59.34.66.44 0 .01-.06.09-.11.15z" + d: "M21.07 16.17c-.34-.93-2.4-1.06-3.36-3.19-.06-.16-.05-.27.11-.37.74-.49 1.26-.76 1.56-1.33.22-.41.25-.89.08-1.33-.23-.61-.81-1-1.52-1-.25 0-.45.05-.55.07.01-.42 0-.86-.04-1.3-.13-1.53-.67-2.34-1.23-2.98C15.79 4.37 14.48 3 12 3 9.52 3 8.21 4.37 7.88 4.74c-.56.64-1.1 1.45-1.23 2.98-.03.44-.04.88-.04 1.3-.11-.03-.3-.07-.55-.07-.7 0-1.29.38-1.52 1-.17.43-.14.92.08 1.33.31.58.82.84 1.56 1.33.16.11.17.21.11.37-.97 2.13-3.02 2.26-3.36 3.19-.15.4-.05.85.32 1.23.57.59 1.63.77 1.84.91.17.14.15.56.63.9.38.26.8.28 1.25.29 1.31.05 1.6.27 2.1.58.63.39 1.49.92 2.93.92 1.44 0 2.3-.53 2.93-.92.5-.31.79-.53 2.1-.58.45-.02.87-.03 1.25-.29.49-.34.47-.76.63-.9.21-.14 1.27-.32 1.84-.91.37-.38.47-.83.32-1.23zm-1.03.53c-.37.39-1.26.5-1.73.82-.48.42-.4.74-.59.87-.13.09-.36.1-.72.12-1.4.05-1.91.31-2.52.69-1.43.88-2.23.8-2.48.8s-1.05.08-2.47-.81c-.61-.38-1.11-.63-2.52-.69-.36-.01-.59-.03-.72-.12-.19-.13-.12-.45-.59-.87-.48-.32-1.36-.43-1.73-.82-.06-.06-.11-.14-.12-.15.07-.1.41-.3.66-.44.78-.46 1.98-1.14 2.71-2.75.26-.7.03-1.26-.48-1.59-1.15-.73-1.13-.76-1.24-.96a.62.62 0 01-.03-.5c.12-.32.45-.35.58-.35.19 0 .18.01 1.57.37-.02-1.4-.04-1.85.02-2.51.11-1.31.57-1.93.98-2.4C8.9 5.11 9.99 3.98 12 4c2.01-.02 3.1 1.11 3.37 1.41.41.47.87 1.09.98 2.4.06.66.04 1.11.02 2.51 1.4-.36 1.38-.37 1.57-.37.14 0 .46.03.58.35.07.17.06.35-.03.5-.11.2-.09.22-1.23.97-.51.33-.74.89-.48 1.59.73 1.61 1.93 2.29 2.71 2.75.25.15.59.34.66.44 0 .01-.06.09-.11.15z", + fill: "currentColor" })); } diff --git a/icons/es5/SnippetFolder.js b/icons/es5/SnippetFolder.js index cd0b628cc1..88310851c8 100644 --- a/icons/es5/SnippetFolder.js +++ b/icons/es5/SnippetFolder.js @@ -7,9 +7,11 @@ function SvgSnippetFolder(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6l-2-2H2v16h20V6H12zm7 11h-6V9h3.5l2.5 2.5V17zm-3.12-6.5l1.62 1.62v3.38h-3v-5h1.38z" + d: "M12 6l-2-2H2v16h20V6H12zm7 11h-6V9h3.5l2.5 2.5V17zm-3.12-6.5l1.62 1.62v3.38h-3v-5h1.38z", + fill: "currentColor" })); } diff --git a/icons/es5/Snooze.js b/icons/es5/Snooze.js index fa143f9f2d..66af9d6006 100644 --- a/icons/es5/Snooze.js +++ b/icons/es5/Snooze.js @@ -7,9 +7,11 @@ function SvgSnooze(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654l1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2a9 9 0 10.001 18.001A9 9 0 0012 4z" + d: "M9 11h3.63L9 15.2V17h6v-2h-3.63L15 10.8V9H9v2zm7.056-7.654l1.282-1.535 4.607 3.85-1.28 1.54zM3.336 7.19l-1.28-1.536L6.662 1.81l1.28 1.536zM12 6c3.86 0 7 3.14 7 7s-3.14 7-7 7-7-3.14-7-7 3.14-7 7-7m0-2a9 9 0 10.001 18.001A9 9 0 0012 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Snowboarding.js b/icons/es5/Snowboarding.js index 4dd195482f..85604b7daa 100644 --- a/icons/es5/Snowboarding.js +++ b/icons/es5/Snowboarding.js @@ -7,9 +7,11 @@ function SvgSnowboarding(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09a.748.748 0 00-.64.17c-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89A6.507 6.507 0 0020 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35L8.5 11.7l1 4.3L6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67a.744.744 0 00-.51-.42c-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z" + d: "M14 3c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm7.4 17.09a.748.748 0 00-.64.17c-.69.6-1.64.88-2.6.67L17 20.69l-1-6.19-3.32-2.67 1.8-2.89A6.507 6.507 0 0020 12v-2c-1.85 0-3.44-1.12-4.13-2.72l-.52-1.21C15.16 5.64 14.61 5 13.7 5H8L5.5 9l1.7 1.06L9.1 7h2.35L8.5 11.7l1 4.3L6 18.35l-.47-.1c-.96-.2-1.71-.85-2.1-1.67a.744.744 0 00-.51-.42c-.43-.09-.82.2-.9.58-.04.14-.02.31.05.46.58 1.24 1.71 2.2 3.15 2.51l12.63 2.69c1.44.31 2.86-.11 3.9-1.01.13-.11.21-.26.24-.41.07-.38-.16-.8-.59-.89zM8.73 18.93l3.02-2.03-.44-3.32 2.84 2.02.75 4.64-6.17-1.31z", + fill: "currentColor" })); } diff --git a/icons/es5/Snowmobile.js b/icons/es5/Snowmobile.js index a8ee4bc59e..80cb48305b 100644 --- a/icons/es5/Snowmobile.js +++ b/icons/es5/Snowmobile.js @@ -7,9 +7,11 @@ function SvgSnowmobile(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C21.6 15.18 23 13 23 13l-9-8h-3v2h2.25l1.45 1.3L11 11l-9.5-1L0 13l4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16a2 2 0 01-2 2z" + d: "M22 17c0 .55-.45 1-1 1h-.17l-2.2-2.2C21.6 15.18 23 13 23 13l-9-8h-3v2h2.25l1.45 1.3L11 11l-9.5-1L0 13l4.54 1.36-3.49 1.88C-.77 17.22-.07 20 2 20h6c2.21 0 4-1.79 4-4h4l2 2h-3v2h6c1.66 0 3-1.34 3-3h-2zM8 18H2l5.25-2.83L10 16a2 2 0 01-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Snowshoeing.js b/icons/es5/Snowshoeing.js index 4ffda8a3b9..b16c08bdac 100644 --- a/icons/es5/Snowshoeing.js +++ b/icons/es5/Snowshoeing.js @@ -7,9 +7,11 @@ function SvgSnowshoeing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07a.84.84 0 00-.31-.22 2.97 2.97 0 01-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z" + d: "M12.5 3.5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM6.32 19.03l-1.14-1.47L4 18.5l2.38 3.04c.51.65 1.16 1.15 1.88 1.41.28.1.53.04.72-.11.3-.23.42-.7.12-1.07a.84.84 0 00-.31-.22 2.97 2.97 0 01-1.14-.83l-.08-.1L11 18.2l.89-3.22 2.11 2v4.52h-2V23h3.87c.82 0 1.61-.21 2.26-.61.26-.16.37-.39.37-.64 0-.38-.3-.75-.77-.75-.13 0-.26.04-.37.1-.4.23-.87.37-1.36.4v-6.02l-2.11-2 .6-3C15.79 11.98 17.8 13 20 13v-2c-1.9 0-3.51-1.02-4.31-2.42l-1-1.58c-.4-.6-1-1-1.7-1-.75 0-1.41.34-5.99 2.28V13h2V9.58l1.79-.7L9.2 17l-2.88 2.03z", + fill: "currentColor" })); } diff --git a/icons/es5/Soap.js b/icons/es5/Soap.js index d491210190..c9d074c7e1 100644 --- a/icons/es5/Soap.js +++ b/icons/es5/Soap.js @@ -7,9 +7,11 @@ function SvgSoap(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2-1.5c0 .83-.67 1.5-1.5 1.5S15 3.33 15 2.5 15.67 1 16.5 1s1.5.67 1.5 1.5zM1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5 1 12.68z" + d: "M14.25 6c.41 0 .75.34.75.75s-.34.75-.75.75-.75-.34-.75-.75.34-.75.75-.75m0-1.5C13.01 4.5 12 5.51 12 6.75S13.01 9 14.25 9s2.25-1.01 2.25-2.25-1.01-2.25-2.25-2.25zm5.75 1c.28 0 .5.22.5.5s-.22.5-.5.5-.5-.22-.5-.5.22-.5.5-.5M20 4c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2-1.5c0 .83-.67 1.5-1.5 1.5S15 3.33 15 2.5 15.67 1 16.5 1s1.5.67 1.5 1.5zM1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5 1 12.68z", + fill: "currentColor" })); } diff --git a/icons/es5/SocialDistance.js b/icons/es5/SocialDistance.js index 37525e9cee..8336c2f423 100644 --- a/icons/es5/SocialDistance.js +++ b/icons/es5/SocialDistance.js @@ -7,9 +7,11 @@ function SvgSocialDistance(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58a6.95 6.95 0 00-5.56 0A2.01 2.01 0 002 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58a6.95 6.95 0 00-5.56 0A2.01 2.01 0 0014 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM22 17l-4-4v3H6v-3l-4 4 4 4v-3h12v3l4-4z" + d: "M4 5c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm4.78 3.58a6.95 6.95 0 00-5.56 0A2.01 2.01 0 002 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM18 7c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zm2.78 1.58a6.95 6.95 0 00-5.56 0A2.01 2.01 0 0014 10.43V11h8v-.57c0-.81-.48-1.53-1.22-1.85zM22 17l-4-4v3H6v-3l-4 4 4 4v-3h12v3l4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/SolarPower.js b/icons/es5/SolarPower.js index 2e25b15955..f14006fc57 100644 --- a/icons/es5/SolarPower.js +++ b/icons/es5/SolarPower.js @@ -7,9 +7,11 @@ function SvgSolarPower(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.33 16H11v-3H4zM13 16h7.67L20 13h-7zm8.11 2H13v4h9zM2 22h9v-4H2.89zm9-14h2v3h-2zm4.764-.795l1.415-1.414L19.3 7.912l-1.414 1.414zm-11.059.708L6.826 5.79 8.24 7.206 6.12 9.327zM3 2h3v2H3zm15 0h3v2h-3zm-6 5c2.76 0 5-2.24 5-5H7c0 2.76 2.24 5 5 5z" + d: "M3.33 16H11v-3H4zM13 16h7.67L20 13h-7zm8.11 2H13v4h9zM2 22h9v-4H2.89zm9-14h2v3h-2zm4.764-.795l1.415-1.414L19.3 7.912l-1.414 1.414zm-11.059.708L6.826 5.79 8.24 7.206 6.12 9.327zM3 2h3v2H3zm15 0h3v2h-3zm-6 5c2.76 0 5-2.24 5-5H7c0 2.76 2.24 5 5 5z", + fill: "currentColor" })); } diff --git a/icons/es5/SortByAlpha.js b/icons/es5/SortByAlpha.js index bffe1d4999..92741db53c 100644 --- a/icons/es5/SortByAlpha.js +++ b/icons/es5/SortByAlpha.js @@ -7,9 +7,11 @@ function SvgSortByAlpha(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z" + d: "M14.94 4.66h-4.72l2.36-2.36 2.36 2.36zm-4.69 14.71h4.66l-2.33 2.33-2.33-2.33zM6.1 6.27L1.6 17.73h1.84l.92-2.45h5.11l.92 2.45h1.84L7.74 6.27H6.1zm-1.13 7.37l1.94-5.18 1.94 5.18H4.97zm10.76 2.5h6.12v1.59h-8.53v-1.29l5.92-8.56h-5.88v-1.6h8.3v1.26l-5.93 8.6z", + fill: "currentColor" })); } diff --git a/icons/es5/Sos.js b/icons/es5/Sos.js index eae69b9c58..807a673af9 100644 --- a/icons/es5/Sos.js +++ b/icons/es5/Sos.js @@ -7,9 +7,11 @@ function SvgSos(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 7h-7v10h7V7zm-2 8h-3V9h3v6zM1 15h4v-2H1V7h6v2H3v2h4v6H1v-2zm16 0h4v-2h-4V7h6v2h-4v2h4v6h-6v-2z" + d: "M15.5 7h-7v10h7V7zm-2 8h-3V9h3v6zM1 15h4v-2H1V7h6v2H3v2h4v6H1v-2zm16 0h4v-2h-4V7h6v2h-4v2h4v6h-6v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/SoupKitchen.js b/icons/es5/SoupKitchen.js index d37bd731a6..9f908433de 100644 --- a/icons/es5/SoupKitchen.js +++ b/icons/es5/SoupKitchen.js @@ -7,9 +7,11 @@ function SvgSoupKitchen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.4 7c-.34.55-.4.97-.4 1.38C6 9.15 7 11 7 12c0 .95-.4 1.5-.4 1.5H5.1s.4-.55.4-1.5c0-1-1-2.85-1-3.62 0-.41.06-.83.4-1.38h1.5zm5 0c-.34.55-.4.97-.4 1.38 0 .77 1 2.62 1 3.62 0 .95-.4 1.5-.4 1.5h1.5s.4-.55.4-1.5c0-1-1-2.85-1-3.62 0-.41.06-.83.4-1.38h-1.5zM8.15 7c-.34.55-.4.97-.4 1.38 0 .77 1 2.63 1 3.62 0 .95-.4 1.5-.4 1.5h1.5s.4-.55.4-1.5c0-1-1-2.85-1-3.62 0-.41.06-.83.4-1.38h-1.5zm13.32-.5s.13-1.06.13-1.5c0-1.65-1.35-3-3-3-1.54 0-2.81 1.16-2.98 2.65L14.53 15H2.93c-.02 3.87 3.09 7 6.82 7 3.48 0 6.34-2.73 6.71-6.23L17.61 4.9c.05-.51.47-.9.99-.9.55 0 1 .45 1 1 0 .3-.1 1.25-.1 1.25l1.97.25z" + d: "M6.4 7c-.34.55-.4.97-.4 1.38C6 9.15 7 11 7 12c0 .95-.4 1.5-.4 1.5H5.1s.4-.55.4-1.5c0-1-1-2.85-1-3.62 0-.41.06-.83.4-1.38h1.5zm5 0c-.34.55-.4.97-.4 1.38 0 .77 1 2.62 1 3.62 0 .95-.4 1.5-.4 1.5h1.5s.4-.55.4-1.5c0-1-1-2.85-1-3.62 0-.41.06-.83.4-1.38h-1.5zM8.15 7c-.34.55-.4.97-.4 1.38 0 .77 1 2.63 1 3.62 0 .95-.4 1.5-.4 1.5h1.5s.4-.55.4-1.5c0-1-1-2.85-1-3.62 0-.41.06-.83.4-1.38h-1.5zm13.32-.5s.13-1.06.13-1.5c0-1.65-1.35-3-3-3-1.54 0-2.81 1.16-2.98 2.65L14.53 15H2.93c-.02 3.87 3.09 7 6.82 7 3.48 0 6.34-2.73 6.71-6.23L17.61 4.9c.05-.51.47-.9.99-.9.55 0 1 .45 1 1 0 .3-.1 1.25-.1 1.25l1.97.25z", + fill: "currentColor" })); } diff --git a/icons/es5/Source.js b/icons/es5/Source.js index fb199f6310..a9624c0127 100644 --- a/icons/es5/Source.js +++ b/icons/es5/Source.js @@ -7,9 +7,11 @@ function SvgSource(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6l-2-2H2v16h20V6H12zm2 10H6v-2h8v2zm4-4H6v-2h12v2z" + d: "M12 6l-2-2H2v16h20V6H12zm2 10H6v-2h8v2zm4-4H6v-2h12v2z", + fill: "currentColor" })); } diff --git a/icons/es5/South.js b/icons/es5/South.js index d5107798c9..d5c46865a7 100644 --- a/icons/es5/South.js +++ b/icons/es5/South.js @@ -7,9 +7,11 @@ function SvgSouth(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 15l-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z" + d: "M19 15l-1.41-1.41L13 18.17V2h-2v16.17l-4.59-4.59L5 15l7 7 7-7z", + fill: "currentColor" })); } diff --git a/icons/es5/SouthAmerica.js b/icons/es5/SouthAmerica.js index a9abd08821..6ed5dcb750 100644 --- a/icons/es5/SouthAmerica.js +++ b/icons/es5/SouthAmerica.js @@ -7,9 +7,11 @@ function SvgSouthAmerica(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-1.95.7-3.74 1.87-5.13L9 10v1c0 1.1.9 2 2 2v5.59c0 .27.11.52.29.71l.71.7c-4.42 0-8-3.58-8-8zm9 7.94V18l3.75-5.62c.16-.25.25-.54.25-.83V10.5c0-.55-.45-1-1-1h-1.5l-1.4-1.75c-.38-.47-.95-.75-1.56-.75H8V5.07A7.971 7.971 0 0112 4c4.41 0 8 3.59 8 8 0 4.07-3.06 7.44-7 7.94z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM4 12c0-1.95.7-3.74 1.87-5.13L9 10v1c0 1.1.9 2 2 2v5.59c0 .27.11.52.29.71l.71.7c-4.42 0-8-3.58-8-8zm9 7.94V18l3.75-5.62c.16-.25.25-.54.25-.83V10.5c0-.55-.45-1-1-1h-1.5l-1.4-1.75c-.38-.47-.95-.75-1.56-.75H8V5.07A7.971 7.971 0 0112 4c4.41 0 8 3.59 8 8 0 4.07-3.06 7.44-7 7.94z", + fill: "currentColor" })); } diff --git a/icons/es5/SouthEast.js b/icons/es5/SouthEast.js index afda4fb8c7..251a93d44f 100644 --- a/icons/es5/SouthEast.js +++ b/icons/es5/SouthEast.js @@ -7,9 +7,11 @@ function SvgSouthEast(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z" + d: "M19 9h-2v6.59L5.41 4 4 5.41 15.59 17H9v2h10V9z", + fill: "currentColor" })); } diff --git a/icons/es5/SouthWest.js b/icons/es5/SouthWest.js index 5a57417963..9e2722beeb 100644 --- a/icons/es5/SouthWest.js +++ b/icons/es5/SouthWest.js @@ -7,9 +7,11 @@ function SvgSouthWest(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z" + d: "M15 19v-2H8.41L20 5.41 18.59 4 7 15.59V9H5v10h10z", + fill: "currentColor" })); } diff --git a/icons/es5/Spa.js b/icons/es5/Spa.js index 3c28446db4..c107b292ac 100644 --- a/icons/es5/Spa.js +++ b/icons/es5/Spa.js @@ -7,9 +7,11 @@ function SvgSpa(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.55 12zm10.43-1.61zm-3.49-.76c-.18-2.79-1.31-5.51-3.43-7.63a12.188 12.188 0 00-3.55 7.63c1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z" + d: "M8.55 12zm10.43-1.61zm-3.49-.76c-.18-2.79-1.31-5.51-3.43-7.63a12.188 12.188 0 00-3.55 7.63c1.28.68 2.46 1.56 3.49 2.63 1.03-1.06 2.21-1.94 3.49-2.63zm-6.5 2.65c-.14-.1-.3-.19-.45-.29.15.11.31.19.45.29zm6.42-.25c-.13.09-.27.16-.4.26.13-.1.27-.17.4-.26zM12 15.45C9.85 12.17 6.18 10 2 10c0 5.32 3.36 9.82 8.03 11.49.63.23 1.29.4 1.97.51.68-.12 1.33-.29 1.97-.51C18.64 19.82 22 15.32 22 10c-4.18 0-7.85 2.17-10 5.45z", + fill: "currentColor" })); } diff --git a/icons/es5/SpaceBar.js b/icons/es5/SpaceBar.js index cf604a078c..eddb0b4b04 100644 --- a/icons/es5/SpaceBar.js +++ b/icons/es5/SpaceBar.js @@ -7,9 +7,11 @@ function SvgSpaceBar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 9v4H6V9H4v6h16V9h-2z" + d: "M18 9v4H6V9H4v6h16V9h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/SpaceDashboard.js b/icons/es5/SpaceDashboard.js index 6459baa90e..91bda77f85 100644 --- a/icons/es5/SpaceDashboard.js +++ b/icons/es5/SpaceDashboard.js @@ -7,9 +7,11 @@ function SvgSpaceDashboard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 21H3V3h8v18zm2 0h8v-9h-8v9zm8-11V3h-8v7h8z" + d: "M11 21H3V3h8v18zm2 0h8v-9h-8v9zm8-11V3h-8v7h8z", + fill: "currentColor" })); } diff --git a/icons/es5/SpatialAudio.js b/icons/es5/SpatialAudio.js index 015efb8d05..5f1bc7df7d 100644 --- a/icons/es5/SpatialAudio.js +++ b/icons/es5/SpatialAudio.js @@ -7,15 +7,18 @@ function SvgSpatialAudio(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 10, cy: 9, r: 4 }), /*#__PURE__*/React.createElement("path", { - d: "M16.39 15.56C14.71 14.7 12.53 14 10 14s-4.71.7-6.39 1.56A2.97 2.97 0 002 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM16 1h-2a9 9 0 009 9V8c-3.86 0-7-3.14-7-7z" + d: "M16.39 15.56C14.71 14.7 12.53 14 10 14s-4.71.7-6.39 1.56A2.97 2.97 0 002 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM16 1h-2a9 9 0 009 9V8c-3.86 0-7-3.14-7-7z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20 1h-2c0 2.76 2.24 5 5 5V4c-1.65 0-3-1.35-3-3z" + d: "M20 1h-2c0 2.76 2.24 5 5 5V4c-1.65 0-3-1.35-3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/SpatialAudioOff.js b/icons/es5/SpatialAudioOff.js index 641b42c62e..bfce6a555d 100644 --- a/icons/es5/SpatialAudioOff.js +++ b/icons/es5/SpatialAudioOff.js @@ -7,15 +7,18 @@ function SvgSpatialAudioOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 10, cy: 9, r: 4 }), /*#__PURE__*/React.createElement("path", { - d: "M16.39 15.56C14.71 14.7 12.53 14 10 14s-4.71.7-6.39 1.56A2.97 2.97 0 002 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM20.36 1l-1.41 1.41a7.007 7.007 0 010 9.9l1.41 1.41a8.98 8.98 0 000-12.72z" + d: "M16.39 15.56C14.71 14.7 12.53 14 10 14s-4.71.7-6.39 1.56A2.97 2.97 0 002 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66zM20.36 1l-1.41 1.41a7.007 7.007 0 010 9.9l1.41 1.41a8.98 8.98 0 000-12.72z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M17.54 10.9a5.003 5.003 0 000-7.07l-1.41 1.41a3 3 0 010 4.24l1.41 1.42z" + d: "M17.54 10.9a5.003 5.003 0 000-7.07l-1.41 1.41a3 3 0 010 4.24l1.41 1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/SpatialTracking.js b/icons/es5/SpatialTracking.js index 9452bf97d3..8a6860fbb7 100644 --- a/icons/es5/SpatialTracking.js +++ b/icons/es5/SpatialTracking.js @@ -7,15 +7,18 @@ function SvgSpatialTracking(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 10, cy: 9, r: 4 }), /*#__PURE__*/React.createElement("path", { - d: "M16.39 15.56C14.71 14.7 12.53 14 10 14s-4.71.7-6.39 1.56A2.97 2.97 0 002 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66zm3.66-13.15L18.64 1c-3.51 3.51-3.51 9.21 0 12.73l1.41-1.41c-2.73-2.74-2.73-7.18 0-9.91z" + d: "M16.39 15.56C14.71 14.7 12.53 14 10 14s-4.71.7-6.39 1.56A2.97 2.97 0 002 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66zm3.66-13.15L18.64 1c-3.51 3.51-3.51 9.21 0 12.73l1.41-1.41c-2.73-2.74-2.73-7.18 0-9.91z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22.88 5.24l-1.41-1.41a5.003 5.003 0 000 7.07l1.41-1.41a3.012 3.012 0 010-4.25z" + d: "M22.88 5.24l-1.41-1.41a5.003 5.003 0 000 7.07l1.41-1.41a3.012 3.012 0 010-4.25z", + fill: "currentColor" })); } diff --git a/icons/es5/Speaker.js b/icons/es5/Speaker.js index 1f9b7b5b34..11ebb38502 100644 --- a/icons/es5/Speaker.js +++ b/icons/es5/Speaker.js @@ -7,9 +7,11 @@ function SvgSpeaker(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 2H5v19.99h14V2zm-7 2c1.1 0 2 .9 2 2s-.9 2-2 2a2 2 0 110-4zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z" + d: "M19 2H5v19.99h14V2zm-7 2c1.1 0 2 .9 2 2s-.9 2-2 2a2 2 0 110-4zm0 16c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/SpeakerGroup.js b/icons/es5/SpeakerGroup.js index 2ef49898af..7be64d56f5 100644 --- a/icons/es5/SpeakerGroup.js +++ b/icons/es5/SpeakerGroup.js @@ -7,15 +7,18 @@ function SvgSpeakerGroup(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 1H8v17.99h12V1zm-6 2c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z" + d: "M20 1H8v17.99h12V1zm-6 2c1.1 0 2 .89 2 2s-.9 2-2 2-2-.89-2-2 .9-2 2-2zm0 13.5c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 14, cy: 12.5, r: 2.5 }), /*#__PURE__*/React.createElement("path", { - d: "M6 5H4v18h12v-2H6z" + d: "M6 5H4v18h12v-2H6z", + fill: "currentColor" })); } diff --git a/icons/es5/SpeakerNotes.js b/icons/es5/SpeakerNotes.js index d2a53fa822..fbb70accc1 100644 --- a/icons/es5/SpeakerNotes.js +++ b/icons/es5/SpeakerNotes.js @@ -7,9 +7,11 @@ function SvgSpeakerNotes(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2.01L2 22l4-4h16V2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z" + d: "M22 2H2.01L2 22l4-4h16V2zM8 14H6v-2h2v2zm0-3H6V9h2v2zm0-3H6V6h2v2zm7 6h-5v-2h5v2zm3-3h-8V9h8v2zm0-3h-8V6h8v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SpeakerNotesOff.js b/icons/es5/SpeakerNotesOff.js index 22f953213b..ddcd30a8e8 100644 --- a/icons/es5/SpeakerNotesOff.js +++ b/icons/es5/SpeakerNotesOff.js @@ -7,9 +7,11 @@ function SvgSpeakerNotesOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1.27 1.73L0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 1.27 1.73zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm16-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99H22V2z" + d: "M1.27 1.73L0 3l2.01 2.01L2 22l4-4h9l5.73 5.73L22 22.46 1.27 1.73zM8 14H6v-2h2v2zm-2-3V9l2 2H6zm16-9H4.08L10 7.92V6h8v2h-7.92l1 1H18v2h-4.92l6.99 6.99H22V2z", + fill: "currentColor" })); } diff --git a/icons/es5/SpeakerPhone.js b/icons/es5/SpeakerPhone.js index c4f5c4fe72..ad1b49a599 100644 --- a/icons/es5/SpeakerPhone.js +++ b/icons/es5/SpeakerPhone.js @@ -7,9 +7,11 @@ function SvgSpeakerPhone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41A10.963 10.963 0 0012 1zm3.99 9.01L8 10v11.99h7.99V10.01zM15 20H9v-8h6v8z" + d: "M7 7.07L8.43 8.5c.91-.91 2.18-1.48 3.57-1.48s2.66.57 3.57 1.48L17 7.07C15.72 5.79 13.95 5 12 5s-3.72.79-5 2.07zM12 1C8.98 1 6.24 2.23 4.25 4.21l1.41 1.41C7.28 4 9.53 3 12 3s4.72 1 6.34 2.62l1.41-1.41A10.963 10.963 0 0012 1zm3.99 9.01L8 10v11.99h7.99V10.01zM15 20H9v-8h6v8z", + fill: "currentColor" })); } diff --git a/icons/es5/Spellcheck.js b/icons/es5/Spellcheck.js index f24274fe9e..72c81a30a3 100644 --- a/icons/es5/Spellcheck.js +++ b/icons/es5/Spellcheck.js @@ -7,9 +7,11 @@ function SvgSpellcheck(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z" + d: "M12.45 16h2.09L9.43 3H7.57L2.46 16h2.09l1.12-3h5.64l1.14 3zm-6.02-5L8.5 5.48 10.57 11H6.43zm15.16.59l-8.09 8.09L9.83 16l-1.41 1.41 5.09 5.09L23 13l-1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/Splitscreen.js b/icons/es5/Splitscreen.js index 1c9c5f347e..15f78c2a52 100644 --- a/icons/es5/Splitscreen.js +++ b/icons/es5/Splitscreen.js @@ -7,9 +7,11 @@ function SvgSplitscreen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4v5H6V4h12m2-2H4v9h16V2zm-2 13v5H6v-5h12m2-2H4v9h16v-9z" + d: "M18 4v5H6V4h12m2-2H4v9h16V2zm-2 13v5H6v-5h12m2-2H4v9h16v-9z", + fill: "currentColor" })); } diff --git a/icons/es5/Spoke.js b/icons/es5/Spoke.js index 93410dbefe..9ceb23cb65 100644 --- a/icons/es5/Spoke.js +++ b/icons/es5/Spoke.js @@ -7,9 +7,11 @@ function SvgSpoke(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 7c0 2.21-1.79 4-4 4S8 9.21 8 7s1.79-4 4-4 4 1.79 4 4zm-9 6c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm10 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" + d: "M16 7c0 2.21-1.79 4-4 4S8 9.21 8 7s1.79-4 4-4 4 1.79 4 4zm-9 6c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4zm10 0c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Sports.js b/icons/es5/Sports.js index c823bf2161..a86a9bd77c 100644 --- a/icons/es5/Sports.js +++ b/icons/es5/Sports.js @@ -7,9 +7,11 @@ function SvgSports(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6a2.5 2.5 0 000 5c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78a6.006 6.006 0 006.68 6.27c2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + d: "M11.23 6c-1.66 0-3.22.66-4.36 1.73C6.54 6.73 5.61 6 4.5 6a2.5 2.5 0 000 5c.21 0 .41-.03.61-.08-.05.25-.09.51-.1.78a6.006 6.006 0 006.68 6.27c2.55-.28 4.68-2.26 5.19-4.77.15-.71.15-1.4.06-2.06-.09-.6.38-1.13.99-1.13H22V6H11.23zM4.5 9c-.28 0-.5-.22-.5-.5s.22-.5.5-.5.5.22.5.5-.22.5-.5.5zm6.5 6c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 11, cy: 12, diff --git a/icons/es5/SportsBar.js b/icons/es5/SportsBar.js index 8b395e0bed..771b77ca8e 100644 --- a/icons/es5/SportsBar.js +++ b/icons/es5/SportsBar.js @@ -7,9 +7,11 @@ function SvgSportsBar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 9h-3.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13A4.707 4.707 0 0010 2.02c-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h4V9zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM19 17h-2v-6h2v6z" + d: "M21 9h-3.56c.35-.59.56-1.27.56-2 0-2.21-1.79-4-4-4-.34 0-.66.05-.98.13A4.707 4.707 0 0010 2.02c-1.89 0-3.51 1.11-4.27 2.71C4.15 5.26 3 6.74 3 8.5c0 1.86 1.28 3.41 3 3.86V21h11v-2h4V9zM7 10.5c-1.1 0-2-.9-2-2 0-.85.55-1.6 1.37-1.88l.8-.27.36-.76C8 4.62 8.94 4.02 10 4.02c.79 0 1.39.35 1.74.65l.78.65S13.16 5 13.99 5c1.1 0 2 .9 2 2h-3C9.67 7 9.15 10.5 7 10.5zM19 17h-2v-6h2v6z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsBaseball.js b/icons/es5/SportsBaseball.js index eb5813cb54..b8f23a85b8 100644 --- a/icons/es5/SportsBaseball.js +++ b/icons/es5/SportsBaseball.js @@ -7,11 +7,14 @@ function SvgSportsBaseball(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.81 6.28C2.67 7.9 2 9.87 2 12s.67 4.1 1.81 5.72C6.23 16.95 8 14.68 8 12S6.23 7.05 3.81 6.28zm16.38 0C17.77 7.05 16 9.32 16 12s1.77 4.95 4.19 5.72C21.33 16.1 22 14.13 22 12s-.67-4.1-1.81-5.72z" + d: "M3.81 6.28C2.67 7.9 2 9.87 2 12s.67 4.1 1.81 5.72C6.23 16.95 8 14.68 8 12S6.23 7.05 3.81 6.28zm16.38 0C17.77 7.05 16 9.32 16 12s1.77 4.95 4.19 5.72C21.33 16.1 22 14.13 22 12s-.67-4.1-1.81-5.72z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M14 12c0-3.28 1.97-6.09 4.79-7.33C17.01 3.02 14.63 2 12 2S6.99 3.02 5.21 4.67C8.03 5.91 10 8.72 10 12s-1.97 6.09-4.79 7.33C6.99 20.98 9.37 22 12 22s5.01-1.02 6.79-2.67A8.002 8.002 0 0114 12z" + d: "M14 12c0-3.28 1.97-6.09 4.79-7.33C17.01 3.02 14.63 2 12 2S6.99 3.02 5.21 4.67C8.03 5.91 10 8.72 10 12s-1.97 6.09-4.79 7.33C6.99 20.98 9.37 22 12 22s5.01-1.02 6.79-2.67A8.002 8.002 0 0114 12z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsBasketball.js b/icons/es5/SportsBasketball.js index 62ddd0ec02..177a89cd24 100644 --- a/icons/es5/SportsBasketball.js +++ b/icons/es5/SportsBasketball.js @@ -7,9 +7,11 @@ function SvgSportsBasketball(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.09 11h4.86a9.951 9.951 0 00-1.54-4.4 5.987 5.987 0 00-3.32 4.4zM6.91 11a5.987 5.987 0 00-3.32-4.4A9.951 9.951 0 002.05 11h4.86zm8.16 0a7.994 7.994 0 014.06-6A9.969 9.969 0 0013 2.05V11h2.07zm-6.14 0H11V2.05A9.943 9.943 0 004.87 5a7.994 7.994 0 014.06 6zm6.14 2H13v8.95A9.943 9.943 0 0019.13 19a7.994 7.994 0 01-4.06-6zM3.59 17.4A6.029 6.029 0 006.91 13H2.05c.16 1.61.71 3.11 1.54 4.4zm13.5-4.4a5.987 5.987 0 003.32 4.4 9.951 9.951 0 001.54-4.4h-4.86zm-8.16 0a7.994 7.994 0 01-4.06 6A9.969 9.969 0 0011 21.95V13H8.93z" + d: "M17.09 11h4.86a9.951 9.951 0 00-1.54-4.4 5.987 5.987 0 00-3.32 4.4zM6.91 11a5.987 5.987 0 00-3.32-4.4A9.951 9.951 0 002.05 11h4.86zm8.16 0a7.994 7.994 0 014.06-6A9.969 9.969 0 0013 2.05V11h2.07zm-6.14 0H11V2.05A9.943 9.943 0 004.87 5a7.994 7.994 0 014.06 6zm6.14 2H13v8.95A9.943 9.943 0 0019.13 19a7.994 7.994 0 01-4.06-6zM3.59 17.4A6.029 6.029 0 006.91 13H2.05c.16 1.61.71 3.11 1.54 4.4zm13.5-4.4a5.987 5.987 0 003.32 4.4 9.951 9.951 0 001.54-4.4h-4.86zm-8.16 0a7.994 7.994 0 01-4.06 6A9.969 9.969 0 0011 21.95V13H8.93z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsCricket.js b/icons/es5/SportsCricket.js index a7191dcab4..5ee555d166 100644 --- a/icons/es5/SportsCricket.js +++ b/icons/es5/SportsCricket.js @@ -7,9 +7,11 @@ function SvgSportsCricket(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.05 12.81L6.56 4.32a.996.996 0 00-1.41 0L2.32 7.15a.996.996 0 000 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83a.996.996 0 000-1.41zm-.709 4.946l1.414-1.414 4.243 4.243-1.414 1.414z" + d: "M15.05 12.81L6.56 4.32a.996.996 0 00-1.41 0L2.32 7.15a.996.996 0 000 1.41l8.49 8.49c.39.39 1.02.39 1.41 0l2.83-2.83a.996.996 0 000-1.41zm-.709 4.946l1.414-1.414 4.243 4.243-1.414 1.414z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 18.5, cy: 5.5, diff --git a/icons/es5/SportsEsports.js b/icons/es5/SportsEsports.js index 6d291b90fe..0f08612741 100644 --- a/icons/es5/SportsEsports.js +++ b/icons/es5/SportsEsports.js @@ -7,9 +7,11 @@ function SvgSportsEsports(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 5H4L2 19h4l3-3h6l3 3h4L20 5zm-9 6H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M20 5H4L2 19h4l3-3h6l3 3h4L20 5zm-9 6H9v2H8v-2H6v-1h2V8h1v2h2v1zm4-1c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm2 3c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsFootball.js b/icons/es5/SportsFootball.js index 397bfd8e99..62357be4a4 100644 --- a/icons/es5/SportsFootball.js +++ b/icons/es5/SportsFootball.js @@ -7,9 +7,11 @@ function SvgSportsFootball(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zM9.9 15.5l-1.4-1.4 5.6-5.6 1.4 1.4-5.6 5.6zm11.08-7.12c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z" + d: "M3.02 15.62c-.08 2.42.32 4.34.67 4.69s2.28.76 4.69.67l-5.36-5.36zM13.08 3.28c-2.33.42-4.79 1.34-6.62 3.18s-2.76 4.29-3.18 6.62l7.63 7.63c2.34-.41 4.79-1.34 6.62-3.18s2.76-4.29 3.18-6.62l-7.63-7.63zM9.9 15.5l-1.4-1.4 5.6-5.6 1.4 1.4-5.6 5.6zm11.08-7.12c.08-2.42-.32-4.34-.67-4.69s-2.28-.76-4.69-.67l5.36 5.36z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsGolf.js b/icons/es5/SportsGolf.js index 578efc2b6f..a5c3fa2635 100644 --- a/icons/es5/SportsGolf.js +++ b/icons/es5/SportsGolf.js @@ -7,9 +7,11 @@ function SvgSportsGolf(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z" + d: "M12 16c3.87 0 7-3.13 7-7s-3.13-7-7-7-7 3.13-7 7 3.13 7 7 7zm0-12c2.76 0 5 2.24 5 5s-2.24 5-5 5-5-2.24-5-5 2.24-5 5-5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 10, cy: 8, @@ -23,7 +25,8 @@ function SvgSportsGolf(props) { cy: 6, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z" + d: "M7 19h2c1.1 0 2 .9 2 2v1h2v-1c0-1.1.9-2 2-2h2v-2H7v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsGymnastics.js b/icons/es5/SportsGymnastics.js index 2f9923fa8e..d29e9fbf29 100644 --- a/icons/es5/SportsGymnastics.js +++ b/icons/es5/SportsGymnastics.js @@ -7,9 +7,11 @@ function SvgSportsGymnastics(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM1 9h6l7-5 1.31 1.52-4.17 2.98H14L21.8 4 23 5.4 14.5 12 14 22h-2l-.5-10L8 11H1V9z" + d: "M4 6c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zM1 9h6l7-5 1.31 1.52-4.17 2.98H14L21.8 4 23 5.4 14.5 12 14 22h-2l-.5-10L8 11H1V9z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsHandball.js b/icons/es5/SportsHandball.js index d6f82ccac4..295fb3b5b7 100644 --- a/icons/es5/SportsHandball.js +++ b/icons/es5/SportsHandball.js @@ -7,11 +7,14 @@ function SvgSportsHandball(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z" + d: "M14.27 6c-.55.95-.22 2.18.73 2.73.95.55 2.18.22 2.73-.73.55-.95.22-2.18-.73-2.73-.95-.55-2.18-.22-2.73.73z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15.84 10.41l-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89a5.002 5.002 0 01.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08zM12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05a1.501 1.501 0 00-1.5 2.6z" + d: "M15.84 10.41l-2.6-1.5c-2.38-1.38-3.2-4.44-1.82-6.82l-1.73-1C8.1 3.83 8.6 7.21 10.66 9.4l-5.15 8.92 1.73 1 1.5-2.6 1.73 1-3 5.2 1.73 1 6.29-10.89a5.002 5.002 0 01.31 5.46l1.73 1c1.6-2.75 1.28-6.58-1.69-9.08zM12.75 3.8c.72.41 1.63.17 2.05-.55.41-.72.17-1.63-.55-2.05a1.501 1.501 0 00-1.5 2.6z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsHockey.js b/icons/es5/SportsHockey.js index aba2c880e6..fc1028f6fd 100644 --- a/icons/es5/SportsHockey.js +++ b/icons/es5/SportsHockey.js @@ -7,9 +7,11 @@ function SvgSportsHockey(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29A.997.997 0 0021 16h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z" + d: "M2 17v3h2v-4H3c-.55 0-1 .45-1 1zm7-1H5v4l4.69-.01c.38 0 .72-.21.89-.55l.87-1.9-1.59-3.48L9 16zm12.71.29A.997.997 0 0021 16h-1v4h2v-3c0-.28-.11-.53-.29-.71zm-8.11-3.45L17.65 4H14.3l-1.76 3.97-.49 1.1-.05.14L9.7 4H6.35l4.05 8.84 1.52 3.32.08.18 1.42 3.1c.17.34.51.55.89.55L19 20v-4h-4l-1.4-3.16z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsKabaddi.js b/icons/es5/SportsKabaddi.js index 2d8d1605bc..58e5bd04aa 100644 --- a/icons/es5/SportsKabaddi.js +++ b/icons/es5/SportsKabaddi.js @@ -7,15 +7,18 @@ function SvgSportsKabaddi(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 16.5, cy: 2.38, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z" + d: "M24 11.88v-4.7l-5.05-2.14c-.97-.41-2.09-.06-2.65.84l-1 1.6c-.67 1.18-1.91 2.06-3.41 2.32l.06.06c.69.69 1.52 1.07 2.46 1.17.8-.42 1.52-.98 2.09-1.64l.6 3-1.16 1.1-.94.89v7.5h2v-6l2.1-2 1.8 8H23l-2.18-11-.62-3.1 1.8.7v3.4h2zM10.29 8.09c.22.15.47.24.72.29.13.02.25.04.38.04s.26-.01.38-.04c.13-.02.25-.06.37-.11.24-.1.47-.24.66-.44.49-.49.67-1.17.55-1.8-.07-.37-.25-.74-.55-1.03-.19-.19-.42-.34-.66-.44-.12-.05-.24-.09-.37-.11s-.25-.04-.38-.04c-.12 0-.23.01-.35.03-.14.02-.28.06-.41.11-.23.11-.46.26-.65.45-.3.29-.48.66-.55 1.03-.12.63.06 1.31.55 1.8.09.1.2.18.31.26z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M11.24 10.56l-2-2c-.1-.1-.2-.18-.31-.26a1.93 1.93 0 00-.72-.28c-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z" + d: "M11.24 10.56l-2-2c-.1-.1-.2-.18-.31-.26a1.93 1.93 0 00-.72-.28c-.13-.03-.25-.04-.38-.04-.51 0-1.02.2-1.41.59l-3.34 3.34c-.41.41-.62.98-.58 1.54 0 .18.04.37.11.55l1.07 2.95-3.63 3.63L1.46 22l4.24-4.24v-2.22L7 16.75v5.13h2v-6l-2.12-2.12 2.36-2.36.71.71c1.29 1.26 2.97 2.04 5.03 2.04l-.14-2.07c-1.5-.02-2.7-.62-3.6-1.52z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsMartialArts.js b/icons/es5/SportsMartialArts.js index 13a9453d78..9d8efa4cb7 100644 --- a/icons/es5/SportsMartialArts.js +++ b/icons/es5/SportsMartialArts.js @@ -7,9 +7,11 @@ function SvgSportsMartialArts(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.8 2l-8.2 6.7-1.21-1.04 3.6-2.08L9.41 1 8 2.41l2.74 2.74L5 8.46l-1.19 4.29L6.27 17 8 16l-2.03-3.52.35-1.3L9.5 13l.5 9h2l.5-10L21 3.4z" + d: "M19.8 2l-8.2 6.7-1.21-1.04 3.6-2.08L9.41 1 8 2.41l2.74 2.74L5 8.46l-1.19 4.29L6.27 17 8 16l-2.03-3.52.35-1.3L9.5 13l.5 9h2l.5-10L21 3.4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 5, cy: 5, diff --git a/icons/es5/SportsMma.js b/icons/es5/SportsMma.js index 9d34e3b57c..04e5eea3ca 100644 --- a/icons/es5/SportsMma.js +++ b/icons/es5/SportsMma.js @@ -7,9 +7,11 @@ function SvgSportsMma(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 17h10v4H7zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8h10.36c.45 0 .89-.36.98-.8l.8-4c.03-.13.04-.26.04-.39V8c0-.55-.45-1-1-1zm-3 3H7V7h8v3z" + d: "M7 17h10v4H7zM18 7c-.55 0-1 .45-1 1V5c0-1.1-.9-2-2-2H7c-1.1 0-2 .9-2 2v5.8c0 .13.01.26.04.39l.8 4c.09.47.5.8.98.8h10.36c.45 0 .89-.36.98-.8l.8-4c.03-.13.04-.26.04-.39V8c0-.55-.45-1-1-1zm-3 3H7V7h8v3z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsMotorsports.js b/icons/es5/SportsMotorsports.js index 4b7d8e72a5..9c47cce4d9 100644 --- a/icons/es5/SportsMotorsports.js +++ b/icons/es5/SportsMotorsports.js @@ -7,11 +7,14 @@ function SvgSportsMotorsports(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 11.39c0-.65-.39-1.23-.98-1.48L5.44 7.55c-1.48 1.68-2.32 3.7-2.8 5.45h7.75c.89 0 1.61-.72 1.61-1.61z" + d: "M12 11.39c0-.65-.39-1.23-.98-1.48L5.44 7.55c-1.48 1.68-2.32 3.7-2.8 5.45h7.75c.89 0 1.61-.72 1.61-1.61z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21.96 11.22c-.41-4.41-4.56-7.49-8.98-7.2-2.51.16-4.44.94-5.93 2.04l4.74 2.01c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H2.21C2 16.31 2 17.2 2 17.2V20h12c4.67 0 8.41-4.01 7.96-8.78z" + d: "M21.96 11.22c-.41-4.41-4.56-7.49-8.98-7.2-2.51.16-4.44.94-5.93 2.04l4.74 2.01c1.33.57 2.2 1.87 2.2 3.32 0 1.99-1.62 3.61-3.61 3.61H2.21C2 16.31 2 17.2 2 17.2V20h12c4.67 0 8.41-4.01 7.96-8.78z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsRugby.js b/icons/es5/SportsRugby.js index 64eabad2cc..c056b5fd63 100644 --- a/icons/es5/SportsRugby.js +++ b/icons/es5/SportsRugby.js @@ -7,9 +7,11 @@ function SvgSportsRugby(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM7.76 7.76c2.64-2.64 6.35-3.12 8.03-3.19-2.05.94-4.46 2.45-6.61 4.61a23.206 23.206 0 00-4.61 6.63c.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.35 3.12-8.03 3.19 2.05-.94 4.46-2.45 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z" + d: "M20.49 3.51c-.56-.56-2.15-.97-4.16-.97-3.08 0-7.15.96-9.98 3.79-4.69 4.7-4.25 12.74-2.84 14.16.56.56 2.15.97 4.16.97 3.08 0 7.15-.96 9.98-3.79 4.69-4.7 4.25-12.74 2.84-14.16zM7.76 7.76c2.64-2.64 6.35-3.12 8.03-3.19-2.05.94-4.46 2.45-6.61 4.61a23.206 23.206 0 00-4.61 6.63c.09-2.48.87-5.74 3.19-8.05zm8.48 8.48c-2.64 2.64-6.35 3.12-8.03 3.19 2.05-.94 4.46-2.45 6.61-4.61 2.16-2.16 3.67-4.58 4.62-6.63-.1 2.48-.88 5.74-3.2 8.05z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsScore.js b/icons/es5/SportsScore.js index 6a60d22dc2..b8431ca08b 100644 --- a/icons/es5/SportsScore.js +++ b/icons/es5/SportsScore.js @@ -7,9 +7,11 @@ function SvgSportsScore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z" + d: "M11 6H9V4h2v2zm4-2h-2v2h2V4zM9 14h2v-2H9v2zm10-4V8h-2v2h2zm0 4v-2h-2v2h2zm-6 0h2v-2h-2v2zm6-10h-2v2h2V4zm-6 4V6h-2v2h2zm-6 2V8h2V6H7V4H5v16h2v-8h2v-2H7zm8 2h2v-2h-2v2zm-4-2v2h2v-2h-2zM9 8v2h2V8H9zm4 2h2V8h-2v2zm2-4v2h2V6h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsSoccer.js b/icons/es5/SportsSoccer.js index 1464c1a0e7..86674aa7f1 100644 --- a/icons/es5/SportsSoccer.js +++ b/icons/es5/SportsSoccer.js @@ -7,9 +7,11 @@ function SvgSportsSoccer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3l1.35-.95a8.01 8.01 0 014.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34a8.103 8.103 0 014.38-3.34zM7.08 17.11l-1.14.1A7.938 7.938 0 014 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21l-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm1 3.3l1.35-.95a8.01 8.01 0 014.38 3.34l-.39 1.34-1.35.46L13 6.7V5.3zm-3.35-.95L11 5.3v1.4L7.01 9.49l-1.35-.46-.39-1.34a8.103 8.103 0 014.38-3.34zM7.08 17.11l-1.14.1A7.938 7.938 0 014 12c0-.12.01-.23.02-.35l1-.73 1.38.48 1.46 4.34-.78 1.37zm7.42 2.48c-.79.26-1.63.41-2.5.41s-1.71-.15-2.5-.41l-.69-1.49.64-1.1h5.11l.64 1.11-.7 1.48zM14.27 15H9.73l-1.35-4.02L12 8.44l3.63 2.54L14.27 15zm3.79 2.21l-1.14-.1-.79-1.37 1.46-4.34 1.39-.47 1 .73c.01.11.02.22.02.34 0 1.99-.73 3.81-1.94 5.21z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsTennis.js b/icons/es5/SportsTennis.js index b127b8d714..26df004703 100644 --- a/icons/es5/SportsTennis.js +++ b/icons/es5/SportsTennis.js @@ -7,9 +7,11 @@ function SvgSportsTennis(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2a3.998 3.998 0 00-2.83 6.83c.78.78 1.81 1.17 2.83 1.17a3.998 3.998 0 002.83-6.83A3.998 3.998 0 0018 15z" + d: "M19.52 2.49C17.18.15 12.9.62 9.97 3.55c-1.6 1.6-2.52 3.87-2.54 5.46-.02 1.58.26 3.89-1.35 5.5l-4.24 4.24 1.42 1.42 4.24-4.24c1.61-1.61 3.92-1.33 5.5-1.35s3.86-.94 5.46-2.54c2.92-2.93 3.4-7.21 1.06-9.55zm-9.2 9.19c-1.53-1.53-1.05-4.61 1.06-6.72s5.18-2.59 6.72-1.06c1.53 1.53 1.05 4.61-1.06 6.72s-5.18 2.59-6.72 1.06zM18 17c.53 0 1.04.21 1.41.59.78.78.78 2.05 0 2.83-.37.37-.88.58-1.41.58s-1.04-.21-1.41-.59c-.78-.78-.78-2.05 0-2.83.37-.37.88-.58 1.41-.58m0-2a3.998 3.998 0 00-2.83 6.83c.78.78 1.81 1.17 2.83 1.17a3.998 3.998 0 002.83-6.83A3.998 3.998 0 0018 15z", + fill: "currentColor" })); } diff --git a/icons/es5/SportsVolleyball.js b/icons/es5/SportsVolleyball.js index a94065c258..69d831b22c 100644 --- a/icons/es5/SportsVolleyball.js +++ b/icons/es5/SportsVolleyball.js @@ -7,9 +7,11 @@ function SvgSportsVolleyball(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 4.01C3.58 5.84 2 8.73 2 12c0 1.46.32 2.85.89 4.11L6 14.31V4.01zm5 7.41V2.05c-1.06.11-2.07.38-3 .79v10.32l3-1.74zm1 1.73l-8.11 4.68c.61.84 1.34 1.59 2.18 2.2L15 14.89l-3-1.74zm1-5.19v3.46l8.11 4.68c.42-.93.7-1.93.82-2.98L13 7.96zM8.07 21.2c1.21.51 2.53.8 3.93.8 3.34 0 6.29-1.65 8.11-4.16L17 16.04 8.07 21.2zm13.85-10.39c-.55-4.63-4.26-8.3-8.92-8.76v3.6l8.92 5.16z" + d: "M6 4.01C3.58 5.84 2 8.73 2 12c0 1.46.32 2.85.89 4.11L6 14.31V4.01zm5 7.41V2.05c-1.06.11-2.07.38-3 .79v10.32l3-1.74zm1 1.73l-8.11 4.68c.61.84 1.34 1.59 2.18 2.2L15 14.89l-3-1.74zm1-5.19v3.46l8.11 4.68c.42-.93.7-1.93.82-2.98L13 7.96zM8.07 21.2c1.21.51 2.53.8 3.93.8 3.34 0 6.29-1.65 8.11-4.16L17 16.04 8.07 21.2zm13.85-10.39c-.55-4.63-4.26-8.3-8.92-8.76v3.6l8.92 5.16z", + fill: "currentColor" })); } diff --git a/icons/es5/Square.js b/icons/es5/Square.js index e76b553ac9..4441362b15 100644 --- a/icons/es5/Square.js +++ b/icons/es5/Square.js @@ -7,9 +7,11 @@ function SvgSquare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3h18v18H3z" + d: "M3 3h18v18H3z", + fill: "currentColor" })); } diff --git a/icons/es5/SquareFoot.js b/icons/es5/SquareFoot.js index 1284a8087d..bdbe002b6c 100644 --- a/icons/es5/SquareFoot.js +++ b/icons/es5/SquareFoot.js @@ -7,9 +7,11 @@ function SvgSquareFoot(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.66 17.66l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v16h16l-2.34-2.34zM7 17v-5.76L12.76 17H7z" + d: "M17.66 17.66l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L9.7 9.7l-1.06 1.06-.71-.71 1.06-1.06-1.94-1.94-1.06 1.06-.71-.71 1.06-1.06L4 4v16h16l-2.34-2.34zM7 17v-5.76L12.76 17H7z", + fill: "currentColor" })); } diff --git a/icons/es5/SsidChart.js b/icons/es5/SsidChart.js index 6f0d9e9c71..2e8c47cd1c 100644 --- a/icons/es5/SsidChart.js +++ b/icons/es5/SsidChart.js @@ -7,9 +7,11 @@ function SvgSsidChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5.47L12 12 7.62 7.62 3 11V8.52L7.83 5l4.38 4.38L21 3v2.47zM21 15h-4.7l-4.17 3.34L6 12.41l-3 2.13V17l2.8-2 6.2 6 5-4h4v-2z" + d: "M21 5.47L12 12 7.62 7.62 3 11V8.52L7.83 5l4.38 4.38L21 3v2.47zM21 15h-4.7l-4.17 3.34L6 12.41l-3 2.13V17l2.8-2 6.2 6 5-4h4v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/StackedBarChart.js b/icons/es5/StackedBarChart.js index 0b9a83bd9a..f935b37b10 100644 --- a/icons/es5/StackedBarChart.js +++ b/icons/es5/StackedBarChart.js @@ -7,9 +7,11 @@ function SvgStackedBarChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 10h3v10H6V10zm0-5h3v4H6V5zm10 11h3v4h-3v-4zm0-3h3v2h-3v-2zm-5 0h3v7h-3v-7zm0-4h3v3h-3V9z" + d: "M6 10h3v10H6V10zm0-5h3v4H6V5zm10 11h3v4h-3v-4zm0-3h3v2h-3v-2zm-5 0h3v7h-3v-7zm0-4h3v3h-3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/StackedLineChart.js b/icons/es5/StackedLineChart.js index 900b074ef1..ea536fa361 100644 --- a/icons/es5/StackedLineChart.js +++ b/icons/es5/StackedLineChart.js @@ -7,9 +7,11 @@ function SvgStackedLineChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 19.99l7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5l6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z" + d: "M2 19.99l7.5-7.51 4 4 7.09-7.97L22 9.92l-8.5 9.56-4-4-6 6.01-1.5-1.5zm1.5-4.5l6-6.01 4 4L22 3.92l-1.41-1.41-7.09 7.97-4-4L2 13.99l1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Stadium.js b/icons/es5/Stadium.js index c6785fce93..aa4b3c95a1 100644 --- a/icons/es5/Stadium.js +++ b/icons/es5/Stadium.js @@ -7,9 +7,11 @@ function SvgStadium(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 5L3 7V3l4 2zm11-2v4l4-2-4-2zm-7-1v4l4-2-4-2zm-6 8.04c1.38.49 3.77.96 7 .96s5.62-.47 7-.96C19 9.86 16.22 9 12 9s-7 .86-7 1.04zM15 17H9v4.88c-4.06-.39-7-1.54-7-2.88v-9c0-1.66 4.48-3 10-3s10 1.34 10 3v9c0 1.34-2.94 2.48-7 2.87V17z" + d: "M7 5L3 7V3l4 2zm11-2v4l4-2-4-2zm-7-1v4l4-2-4-2zm-6 8.04c1.38.49 3.77.96 7 .96s5.62-.47 7-.96C19 9.86 16.22 9 12 9s-7 .86-7 1.04zM15 17H9v4.88c-4.06-.39-7-1.54-7-2.88v-9c0-1.66 4.48-3 10-3s10 1.34 10 3v9c0 1.34-2.94 2.48-7 2.87V17z", + fill: "currentColor" })); } diff --git a/icons/es5/Stairs.js b/icons/es5/Stairs.js index 8c14d555bc..6e2f5c20a5 100644 --- a/icons/es5/Stairs.js +++ b/icons/es5/Stairs.js @@ -7,9 +7,11 @@ function SvgStairs(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 3v18h18V3H3zm15 5h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18v2z" + d: "M3 3v18h18V3H3zm15 5h-2.42v3.33H13v3.33h-2.58V18H6v-2h2.42v-3.33H11V9.33h2.58V6H18v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Star.js b/icons/es5/Star.js index afaf7b4197..52be1e16e7 100644 --- a/icons/es5/Star.js +++ b/icons/es5/Star.js @@ -7,9 +7,11 @@ function SvgStar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" + d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z", + fill: "currentColor" })); } diff --git a/icons/es5/StarBorder.js b/icons/es5/StarBorder.js index 9b4857a42a..5c8d766769 100644 --- a/icons/es5/StarBorder.js +++ b/icons/es5/StarBorder.js @@ -7,9 +7,11 @@ function SvgStarBorder(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + d: "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z", + fill: "currentColor" })); } diff --git a/icons/es5/StarBorderPurple500.js b/icons/es5/StarBorderPurple500.js index 8238da0531..e1480b1af3 100644 --- a/icons/es5/StarBorderPurple500.js +++ b/icons/es5/StarBorderPurple500.js @@ -7,9 +7,11 @@ function SvgStarBorderPurple500(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + d: "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4l-3.76 2.27 1-4.28-3.32-2.88 4.38-.38L12 6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z", + fill: "currentColor" })); } diff --git a/icons/es5/StarHalf.js b/icons/es5/StarHalf.js index f488bd95d5..581c103294 100644 --- a/icons/es5/StarHalf.js +++ b/icons/es5/StarHalf.js @@ -7,9 +7,11 @@ function SvgStarHalf(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z" + d: "M22 9.24l-7.19-.62L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27 18.18 21l-1.63-7.03L22 9.24zM12 15.4V6.1l1.71 4.04 4.38.38-3.32 2.88 1 4.28L12 15.4z", + fill: "currentColor" })); } diff --git a/icons/es5/StarPurple500.js b/icons/es5/StarPurple500.js index 059810aca5..97a18fc297 100644 --- a/icons/es5/StarPurple500.js +++ b/icons/es5/StarPurple500.js @@ -7,9 +7,11 @@ function SvgStarPurple500(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z" + d: "M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21 12 17.27z", + fill: "currentColor" })); } diff --git a/icons/es5/StarRate.js b/icons/es5/StarRate.js index 89dce5133a..c891a85e08 100644 --- a/icons/es5/StarRate.js +++ b/icons/es5/StarRate.js @@ -7,9 +7,11 @@ function SvgStarRate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.43 10L12 2l-2.43 8H2l6.18 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10z" + d: "M14.43 10L12 2l-2.43 8H2l6.18 4.41L5.83 22 12 17.31 18.18 22l-2.35-7.59L22 10z", + fill: "currentColor" })); } diff --git a/icons/es5/Stars.js b/icons/es5/Stars.js index 278f5e5c70..6a2ab9f142 100644 --- a/icons/es5/Stars.js +++ b/icons/es5/Stars.js @@ -7,9 +7,11 @@ function SvgStars(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z" + d: "M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zm4.24 16L12 15.45 7.77 18l1.12-4.81-3.73-3.23 4.92-.42L12 5l1.92 4.53 4.92.42-3.73 3.23L16.23 18z", + fill: "currentColor" })); } diff --git a/icons/es5/Start.js b/icons/es5/Start.js index bbcd98bb64..7bbc77f3e6 100644 --- a/icons/es5/Start.js +++ b/icons/es5/Start.js @@ -7,9 +7,11 @@ function SvgStart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.59 7.41L18.17 11H6v2h12.17l-3.59 3.59L16 18l6-6-6-6-1.41 1.41zM2 6v12h2V6H2z" + d: "M14.59 7.41L18.17 11H6v2h12.17l-3.59 3.59L16 18l6-6-6-6-1.41 1.41zM2 6v12h2V6H2z", + fill: "currentColor" })); } diff --git a/icons/es5/StayCurrentLandscape.js b/icons/es5/StayCurrentLandscape.js index 9a5b9274e9..7f4cf62139 100644 --- a/icons/es5/StayCurrentLandscape.js +++ b/icons/es5/StayCurrentLandscape.js @@ -7,9 +7,11 @@ function SvgStayCurrentLandscape(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 19h22V5H1v14zM19 7v10H5V7h14z" + d: "M1 19h22V5H1v14zM19 7v10H5V7h14z", + fill: "currentColor" })); } diff --git a/icons/es5/StayCurrentPortrait.js b/icons/es5/StayCurrentPortrait.js index 74465ed981..a8cde51f0f 100644 --- a/icons/es5/StayCurrentPortrait.js +++ b/icons/es5/StayCurrentPortrait.js @@ -7,9 +7,11 @@ function SvgStayCurrentPortrait(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 1.01L5.01 1v22H19V1.01zM17 19H7V5h10v14z" + d: "M19 1.01L5.01 1v22H19V1.01zM17 19H7V5h10v14z", + fill: "currentColor" })); } diff --git a/icons/es5/StayPrimaryLandscape.js b/icons/es5/StayPrimaryLandscape.js index f21f91e62f..9aa86c5eb2 100644 --- a/icons/es5/StayPrimaryLandscape.js +++ b/icons/es5/StayPrimaryLandscape.js @@ -7,9 +7,11 @@ function SvgStayPrimaryLandscape(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 19h22V5H1v14zM19 7v10H5V7h14z" + d: "M1 19h22V5H1v14zM19 7v10H5V7h14z", + fill: "currentColor" })); } diff --git a/icons/es5/StayPrimaryPortrait.js b/icons/es5/StayPrimaryPortrait.js index f26a677a7a..f452d94fe6 100644 --- a/icons/es5/StayPrimaryPortrait.js +++ b/icons/es5/StayPrimaryPortrait.js @@ -7,9 +7,11 @@ function SvgStayPrimaryPortrait(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.01 1v22H19V1H5.01zM17 19H7V5h10v14z" + d: "M5.01 1v22H19V1H5.01zM17 19H7V5h10v14z", + fill: "currentColor" })); } diff --git a/icons/es5/StickyNote2.js b/icons/es5/StickyNote2.js index 927e69fc6c..f06cf8a421 100644 --- a/icons/es5/StickyNote2.js +++ b/icons/es5/StickyNote2.js @@ -7,9 +7,11 @@ function SvgStickyNote2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.99 3L3 21h12l6-6V3H2.99zM7 8h10v2H7V8zm5 6H7v-2h5v2zm2 5.5V14h5.5L14 19.5z" + d: "M2.99 3L3 21h12l6-6V3H2.99zM7 8h10v2H7V8zm5 6H7v-2h5v2zm2 5.5V14h5.5L14 19.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Stop.js b/icons/es5/Stop.js index 1f6250fdbe..e018ec5628 100644 --- a/icons/es5/Stop.js +++ b/icons/es5/Stop.js @@ -7,9 +7,11 @@ function SvgStop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 6h12v12H6V6z" + d: "M6 6h12v12H6V6z", + fill: "currentColor" })); } diff --git a/icons/es5/StopCircle.js b/icons/es5/StopCircle.js index b46b4ebee2..310ca0bf45 100644 --- a/icons/es5/StopCircle.js +++ b/icons/es5/StopCircle.js @@ -7,9 +7,11 @@ function SvgStopCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 14H8V8h8v8z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4 14H8V8h8v8z", + fill: "currentColor" })); } diff --git a/icons/es5/StopScreenShare.js b/icons/es5/StopScreenShare.js index 76aedc662f..b08c8c73d8 100644 --- a/icons/es5/StopScreenShare.js +++ b/icons/es5/StopScreenShare.js @@ -7,9 +7,11 @@ function SvgStopScreenShare(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.79 18l2 2H24v-2zM13 9.13V7l4 3.74-1.28 1.19 5.18 5.18L22 16V4.02H7.8l5.13 5.13c.03-.01.05-.02.07-.02zM1.11 2.98l.89.9v12.14l2 1.99L0 18v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zm7.97 7.97l1.59 1.59C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05z" + d: "M21.79 18l2 2H24v-2zM13 9.13V7l4 3.74-1.28 1.19 5.18 5.18L22 16V4.02H7.8l5.13 5.13c.03-.01.05-.02.07-.02zM1.11 2.98l.89.9v12.14l2 1.99L0 18v2h18.13l2.71 2.71 1.41-1.41L2.52 1.57 1.11 2.98zm7.97 7.97l1.59 1.59C9.13 12.92 7.96 13.71 7 15c.31-1.48.94-2.93 2.08-4.05z", + fill: "currentColor" })); } diff --git a/icons/es5/Storage.js b/icons/es5/Storage.js index d4c8362903..c75f6599b7 100644 --- a/icons/es5/Storage.js +++ b/icons/es5/Storage.js @@ -7,9 +7,11 @@ function SvgStorage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z" + d: "M2 20h20v-4H2v4zm2-3h2v2H4v-2zM2 4v4h20V4H2zm4 3H4V5h2v2zm-4 7h20v-4H2v4zm2-3h2v2H4v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Store.js b/icons/es5/Store.js index 97b91f23cf..0fa12740d8 100644 --- a/icons/es5/Store.js +++ b/icons/es5/Store.js @@ -7,9 +7,11 @@ function SvgStore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" + d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z", + fill: "currentColor" })); } diff --git a/icons/es5/StoreMallDirectory.js b/icons/es5/StoreMallDirectory.js index e17b662a12..af138d7d39 100644 --- a/icons/es5/StoreMallDirectory.js +++ b/icons/es5/StoreMallDirectory.js @@ -7,9 +7,11 @@ function SvgStoreMallDirectory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z" + d: "M20 4H4v2h16V4zm1 10v-2l-1-5H4l-1 5v2h1v6h10v-6h4v6h2v-6h1zm-9 4H6v-4h6v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Storefront.js b/icons/es5/Storefront.js index d692e2251b..3936a7201b 100644 --- a/icons/es5/Storefront.js +++ b/icons/es5/Storefront.js @@ -7,9 +7,11 @@ function SvgStorefront(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.9 8.89L20.49 3H3.51L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V21h18v-8.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zM7.02 5l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.49 0-.8-.29-.93-.47-.26-.33-.35-.76-.25-1.17L5.09 5h1.93zm11.89 0l1.05 4.36c.1.42.01.84-.25 1.17-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5h1.93zm-3.4 4.52c.05.39-.07.78-.33 1.07-.23.26-.55.41-.96.41-.67 0-1.22-.59-1.22-1.31V5h1.96l.55 4.52zM11 9.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41a1.42 1.42 0 01-.33-1.07L9.04 5H11v4.69zM5 19v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19H5z" + d: "M21.9 8.89L20.49 3H3.51L2.1 8.89c-.24 1.02-.02 2.06.62 2.88.08.11.19.19.28.29V21h18v-8.94c.09-.09.2-.18.28-.28.64-.82.87-1.87.62-2.89zM7.02 5l-.58 4.86c-.08.65-.6 1.14-1.21 1.14-.49 0-.8-.29-.93-.47-.26-.33-.35-.76-.25-1.17L5.09 5h1.93zm11.89 0l1.05 4.36c.1.42.01.84-.25 1.17-.14.18-.44.47-.94.47-.61 0-1.14-.49-1.21-1.14L16.98 5h1.93zm-3.4 4.52c.05.39-.07.78-.33 1.07-.23.26-.55.41-.96.41-.67 0-1.22-.59-1.22-1.31V5h1.96l.55 4.52zM11 9.69c0 .72-.55 1.31-1.29 1.31-.34 0-.65-.15-.89-.41a1.42 1.42 0 01-.33-1.07L9.04 5H11v4.69zM5 19v-6.03c.08.01.15.03.23.03.87 0 1.66-.36 2.24-.95.6.6 1.4.95 2.31.95.87 0 1.65-.36 2.23-.93.59.57 1.39.93 2.29.93.84 0 1.64-.35 2.24-.95.58.59 1.37.95 2.24.95.08 0 .15-.02.23-.03V19H5z", + fill: "currentColor" })); } diff --git a/icons/es5/Storm.js b/icons/es5/Storm.js index f13fc564cf..7a21da7c65 100644 --- a/icons/es5/Storm.js +++ b/icons/es5/Storm.js @@ -7,9 +7,11 @@ function SvgStorm(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16a7.96 7.96 0 004.86 3.72c1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2A6.012 6.012 0 016.8 15c-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z" + d: "M18.93 8C16.72 4.18 11.82 2.87 8 5.07c-1.41.82-2.48 2-3.16 3.37-.13-2.2.22-4.4 1.02-6.44H3.74C2.2 6.49 2.52 11.58 5.07 16a7.96 7.96 0 004.86 3.72c1.98.53 4.16.31 6.07-.79 1.41-.82 2.48-2 3.16-3.37.13 2.2-.21 4.4-1.01 6.44h2.11c1.53-4.49 1.22-9.58-1.33-14zM15 17.2A6.012 6.012 0 016.8 15c-.11-.2-.21-.4-.3-.6-1.2-2.76-.17-6.06 2.5-7.6 2.86-1.65 6.54-.67 8.2 2.2.11.2.21.4.3.6 1.2 2.76.17 6.06-2.5 7.6zM12 10c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2m0-2c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4-1.79-4-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Straight.js b/icons/es5/Straight.js index 62f7cdddd9..389d2c8ca7 100644 --- a/icons/es5/Straight.js +++ b/icons/es5/Straight.js @@ -7,9 +7,11 @@ function SvgStraight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 6.83L9.41 8.41 8 7l4-4 4 4-1.41 1.41L13 6.83V21h-2z" + d: "M11 6.83L9.41 8.41 8 7l4-4 4 4-1.41 1.41L13 6.83V21h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Straighten.js b/icons/es5/Straighten.js index 29f298f3b2..fe6e17049d 100644 --- a/icons/es5/Straighten.js +++ b/icons/es5/Straighten.js @@ -7,9 +7,11 @@ function SvgStraighten(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 6H1v12h22V6zm-2 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z" + d: "M23 6H1v12h22V6zm-2 10H3V8h2v4h2V8h2v4h2V8h2v4h2V8h2v4h2V8h2v8z", + fill: "currentColor" })); } diff --git a/icons/es5/Stream.js b/icons/es5/Stream.js index 50df41c498..a1fdb2ae2f 100644 --- a/icons/es5/Stream.js +++ b/icons/es5/Stream.js @@ -7,7 +7,8 @@ function SvgStream(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 20, cy: 12, @@ -21,7 +22,8 @@ function SvgStream(props) { cy: 20, r: 2 }), /*#__PURE__*/React.createElement("path", { - d: "M13.943 8.619l4.404-4.392 1.413 1.416-4.405 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01l-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z" + d: "M13.943 8.619l4.404-4.392 1.413 1.416-4.405 4.392zM8.32 9.68l.31.32 1.42-1.41-4.02-4.04h-.01l-.31-.32-1.42 1.41 4.02 4.05zm7.09 4.26L14 15.35l3.99 4.01.35.35 1.42-1.41-3.99-4.01zm-6.82.01l-4.03 4.01-.32.33 1.41 1.41 4.03-4.02.33-.32z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 4, diff --git a/icons/es5/Streetview.js b/icons/es5/Streetview.js index 323f539215..511651fb58 100644 --- a/icons/es5/Streetview.js +++ b/icons/es5/Streetview.js @@ -7,15 +7,18 @@ function SvgStreetview(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z" + d: "M12.56 14.33c-.34.27-.56.7-.56 1.17V21h7c1.1 0 2-.9 2-2v-5.98c-.94-.33-1.95-.52-3-.52-2.03 0-3.93.7-5.44 1.83z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 18, cy: 6, r: 5 }), /*#__PURE__*/React.createElement("path", { - d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82A6.435 6.435 0 0111.5 6z" + d: "M11.5 6c0-1.08.27-2.1.74-3H5c-1.1 0-2 .9-2 2v14c0 .55.23 1.05.59 1.41l9.82-9.82A6.435 6.435 0 0111.5 6z", + fill: "currentColor" })); } diff --git a/icons/es5/StrikethroughS.js b/icons/es5/StrikethroughS.js index 9bdb004e60..dfc4cd5105 100644 --- a/icons/es5/StrikethroughS.js +++ b/icons/es5/StrikethroughS.js @@ -7,9 +7,11 @@ function SvgStrikethroughS(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29a5.73 5.73 0 011.7-.83c.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z" + d: "M7.24 8.75c-.26-.48-.39-1.03-.39-1.67 0-.61.13-1.16.4-1.67.26-.5.63-.93 1.11-1.29a5.73 5.73 0 011.7-.83c.66-.19 1.39-.29 2.18-.29.81 0 1.54.11 2.21.34.66.22 1.23.54 1.69.94.47.4.83.88 1.08 1.43s.38 1.15.38 1.81h-3.01c0-.31-.05-.59-.15-.85-.09-.27-.24-.49-.44-.68-.2-.19-.45-.33-.75-.44-.3-.1-.66-.16-1.06-.16-.39 0-.74.04-1.03.13s-.53.21-.72.36c-.19.16-.34.34-.44.55-.1.21-.15.43-.15.66 0 .48.25.88.74 1.21.38.25.77.48 1.41.7H7.39c-.05-.08-.11-.17-.15-.25zM21 12v-2H3v2h9.62c.18.07.4.14.55.2.37.17.66.34.87.51s.35.36.43.57c.07.2.11.43.11.69 0 .23-.05.45-.14.66-.09.2-.23.38-.42.53-.19.15-.42.26-.71.35-.29.08-.63.13-1.01.13-.43 0-.83-.04-1.18-.13s-.66-.23-.91-.42c-.25-.19-.45-.44-.59-.75s-.25-.76-.25-1.21H6.4c0 .55.08 1.13.24 1.58s.37.85.65 1.21c.28.35.6.66.98.92.37.26.78.48 1.22.65.44.17.9.3 1.38.39.48.08.96.13 1.44.13.8 0 1.53-.09 2.18-.28s1.21-.45 1.67-.79c.46-.34.82-.77 1.07-1.27s.38-1.07.38-1.71c0-.6-.1-1.14-.31-1.61-.05-.11-.11-.23-.17-.33H21V12z", + fill: "currentColor" })); } diff --git a/icons/es5/Stroller.js b/icons/es5/Stroller.js index 55f57b4272..a945f7e647 100644 --- a/icons/es5/Stroller.js +++ b/icons/es5/Stroller.js @@ -7,9 +7,11 @@ function SvgStroller(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM22 7v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03L5.27 17H17V6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2zm-7.7-2.9a8.962 8.962 0 00-9.58.62l4.89 4.89L14.3 4.1z" + d: "M18 20c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2zM6 18c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zM22 7v-.52C22 4.56 20.52 3 18.65 3c-1.66 0-2.54 1.27-3.18 2.03L5.27 17H17V6.27c.58-.68.97-1.27 1.65-1.27.77 0 1.35.66 1.35 1.48V7h2zm-7.7-2.9a8.962 8.962 0 00-9.58.62l4.89 4.89L14.3 4.1z", + fill: "currentColor" })); } diff --git a/icons/es5/Style.js b/icons/es5/Style.js index 99d52c42c1..daf837d2a9 100644 --- a/icons/es5/Style.js +++ b/icons/es5/Style.js @@ -7,9 +7,11 @@ function SvgStyle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.87 20.21v-9.03l-3.19 7.7 3.19 1.33zm18.92-2.43L16.31 2.14 5.26 6.71l6.48 15.64 11.05-4.57zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 13h3.45l-3.45-8.34v8.34z" + d: "M3.87 20.21v-9.03l-3.19 7.7 3.19 1.33zm18.92-2.43L16.31 2.14 5.26 6.71l6.48 15.64 11.05-4.57zM7.88 8.75c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm-2 13h3.45l-3.45-8.34v8.34z", + fill: "currentColor" })); } diff --git a/icons/es5/SubdirectoryArrowLeft.js b/icons/es5/SubdirectoryArrowLeft.js index 87a607db0b..ffc2a71fbe 100644 --- a/icons/es5/SubdirectoryArrowLeft.js +++ b/icons/es5/SubdirectoryArrowLeft.js @@ -7,9 +7,11 @@ function SvgSubdirectoryArrowLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z" + d: "M11 9l1.42 1.42L8.83 14H18V4h2v12H8.83l3.59 3.58L11 21l-6-6 6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/SubdirectoryArrowRight.js b/icons/es5/SubdirectoryArrowRight.js index b023d21eec..bdf9b73335 100644 --- a/icons/es5/SubdirectoryArrowRight.js +++ b/icons/es5/SubdirectoryArrowRight.js @@ -7,9 +7,11 @@ function SvgSubdirectoryArrowRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z" + d: "M19 15l-6 6-1.42-1.42L15.17 16H4V4h2v10h9.17l-3.59-3.58L13 9l6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Subject.js b/icons/es5/Subject.js index c8e5873a61..6e91bef07c 100644 --- a/icons/es5/Subject.js +++ b/icons/es5/Subject.js @@ -7,9 +7,11 @@ function SvgSubject(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z" + d: "M14 17H4v2h10v-2zm6-8H4v2h16V9zM4 15h16v-2H4v2zM4 5v2h16V5H4z", + fill: "currentColor" })); } diff --git a/icons/es5/Subscript.js b/icons/es5/Subscript.js index d15c9146d0..62172b4f8f 100644 --- a/icons/es5/Subscript.js +++ b/icons/es5/Subscript.js @@ -7,9 +7,11 @@ function SvgSubscript(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 18v1h3v1h-4v-3h3v-1h-3v-1h4v3h-3zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z" + d: "M20 18v1h3v1h-4v-3h3v-1h-3v-1h4v3h-3zM5.88 18h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 4h-2.68l-3.07 4.99h-.12L8.85 4H6.19l4.32 6.73L5.88 18z", + fill: "currentColor" })); } diff --git a/icons/es5/Subscriptions.js b/icons/es5/Subscriptions.js index 2d22d18a77..0e3dca0f4d 100644 --- a/icons/es5/Subscriptions.js +++ b/icons/es5/Subscriptions.js @@ -7,9 +7,11 @@ function SvgSubscriptions(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 8v12H2V10h20zm-6 6l-6-3.27v6.53L16 16z" + d: "M20 8H4V6h16v2zm-2-6H6v2h12V2zm4 8v12H2V10h20zm-6 6l-6-3.27v6.53L16 16z", + fill: "currentColor" })); } diff --git a/icons/es5/Subtitles.js b/icons/es5/Subtitles.js index a927fc0d3a..702f393b50 100644 --- a/icons/es5/Subtitles.js +++ b/icons/es5/Subtitles.js @@ -7,9 +7,11 @@ function SvgSubtitles(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z" + d: "M22 4H2v16h20V4zM4 12h4v2H4v-2zm10 6H4v-2h10v2zm6 0h-4v-2h4v2zm0-4H10v-2h10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/SubtitlesOff.js b/icons/es5/SubtitlesOff.js index aa042a9a61..583e6a0170 100644 --- a/icons/es5/SubtitlesOff.js +++ b/icons/es5/SubtitlesOff.js @@ -7,9 +7,11 @@ function SvgSubtitlesOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.83 4l8 8H20v2h-3.17L22 19.17V4zm-5.79-.13l.96.96V20h15.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM4 12h4v2H4v-2zm0 4h9.17l.83.83V18H4v-2z" + d: "M6.83 4l8 8H20v2h-3.17L22 19.17V4zm-5.79-.13l.96.96V20h15.17l2.96 2.96 1.41-1.41L2.45 2.45 1.04 3.87zM4 12h4v2H4v-2zm0 4h9.17l.83.83V18H4v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Subway.js b/icons/es5/Subway.js index 93a8b634ef..f83c89e571 100644 --- a/icons/es5/Subway.js +++ b/icons/es5/Subway.js @@ -7,7 +7,8 @@ function SvgSubway(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 8.5, cy: 16, @@ -17,7 +18,8 @@ function SvgSubway(props) { cy: 16, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 12.7c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20h-1.67l-1.5-1.5h-2.66L9.17 20H7.5v-.38l1.15-1.16A2.979 2.979 0 016 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5z" + d: "M7.01 9h10v5h-10zM17.8 2.8C16 2.09 13.86 2 12 2s-4 .09-5.8.8C3.53 3.84 2 6.05 2 8.86V22h20V8.86c0-2.81-1.53-5.02-4.2-6.06zm.2 12.7c0 1.54-1.16 2.79-2.65 2.96l1.15 1.16V20h-1.67l-1.5-1.5h-2.66L9.17 20H7.5v-.38l1.15-1.16A2.979 2.979 0 016 15.5V9c0-2.63 3-3 6-3s6 .37 6 3v6.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Summarize.js b/icons/es5/Summarize.js index 4c95b090b9..0ca5b2b45f 100644 --- a/icons/es5/Summarize.js +++ b/icons/es5/Summarize.js @@ -7,9 +7,11 @@ function SvgSummarize(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 3H3v18h18V9l-6-6zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 1V4.5l5.5 5.5H14z" + d: "M15 3H3v18h18V9l-6-6zM8 17c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm0-4c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm6 1V4.5l5.5 5.5H14z", + fill: "currentColor" })); } diff --git a/icons/es5/Superscript.js b/icons/es5/Superscript.js index 131d225274..593bb3afd8 100644 --- a/icons/es5/Superscript.js +++ b/icons/es5/Superscript.js @@ -7,9 +7,11 @@ function SvgSuperscript(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 7v1h3v1h-4V6h3V5h-3V4h4v3h-3zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z" + d: "M20 7v1h3v1h-4V6h3V5h-3V4h4v3h-3zM5.88 20h2.66l3.4-5.42h.12l3.4 5.42h2.66l-4.65-7.27L17.81 6h-2.68l-3.07 4.99h-.12L8.85 6H6.19l4.32 6.73L5.88 20z", + fill: "currentColor" })); } diff --git a/icons/es5/SupervisedUserCircle.js b/icons/es5/SupervisedUserCircle.js index 8532534bdd..2dea134572 100644 --- a/icons/es5/SupervisedUserCircle.js +++ b/icons/es5/SupervisedUserCircle.js @@ -7,9 +7,11 @@ function SvgSupervisedUserCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.61 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93-1.93-.86-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36s-1.06 2.36-2.36 2.36-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM12 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15C18.28 17.88 15.39 20 12 20z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm3.61 6.34c1.07 0 1.93.86 1.93 1.93s-.86 1.93-1.93 1.93-1.93-.86-1.93-1.93c-.01-1.07.86-1.93 1.93-1.93zm-6-1.58c1.3 0 2.36 1.06 2.36 2.36s-1.06 2.36-2.36 2.36-2.36-1.06-2.36-2.36c0-1.31 1.05-2.36 2.36-2.36zm0 9.13v3.75c-2.4-.75-4.3-2.6-5.14-4.96 1.05-1.12 3.67-1.69 5.14-1.69.53 0 1.2.08 1.9.22-1.64.87-1.9 2.02-1.9 2.68zM12 20c-.27 0-.53-.01-.79-.04v-4.07c0-1.42 2.94-2.13 4.4-2.13 1.07 0 2.92.39 3.84 1.15C18.28 17.88 15.39 20 12 20z", + fill: "currentColor" })); } diff --git a/icons/es5/SupervisorAccount.js b/icons/es5/SupervisorAccount.js index 718996c190..1fda406cb0 100644 --- a/icons/es5/SupervisorAccount.js +++ b/icons/es5/SupervisorAccount.js @@ -7,9 +7,11 @@ function SvgSupervisorAccount(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7a2.5 2.5 0 000 5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z" + d: "M16.5 12c1.38 0 2.49-1.12 2.49-2.5S17.88 7 16.5 7a2.5 2.5 0 000 5zM9 11c1.66 0 2.99-1.34 2.99-3S10.66 5 9 5 6 6.34 6 8s1.34 3 3 3zm7.5 3c-1.83 0-5.5.92-5.5 2.75V19h11v-2.25c0-1.83-3.67-2.75-5.5-2.75zM9 13c-2.33 0-7 1.17-7 3.5V19h7v-2.25c0-.85.33-2.34 2.37-3.47C10.5 13.1 9.66 13 9 13z", + fill: "currentColor" })); } diff --git a/icons/es5/Support.js b/icons/es5/Support.js index 777a6d2003..ecd9eda3e0 100644 --- a/icons/es5/Support.js +++ b/icons/es5/Support.js @@ -7,9 +7,11 @@ function SvgSupport(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12l-2.78 1.15a4.982 4.982 0 00-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78a5 5 0 00-2.98 2.97L4.54 9.13a7.984 7.984 0 014.59-4.59zM4.54 14.87l2.78-1.15a4.968 4.968 0 002.97 2.96l-1.17 2.78a7.996 7.996 0 01-4.58-4.59zm10.34 4.59l-1.15-2.78a4.978 4.978 0 002.95-2.97l2.78 1.17a8.007 8.007 0 01-4.58 4.58z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm7.46 7.12l-2.78 1.15a4.982 4.982 0 00-2.95-2.94l1.15-2.78c2.1.8 3.77 2.47 4.58 4.57zM12 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3zM9.13 4.54l1.17 2.78a5 5 0 00-2.98 2.97L4.54 9.13a7.984 7.984 0 014.59-4.59zM4.54 14.87l2.78-1.15a4.968 4.968 0 002.97 2.96l-1.17 2.78a7.996 7.996 0 01-4.58-4.59zm10.34 4.59l-1.15-2.78a4.978 4.978 0 002.95-2.97l2.78 1.17a8.007 8.007 0 01-4.58 4.58z", + fill: "currentColor" })); } diff --git a/icons/es5/SupportAgent.js b/icons/es5/SupportAgent.js index ab82151044..1d52cfcd59 100644 --- a/icons/es5/SupportAgent.js +++ b/icons/es5/SupportAgent.js @@ -7,7 +7,8 @@ function SvgSupportAgent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("circle", { cx: 9, cy: 13, @@ -17,9 +18,11 @@ function SvgSupportAgent(props) { cy: 13, r: 1 }), /*#__PURE__*/React.createElement("path", { - d: "M18 11.03A6.04 6.04 0 0012.05 6c-3.03 0-6.29 2.51-6.03 6.45a8.075 8.075 0 004.86-5.89c1.31 2.63 4 4.44 7.12 4.47z" + d: "M18 11.03A6.04 6.04 0 0012.05 6c-3.03 0-6.29 2.51-6.03 6.45a8.075 8.075 0 004.86-5.89c1.31 2.63 4 4.44 7.12 4.47z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20.99 12c-.11-5.37-4.31-9-8.99-9-4.61 0-8.85 3.53-8.99 9H2v6h3v-5.81c0-3.83 2.95-7.18 6.78-7.29a7.007 7.007 0 017.22 7V19h-8v2h10v-3h1v-6h-1.01z" + d: "M20.99 12c-.11-5.37-4.31-9-8.99-9-4.61 0-8.85 3.53-8.99 9H2v6h3v-5.81c0-3.83 2.95-7.18 6.78-7.29a7.007 7.007 0 017.22 7V19h-8v2h10v-3h1v-6h-1.01z", + fill: "currentColor" })); } diff --git a/icons/es5/Surfing.js b/icons/es5/Surfing.js index 6989997b09..1254dfa4cc 100644 --- a/icons/es5/Surfing.js +++ b/icons/es5/Surfing.js @@ -7,9 +7,11 @@ function SvgSurfing(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.72-4.24 3.12-2.1-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55A5.007 5.007 0 0020.5 10v2a7.01 7.01 0 01-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z" + d: "M21 23c-1.03 0-2.06-.25-3-.75-1.89 1-4.11 1-6 0-1.89 1-4.11 1-6 0-.95.5-1.97.75-3 .75H2v-2h1c1.04 0 2.08-.35 3-1 1.83 1.3 4.17 1.3 6 0 1.83 1.3 4.17 1.3 6 0 .91.65 1.96 1 3 1h1v2h-1zM17 1.5c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm-2.57 6.98L12.18 10 16 13v3.84c.53.38 1.03.78 1.49 1.17-.68.58-1.55.99-2.49.99-1.2 0-2.27-.66-3-1.5-.73.84-1.8 1.5-3 1.5-.33 0-.65-.05-.96-.14C5.19 16.9 3 14.72 3 13.28 3 12.25 4.01 12 4.85 12c.98 0 2.28.31 3.7.83l-.72-4.24 3.12-2.1-2-.37-2.82 1.93L5 6.4 8.5 4l5.55 1.03c.45.09.93.37 1.22.89l.88 1.55A5.007 5.007 0 0020.5 10v2a7.01 7.01 0 01-6.07-3.52zM10.3 11.1l.44 2.65c.92.42 2.48 1.27 3.26 1.75V14l-3.7-2.9z", + fill: "currentColor" })); } diff --git a/icons/es5/SurroundSound.js b/icons/es5/SurroundSound.js index 45309bbc06..a4de2fcfe8 100644 --- a/icons/es5/SurroundSound.js +++ b/icons/es5/SurroundSound.js @@ -7,9 +7,11 @@ function SvgSurroundSound(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12s.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66l-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12s-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z" + d: "M22 4H2v16h20V4zM7.76 16.24l-1.41 1.41C4.78 16.1 4 14.05 4 12s.78-4.1 2.34-5.66l1.41 1.41C6.59 8.93 6 10.46 6 12s.59 3.07 1.76 4.24zM12 16c-2.21 0-4-1.79-4-4s1.79-4 4-4 4 1.79 4 4-1.79 4-4 4zm5.66 1.66l-1.41-1.41C17.41 15.07 18 13.54 18 12s-.59-3.07-1.76-4.24l1.41-1.41C19.22 7.9 20 9.95 20 12s-.78 4.1-2.34 5.66zM12 10c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/SwapCalls.js b/icons/es5/SwapCalls.js index b2991f6006..27053cf138 100644 --- a/icons/es5/SwapCalls.js +++ b/icons/es5/SwapCalls.js @@ -7,9 +7,11 @@ function SvgSwapCalls(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z" + d: "M18 4l-4 4h3v7c0 1.1-.9 2-2 2s-2-.9-2-2V8c0-2.21-1.79-4-4-4S5 5.79 5 8v7H2l4 4 4-4H7V8c0-1.1.9-2 2-2s2 .9 2 2v7c0 2.21 1.79 4 4 4s4-1.79 4-4V8h3l-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/SwapHoriz.js b/icons/es5/SwapHoriz.js index b5a35d07ef..162c8353b6 100644 --- a/icons/es5/SwapHoriz.js +++ b/icons/es5/SwapHoriz.js @@ -7,9 +7,11 @@ function SvgSwapHoriz(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z" + d: "M6.99 11L3 15l3.99 4v-3H14v-2H6.99v-3zM21 9l-3.99-4v3H10v2h7.01v3L21 9z", + fill: "currentColor" })); } diff --git a/icons/es5/SwapHorizontalCircle.js b/icons/es5/SwapHorizontalCircle.js index eba45462bc..246ea8aae5 100644 --- a/icons/es5/SwapHorizontalCircle.js +++ b/icons/es5/SwapHorizontalCircle.js @@ -7,9 +7,11 @@ function SvgSwapHorizontalCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5l3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z" + d: "M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10zm-7-5.5l3.5 3.5-3.5 3.5V11h-4V9h4V6.5zm-6 11L5.5 14 9 10.5V13h4v2H9v2.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SwapVert.js b/icons/es5/SwapVert.js index 97947d05a8..5fd9e3b0fd 100644 --- a/icons/es5/SwapVert.js +++ b/icons/es5/SwapVert.js @@ -7,9 +7,11 @@ function SvgSwapVert(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z" + d: "M16 17.01V10h-2v7.01h-3L15 21l4-3.99h-3zM9 3L5 6.99h3V14h2V6.99h3L9 3z", + fill: "currentColor" })); } diff --git a/icons/es5/SwapVerticalCircle.js b/icons/es5/SwapVerticalCircle.js index 5a9ff0919d..93bac71c91 100644 --- a/icons/es5/SwapVerticalCircle.js +++ b/icons/es5/SwapVerticalCircle.js @@ -7,9 +7,11 @@ function SvgSwapVerticalCircle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zM6.5 9L10 5.5 13.5 9H11v4H9V9H6.5zm7.5 9.5L10.5 15H13v-4h2v4h2.5L14 18.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Swipe.js b/icons/es5/Swipe.js index 5d60cc0643..027af73b42 100644 --- a/icons/es5/Swipe.js +++ b/icons/es5/Swipe.js @@ -7,11 +7,14 @@ function SvgSwipe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.13 3.87C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z" + d: "M20.13 3.87C18.69 2.17 15.6 1 12 1S5.31 2.17 3.87 3.87L2 2v5h5L4.93 4.93c1-1.29 3.7-2.43 7.07-2.43s6.07 1.14 7.07 2.43L17 7h5V2l-1.87 1.87z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13 12.5v-6c0-.83-.67-1.5-1.5-1.5S10 5.67 10 6.5v10.74l-4.04-.85-1.21 1.23L10.13 23h8.97l1.09-7.64-6.11-2.86H13z" + d: "M13 12.5v-6c0-.83-.67-1.5-1.5-1.5S10 5.67 10 6.5v10.74l-4.04-.85-1.21 1.23L10.13 23h8.97l1.09-7.64-6.11-2.86H13z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeDown.js b/icons/es5/SwipeDown.js index bf404d41d9..5bfd728cea 100644 --- a/icons/es5/SwipeDown.js +++ b/icons/es5/SwipeDown.js @@ -7,9 +7,11 @@ function SvgSwipeDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.8 12.18c-.2-.86-.3-1.76-.3-2.68 0-2.84.99-5.45 2.63-7.5L7.2 3.07a10.457 10.457 0 00-1.88 8.99l1.62-1.62L8 11.5 4.5 15 1 11.5l1.06-1.06 1.74 1.74zm17.91-1l2.09 7.39-8.23 3.65-6.84-2.85.61-1.62 3.8-.75-4.35-9.83c-.34-.76 0-1.64.76-1.98.76-.34 1.64 0 1.98.76l2.43 5.49 1.26-.56 6.49.3z" + d: "M3.8 12.18c-.2-.86-.3-1.76-.3-2.68 0-2.84.99-5.45 2.63-7.5L7.2 3.07a10.457 10.457 0 00-1.88 8.99l1.62-1.62L8 11.5 4.5 15 1 11.5l1.06-1.06 1.74 1.74zm17.91-1l2.09 7.39-8.23 3.65-6.84-2.85.61-1.62 3.8-.75-4.35-9.83c-.34-.76 0-1.64.76-1.98.76-.34 1.64 0 1.98.76l2.43 5.49 1.26-.56 6.49.3z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeDownAlt.js b/icons/es5/SwipeDownAlt.js index b4ec6b5995..e5690cd267 100644 --- a/icons/es5/SwipeDownAlt.js +++ b/icons/es5/SwipeDownAlt.js @@ -7,9 +7,11 @@ function SvgSwipeDownAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 13.9a5 5 0 10-2 0v4.27l-1.59-1.59L8 18l4 4 4-4-1.41-1.41L13 18.17V13.9z" + d: "M13 13.9a5 5 0 10-2 0v4.27l-1.59-1.59L8 18l4 4 4-4-1.41-1.41L13 18.17V13.9z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeLeft.js b/icons/es5/SwipeLeft.js index 67c5568907..8524a2205d 100644 --- a/icons/es5/SwipeLeft.js +++ b/icons/es5/SwipeLeft.js @@ -7,9 +7,11 @@ function SvgSwipeLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.18 15.4L19.1 23h-9L5 17.62l1.22-1.23 3.78.85V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h1.38l5.8 2.9zM12 2.5c4.74 0 7.67 2.52 8.43 4.5H22c-.73-2.88-4.51-6-10-6-3.22 0-6.18 1.13-8.5 3.02V2H2v5h5V5.5H4.09c2.12-1.86 4.88-3 7.91-3z" + d: "M20.18 15.4L19.1 23h-9L5 17.62l1.22-1.23 3.78.85V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h1.38l5.8 2.9zM12 2.5c4.74 0 7.67 2.52 8.43 4.5H22c-.73-2.88-4.51-6-10-6-3.22 0-6.18 1.13-8.5 3.02V2H2v5h5V5.5H4.09c2.12-1.86 4.88-3 7.91-3z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeLeftAlt.js b/icons/es5/SwipeLeftAlt.js index 477ceac47c..0f34a97e97 100644 --- a/icons/es5/SwipeLeftAlt.js +++ b/icons/es5/SwipeLeftAlt.js @@ -7,9 +7,11 @@ function SvgSwipeLeftAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10.1 13a5 5 0 100-2H5.83l1.59-1.59L6 8l-4 4 4 4 1.41-1.41L5.83 13h4.27z" + d: "M10.1 13a5 5 0 100-2H5.83l1.59-1.59L6 8l-4 4 4 4 1.41-1.41L5.83 13h4.27z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeRight.js b/icons/es5/SwipeRight.js index b077ccf524..507743ad26 100644 --- a/icons/es5/SwipeRight.js +++ b/icons/es5/SwipeRight.js @@ -7,9 +7,11 @@ function SvgSwipeRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.18 15.4L19.1 23h-9L5 17.62l1.22-1.23 3.78.85V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h1.38l5.8 2.9zm-.27-9.9H17V7h5V2h-1.5v2.02A13.413 13.413 0 0012 1C6.51 1 2.73 4.12 2 7h1.57C4.33 5.02 7.26 2.5 12 2.5c3.03 0 5.79 1.14 7.91 3z" + d: "M20.18 15.4L19.1 23h-9L5 17.62l1.22-1.23 3.78.85V6.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5v6h1.38l5.8 2.9zm-.27-9.9H17V7h5V2h-1.5v2.02A13.413 13.413 0 0012 1C6.51 1 2.73 4.12 2 7h1.57C4.33 5.02 7.26 2.5 12 2.5c3.03 0 5.79 1.14 7.91 3z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeRightAlt.js b/icons/es5/SwipeRightAlt.js index 960bca66c9..c922d70a34 100644 --- a/icons/es5/SwipeRightAlt.js +++ b/icons/es5/SwipeRightAlt.js @@ -7,9 +7,11 @@ function SvgSwipeRightAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.9 11a5 5 0 100 2h4.27l-1.59 1.59L18 16l4-4-4-4-1.41 1.41L18.17 11H13.9z" + d: "M13.9 11a5 5 0 100 2h4.27l-1.59 1.59L18 16l4-4-4-4-1.41 1.41L18.17 11H13.9z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeUp.js b/icons/es5/SwipeUp.js index 18d9360eb6..2263b17168 100644 --- a/icons/es5/SwipeUp.js +++ b/icons/es5/SwipeUp.js @@ -7,9 +7,11 @@ function SvgSwipeUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.06 5.56L1 4.5 4.5 1 8 4.5 6.94 5.56 5.32 3.94a10.457 10.457 0 001.88 8.99L6.13 14A11.974 11.974 0 013.5 6.5c0-.92.1-1.82.3-2.68L2.06 5.56zm19.65 5.62l2.09 7.39-8.23 3.65-6.84-2.85.61-1.62 3.8-.75-4.35-9.83c-.34-.76 0-1.64.76-1.98.76-.34 1.64 0 1.98.76l2.43 5.49 1.26-.56 6.49.3z" + d: "M2.06 5.56L1 4.5 4.5 1 8 4.5 6.94 5.56 5.32 3.94a10.457 10.457 0 001.88 8.99L6.13 14A11.974 11.974 0 013.5 6.5c0-.92.1-1.82.3-2.68L2.06 5.56zm19.65 5.62l2.09 7.39-8.23 3.65-6.84-2.85.61-1.62 3.8-.75-4.35-9.83c-.34-.76 0-1.64.76-1.98.76-.34 1.64 0 1.98.76l2.43 5.49 1.26-.56 6.49.3z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeUpAlt.js b/icons/es5/SwipeUpAlt.js index 9dcb4e6f95..bc85f405f6 100644 --- a/icons/es5/SwipeUpAlt.js +++ b/icons/es5/SwipeUpAlt.js @@ -7,9 +7,11 @@ function SvgSwipeUpAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 5.83l1.59 1.59L16 6l-4-4-4 4 1.41 1.41L11 5.83v4.27a5 5 0 102 0V5.83z" + d: "M13 5.83l1.59 1.59L16 6l-4-4-4 4 1.41 1.41L11 5.83v4.27a5 5 0 102 0V5.83z", + fill: "currentColor" })); } diff --git a/icons/es5/SwipeVertical.js b/icons/es5/SwipeVertical.js index 9d2025575a..a2e1fda8ad 100644 --- a/icons/es5/SwipeVertical.js +++ b/icons/es5/SwipeVertical.js @@ -7,9 +7,11 @@ function SvgSwipeVertical(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 3.5h2.02C1.13 5.82 0 8.78 0 12s1.13 6.18 3.02 8.5H1V22h5v-5H4.5v2.91c-1.86-2.11-3-4.88-3-7.91s1.14-5.79 3-7.91V7H6V2H1v1.5zm20.71 7.68l2.09 7.39-8.23 3.65-6.84-2.85.61-1.62 3.8-.75-4.35-9.83c-.34-.76 0-1.64.76-1.98.76-.34 1.64 0 1.98.76l2.43 5.49 1.26-.56 6.49.3z" + d: "M1 3.5h2.02C1.13 5.82 0 8.78 0 12s1.13 6.18 3.02 8.5H1V22h5v-5H4.5v2.91c-1.86-2.11-3-4.88-3-7.91s1.14-5.79 3-7.91V7H6V2H1v1.5zm20.71 7.68l2.09 7.39-8.23 3.65-6.84-2.85.61-1.62 3.8-.75-4.35-9.83c-.34-.76 0-1.64.76-1.98.76-.34 1.64 0 1.98.76l2.43 5.49 1.26-.56 6.49.3z", + fill: "currentColor" })); } diff --git a/icons/es5/SwitchAccessShortcut.js b/icons/es5/SwitchAccessShortcut.js index 8d52b9739e..105eb4bed3 100644 --- a/icons/es5/SwitchAccessShortcut.js +++ b/icons/es5/SwitchAccessShortcut.js @@ -7,9 +7,11 @@ function SvgSwitchAccessShortcut(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.06 8.94L5 8l2.06-.94L8 5l.94 2.06L11 8l-2.06.94L8 11l-.94-2.06zM8 21l.94-2.06L11 18l-2.06-.94L8 15l-.94 2.06L5 18l2.06.94L8 21zm-3.63-8.63L3 13l1.37.63L5 15l.63-1.37L7 13l-1.37-.63L5 11l-.63 1.37zM12 12c0-2.73 1.08-5.27 2.75-7.25L12 2h7v7l-2.82-2.82C14.84 7.82 14 9.88 14 12c0 3.32 2.1 6.36 5 7.82V22c-4.09-1.59-7-5.65-7-10z" + d: "M7.06 8.94L5 8l2.06-.94L8 5l.94 2.06L11 8l-2.06.94L8 11l-.94-2.06zM8 21l.94-2.06L11 18l-2.06-.94L8 15l-.94 2.06L5 18l2.06.94L8 21zm-3.63-8.63L3 13l1.37.63L5 15l.63-1.37L7 13l-1.37-.63L5 11l-.63 1.37zM12 12c0-2.73 1.08-5.27 2.75-7.25L12 2h7v7l-2.82-2.82C14.84 7.82 14 9.88 14 12c0 3.32 2.1 6.36 5 7.82V22c-4.09-1.59-7-5.65-7-10z", + fill: "currentColor" })); } diff --git a/icons/es5/SwitchAccessShortcutAdd.js b/icons/es5/SwitchAccessShortcutAdd.js index 73581286c2..bbfa2adb28 100644 --- a/icons/es5/SwitchAccessShortcutAdd.js +++ b/icons/es5/SwitchAccessShortcutAdd.js @@ -7,9 +7,11 @@ function SvgSwitchAccessShortcutAdd(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 14h-2v-2h-2v2h-2v2h2v2h2v-2h2v-2zM7.06 8.94L5 8l2.06-.94L8 5l.94 2.06L11 8l-2.06.94L8 11l-.94-2.06zM8 21l.94-2.06L11 18l-2.06-.94L8 15l-.94 2.06L5 18l2.06.94L8 21zm-3.63-8.63L3 13l1.37.63L5 15l.63-1.37L7 13l-1.37-.63L5 11l-.63 1.37zM12 12c0-2.73 1.08-5.27 2.75-7.25L12 2h7v7l-2.82-2.82C14.84 7.82 14 9.88 14 12c0 3.32 2.1 6.36 5 7.82V22c-4.09-1.59-7-5.65-7-10z" + d: "M24 14h-2v-2h-2v2h-2v2h2v2h2v-2h2v-2zM7.06 8.94L5 8l2.06-.94L8 5l.94 2.06L11 8l-2.06.94L8 11l-.94-2.06zM8 21l.94-2.06L11 18l-2.06-.94L8 15l-.94 2.06L5 18l2.06.94L8 21zm-3.63-8.63L3 13l1.37.63L5 15l.63-1.37L7 13l-1.37-.63L5 11l-.63 1.37zM12 12c0-2.73 1.08-5.27 2.75-7.25L12 2h7v7l-2.82-2.82C14.84 7.82 14 9.88 14 12c0 3.32 2.1 6.36 5 7.82V22c-4.09-1.59-7-5.65-7-10z", + fill: "currentColor" })); } diff --git a/icons/es5/SwitchAccount.js b/icons/es5/SwitchAccount.js index 8f371147f9..2f6fbe445e 100644 --- a/icons/es5/SwitchAccount.js +++ b/icons/es5/SwitchAccount.js @@ -7,9 +7,11 @@ function SvgSwitchAccount(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4V6zm2-4v16h16V2H6zm8 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zM7.76 16c1.47-1.83 3.71-3 6.24-3s4.77 1.17 6.24 3H7.76z" + d: "M4 6H2v16h16v-2H4V6zm2-4v16h16V2H6zm8 3c1.66 0 3 1.34 3 3s-1.34 3-3 3-3-1.34-3-3 1.34-3 3-3zM7.76 16c1.47-1.83 3.71-3 6.24-3s4.77 1.17 6.24 3H7.76z", + fill: "currentColor" })); } diff --git a/icons/es5/SwitchCamera.js b/icons/es5/SwitchCamera.js index 92f19bfe19..440e7d46ea 100644 --- a/icons/es5/SwitchCamera.js +++ b/icons/es5/SwitchCamera.js @@ -7,9 +7,11 @@ function SvgSwitchCamera(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zm-7 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" + d: "M22 4h-5.17L15 2H9L7.17 4H2v16h20V4zm-7 11.5V13H9v2.5L5.5 12 9 8.5V11h6V8.5l3.5 3.5-3.5 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/SwitchLeft.js b/icons/es5/SwitchLeft.js index dcc5bfd423..ae50efba21 100644 --- a/icons/es5/SwitchLeft.js +++ b/icons/es5/SwitchLeft.js @@ -7,9 +7,11 @@ function SvgSwitchLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z" + d: "M8.5 8.62v6.76L5.12 12 8.5 8.62M10 5l-7 7 7 7V5zm4 0v14l7-7-7-7z", + fill: "currentColor" })); } diff --git a/icons/es5/SwitchRight.js b/icons/es5/SwitchRight.js index 2a5a50b75b..6e162aa191 100644 --- a/icons/es5/SwitchRight.js +++ b/icons/es5/SwitchRight.js @@ -7,9 +7,11 @@ function SvgSwitchRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z" + d: "M15.5 15.38V8.62L18.88 12l-3.38 3.38M14 19l7-7-7-7v14zm-4 0V5l-7 7 7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/SwitchVideo.js b/icons/es5/SwitchVideo.js index 63a1162dbd..ee2376d061 100644 --- a/icons/es5/SwitchVideo.js +++ b/icons/es5/SwitchVideo.js @@ -7,9 +7,11 @@ function SvgSwitchVideo(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 9.5V5H2v14h16v-4.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z" + d: "M18 9.5V5H2v14h16v-4.5l4 4v-13l-4 4zm-5 6V13H7v2.5L3.5 12 7 8.5V11h6V8.5l3.5 3.5-3.5 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Synagogue.js b/icons/es5/Synagogue.js index c74180ad88..30a9b7fcab 100644 --- a/icons/es5/Synagogue.js +++ b/icons/es5/Synagogue.js @@ -7,9 +7,11 @@ function SvgSynagogue(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 8v13h4v-7h4v7h4V8l-6-5-6 5zm7.5 2c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM3 5c-1.1 0-2 .9-2 2v1h4V7c0-1.1-.9-2-2-2zM1 9h4v12H1zm20-4c-1.1 0-2 .9-2 2v1h4V7c0-1.1-.9-2-2-2zm-2 4h4v12h-4z" + d: "M6 8v13h4v-7h4v7h4V8l-6-5-6 5zm7.5 2c0 .83-.67 1.5-1.5 1.5s-1.5-.67-1.5-1.5.67-1.5 1.5-1.5 1.5.67 1.5 1.5zM3 5c-1.1 0-2 .9-2 2v1h4V7c0-1.1-.9-2-2-2zM1 9h4v12H1zm20-4c-1.1 0-2 .9-2 2v1h4V7c0-1.1-.9-2-2-2zm-2 4h4v12h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Sync.js b/icons/es5/Sync.js index ff37092411..de5056572c 100644 --- a/icons/es5/Sync.js +++ b/icons/es5/Sync.js @@ -7,9 +7,11 @@ function SvgSync(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0020 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 004 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z" + d: "M12 4V1L8 5l4 4V6c3.31 0 6 2.69 6 6 0 1.01-.25 1.97-.7 2.8l1.46 1.46A7.93 7.93 0 0020 12c0-4.42-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6 0-1.01.25-1.97.7-2.8L5.24 7.74A7.93 7.93 0 004 12c0 4.42 3.58 8 8 8v3l4-4-4-4v3z", + fill: "currentColor" })); } diff --git a/icons/es5/SyncAlt.js b/icons/es5/SyncAlt.js index 63bc4c258d..3bc418b31a 100644 --- a/icons/es5/SyncAlt.js +++ b/icons/es5/SyncAlt.js @@ -7,9 +7,11 @@ function SvgSyncAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 12l4-4-4-4v3H3v2h15zM6 12l-4 4 4 4v-3h15v-2H6z" + d: "M18 12l4-4-4-4v3H3v2h15zM6 12l-4 4 4 4v-3h15v-2H6z", + fill: "currentColor" })); } diff --git a/icons/es5/SyncDisabled.js b/icons/es5/SyncDisabled.js index 5fa6e7531f..93ba50c465 100644 --- a/icons/es5/SyncDisabled.js +++ b/icons/es5/SyncDisabled.js @@ -7,9 +7,11 @@ function SvgSyncDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24A6.003 6.003 0 0118 12c0 .85-.19 1.65-.51 2.38l1.5 1.5A7.921 7.921 0 0020 12zM4.27 4L2.86 5.41l2.36 2.36a7.925 7.925 0 001.14 9.87L4 20h6v-6l-2.24 2.24A6.003 6.003 0 016 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z" + d: "M10 6.35V4.26c-.66.17-1.29.43-1.88.75l1.5 1.5c.13-.05.25-.11.38-.16zM20 12c0-2.21-.91-4.2-2.36-5.64L20 4h-6v6l2.24-2.24A6.003 6.003 0 0118 12c0 .85-.19 1.65-.51 2.38l1.5 1.5A7.921 7.921 0 0020 12zM4.27 4L2.86 5.41l2.36 2.36a7.925 7.925 0 001.14 9.87L4 20h6v-6l-2.24 2.24A6.003 6.003 0 016 12c0-1 .25-1.94.68-2.77l8.08 8.08c-.25.13-.5.24-.76.34v2.09c.8-.21 1.55-.54 2.23-.96l2.58 2.58 1.41-1.41L4.27 4z", + fill: "currentColor" })); } diff --git a/icons/es5/SyncLock.js b/icons/es5/SyncLock.js index 2c81b67b6e..339fa0964a 100644 --- a/icons/es5/SyncLock.js +++ b/icons/es5/SyncLock.js @@ -7,9 +7,11 @@ function SvgSyncLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 4.26v2.09C7.67 7.18 6 9.39 6 12c0 1.77.78 3.34 2 4.44V14h2v6H4v-2h2.73A7.942 7.942 0 014 12c0-3.73 2.55-6.85 6-7.74zM20 4h-6v6h2V7.56c1.22 1.1 2 2.67 2 4.44h2c0-2.4-1.06-4.54-2.73-6H20V4zm0 13v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" + d: "M10 4.26v2.09C7.67 7.18 6 9.39 6 12c0 1.77.78 3.34 2 4.44V14h2v6H4v-2h2.73A7.942 7.942 0 014 12c0-3.73 2.55-6.85 6-7.74zM20 4h-6v6h2V7.56c1.22 1.1 2 2.67 2 4.44h2c0-2.4-1.06-4.54-2.73-6H20V4zm0 13v-1c0-1.1-.9-2-2-2s-2 .9-2 2v1c-.55 0-1 .45-1 1v3c0 .55.45 1 1 1h4c.55 0 1-.45 1-1v-3c0-.55-.45-1-1-1zm-1 0h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z", + fill: "currentColor" })); } diff --git a/icons/es5/SyncProblem.js b/icons/es5/SyncProblem.js index 4a5f54d0c3..bfbeced9d7 100644 --- a/icons/es5/SyncProblem.js +++ b/icons/es5/SyncProblem.js @@ -7,9 +7,11 @@ function SvgSyncProblem(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24A6.003 6.003 0 015 12a5.99 5.99 0 014-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24A6.003 6.003 0 0119 12a5.99 5.99 0 01-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z" + d: "M3 12c0 2.21.91 4.2 2.36 5.64L3 20h6v-6l-2.24 2.24A6.003 6.003 0 015 12a5.99 5.99 0 014-5.65V4.26C5.55 5.15 3 8.27 3 12zm8 5h2v-2h-2v2zM21 4h-6v6l2.24-2.24A6.003 6.003 0 0119 12a5.99 5.99 0 01-4 5.65v2.09c3.45-.89 6-4.01 6-7.74 0-2.21-.91-4.2-2.36-5.64L21 4zm-10 9h2V7h-2v6z", + fill: "currentColor" })); } diff --git a/icons/es5/SystemSecurityUpdate.js b/icons/es5/SystemSecurityUpdate.js index 82b945e2d1..14d2195ad8 100644 --- a/icons/es5/SystemSecurityUpdate.js +++ b/icons/es5/SystemSecurityUpdate.js @@ -7,9 +7,11 @@ function SvgSystemSecurityUpdate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z" + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-6h-3V8h-2v4H8l4 4 4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/SystemSecurityUpdateGood.js b/icons/es5/SystemSecurityUpdateGood.js index da82dbe396..a82c0642fd 100644 --- a/icons/es5/SystemSecurityUpdateGood.js +++ b/icons/es5/SystemSecurityUpdateGood.js @@ -7,9 +7,11 @@ function SvgSystemSecurityUpdateGood(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-7.95l-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z" + d: "M5 1v22h14V1H5zm12 17H7V6h10v12zm-1-7.95l-1.41-1.41-3.54 3.54-1.41-1.41-1.41 1.41L11.05 15 16 10.05z", + fill: "currentColor" })); } diff --git a/icons/es5/SystemSecurityUpdateWarning.js b/icons/es5/SystemSecurityUpdateWarning.js index 03a3dc73ce..4dc1b60509 100644 --- a/icons/es5/SystemSecurityUpdateWarning.js +++ b/icons/es5/SystemSecurityUpdateWarning.js @@ -7,11 +7,14 @@ function SvgSystemSecurityUpdateWarning(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 15h2v2h-2zm0-8h2v6h-2z" + d: "M11 15h2v2h-2zm0-8h2v6h-2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M5.01 1v22H19V1H5.01zM17 18H7V6h10v12z" + d: "M5.01 1v22H19V1H5.01zM17 18H7V6h10v12z", + fill: "currentColor" })); } diff --git a/icons/es5/SystemUpdate.js b/icons/es5/SystemUpdate.js index d2566bfd38..64cf6a415f 100644 --- a/icons/es5/SystemUpdate.js +++ b/icons/es5/SystemUpdate.js @@ -7,9 +7,11 @@ function SvgSystemUpdate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 1v22h14V1H5zm12 18H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z" + d: "M5 1v22h14V1H5zm12 18H7V5h10v14zm-1-6h-3V8h-2v5H8l4 4 4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/SystemUpdateAlt.js b/icons/es5/SystemUpdateAlt.js index bdae4c803d..88f2d02a1d 100644 --- a/icons/es5/SystemUpdateAlt.js +++ b/icons/es5/SystemUpdateAlt.js @@ -7,9 +7,11 @@ function SvgSystemUpdateAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13l4-4h-3V3h-2v9H8l4 4zM23 3h-8v1.99h6v14.03H3V4.99h6V3H1v18h22V3z" + d: "M12 16l4-4h-3V3h-2v9H8l4 4zm9-13h-6v1.99h6v14.03H3V4.99h6V3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm-9 13l4-4h-3V3h-2v9H8l4 4zM23 3h-8v1.99h6v14.03H3V4.99h6V3H1v18h22V3z", + fill: "currentColor" })); } diff --git a/icons/es5/Tab.js b/icons/es5/Tab.js index 5284b9e625..8738c9b58d 100644 --- a/icons/es5/Tab.js +++ b/icons/es5/Tab.js @@ -7,9 +7,11 @@ function SvgTab(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10zm2-16H1v18h22V3zm-2 16H3V5h10v4h8v10z" + d: "M21 3H3c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h18c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H3V5h10v4h8v10zm2-16H1v18h22V3zm-2 16H3V5h10v4h8v10z", + fill: "currentColor" })); } diff --git a/icons/es5/TabUnselected.js b/icons/es5/TabUnselected.js index 61c931c60d..194b55bbb0 100644 --- a/icons/es5/TabUnselected.js +++ b/icons/es5/TabUnselected.js @@ -7,9 +7,11 @@ function SvgTabUnselected(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm8 8h2v-2H9v2zm-8-4h2v-2H1v2zm0 4h2v-2H1v2zM23 3H13v6h10V3zm-2 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zM1 5h2V3H1v2zm20 8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z" + d: "M1 9h2V7H1v2zm0 4h2v-2H1v2zm8 8h2v-2H9v2zm-8-4h2v-2H1v2zm0 4h2v-2H1v2zM23 3H13v6h10V3zm-2 14h2v-2h-2v2zM9 5h2V3H9v2zM5 21h2v-2H5v2zM5 5h2V3H5v2zM1 5h2V3H1v2zm20 8h2v-2h-2v2zm-8 8h2v-2h-2v2zm4 0h2v-2h-2v2zm4 0h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/TableBar.js b/icons/es5/TableBar.js index e7e92ab2da..c379bc37f5 100644 --- a/icons/es5/TableBar.js +++ b/icons/es5/TableBar.js @@ -7,9 +7,11 @@ function SvgTableBar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7.5C22 5.57 17.52 4 12 4S2 5.57 2 7.5c0 1.81 3.95 3.31 9 3.48V15H8l-2 5h2l1.2-3h5.6l1.2 3h2l-2-5h-3v-4.02c5.05-.17 9-1.67 9-3.48z" + d: "M22 7.5C22 5.57 17.52 4 12 4S2 5.57 2 7.5c0 1.81 3.95 3.31 9 3.48V15H8l-2 5h2l1.2-3h5.6l1.2 3h2l-2-5h-3v-4.02c5.05-.17 9-1.67 9-3.48z", + fill: "currentColor" })); } diff --git a/icons/es5/TableChart.js b/icons/es5/TableChart.js index dfc9328e11..7b5add4d33 100644 --- a/icons/es5/TableChart.js +++ b/icons/es5/TableChart.js @@ -7,9 +7,11 @@ function SvgTableChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 10.02h5V21h-5V10.02zM17 21h5V10h-5v11zm5-18H3v5h19V3zM3 21h5V10H3v11z" + d: "M10 10.02h5V21h-5V10.02zM17 21h5V10h-5v11zm5-18H3v5h19V3zM3 21h5V10H3v11z", + fill: "currentColor" })); } diff --git a/icons/es5/TableRestaurant.js b/icons/es5/TableRestaurant.js index ed4d31a134..53bd9e5a18 100644 --- a/icons/es5/TableRestaurant.js +++ b/icons/es5/TableRestaurant.js @@ -7,9 +7,11 @@ function SvgTableRestaurant(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22.33 11l-2-7H3.67l-2 7H5.2L4 20h2l.67-5h10.67l.66 5h2l-1.2-9h3.53zm-15.4 2l.27-2h9.6l.27 2H6.93z" + d: "M22.33 11l-2-7H3.67l-2 7H5.2L4 20h2l.67-5h10.67l.66 5h2l-1.2-9h3.53zm-15.4 2l.27-2h9.6l.27 2H6.93z", + fill: "currentColor" })); } diff --git a/icons/es5/TableRows.js b/icons/es5/TableRows.js index 95e3a3183a..07e428a44b 100644 --- a/icons/es5/TableRows.js +++ b/icons/es5/TableRows.js @@ -7,9 +7,11 @@ function SvgTableRows(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 8H3V4h18v4zm0 2H3v4h18v-4zm0 6H3v4h18v-4z" + d: "M21 8H3V4h18v4zm0 2H3v4h18v-4zm0 6H3v4h18v-4z", + fill: "currentColor" })); } diff --git a/icons/es5/TableView.js b/icons/es5/TableView.js index 29e5ef649b..3194888240 100644 --- a/icons/es5/TableView.js +++ b/icons/es5/TableView.js @@ -7,9 +7,11 @@ function SvgTableView(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 7H7v14h14V7zm-2 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H3V3h14v3h-2V5H5v10h1v2z" + d: "M21 7H7v14h14V7zm-2 2v2H9V9h10zm-6 6v-2h2v2h-2zm2 2v2h-2v-2h2zm-4-2H9v-2h2v2zm6-2h2v2h-2v-2zm-8 4h2v2H9v-2zm8 2v-2h2v2h-2zM6 17H3V3h14v3h-2V5H5v10h1v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Tablet.js b/icons/es5/Tablet.js index 0604b82a40..9c88feca45 100644 --- a/icons/es5/Tablet.js +++ b/icons/es5/Tablet.js @@ -7,9 +7,11 @@ function SvgTablet(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 4H1v16h21.99L23 4zm-4 14H5V6h14v12z" + d: "M23 4H1v16h21.99L23 4zm-4 14H5V6h14v12z", + fill: "currentColor" })); } diff --git a/icons/es5/TabletAndroid.js b/icons/es5/TabletAndroid.js index c0178e7f23..dd3d61f102 100644 --- a/icons/es5/TabletAndroid.js +++ b/icons/es5/TabletAndroid.js @@ -7,9 +7,11 @@ function SvgTabletAndroid(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 0H3v24h18V0zm-7 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z" + d: "M21 0H3v24h18V0zm-7 22h-4v-1h4v1zm5.25-3H4.75V3h14.5v16z", + fill: "currentColor" })); } diff --git a/icons/es5/TabletMac.js b/icons/es5/TabletMac.js index 95aacee57f..a2d5784780 100644 --- a/icons/es5/TabletMac.js +++ b/icons/es5/TabletMac.js @@ -7,9 +7,11 @@ function SvgTabletMac(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 0H2v24h19V0zm-9.5 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z" + d: "M21 0H2v24h19V0zm-9.5 23c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm7.5-4H4V3h15v16z", + fill: "currentColor" })); } diff --git a/icons/es5/TagFaces.js b/icons/es5/TagFaces.js index b547be0447..2641a97947 100644 --- a/icons/es5/TagFaces.js +++ b/icons/es5/TagFaces.js @@ -7,9 +7,11 @@ function SvgTagFaces(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.01 2C6.49 2 2.02 6.48 2.02 12s4.47 10 9.99 10c5.53 0 10.01-4.48 10.01-10S17.54 2 12.01 2zm.01 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.35 8 15.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.35 8 8.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.91c.8 2.04 2.78 3.5 5.11 3.5z" + d: "M12.01 2C6.49 2 2.02 6.48 2.02 12s4.47 10 9.99 10c5.53 0 10.01-4.48 10.01-10S17.54 2 12.01 2zm.01 18c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8zm3.5-9c.83 0 1.5-.67 1.5-1.5S16.35 8 15.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm-7 0c.83 0 1.5-.67 1.5-1.5S9.35 8 8.52 8s-1.5.67-1.5 1.5.67 1.5 1.5 1.5zm3.5 6.5c2.33 0 4.31-1.46 5.11-3.5H6.91c.8 2.04 2.78 3.5 5.11 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/TakeoutDining.js b/icons/es5/TakeoutDining.js index eec6ec9392..348df35f79 100644 --- a/icons/es5/TakeoutDining.js +++ b/icons/es5/TakeoutDining.js @@ -7,9 +7,11 @@ function SvgTakeoutDining(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 7.46l-1.41-1.41L19 7.63l.03-.56L14.98 3H9.02L4.97 7.07l.03.5-1.59-1.56L2 7.44 4.66 10h14.69zM5.93 20h12.14l.63-8.45H5.3z" + d: "M22 7.46l-1.41-1.41L19 7.63l.03-.56L14.98 3H9.02L4.97 7.07l.03.5-1.59-1.56L2 7.44 4.66 10h14.69zM5.93 20h12.14l.63-8.45H5.3z", + fill: "currentColor" })); } diff --git a/icons/es5/TapAndPlay.js b/icons/es5/TapAndPlay.js index bbd8e50d92..a43c35eb81 100644 --- a/icons/es5/TapAndPlay.js +++ b/icons/es5/TapAndPlay.js @@ -7,9 +7,11 @@ function SvgTapAndPlay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2a9 9 0 019 9h2c0-6.08-4.92-11-11-11zM5 1v9.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H19V1H5z" + d: "M2 16v2c2.76 0 5 2.24 5 5h2c0-3.87-3.13-7-7-7zm0 4v3h3c0-1.66-1.34-3-3-3zm0-8v2a9 9 0 019 9h2c0-6.08-4.92-11-11-11zM5 1v9.37c.69.16 1.36.37 2 .64V5h10v13h-3.03c.52 1.25.84 2.59.95 4H19V1H5z", + fill: "currentColor" })); } diff --git a/icons/es5/Tapas.js b/icons/es5/Tapas.js index a64d2daf25..f175971d6c 100644 --- a/icons/es5/Tapas.js +++ b/icons/es5/Tapas.js @@ -7,9 +7,11 @@ function SvgTapas(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zM10 9H8V8h2a2.5 2.5 0 000-5H8V1H6v2H4a2.5 2.5 0 000 5h2v1H4a2.5 2.5 0 000 5h2v9h2v-9h2a2.5 2.5 0 000-5z" + d: "M22 10V1h-8v9c0 1.86 1.28 3.41 3 3.86V21h-2v2h6v-2h-2v-7.14c1.72-.45 3-2 3-3.86zm-2-7v3h-4V3h4zM10 9H8V8h2a2.5 2.5 0 000-5H8V1H6v2H4a2.5 2.5 0 000 5h2v1H4a2.5 2.5 0 000 5h2v9h2v-9h2a2.5 2.5 0 000-5z", + fill: "currentColor" })); } diff --git a/icons/es5/Task.js b/icons/es5/Task.js index 99cb4cb4cd..879378cefa 100644 --- a/icons/es5/Task.js +++ b/icons/es5/Task.js @@ -7,9 +7,11 @@ function SvgTask(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm-3.06 16L7.4 14.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L10.94 18zM13 9V3.5L18.5 9H13z" + d: "M14 2H4v20h16V8l-6-6zm-3.06 16L7.4 14.46l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41L10.94 18zM13 9V3.5L18.5 9H13z", + fill: "currentColor" })); } diff --git a/icons/es5/TaskAlt.js b/icons/es5/TaskAlt.js index 5e19e21c2f..27a16a5fd2 100644 --- a/icons/es5/TaskAlt.js +++ b/icons/es5/TaskAlt.js @@ -7,9 +7,11 @@ function SvgTaskAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 5.18L10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44A9.9 9.9 0 0012 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z" + d: "M22 5.18L10.59 16.6l-4.24-4.24 1.41-1.41 2.83 2.83 10-10L22 5.18zm-2.21 5.04c.13.57.21 1.17.21 1.78 0 4.42-3.58 8-8 8s-8-3.58-8-8 3.58-8 8-8c1.58 0 3.04.46 4.28 1.25l1.44-1.44A9.9 9.9 0 0012 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-1.19-.22-2.33-.6-3.39l-1.61 1.61z", + fill: "currentColor" })); } diff --git a/icons/es5/TaxiAlert.js b/icons/es5/TaxiAlert.js index bad42db439..6ee05919b1 100644 --- a/icons/es5/TaxiAlert.js +++ b/icons/es5/TaxiAlert.js @@ -7,11 +7,14 @@ function SvgTaxiAlert(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 13c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H8v2H4.43L2 13v9h3v-2h12v2h3v-9l-.09-.27c-.61.17-1.25.27-1.91.27zM6.5 17c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M18 13c-1.91 0-3.63-.76-4.89-2h-8.3l1.04-3h5.44C11.1 7.37 11 6.7 11 6s.1-1.37.29-2H8v2H4.43L2 13v9h3v-2h12v2h3v-9l-.09-.27c-.61.17-1.25.27-1.91.27zM6.5 17c-.83 0-1.5-.67-1.5-1.5S5.67 14 6.5 14s1.5.67 1.5 1.5S7.33 17 6.5 17zm9 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z" + d: "M18 1c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm.5 8h-1V8h1v1zm0-2h-1V3h1v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Telegram.js b/icons/es5/Telegram.js index 1b2220f89f..4715ddbf33 100644 --- a/icons/es5/Telegram.js +++ b/icons/es5/Telegram.js @@ -7,9 +7,11 @@ function SvgTelegram(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.58-1.38-.94-2.23-1.5-.99-.65-.35-1.01.22-1.59.15-.15 2.71-2.48 2.76-2.69a.2.2 0 00-.05-.18c-.06-.05-.14-.03-.21-.02-.09.02-1.49.95-4.22 2.79-.4.27-.76.41-1.08.4-.36-.01-1.04-.2-1.55-.37-.63-.2-1.12-.31-1.08-.66.02-.18.27-.36.74-.55 2.92-1.27 4.86-2.11 5.83-2.51 2.78-1.16 3.35-1.36 3.73-1.36.08 0 .27.02.39.12.1.08.13.19.14.27-.01.06.01.24 0 .38z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm4.64 6.8c-.15 1.58-.8 5.42-1.13 7.19-.14.75-.42 1-.68 1.03-.58.05-1.02-.38-1.58-.75-.88-.58-1.38-.94-2.23-1.5-.99-.65-.35-1.01.22-1.59.15-.15 2.71-2.48 2.76-2.69a.2.2 0 00-.05-.18c-.06-.05-.14-.03-.21-.02-.09.02-1.49.95-4.22 2.79-.4.27-.76.41-1.08.4-.36-.01-1.04-.2-1.55-.37-.63-.2-1.12-.31-1.08-.66.02-.18.27-.36.74-.55 2.92-1.27 4.86-2.11 5.83-2.51 2.78-1.16 3.35-1.36 3.73-1.36.08 0 .27.02.39.12.1.08.13.19.14.27-.01.06.01.24 0 .38z", + fill: "currentColor" })); } diff --git a/icons/es5/TempleBuddhist.js b/icons/es5/TempleBuddhist.js index 1ff2898074..f9b68ebbf8 100644 --- a/icons/es5/TempleBuddhist.js +++ b/icons/es5/TempleBuddhist.js @@ -7,13 +7,17 @@ function SvgTempleBuddhist(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 9.02c0 1.09-.89 1.98-1.98 1.98H4.98C3.89 11 3 10.11 3 9.02H1c0 1.86 1.28 3.4 3 3.84V22h6v-5h4v5h6v-9.14c.55-.14 3-1.04 3-3.86l-2 .02z" + d: "M21 9.02c0 1.09-.89 1.98-1.98 1.98H4.98C3.89 11 3 10.11 3 9.02H1c0 1.86 1.28 3.4 3 3.84V22h6v-5h4v5h6v-9.14c.55-.14 3-1.04 3-3.86l-2 .02z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M6 8.86V10h12V8.86c.55-.14 3-1.04 3-3.86l-2 .02C19 6.11 18.11 7 17.02 7H6.98C5.89 7 5 6.11 5 5.02H3c0 1.85 1.28 3.4 3 3.84z" + d: "M6 8.86V10h12V8.86c.55-.14 3-1.04 3-3.86l-2 .02C19 6.11 18.11 7 17.02 7H6.98C5.89 7 5 6.11 5 5.02H3c0 1.85 1.28 3.4 3 3.84z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M12 1L8.25 6h7.5z" + d: "M12 1L8.25 6h7.5z", + fill: "currentColor" })); } diff --git a/icons/es5/TempleHindu.js b/icons/es5/TempleHindu.js index 881d0a0517..0a42801f76 100644 --- a/icons/es5/TempleHindu.js +++ b/icons/es5/TempleHindu.js @@ -7,9 +7,11 @@ function SvgTempleHindu(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.6 11h10.8l-.9-3h-9zM20 11v2H4v-2H2v11h8v-5h4v5h8V11zm-4.1-5L15 3V1h-2v2h-2.03V1h-2v2.12L8.1 6z" + d: "M6.6 11h10.8l-.9-3h-9zM20 11v2H4v-2H2v11h8v-5h4v5h8V11zm-4.1-5L15 3V1h-2v2h-2.03V1h-2v2.12L8.1 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Terminal.js b/icons/es5/Terminal.js index 2d1b63a22c..d58c107c84 100644 --- a/icons/es5/Terminal.js +++ b/icons/es5/Terminal.js @@ -7,9 +7,11 @@ function SvgTerminal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 4v16h20V4H2zm18 14H4V8h16v10zm-2-1h-6v-2h6v2zM7.5 17l-1.41-1.41L8.67 13l-2.59-2.59L7.5 9l4 4-4 4z" + d: "M2 4v16h20V4H2zm18 14H4V8h16v10zm-2-1h-6v-2h6v2zM7.5 17l-1.41-1.41L8.67 13l-2.59-2.59L7.5 9l4 4-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Terrain.js b/icons/es5/Terrain.js index 4358ca5a03..58285c72cf 100644 --- a/icons/es5/Terrain.js +++ b/icons/es5/Terrain.js @@ -7,9 +7,11 @@ function SvgTerrain(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z" + d: "M14 6l-3.75 5 2.85 3.8-1.6 1.2C9.81 13.75 7 10 7 10l-6 8h22L14 6z", + fill: "currentColor" })); } diff --git a/icons/es5/TextDecrease.js b/icons/es5/TextDecrease.js index 539212600a..acbbe2126d 100644 --- a/icons/es5/TextDecrease.js +++ b/icons/es5/TextDecrease.js @@ -7,9 +7,11 @@ function SvgTextDecrease(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M.99 19h2.42l1.27-3.58h5.65L11.59 19h2.42L8.75 5h-2.5L.99 19zm4.42-5.61L7.44 7.6h.12l2.03 5.79H5.41zM23 11v2h-8v-2h8z" + d: "M.99 19h2.42l1.27-3.58h5.65L11.59 19h2.42L8.75 5h-2.5L.99 19zm4.42-5.61L7.44 7.6h.12l2.03 5.79H5.41zM23 11v2h-8v-2h8z", + fill: "currentColor" })); } diff --git a/icons/es5/TextFields.js b/icons/es5/TextFields.js index a429cc9999..03bdb62df5 100644 --- a/icons/es5/TextFields.js +++ b/icons/es5/TextFields.js @@ -7,9 +7,11 @@ function SvgTextFields(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z" + d: "M2.5 4v3h5v12h3V7h5V4h-13zm19 5h-9v3h3v7h3v-7h3V9z", + fill: "currentColor" })); } diff --git a/icons/es5/TextFormat.js b/icons/es5/TextFormat.js index 4fb0fb7883..fef9797b18 100644 --- a/icons/es5/TextFormat.js +++ b/icons/es5/TextFormat.js @@ -7,9 +7,11 @@ function SvgTextFormat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z" + d: "M5 17v2h14v-2H5zm4.5-4.2h5l.9 2.2h2.1L12.75 4h-1.5L6.5 15h2.1l.9-2.2zM12 5.98L13.87 11h-3.74L12 5.98z", + fill: "currentColor" })); } diff --git a/icons/es5/TextIncrease.js b/icons/es5/TextIncrease.js index 4052543aea..c5d1a20a79 100644 --- a/icons/es5/TextIncrease.js +++ b/icons/es5/TextIncrease.js @@ -7,9 +7,11 @@ function SvgTextIncrease(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M.99 19h2.42l1.27-3.58h5.65L11.59 19h2.42L8.75 5h-2.5L.99 19zm4.42-5.61L7.44 7.6h.12l2.03 5.79H5.41zM20 11h3v2h-3v3h-2v-3h-3v-2h3V8h2v3z" + d: "M.99 19h2.42l1.27-3.58h5.65L11.59 19h2.42L8.75 5h-2.5L.99 19zm4.42-5.61L7.44 7.6h.12l2.03 5.79H5.41zM20 11h3v2h-3v3h-2v-3h-3v-2h3V8h2v3z", + fill: "currentColor" })); } diff --git a/icons/es5/TextRotateUp.js b/icons/es5/TextRotateUp.js index ede6544d0c..4b636131f5 100644 --- a/icons/es5/TextRotateUp.js +++ b/icons/es5/TextRotateUp.js @@ -7,9 +7,11 @@ function SvgTextRotateUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z" + d: "M18 4l-3 3h2v13h2V7h2l-3-3zm-6.2 11.5v-5l2.2-.9V7.5L3 12.25v1.5l11 4.75v-2.1l-2.2-.9zM4.98 13L10 11.13v3.74L4.98 13z", + fill: "currentColor" })); } diff --git a/icons/es5/TextRotateVertical.js b/icons/es5/TextRotateVertical.js index aaa68b16fd..429b2650a5 100644 --- a/icons/es5/TextRotateVertical.js +++ b/icons/es5/TextRotateVertical.js @@ -7,9 +7,11 @@ function SvgTextRotateVertical(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z" + d: "M15.75 5h-1.5L9.5 16h2.1l.9-2.2h5l.9 2.2h2.1L15.75 5zm-2.62 7L15 6.98 16.87 12h-3.74zM6 20l3-3H7V4H5v13H3l3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/TextRotationAngledown.js b/icons/es5/TextRotationAngledown.js index 91e3904643..602925f8bb 100644 --- a/icons/es5/TextRotationAngledown.js +++ b/icons/es5/TextRotationAngledown.js @@ -7,9 +7,11 @@ function SvgTextRotationAngledown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z" + d: "M15 21v-4.24l-1.41 1.41-9.2-9.19-1.41 1.41 9.19 9.19L10.76 21H15zM11.25 8.48l3.54 3.54-.92 2.19 1.48 1.48 4.42-11.14-1.06-1.05L7.57 7.92 9.06 9.4l2.19-.92zm6.59-3.05l-2.23 4.87-2.64-2.64 4.87-2.23z", + fill: "currentColor" })); } diff --git a/icons/es5/TextRotationAngleup.js b/icons/es5/TextRotationAngleup.js index 952fb1c59b..092b35b11f 100644 --- a/icons/es5/TextRotationAngleup.js +++ b/icons/es5/TextRotationAngleup.js @@ -7,9 +7,11 @@ function SvgTextRotationAngleup(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z" + d: "M16.76 9l1.41 1.41-9.19 9.19 1.41 1.41 9.19-9.19L21 13.24V9h-4.24zm-8.28 3.75l3.54-3.54 2.19.92 1.48-1.48L4.56 4.23 3.5 5.29l4.42 11.14 1.48-1.48-.92-2.2zm-.82-1.72L5.43 6.16l4.87 2.23-2.64 2.64z", + fill: "currentColor" })); } diff --git a/icons/es5/TextRotationDown.js b/icons/es5/TextRotationDown.js index ba2d2d311c..ea086d51de 100644 --- a/icons/es5/TextRotationDown.js +++ b/icons/es5/TextRotationDown.js @@ -7,9 +7,11 @@ function SvgTextRotationDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z" + d: "M6 20l3-3H7V4H5v13H3l3 3zm6.2-11.5v5l-2.2.9v2.1l11-4.75v-1.5L10 5.5v2.1l2.2.9zm6.82 2.5L14 12.87V9.13L19.02 11z", + fill: "currentColor" })); } diff --git a/icons/es5/TextRotationNone.js b/icons/es5/TextRotationNone.js index 22a9dc0b59..066da1d6ed 100644 --- a/icons/es5/TextRotationNone.js +++ b/icons/es5/TextRotationNone.js @@ -7,9 +7,11 @@ function SvgTextRotationNone(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z" + d: "M21 18l-3-3v2H5v2h13v2l3-3zM9.5 11.8h5l.9 2.2h2.1L12.75 3h-1.5L6.5 14h2.1l.9-2.2zM12 4.98L13.87 10h-3.74L12 4.98z", + fill: "currentColor" })); } diff --git a/icons/es5/TextSnippet.js b/icons/es5/TextSnippet.js index b866bbb717..22f8e1466a 100644 --- a/icons/es5/TextSnippet.js +++ b/icons/es5/TextSnippet.js @@ -7,9 +7,11 @@ function SvgTextSnippet(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 9l-6-6H3v18h18V9zM7 7h7v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2z" + d: "M21 9l-6-6H3v18h18V9zM7 7h7v2H7V7zm10 10H7v-2h10v2zm0-4H7v-2h10v2z", + fill: "currentColor" })); } diff --git a/icons/es5/TextToSpeech.js b/icons/es5/TextToSpeech.js new file mode 100644 index 0000000000..aaab1b4476 --- /dev/null +++ b/icons/es5/TextToSpeech.js @@ -0,0 +1,15 @@ +function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); } +import * as React from "react"; +function SvgTextToSpeech(props) { + return /*#__PURE__*/React.createElement("svg", _extends({ + width: 24, + height: 24, + viewBox: "0 0 24 24", + fill: "none", + xmlns: "http://www.w3.org/2000/svg" + }, props), /*#__PURE__*/React.createElement("path", { + d: "M3.5 22c-.417 0-.77-.146-1.063-.438A1.447 1.447 0 012 20.5v-17c0-.417.146-.77.438-1.063A1.447 1.447 0 013.5 2H13l-1.5 1.5h-8v17h12V17H17v3.5c0 .417-.146.77-.438 1.063A1.446 1.446 0 0115.5 22h-12zM6 17.75v-1.5h7v1.5H6zm0-3v-1.5h5v1.5H6zm9.5.25l-4-4H8V6h3.5l4-4v13zm1.5-2.3V4.05c.933.35 1.667.967 2.2 1.85.533.883.8 1.75.8 2.6 0 .85-.292 1.692-.875 2.525S17.833 12.417 17 12.7zm0 3.55V14.7c1.167-.417 2.208-1.167 3.125-2.25.917-1.083 1.375-2.4 1.375-3.95 0-1.55-.458-2.867-1.375-3.95C19.208 3.467 18.167 2.717 17 2.3V.75c1.7.45 3.125 1.388 4.275 2.813C22.425 4.986 23 6.633 23 8.5c0 1.867-.575 3.512-1.725 4.938C20.125 14.863 18.7 15.8 17 16.25z", + fill: "currentColor" + })); +} +export default SvgTextToSpeech; \ No newline at end of file diff --git a/icons/es5/Textsms.js b/icons/es5/Textsms.js index d65241333d..6179d384a1 100644 --- a/icons/es5/Textsms.js +++ b/icons/es5/Textsms.js @@ -7,9 +7,11 @@ function SvgTextsms(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2.01L2 22l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z" + d: "M22 2H2.01L2 22l4-4h16V2zM9 11H7V9h2v2zm4 0h-2V9h2v2zm4 0h-2V9h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Texture.js b/icons/es5/Texture.js index 70e0c78630..8ee06a2363 100644 --- a/icons/es5/Texture.js +++ b/icons/es5/Texture.js @@ -7,9 +7,11 @@ function SvgTexture(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.66 3L3.07 19.59V21h1.41L21.07 4.42V3zm-7.71 0l-8.88 8.88v2.83L14.78 3zM3.07 3v4l4-4zm18 18v-4l-4 4zm-8.88 0l8.88-8.88V9.29L9.36 21z" + d: "M19.66 3L3.07 19.59V21h1.41L21.07 4.42V3zm-7.71 0l-8.88 8.88v2.83L14.78 3zM3.07 3v4l4-4zm18 18v-4l-4 4zm-8.88 0l8.88-8.88V9.29L9.36 21z", + fill: "currentColor" })); } diff --git a/icons/es5/TheaterComedy.js b/icons/es5/TheaterComedy.js index 20635abb05..1b6b6098d0 100644 --- a/icons/es5/TheaterComedy.js +++ b/icons/es5/TheaterComedy.js @@ -7,11 +7,14 @@ function SvgTheaterComedy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 2v5.5h3.5v3.31C14.55 9.8 15.64 9 16.99 9c1.38 0 2.5.84 2.5 1.88H14.5v3.56c.76.36 1.61.56 2.5.56 3.31 0 6-2.69 6-6V2H11zm4 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M11 2v5.5h3.5v3.31C14.55 9.8 15.64 9 16.99 9c1.38 0 2.5.84 2.5 1.88H14.5v3.56c.76.36 1.61.56 2.5.56 3.31 0 6-2.69 6-6V2H11zm4 5.5c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4 0c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M1 16c0 3.31 2.69 6 6 6s6-2.69 6-6V9H1v7zm6 1.88c-1.38 0-2.5-.84-2.5-1.88h5c0 1.04-1.12 1.88-2.5 1.88zm2-5.38c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z" + d: "M1 16c0 3.31 2.69 6 6 6s6-2.69 6-6V9H1v7zm6 1.88c-1.38 0-2.5-.84-2.5-1.88h5c0 1.04-1.12 1.88-2.5 1.88zm2-5.38c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1zm-4 0c.55 0 1 .45 1 1s-.45 1-1 1-1-.45-1-1 .45-1 1-1z", + fill: "currentColor" })); } diff --git a/icons/es5/Theaters.js b/icons/es5/Theaters.js index f2aab74813..c9f45fab88 100644 --- a/icons/es5/Theaters.js +++ b/icons/es5/Theaters.js @@ -7,9 +7,11 @@ function SvgTheaters(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z" + d: "M18 3v2h-2V3H8v2H6V3H4v18h2v-2h2v2h8v-2h2v2h2V3h-2zM8 17H6v-2h2v2zm0-4H6v-2h2v2zm0-4H6V7h2v2zm10 8h-2v-2h2v2zm0-4h-2v-2h2v2zm0-4h-2V7h2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Thermostat.js b/icons/es5/Thermostat.js index 3564574cdb..c0feb9203e 100644 --- a/icons/es5/Thermostat.js +++ b/icons/es5/Thermostat.js @@ -7,9 +7,11 @@ function SvgThermostat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z" + d: "M15 13V5c0-1.66-1.34-3-3-3S9 3.34 9 5v8c-1.21.91-2 2.37-2 4 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.09-2-4zm-4-8c0-.55.45-1 1-1s1 .45 1 1h-1v1h1v2h-1v1h1v2h-2V5z", + fill: "currentColor" })); } diff --git a/icons/es5/ThermostatAuto.js b/icons/es5/ThermostatAuto.js index 49d34a491d..53fa1b764b 100644 --- a/icons/es5/ThermostatAuto.js +++ b/icons/es5/ThermostatAuto.js @@ -7,9 +7,11 @@ function SvgThermostatAuto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39l1.31-3.72h.08l1.31 3.72h-2.7z" + d: "M11 12V6c0-1.66-1.34-3-3-3S5 4.34 5 6v6c-1.21.91-2 2.37-2 4 0 1.12.38 2.14 1 2.97V19h.02c.91 1.21 2.35 2 3.98 2s3.06-.79 3.98-2H12v-.03c.62-.83 1-1.85 1-2.97 0-1.63-.79-3.09-2-4zm-6 4c0-.94.45-1.84 1.2-2.4L7 13V6c0-.55.45-1 1-1s1 .45 1 1v7l.8.6c.75.57 1.2 1.46 1.2 2.4H5zM18.62 4h-1.61l-3.38 9h1.56l.81-2.3h3.63l.8 2.3H22l-3.38-9zm-2.15 5.39l1.31-3.72h.08l1.31 3.72h-2.7z", + fill: "currentColor" })); } diff --git a/icons/es5/ThumbDown.js b/icons/es5/ThumbDown.js index 8bc1f113e2..7b73711c6d 100644 --- a/icons/es5/ThumbDown.js +++ b/icons/es5/ThumbDown.js @@ -7,9 +7,11 @@ function SvgThumbDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.83 23L17 15.82V3H4.69L1 11.6V16h8.31l-1.12 5.38zM19 3h4v12h-4z" + d: "M9.83 23L17 15.82V3H4.69L1 11.6V16h8.31l-1.12 5.38zM19 3h4v12h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/ThumbDownAlt.js b/icons/es5/ThumbDownAlt.js index fb4e482b6d..a27c07876b 100644 --- a/icons/es5/ThumbDownAlt.js +++ b/icons/es5/ThumbDownAlt.js @@ -7,9 +7,11 @@ function SvgThumbDownAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69zM19 3h4v12h-4z" + d: "M1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69zM19 3h4v12h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/ThumbDownOffAlt.js b/icons/es5/ThumbDownOffAlt.js index 9d11d1732c..46800e7509 100644 --- a/icons/es5/ThumbDownOffAlt.js +++ b/icons/es5/ThumbDownOffAlt.js @@ -7,9 +7,11 @@ function SvgThumbDownOffAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3h4v12h-4zM1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69L1 11.6zM15 5v9.99l-4.34 4.35.61-2.93.5-2.41H3v-1.99L6.01 5H15z" + d: "M19 3h4v12h-4zM1 11.6V16h8.31l-1.12 5.38L9.83 23 17 15.82V3H4.69L1 11.6zM15 5v9.99l-4.34 4.35.61-2.93.5-2.41H3v-1.99L6.01 5H15z", + fill: "currentColor" })); } diff --git a/icons/es5/ThumbUp.js b/icons/es5/ThumbUp.js index a2c6090e39..e48511e112 100644 --- a/icons/es5/ThumbUp.js +++ b/icons/es5/ThumbUp.js @@ -7,9 +7,11 @@ function SvgThumbUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.17 1L7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z" + d: "M14.17 1L7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z", + fill: "currentColor" })); } diff --git a/icons/es5/ThumbUpAlt.js b/icons/es5/ThumbUpAlt.js index a81640e01b..d221c0533d 100644 --- a/icons/es5/ThumbUpAlt.js +++ b/icons/es5/ThumbUpAlt.js @@ -7,9 +7,11 @@ function SvgThumbUpAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.17 1L7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z" + d: "M14.17 1L7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38zM1 9h4v12H1z", + fill: "currentColor" })); } diff --git a/icons/es5/ThumbUpOffAlt.js b/icons/es5/ThumbUpOffAlt.js index 792f4ba7e2..ef15bf2767 100644 --- a/icons/es5/ThumbUpOffAlt.js +++ b/icons/es5/ThumbUpOffAlt.js @@ -7,9 +7,11 @@ function SvgThumbUpOffAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.17 1L7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38L14.17 1zM1 9h4v12H1V9z" + d: "M14.17 1L7 8.18V21h12.31L23 12.4V8h-8.31l1.12-5.38L14.17 1zM1 9h4v12H1V9z", + fill: "currentColor" })); } diff --git a/icons/es5/ThumbsUpDown.js b/icons/es5/ThumbsUpDown.js index a018602f9f..15126c79ee 100644 --- a/icons/es5/ThumbsUpDown.js +++ b/icons/es5/ThumbsUpDown.js @@ -7,9 +7,11 @@ function SvgThumbsUpDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5H5.82l.78-3.78L5.38 0 0 5.38V14h9.24L12 7.54zm2.76 5L12 16.46V19h6.18l-.78 3.78L18.62 24 24 18.62V10z" + d: "M12 5H5.82l.78-3.78L5.38 0 0 5.38V14h9.24L12 7.54zm2.76 5L12 16.46V19h6.18l-.78 3.78L18.62 24 24 18.62V10z", + fill: "currentColor" })); } diff --git a/icons/es5/Thunderstorm.js b/icons/es5/Thunderstorm.js index 27148cee3e..406591a9a3 100644 --- a/icons/es5/Thunderstorm.js +++ b/icons/es5/Thunderstorm.js @@ -7,9 +7,11 @@ function SvgThunderstorm(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.92 7.02C17.45 4.18 14.97 2 12 2 9.82 2 7.83 3.18 6.78 5.06 4.09 5.41 2 7.74 2 10.5 2 13.53 4.47 16 7.5 16h10c2.48 0 4.5-2.02 4.5-4.5a4.5 4.5 0 00-4.08-4.48zM14.8 17l-2.9 3.32 2 1L11.55 24h2.65l2.9-3.32-2-1L17.45 17zm-6 0l-2.9 3.32 2 1L5.55 24H8.2l2.9-3.32-2-1L11.45 17z" + d: "M17.92 7.02C17.45 4.18 14.97 2 12 2 9.82 2 7.83 3.18 6.78 5.06 4.09 5.41 2 7.74 2 10.5 2 13.53 4.47 16 7.5 16h10c2.48 0 4.5-2.02 4.5-4.5a4.5 4.5 0 00-4.08-4.48zM14.8 17l-2.9 3.32 2 1L11.55 24h2.65l2.9-3.32-2-1L17.45 17zm-6 0l-2.9 3.32 2 1L5.55 24H8.2l2.9-3.32-2-1L11.45 17z", + fill: "currentColor" })); } diff --git a/icons/es5/Tiktok.js b/icons/es5/Tiktok.js index 4974e89f2f..aff595ecb5 100644 --- a/icons/es5/Tiktok.js +++ b/icons/es5/Tiktok.js @@ -7,9 +7,11 @@ function SvgTiktok(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.6 5.82s.51.5 0 0A4.278 4.278 0 0115.54 3h-3.09v12.4a2.592 2.592 0 01-2.59 2.5c-1.42 0-2.6-1.16-2.6-2.6 0-1.72 1.66-3.01 3.37-2.48V9.66c-3.45-.46-6.47 2.22-6.47 5.64 0 3.33 2.76 5.7 5.69 5.7 3.14 0 5.69-2.55 5.69-5.7V9.01a7.35 7.35 0 004.3 1.38V7.3s-1.88.09-3.24-1.48z" + d: "M16.6 5.82s.51.5 0 0A4.278 4.278 0 0115.54 3h-3.09v12.4a2.592 2.592 0 01-2.59 2.5c-1.42 0-2.6-1.16-2.6-2.6 0-1.72 1.66-3.01 3.37-2.48V9.66c-3.45-.46-6.47 2.22-6.47 5.64 0 3.33 2.76 5.7 5.69 5.7 3.14 0 5.69-2.55 5.69-5.7V9.01a7.35 7.35 0 004.3 1.38V7.3s-1.88.09-3.24-1.48z", + fill: "currentColor" })); } diff --git a/icons/es5/TimeToLeave.js b/icons/es5/TimeToLeave.js index 361b3bcdf0..793995b573 100644 --- a/icons/es5/TimeToLeave.js +++ b/icons/es5/TimeToLeave.js @@ -7,9 +7,11 @@ function SvgTimeToLeave(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.43-7zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z" + d: "M18.57 4H5.43L3 11v9h3v-2h12v2h3v-9l-2.43-7zM6.5 15c-.83 0-1.5-.67-1.5-1.5S5.67 12 6.5 12s1.5.67 1.5 1.5S7.33 15 6.5 15zm11 0c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zM5 10l1.5-4.5h11L19 10H5z", + fill: "currentColor" })); } diff --git a/icons/es5/Timeline.js b/icons/es5/Timeline.js index ace4907fd6..f7607e3430 100644 --- a/icons/es5/Timeline.js +++ b/icons/es5/Timeline.js @@ -7,9 +7,11 @@ function SvgTimeline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 8c0 1.1-.9 2-2 2a1.7 1.7 0 01-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7 1.7 0 0119 8c0-1.1.9-2 2-2s2 .9 2 2zm0 0c0 1.1-.9 2-2 2a1.7 1.7 0 01-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7 1.7 0 0119 8c0-1.1.9-2 2-2s2 .9 2 2z" + d: "M23 8c0 1.1-.9 2-2 2a1.7 1.7 0 01-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7 1.7 0 0119 8c0-1.1.9-2 2-2s2 .9 2 2zm0 0c0 1.1-.9 2-2 2a1.7 1.7 0 01-.51-.07l-3.56 3.55c.05.16.07.34.07.52 0 1.1-.9 2-2 2s-2-.9-2-2c0-.18.02-.36.07-.52l-2.55-2.55c-.16.05-.34.07-.52.07s-.36-.02-.52-.07l-4.55 4.56c.05.16.07.33.07.51 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.18 0 .35.02.51.07l4.56-4.55C8.02 9.36 8 9.18 8 9c0-1.1.9-2 2-2s2 .9 2 2c0 .18-.02.36-.07.52l2.55 2.55c.16-.05.34-.07.52-.07s.36.02.52.07l3.55-3.56A1.7 1.7 0 0119 8c0-1.1.9-2 2-2s2 .9 2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Timer.js b/icons/es5/Timer.js index 6338f5e139..8fa81ef5f4 100644 --- a/icons/es5/Timer.js +++ b/icons/es5/Timer.js @@ -7,9 +7,11 @@ function SvgTimer(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42A8.962 8.962 0 0012 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a8.994 8.994 0 007.03-14.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z" + d: "M15 1H9v2h6V1zm-4 13h2V8h-2v6zm8.03-6.61l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42A8.962 8.962 0 0012 4c-4.97 0-9 4.03-9 9s4.02 9 9 9a8.994 8.994 0 007.03-14.61zM12 20c-3.87 0-7-3.13-7-7s3.13-7 7-7 7 3.13 7 7-3.13 7-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Timer10.js b/icons/es5/Timer10.js index fda927b59b..ce1e95ec16 100644 --- a/icons/es5/Timer10.js +++ b/icons/es5/Timer10.js @@ -7,9 +7,11 @@ function SvgTimer10(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38a6.64 6.64 0 01-.87-.23c-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3a.978.978 0 01.01-.8c.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95A2.517 2.517 0 0023 9.81c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24a1.333 1.333 0 01-.59-1.11h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z" + d: "M-.01 7.72V9.4l3-1V18h2V6h-.25L-.01 7.72zm23.78 6.65c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38a6.64 6.64 0 01-.87-.23c-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3a.978.978 0 01.01-.8c.06-.13.15-.25.27-.34.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95A2.517 2.517 0 0023 9.81c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84-.16.32-.23.65-.23 1.01s.08.69.23.96c.15.28.36.52.64.73.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24a1.333 1.333 0 01-.59-1.11h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66s.98.25 1.58.25c.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02zm-9.96-7.32c-.34-.4-.75-.7-1.23-.88-.47-.18-1.01-.27-1.59-.27s-1.11.09-1.59.27c-.48.18-.89.47-1.23.88-.34.41-.6.93-.79 1.59-.18.65-.28 1.45-.28 2.39v1.92c0 .94.09 1.74.28 2.39.19.66.45 1.19.8 1.6.34.41.75.71 1.23.89s1.01.28 1.59.28c.59 0 1.12-.09 1.59-.28.48-.18.88-.48 1.22-.89s.6-.94.78-1.6c.18-.65.28-1.45.28-2.39v-1.92c0-.94-.09-1.74-.28-2.39-.18-.66-.44-1.19-.78-1.59zm-.92 6.17c0 .6-.04 1.11-.12 1.53s-.2.76-.36 1.02c-.16.26-.36.45-.59.57-.23.12-.51.18-.82.18-.3 0-.58-.06-.82-.18s-.44-.31-.6-.57c-.16-.26-.29-.6-.38-1.02s-.13-.93-.13-1.53v-2.5c0-.6.04-1.11.13-1.52s.21-.74.38-1c.16-.25.36-.43.6-.55.24-.11.51-.17.81-.17.31 0 .58.06.81.17.24.11.44.29.6.55.16.25.29.58.37.99s.13.92.13 1.52v2.51h-.01z", + fill: "currentColor" })); } diff --git a/icons/es5/Timer10Select.js b/icons/es5/Timer10Select.js index 4be6537716..3a55e79f25 100644 --- a/icons/es5/Timer10Select.js +++ b/icons/es5/Timer10Select.js @@ -7,9 +7,11 @@ function SvgTimer10Select(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 8v8h-3V8h3m3-3H7v14h9V5zM1 8h2v11h3V5H1v3zm22 3h-6v5h4v1h-4v2h6v-5h-4v-1h4v-2z" + d: "M13 8v8h-3V8h3m3-3H7v14h9V5zM1 8h2v11h3V5H1v3zm22 3h-6v5h4v1h-4v2h6v-5h-4v-1h4v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Timer3.js b/icons/es5/Timer3.js index cda743bf34..fa5daa894a 100644 --- a/icons/es5/Timer3.js +++ b/icons/es5/Timer3.js @@ -7,9 +7,11 @@ function SvgTimer3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65a3.38 3.38 0 00-.93-.48c.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38a6.64 6.64 0 01-.87-.23c-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95a2.517 2.517 0 00-.93-1.97c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24a1.333 1.333 0 01-.59-1.11h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z" + d: "M11.61 12.97c-.16-.24-.36-.46-.62-.65a3.38 3.38 0 00-.93-.48c.3-.14.57-.3.8-.5.23-.2.42-.41.57-.64.15-.23.27-.46.34-.71.08-.24.11-.49.11-.73 0-.55-.09-1.04-.28-1.46-.18-.42-.44-.77-.78-1.06-.33-.28-.73-.5-1.2-.64-.45-.13-.97-.2-1.53-.2-.55 0-1.06.08-1.52.24-.47.17-.87.4-1.2.69-.33.29-.6.63-.78 1.03-.2.39-.29.83-.29 1.29h1.98c0-.26.05-.49.14-.69.09-.2.22-.38.38-.52.17-.14.36-.25.58-.33s.46-.12.73-.12c.61 0 1.06.16 1.36.47.3.31.44.75.44 1.32 0 .27-.04.52-.12.74-.08.22-.21.41-.38.57s-.38.28-.63.37-.55.13-.89.13H6.72v1.57H7.9c.34 0 .64.04.91.11.27.08.5.19.69.35.19.16.34.36.44.61.1.24.16.54.16.87 0 .62-.18 1.09-.53 1.42-.35.33-.84.49-1.45.49-.29 0-.56-.04-.8-.13-.24-.08-.44-.2-.61-.36s-.3-.34-.39-.56c-.09-.22-.14-.46-.14-.72H4.19c0 .55.11 1.03.32 1.45.21.42.5.77.86 1.05s.77.49 1.24.63.96.21 1.48.21c.57 0 1.09-.08 1.58-.23s.91-.38 1.26-.68c.36-.3.64-.66.84-1.1.2-.43.3-.93.3-1.48 0-.29-.04-.58-.11-.86-.08-.25-.19-.51-.35-.76zm9.26 1.4c-.14-.28-.35-.53-.63-.74-.28-.21-.61-.39-1.01-.53s-.85-.27-1.35-.38a6.64 6.64 0 01-.87-.23c-.23-.08-.41-.16-.55-.25s-.23-.19-.28-.3c-.05-.11-.08-.24-.08-.39s.03-.28.09-.41.15-.25.27-.34c.12-.1.27-.18.45-.24s.4-.09.64-.09c.25 0 .47.04.66.11s.35.17.48.29.22.26.29.42c.06.16.1.32.1.49h1.95a2.517 2.517 0 00-.93-1.97c-.3-.25-.66-.44-1.09-.59-.43-.15-.92-.22-1.46-.22-.51 0-.98.07-1.39.21s-.77.33-1.06.57c-.29.24-.51.52-.67.84s-.23.65-.23 1.01.08.68.23.96.37.52.64.73c.27.21.6.38.98.53.38.14.81.26 1.27.36.39.08.71.17.95.26s.43.19.57.29c.13.1.22.22.27.34.05.12.07.25.07.39 0 .32-.13.57-.4.77s-.66.29-1.17.29c-.22 0-.43-.02-.64-.08-.21-.05-.4-.13-.56-.24a1.333 1.333 0 01-.59-1.11h-1.89c0 .36.08.71.24 1.05s.39.65.7.93c.31.27.69.49 1.15.66.46.17.98.25 1.58.25.53 0 1.01-.06 1.44-.19.43-.13.8-.31 1.11-.54.31-.23.54-.51.71-.83.17-.32.25-.67.25-1.06-.02-.4-.09-.74-.24-1.02z", + fill: "currentColor" })); } diff --git a/icons/es5/Timer3Select.js b/icons/es5/Timer3Select.js index a3bf1d0874..b4da953bf9 100644 --- a/icons/es5/Timer3Select.js +++ b/icons/es5/Timer3Select.js @@ -7,9 +7,11 @@ function SvgTimer3Select(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11v2h-4v1h4v5h-6v-2h4v-1h-4v-5h6zM4 5v3h6v2.5H4v3h6V16H4v3h9V5H4z" + d: "M21 11v2h-4v1h4v5h-6v-2h4v-1h-4v-5h6zM4 5v3h6v2.5H4v3h6V16H4v3h9V5H4z", + fill: "currentColor" })); } diff --git a/icons/es5/TimerOff.js b/icons/es5/TimerOff.js index 98f0c160ba..45f6cea6c2 100644 --- a/icons/es5/TimerOff.js +++ b/icons/es5/TimerOff.js @@ -7,9 +7,11 @@ function SvgTimerOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 1h6v2H9zm4 7v2.17l6.98 6.98a8.963 8.963 0 00-.95-9.76l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42a8.962 8.962 0 00-9.77-.96L10.83 8H13zM2.81 2.81L1.39 4.22l3.4 3.4a8.994 8.994 0 0012.59 12.59l2.4 2.4 1.41-1.41L2.81 2.81z" + d: "M9 1h6v2H9zm4 7v2.17l6.98 6.98a8.963 8.963 0 00-.95-9.76l1.42-1.42c-.43-.51-.9-.99-1.41-1.41l-1.42 1.42a8.962 8.962 0 00-9.77-.96L10.83 8H13zM2.81 2.81L1.39 4.22l3.4 3.4a8.994 8.994 0 0012.59 12.59l2.4 2.4 1.41-1.41L2.81 2.81z", + fill: "currentColor" })); } diff --git a/icons/es5/TipsAndUpdates.js b/icons/es5/TipsAndUpdates.js index 93a331c12a..a48661d32f 100644 --- a/icons/es5/TipsAndUpdates.js +++ b/icons/es5/TipsAndUpdates.js @@ -7,9 +7,11 @@ function SvgTipsAndUpdates(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm-2-1h8v-2H5v2zm11.5-9.5c0 3.82-2.66 5.86-3.77 6.5H5.27c-1.11-.64-3.77-2.68-3.77-6.5C1.5 5.36 4.86 2 9 2s7.5 3.36 7.5 7.5zm4.87-2.13L20 8l1.37.63L22 10l.63-1.37L24 8l-1.37-.63L22 6l-.63 1.37zM19 6l.94-2.06L22 3l-2.06-.94L19 0l-.94 2.06L16 3l2.06.94L19 6z" + d: "M7 20h4c0 1.1-.9 2-2 2s-2-.9-2-2zm-2-1h8v-2H5v2zm11.5-9.5c0 3.82-2.66 5.86-3.77 6.5H5.27c-1.11-.64-3.77-2.68-3.77-6.5C1.5 5.36 4.86 2 9 2s7.5 3.36 7.5 7.5zm4.87-2.13L20 8l1.37.63L22 10l.63-1.37L24 8l-1.37-.63L22 6l-.63 1.37zM19 6l.94-2.06L22 3l-2.06-.94L19 0l-.94 2.06L16 3l2.06.94L19 6z", + fill: "currentColor" })); } diff --git a/icons/es5/TireRepair.js b/icons/es5/TireRepair.js index 80d419cbc2..7efa4b35f6 100644 --- a/icons/es5/TireRepair.js +++ b/icons/es5/TireRepair.js @@ -7,11 +7,14 @@ function SvgTireRepair(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 7a1.003 1.003 0 001.71.71c.4-.4 1.04-2.46 1.04-2.46s-2.06.64-2.46 1.04c-.18.18-.29.43-.29.71z" + d: "M18 7a1.003 1.003 0 001.71.71c.4-.4 1.04-2.46 1.04-2.46s-2.06.64-2.46 1.04c-.18.18-.29.43-.29.71z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M19 2c-2.76 0-5 2.24-5 5 0 2.05 1.23 3.81 3 4.58V13h1v6h-2v-6h-4V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2v-4h2v6h6v-8h1v-1.42c1.77-.77 3-2.53 3-4.58 0-2.76-2.24-5-5-5zM6 19.5l-2-2v-2.83l2 2v2.83zm0-5l-2-2V9.67l2 2v2.83zm0-5l-2-2V4.67l2 2V9.5zm4 8l-2 2v-2.83l2-2v2.83zm0-5l-2 2v-2.83l2-2v2.83zm0-5l-2 2V6.67l2-2V7.5zm9 2.5c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + d: "M19 2c-2.76 0-5 2.24-5 5 0 2.05 1.23 3.81 3 4.58V13h1v6h-2v-6h-4V5c0-1.1-.9-2-2-2H4c-1.1 0-2 .9-2 2v14c0 1.1.9 2 2 2h6c1.1 0 2-.9 2-2v-4h2v6h6v-8h1v-1.42c1.77-.77 3-2.53 3-4.58 0-2.76-2.24-5-5-5zM6 19.5l-2-2v-2.83l2 2v2.83zm0-5l-2-2V9.67l2 2v2.83zm0-5l-2-2V4.67l2 2V9.5zm4 8l-2 2v-2.83l2-2v2.83zm0-5l-2 2v-2.83l2-2v2.83zm0-5l-2 2V6.67l2-2V7.5zm9 2.5c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/Title.js b/icons/es5/Title.js index 59df548e65..16318d7185 100644 --- a/icons/es5/Title.js +++ b/icons/es5/Title.js @@ -7,9 +7,11 @@ function SvgTitle(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 4v3h5.5v12h3V7H19V4H5z" + d: "M5 4v3h5.5v12h3V7H19V4H5z", + fill: "currentColor" })); } diff --git a/icons/es5/Toc.js b/icons/es5/Toc.js index d1a03af470..ff577e8ca2 100644 --- a/icons/es5/Toc.js +++ b/icons/es5/Toc.js @@ -7,9 +7,11 @@ function SvgToc(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2zM3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z" + d: "M3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2zM3 9h14V7H3v2zm0 4h14v-2H3v2zm0 4h14v-2H3v2zm16 0h2v-2h-2v2zm0-10v2h2V7h-2zm0 6h2v-2h-2v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Today.js b/icons/es5/Today.js index 526f95d3b8..c140f6ffdc 100644 --- a/icons/es5/Today.js +++ b/icons/es5/Today.js @@ -7,9 +7,11 @@ function SvgToday(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11zM7 10h5v5H7v-5z" + d: "M21 3h-3V1h-2v2H8V1H6v2H3v18h18V3zm-2 16H5V8h14v11zM7 10h5v5H7v-5z", + fill: "currentColor" })); } diff --git a/icons/es5/ToggleOff.js b/icons/es5/ToggleOff.js index 257bf4a590..141b0f3cb4 100644 --- a/icons/es5/ToggleOff.js +++ b/icons/es5/ToggleOff.js @@ -7,9 +7,11 @@ function SvgToggleOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zM7 15c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/ToggleOn.js b/icons/es5/ToggleOn.js index 982e6cfd43..26ac0a180e 100644 --- a/icons/es5/ToggleOn.js +++ b/icons/es5/ToggleOn.js @@ -7,9 +7,11 @@ function SvgToggleOn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z" + d: "M17 7H7c-2.76 0-5 2.24-5 5s2.24 5 5 5h10c2.76 0 5-2.24 5-5s-2.24-5-5-5zm0 8c-1.66 0-3-1.34-3-3s1.34-3 3-3 3 1.34 3 3-1.34 3-3 3z", + fill: "currentColor" })); } diff --git a/icons/es5/Token.js b/icons/es5/Token.js index 27d3ff51f8..ce07b0ebff 100644 --- a/icons/es5/Token.js +++ b/icons/es5/Token.js @@ -7,9 +7,11 @@ function SvgToken(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.97 6.43L12 2 4.03 6.43 9.1 9.24C9.83 8.48 10.86 8 12 8s2.17.48 2.9 1.24l5.07-2.81zM10 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm1 9.44L3 17V8.14l5.13 2.85c-.09.32-.13.66-.13 1.01 0 1.86 1.27 3.43 3 3.87v5.57zm2 0v-5.57c1.73-.44 3-2.01 3-3.87 0-.35-.04-.69-.13-1.01L21 8.14V17l-8 4.44z" + d: "M19.97 6.43L12 2 4.03 6.43 9.1 9.24C9.83 8.48 10.86 8 12 8s2.17.48 2.9 1.24l5.07-2.81zM10 12c0-1.1.9-2 2-2s2 .9 2 2-.9 2-2 2-2-.9-2-2zm1 9.44L3 17V8.14l5.13 2.85c-.09.32-.13.66-.13 1.01 0 1.86 1.27 3.43 3 3.87v5.57zm2 0v-5.57c1.73-.44 3-2.01 3-3.87 0-.35-.04-.69-.13-1.01L21 8.14V17l-8 4.44z", + fill: "currentColor" })); } diff --git a/icons/es5/Toll.js b/icons/es5/Toll.js index 157fa7a60e..4dbbd9fe45 100644 --- a/icons/es5/Toll.js +++ b/icons/es5/Toll.js @@ -7,9 +7,11 @@ function SvgToll(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12a5.99 5.99 0 014-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09A5.99 5.99 0 013 12z" + d: "M15 4c-4.42 0-8 3.58-8 8s3.58 8 8 8 8-3.58 8-8-3.58-8-8-8zm0 14c-3.31 0-6-2.69-6-6s2.69-6 6-6 6 2.69 6 6-2.69 6-6 6zM3 12a5.99 5.99 0 014-5.65V4.26C3.55 5.15 1 8.27 1 12s2.55 6.85 6 7.74v-2.09A5.99 5.99 0 013 12z", + fill: "currentColor" })); } diff --git a/icons/es5/Tonality.js b/icons/es5/Tonality.js index bef5d01c72..e38cc6e2a4 100644 --- a/icons/es5/Tonality.js +++ b/icons/es5/Tonality.js @@ -7,9 +7,11 @@ function SvgTonality(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z" + d: "M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-1 17.93c-3.94-.49-7-3.85-7-7.93s3.05-7.44 7-7.93v15.86zm2-15.86c1.03.13 2 .45 2.87.93H13v-.93zM13 7h5.24c.25.31.48.65.68 1H13V7zm0 3h6.74c.08.33.15.66.19 1H13v-1zm0 9.93V19h2.87c-.87.48-1.84.8-2.87.93zM18.24 17H13v-1h5.92c-.2.35-.43.69-.68 1zm1.5-3H13v-1h6.93c-.04.34-.11.67-.19 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Topic.js b/icons/es5/Topic.js index 1febd75b63..404e45e754 100644 --- a/icons/es5/Topic.js +++ b/icons/es5/Topic.js @@ -7,9 +7,11 @@ function SvgTopic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 6l-2-2H2v16h20V6H12zm2 10H6v-2h8v2zm4-4H6v-2h12v2z" + d: "M12 6l-2-2H2v16h20V6H12zm2 10H6v-2h8v2zm4-4H6v-2h12v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Tornado.js b/icons/es5/Tornado.js index 07bf55a6ad..9575de7786 100644 --- a/icons/es5/Tornado.js +++ b/icons/es5/Tornado.js @@ -7,9 +7,11 @@ function SvgTornado(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.11 8L23 3H1l2.89 5zM7.95 15L12 22l4.05-7zm11-5H5.05l1.74 3h10.42z" + d: "M20.11 8L23 3H1l2.89 5zM7.95 15L12 22l4.05-7zm11-5H5.05l1.74 3h10.42z", + fill: "currentColor" })); } diff --git a/icons/es5/TouchApp.js b/icons/es5/TouchApp.js index 2941fb7b65..027ef20d5b 100644 --- a/icons/es5/TouchApp.js +++ b/icons/es5/TouchApp.js @@ -7,9 +7,11 @@ function SvgTouchApp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.25 9.24V5.5a2.5 2.5 0 015 0v3.74c1.21-.81 2-2.18 2-3.74 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5c0 1.56.79 2.93 2 3.74zm5.08 2.26h-1.08v-6c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v10.74l-4.04-.85L4 16.62 9.38 22h8.67l1.07-7.62-5.79-2.88z" + d: "M8.25 9.24V5.5a2.5 2.5 0 015 0v3.74c1.21-.81 2-2.18 2-3.74 0-2.49-2.01-4.5-4.5-4.5s-4.5 2.01-4.5 4.5c0 1.56.79 2.93 2 3.74zm5.08 2.26h-1.08v-6c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v10.74l-4.04-.85L4 16.62 9.38 22h8.67l1.07-7.62-5.79-2.88z", + fill: "currentColor" })); } diff --git a/icons/es5/Tour.js b/icons/es5/Tour.js index b7623ca3aa..8bbc9348d8 100644 --- a/icons/es5/Tour.js +++ b/icons/es5/Tour.js @@ -7,9 +7,11 @@ function SvgTour(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z" + d: "M21 4H7V2H5v20h2v-8h14l-2-5 2-5zm-6 5c0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2 2 .9 2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Toys.js b/icons/es5/Toys.js index 26051686c0..14b0890361 100644 --- a/icons/es5/Toys.js +++ b/icons/es5/Toys.js @@ -7,9 +7,11 @@ function SvgToys(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.72 10l-2-6H7.28L5.81 8.4 4.41 7l1-1L4 4.59.59 8 2 9.41l1-1L4.59 10H2v8h2.18A3 3 0 007 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2a3 3 0 002.82-2H22v-8h-3.28zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-8H7.41l-.02-.02L8.72 6H11v4zm2 0V6h2.28l1.33 4H13zm4 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z" + d: "M18.72 10l-2-6H7.28L5.81 8.4 4.41 7l1-1L4 4.59.59 8 2 9.41l1-1L4.59 10H2v8h2.18A3 3 0 007 20c1.3 0 2.4-.84 2.82-2h4.37c.41 1.16 1.51 2 2.82 2a3 3 0 002.82-2H22v-8h-3.28zM7 18c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1zm4-8H7.41l-.02-.02L8.72 6H11v4zm2 0V6h2.28l1.33 4H13zm4 8c-.55 0-1-.45-1-1s.45-1 1-1 1 .45 1 1-.45 1-1 1z", + fill: "currentColor" })); } diff --git a/icons/es5/TrackChanges.js b/icons/es5/TrackChanges.js index f247877804..f99f474a80 100644 --- a/icons/es5/TrackChanges.js +++ b/icons/es5/TrackChanges.js @@ -7,9 +7,11 @@ function SvgTrackChanges(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.07 4.93l-1.41 1.41A8.014 8.014 0 0120 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z" + d: "M19.07 4.93l-1.41 1.41A8.014 8.014 0 0120 12c0 4.42-3.58 8-8 8s-8-3.58-8-8c0-4.08 3.05-7.44 7-7.93v2.02C8.16 6.57 6 9.03 6 12c0 3.31 2.69 6 6 6s6-2.69 6-6c0-1.66-.67-3.16-1.76-4.24l-1.41 1.41C15.55 9.9 16 10.9 16 12c0 2.21-1.79 4-4 4s-4-1.79-4-4c0-1.86 1.28-3.41 3-3.86v2.14c-.6.35-1 .98-1 1.72 0 1.1.9 2 2 2s2-.9 2-2c0-.74-.4-1.38-1-1.72V2h-1C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10c0-2.76-1.12-5.26-2.93-7.07z", + fill: "currentColor" })); } diff --git a/icons/es5/Traffic.js b/icons/es5/Traffic.js index 2a6e472a0b..a8e8271994 100644 --- a/icons/es5/Traffic.js +++ b/icons/es5/Traffic.js @@ -7,9 +7,11 @@ function SvgTraffic(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V3H7v2H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V21h10v-2.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9a2 2 0 11-.001-3.999A2 2 0 0112 19zm0-5a2 2 0 11-.001-3.999A2 2 0 0112 14zm0-5a2 2 0 01-2-2c0-1.11.89-2 2-2a2 2 0 110 4z" + d: "M20 10h-3V8.86c1.72-.45 3-2 3-3.86h-3V3H7v2H4c0 1.86 1.28 3.41 3 3.86V10H4c0 1.86 1.28 3.41 3 3.86V15H4c0 1.86 1.28 3.41 3 3.86V21h10v-2.14c1.72-.45 3-2 3-3.86h-3v-1.14c1.72-.45 3-2 3-3.86zm-8 9a2 2 0 11-.001-3.999A2 2 0 0112 19zm0-5a2 2 0 11-.001-3.999A2 2 0 0112 14zm0-5a2 2 0 01-2-2c0-1.11.89-2 2-2a2 2 0 110 4z", + fill: "currentColor" })); } diff --git a/icons/es5/Train.js b/icons/es5/Train.js index 005897cb05..8ee480113f 100644 --- a/icons/es5/Train.js +++ b/icons/es5/Train.js @@ -7,9 +7,11 @@ function SvgTrain(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm5.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-7h-5V6h5v4z" + d: "M12 2c-4 0-8 .5-8 4v9.5C4 17.43 5.57 19 7.5 19L6 20.5v.5h2l2-2h4l2 2h2v-.5L16.5 19c1.93 0 3.5-1.57 3.5-3.5V6c0-3.5-4-4-8-4zM7.5 17c-.83 0-1.5-.67-1.5-1.5S6.67 14 7.5 14s1.5.67 1.5 1.5S8.33 17 7.5 17zm3.5-7H6V6h5v4zm5.5 7c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm1.5-7h-5V6h5v4z", + fill: "currentColor" })); } diff --git a/icons/es5/Tram.js b/icons/es5/Tram.js index 1e6501d7ef..a4658b0932 100644 --- a/icons/es5/Tram.js +++ b/icons/es5/Tram.js @@ -7,9 +7,11 @@ function SvgTram(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z" + d: "M13 5l.75-1.5H17V2H7v1.5h4.75L11 5c-3.13.09-6 .73-6 3.5V17c0 1.5 1.11 2.73 2.55 2.95L6 21.5v.5h2l2-2h4l2 2h2v-.5l-1.55-1.55C17.89 19.73 19 18.5 19 17V8.5c0-2.77-2.87-3.41-6-3.5zm-1 13.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm5-4.5H7V9h10v5z", + fill: "currentColor" })); } diff --git a/icons/es5/Transcribe.js b/icons/es5/Transcribe.js index c1c0162f88..7d520ade4c 100644 --- a/icons/es5/Transcribe.js +++ b/icons/es5/Transcribe.js @@ -7,9 +7,11 @@ function SvgTranscribe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.93 16l1.63-1.63c-2.77-3.02-2.77-7.56 0-10.74L17.93 2c-3.9 3.89-3.91 9.95 0 14zm4.99-5.05a3.317 3.317 0 010-3.89l-1.68-1.69c-2.02 2.02-2.02 5.07 0 7.27l1.68-1.69zM9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm6.39 2.56C13.71 14.7 11.53 14 9 14s-4.71.7-6.39 1.56A2.97 2.97 0 001 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66z" + d: "M17.93 16l1.63-1.63c-2.77-3.02-2.77-7.56 0-10.74L17.93 2c-3.9 3.89-3.91 9.95 0 14zm4.99-5.05a3.317 3.317 0 010-3.89l-1.68-1.69c-2.02 2.02-2.02 5.07 0 7.27l1.68-1.69zM9 13c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm6.39 2.56C13.71 14.7 11.53 14 9 14s-4.71.7-6.39 1.56A2.97 2.97 0 001 18.22V21h16v-2.78c0-1.12-.61-2.15-1.61-2.66z", + fill: "currentColor" })); } diff --git a/icons/es5/TransferWithinAStation.js b/icons/es5/TransferWithinAStation.js index f2f648bfac..6699d7cb7c 100644 --- a/icons/es5/TransferWithinAStation.js +++ b/icons/es5/TransferWithinAStation.js @@ -7,9 +7,11 @@ function SvgTransferWithinAStation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75" + d: "M16.49 15.5v-1.75L14 16.25l2.49 2.5V17H22v-1.5h-5.51zm3.02 4.25H14v1.5h5.51V23L22 20.5 19.51 18v1.75zM9.5 5.5c1.1 0 2-.9 2-2s-.9-2-2-2-2 .9-2 2 .9 2 2 2zM5.75 8.9L3 23h2.1l1.75-8L9 17v6h2v-7.55L8.95 13.4l.6-3C10.85 12 12.8 13 15 13v-2c-1.85 0-3.45-1-4.35-2.45l-.95-1.6C9.35 6.35 8.7 6 8 6c-.25 0-.5.05-.75.15L2 8.3V13h2V9.65l1.75-.75", + fill: "currentColor" })); } diff --git a/icons/es5/Transform.js b/icons/es5/Transform.js index 6e17ca6e70..3c78e73b76 100644 --- a/icons/es5/Transform.js +++ b/icons/es5/Transform.js @@ -7,9 +7,11 @@ function SvgTransform(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v10h10v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V6h-8v2z" + d: "M22 18v-2H8V4h2L7 1 4 4h2v2H2v2h4v10h10v2h-2l3 3 3-3h-2v-2h4zM10 8h6v6h2V6h-8v2z", + fill: "currentColor" })); } diff --git a/icons/es5/Transgender.js b/icons/es5/Transgender.js index 35281ee198..bef16db2a7 100644 --- a/icons/es5/Transgender.js +++ b/icons/es5/Transgender.js @@ -7,9 +7,11 @@ function SvgTransgender(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38l3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11a5.5 5.5 0 004.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09a5.5 5.5 0 003.53-8.53z" + d: "M12 8c1.93 0 3.5 1.57 3.5 3.5S13.93 15 12 15s-3.5-1.57-3.5-3.5S10.07 8 12 8zm4.53.38l3.97-3.96V7h2V1h-6v2h2.58l-3.97 3.97C14.23 6.36 13.16 6 12 6s-2.23.36-3.11.97l-.65-.65 1.41-1.41-1.41-1.42L6.82 4.9 4.92 3H7.5V1h-6v6h2V4.42l1.91 1.9-1.42 1.42L5.4 9.15l1.41-1.41.65.65c-.6.88-.96 1.95-.96 3.11a5.5 5.5 0 004.5 5.41V19H9v2h2v2h2v-2h2v-2h-2v-2.09a5.5 5.5 0 003.53-8.53z", + fill: "currentColor" })); } diff --git a/icons/es5/TransitEnterexit.js b/icons/es5/TransitEnterexit.js index ed5afec017..1ca11ec1b6 100644 --- a/icons/es5/TransitEnterexit.js +++ b/icons/es5/TransitEnterexit.js @@ -7,9 +7,11 @@ function SvgTransitEnterexit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z" + d: "M16 18H6V8h3v4.77L15.98 6 18 8.03 11.15 15H16v3z", + fill: "currentColor" })); } diff --git a/icons/es5/TravelExplore.js b/icons/es5/TravelExplore.js index a090af2d52..f17a9343f4 100644 --- a/icons/es5/TravelExplore.js +++ b/icons/es5/TravelExplore.js @@ -7,9 +7,11 @@ function SvgTravelExplore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07A8 8 0 0015 4.59V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z" + d: "M19.3 16.9c.4-.7.7-1.5.7-2.4 0-2.5-2-4.5-4.5-4.5S11 12 11 14.5s2 4.5 4.5 4.5c.9 0 1.7-.3 2.4-.7l3.2 3.2 1.4-1.4-3.2-3.2zm-3.8.1c-1.4 0-2.5-1.1-2.5-2.5s1.1-2.5 2.5-2.5 2.5 1.1 2.5 2.5-1.1 2.5-2.5 2.5zM12 20v2C6.48 22 2 17.52 2 12S6.48 2 12 2c4.84 0 8.87 3.44 9.8 8h-2.07A8 8 0 0015 4.59V5c0 1.1-.9 2-2 2h-2v2c0 .55-.45 1-1 1H8v2h2v3H9l-4.79-4.79C4.08 10.79 4 11.38 4 12c0 4.41 3.59 8 8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/TrendingDown.js b/icons/es5/TrendingDown.js index f808335fbe..c811243485 100644 --- a/icons/es5/TrendingDown.js +++ b/icons/es5/TrendingDown.js @@ -7,9 +7,11 @@ function SvgTrendingDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z" + d: "M16 18l2.29-2.29-4.88-4.88-4 4L2 7.41 3.41 6l6 6 4-4 6.3 6.29L22 12v6h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/TrendingFlat.js b/icons/es5/TrendingFlat.js index 7be1be462d..6b7a7b14f4 100644 --- a/icons/es5/TrendingFlat.js +++ b/icons/es5/TrendingFlat.js @@ -7,9 +7,11 @@ function SvgTrendingFlat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 12l-4-4v3H3v2h15v3l4-4z" + d: "M22 12l-4-4v3H3v2h15v3l4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/TrendingUp.js b/icons/es5/TrendingUp.js index 0fde4f2ed1..69fb92fc51 100644 --- a/icons/es5/TrendingUp.js +++ b/icons/es5/TrendingUp.js @@ -7,9 +7,11 @@ function SvgTrendingUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z" + d: "M16 6l2.29 2.29-4.88 4.88-4-4L2 16.59 3.41 18l6-6 4 4 6.3-6.29L22 12V6h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/TripOrigin.js b/icons/es5/TripOrigin.js index 946c170cb4..4a56820a49 100644 --- a/icons/es5/TripOrigin.js +++ b/icons/es5/TripOrigin.js @@ -7,9 +7,11 @@ function SvgTripOrigin(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z" + d: "M2 12C2 6.48 6.48 2 12 2s10 4.48 10 10-4.48 10-10 10S2 17.52 2 12zm10 6c3.31 0 6-2.69 6-6s-2.69-6-6-6-6 2.69-6 6 2.69 6 6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Troubleshoot.js b/icons/es5/Troubleshoot.js index ceb60b3171..15a8cb1a4f 100644 --- a/icons/es5/Troubleshoot.js +++ b/icons/es5/Troubleshoot.js @@ -7,11 +7,14 @@ function SvgTroubleshoot(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 20.59l-4.69-4.69A7.902 7.902 0 0019 11c0-4.42-3.58-8-8-8-4.08 0-7.44 3.05-7.93 7h2.02C5.57 7.17 8.03 5 11 5c3.31 0 6 2.69 6 6s-2.69 6-6 6c-2.42 0-4.5-1.44-5.45-3.5H3.4C4.45 16.69 7.46 19 11 19c1.85 0 3.55-.63 4.9-1.69L20.59 22 22 20.59z" + d: "M22 20.59l-4.69-4.69A7.902 7.902 0 0019 11c0-4.42-3.58-8-8-8-4.08 0-7.44 3.05-7.93 7h2.02C5.57 7.17 8.03 5 11 5c3.31 0 6 2.69 6 6s-2.69 6-6 6c-2.42 0-4.5-1.44-5.45-3.5H3.4C4.45 16.69 7.46 19 11 19c1.85 0 3.55-.63 4.9-1.69L20.59 22 22 20.59z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M8.43 9.69L9.65 15h1.64l1.26-3.78.95 2.28h2V12h-1l-1.25-3h-1.54l-1.12 3.37L9.35 7H7.7l-1.25 4H1v1.5h6.55z" + d: "M8.43 9.69L9.65 15h1.64l1.26-3.78.95 2.28h2V12h-1l-1.25-3h-1.54l-1.12 3.37L9.35 7H7.7l-1.25 4H1v1.5h6.55z", + fill: "currentColor" })); } diff --git a/icons/es5/Try.js b/icons/es5/Try.js index 94ddad8c41..fbe60c0cda 100644 --- a/icons/es5/Try.js +++ b/icons/es5/Try.js @@ -7,9 +7,11 @@ function SvgTry(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20l4-4h16V2zm-8.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z" + d: "M22 2H2v20l4-4h16V2zm-8.43 9.57L12 15l-1.57-3.43L7 10l3.43-1.57L12 5l1.57 3.43L17 10l-3.43 1.57z", + fill: "currentColor" })); } diff --git a/icons/es5/Tsunami.js b/icons/es5/Tsunami.js index 8a6f61bdf7..a64baf5498 100644 --- a/icons/es5/Tsunami.js +++ b/icons/es5/Tsunami.js @@ -7,9 +7,11 @@ function SvgTsunami(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.67 17.63c-3.8 2.8-6.12.4-6.67 0-.66.49-2.92 2.76-6.67 0C3.43 19.03 2.65 19 2 19v2c1.16 0 2.3-.32 3.33-.93a6.535 6.535 0 006.67 0 6.535 6.535 0 006.67 0c1.03.61 2.17.93 3.33.93v-2c-.66 0-1.5-.02-3.33-1.37zm.66-5.63H22v-2h-2.67C17.5 10 16 8.5 16 6.67c0-1.02.38-1.74 1.09-3.34-1.37-.21-2-.33-3.09-.33C7.36 3 2.15 8.03 2.01 14.5l-.01 2c1.16 0 2.3-.32 3.33-.93a6.535 6.535 0 006.67 0 6.535 6.535 0 006.67 0c1.03.61 2.17.93 3.33.93v-2c-.66 0-1.5-.02-3.33-1.37-3.8 2.8-6.12.4-6.67 0-.9.67-.54.41-.91.63-.7-.94-1.09-2.06-1.09-3.26 0-2.58 1.77-4.74 4.21-5.33-.13.51-.21 1.02-.21 1.5C14 9.61 16.39 12 19.33 12z" + d: "M18.67 17.63c-3.8 2.8-6.12.4-6.67 0-.66.49-2.92 2.76-6.67 0C3.43 19.03 2.65 19 2 19v2c1.16 0 2.3-.32 3.33-.93a6.535 6.535 0 006.67 0 6.535 6.535 0 006.67 0c1.03.61 2.17.93 3.33.93v-2c-.66 0-1.5-.02-3.33-1.37zm.66-5.63H22v-2h-2.67C17.5 10 16 8.5 16 6.67c0-1.02.38-1.74 1.09-3.34-1.37-.21-2-.33-3.09-.33C7.36 3 2.15 8.03 2.01 14.5l-.01 2c1.16 0 2.3-.32 3.33-.93a6.535 6.535 0 006.67 0 6.535 6.535 0 006.67 0c1.03.61 2.17.93 3.33.93v-2c-.66 0-1.5-.02-3.33-1.37-3.8 2.8-6.12.4-6.67 0-.9.67-.54.41-.91.63-.7-.94-1.09-2.06-1.09-3.26 0-2.58 1.77-4.74 4.21-5.33-.13.51-.21 1.02-.21 1.5C14 9.61 16.39 12 19.33 12z", + fill: "currentColor" })); } diff --git a/icons/es5/Tty.js b/icons/es5/Tty.js index 8122ada403..d000df2ced 100644 --- a/icons/es5/Tty.js +++ b/icons/es5/Tty.js @@ -7,9 +7,11 @@ function SvgTty(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 15v6c-3.28 0-6.35-.89-9-2.43A17.999 17.999 0 014.43 12 17.851 17.851 0 012 3h6l1 5-2.9 2.9c1.43 2.5 3.5 4.57 6 6L15 14l5 1zm-6-9h2V4h-2v2zm-1 3h2V7h-2v2zm-2-3h2V4h-2v2zm7 1h-2v2h2V7zm1-3h-2v2h2V4zm2 3h-2v2h2V7zm1-3h-2v2h2V4zm-8 8h2v-2h-2v2zm-3 0h2v-2h-2v2zm8-2h-2v2h2v-2zm3 0h-2v2h2v-2z" + d: "M20 15v6c-3.28 0-6.35-.89-9-2.43A17.999 17.999 0 014.43 12 17.851 17.851 0 012 3h6l1 5-2.9 2.9c1.43 2.5 3.5 4.57 6 6L15 14l5 1zm-6-9h2V4h-2v2zm-1 3h2V7h-2v2zm-2-3h2V4h-2v2zm7 1h-2v2h2V7zm1-3h-2v2h2V4zm2 3h-2v2h2V7zm1-3h-2v2h2V4zm-8 8h2v-2h-2v2zm-3 0h2v-2h-2v2zm8-2h-2v2h2v-2zm3 0h-2v2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/Tungsten.js b/icons/es5/Tungsten.js index 32728eeeb7..eb60f81e23 100644 --- a/icons/es5/Tungsten.js +++ b/icons/es5/Tungsten.js @@ -7,9 +7,11 @@ function SvgTungsten(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.801l1.407-1.407 2.122 2.122-1.408 1.407zm-11.31.708l2.121-2.122 1.408 1.407-2.122 2.122zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z" + d: "M11 19h2v3h-2zm-9-8h3v2H2zm17 0h3v2h-3zm-3.106 6.801l1.407-1.407 2.122 2.122-1.408 1.407zm-11.31.708l2.121-2.122 1.408 1.407-2.122 2.122zM15 8.02V3H9v5.02c-1.21.92-2 2.35-2 3.98 0 2.76 2.24 5 5 5s5-2.24 5-5c0-1.63-.79-3.06-2-3.98zM11 5h2v2.1c-.32-.06-.66-.1-1-.1s-.68.04-1 .1V5z", + fill: "currentColor" })); } diff --git a/icons/es5/TurnLeft.js b/icons/es5/TurnLeft.js index 1d16c8ae41..482e0d76d2 100644 --- a/icons/es5/TurnLeft.js +++ b/icons/es5/TurnLeft.js @@ -7,9 +7,11 @@ function SvgTurnLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.83 11l1.58 1.59L7 14l-4-4 4-4 1.41 1.41L6.83 9H17v11h-2v-9z" + d: "M6.83 11l1.58 1.59L7 14l-4-4 4-4 1.41 1.41L6.83 9H17v11h-2v-9z", + fill: "currentColor" })); } diff --git a/icons/es5/TurnRight.js b/icons/es5/TurnRight.js index 1f76b35d94..3b6aec940a 100644 --- a/icons/es5/TurnRight.js +++ b/icons/es5/TurnRight.js @@ -7,9 +7,11 @@ function SvgTurnRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.17 11l-1.58 1.59L17 14l4-4-4-4-1.41 1.41L17.17 9H7v11h2v-9z" + d: "M17.17 11l-1.58 1.59L17 14l4-4-4-4-1.41 1.41L17.17 9H7v11h2v-9z", + fill: "currentColor" })); } diff --git a/icons/es5/TurnSharpLeft.js b/icons/es5/TurnSharpLeft.js index 83a9539ec3..7cd6196466 100644 --- a/icons/es5/TurnSharpLeft.js +++ b/icons/es5/TurnSharpLeft.js @@ -7,9 +7,11 @@ function SvgTurnSharpLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 6.83L4.41 8.41 3 7l4-4 4 4-1.41 1.41L8 6.83V13h10v8h-2v-6H6z" + d: "M6 6.83L4.41 8.41 3 7l4-4 4 4-1.41 1.41L8 6.83V13h10v8h-2v-6H6z", + fill: "currentColor" })); } diff --git a/icons/es5/TurnSharpRight.js b/icons/es5/TurnSharpRight.js index abc196297a..c6e992eb8c 100644 --- a/icons/es5/TurnSharpRight.js +++ b/icons/es5/TurnSharpRight.js @@ -7,9 +7,11 @@ function SvgTurnSharpRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 6.83l1.59 1.58L21 7l-4-4-4 4 1.41 1.41L16 6.83V13H6v8h2v-6h10z" + d: "M18 6.83l1.59 1.58L21 7l-4-4-4 4 1.41 1.41L16 6.83V13H6v8h2v-6h10z", + fill: "currentColor" })); } diff --git a/icons/es5/TurnSlightLeft.js b/icons/es5/TurnSlightLeft.js index 7458015134..4d6e60dd40 100644 --- a/icons/es5/TurnSlightLeft.js +++ b/icons/es5/TurnSlightLeft.js @@ -7,9 +7,11 @@ function SvgTurnSlightLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11.66 6V4H6v5.66h2V7.41l5 5V20h2v-8.41L9.41 6z" + d: "M11.66 6V4H6v5.66h2V7.41l5 5V20h2v-8.41L9.41 6z", + fill: "currentColor" })); } diff --git a/icons/es5/TurnSlightRight.js b/icons/es5/TurnSlightRight.js index c91b2744df..17d8b4de5f 100644 --- a/icons/es5/TurnSlightRight.js +++ b/icons/es5/TurnSlightRight.js @@ -7,9 +7,11 @@ function SvgTurnSlightRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.34 6V4H18v5.66h-2V7.41l-5 5V20H9v-8.41L14.59 6z" + d: "M12.34 6V4H18v5.66h-2V7.41l-5 5V20H9v-8.41L14.59 6z", + fill: "currentColor" })); } diff --git a/icons/es5/TurnedIn.js b/icons/es5/TurnedIn.js index d0f5d2ad4e..c841b90269 100644 --- a/icons/es5/TurnedIn.js +++ b/icons/es5/TurnedIn.js @@ -7,9 +7,11 @@ function SvgTurnedIn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3H5v18l7-3 7 3V3z" + d: "M19 3H5v18l7-3 7 3V3z", + fill: "currentColor" })); } diff --git a/icons/es5/TurnedInNot.js b/icons/es5/TurnedInNot.js index a420f6bfb2..f8b5350935 100644 --- a/icons/es5/TurnedInNot.js +++ b/icons/es5/TurnedInNot.js @@ -7,9 +7,11 @@ function SvgTurnedInNot(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 3H5.01L5 21l7-3 7 3V3zm-2 15l-5-2.18L7 18V5h10v13z" + d: "M19 3H5.01L5 21l7-3 7 3V3zm-2 15l-5-2.18L7 18V5h10v13z", + fill: "currentColor" })); } diff --git a/icons/es5/Tv.js b/icons/es5/Tv.js index c686ee82c2..3d6be59763 100644 --- a/icons/es5/Tv.js +++ b/icons/es5/Tv.js @@ -7,9 +7,11 @@ function SvgTv(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z" + d: "M23 3H1v16h7v2h8v-2h6.99L23 3zm-2 14H3V5h18v12z", + fill: "currentColor" })); } diff --git a/icons/es5/TvOff.js b/icons/es5/TvOff.js index 217ebcac8a..17d0e3a578 100644 --- a/icons/es5/TvOff.js +++ b/icons/es5/TvOff.js @@ -7,9 +7,11 @@ function SvgTvOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 7v10.88l2 2V5h-9.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2zM2.41 2.13l-.14.14L1 3.54l1.53 1.53H1V21h17.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z" + d: "M21 7v10.88l2 2V5h-9.58l3.29-3.3L16 1l-4 4-4-4-.7.7L10.58 5H8.12l2 2zM2.41 2.13l-.14.14L1 3.54l1.53 1.53H1V21h17.46l1.99 1.99 1.26-1.26.15-.15L2.41 2.13zM3 19V7h1.46l12 12H3z", + fill: "currentColor" })); } diff --git a/icons/es5/TwoWheeler.js b/icons/es5/TwoWheeler.js index 4b3021e247..10c44f89db 100644 --- a/icons/es5/TwoWheeler.js +++ b/icons/es5/TwoWheeler.js @@ -7,9 +7,11 @@ function SvgTwoWheeler(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.17 11H4h.17m9.24-6H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5zM20 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M4.17 11H4h.17m9.24-6H9v2h3.59l2 2H11l-4 2-2-2H0v2h4c-2.21 0-4 1.79-4 4s1.79 4 4 4 4-1.79 4-4l2 2h3l3.49-6.1 1.01 1.01c-.91.73-1.5 1.84-1.5 3.09 0 2.21 1.79 4 4 4s4-1.79 4-4-1.79-4-4-4c-.18 0-.36.03-.53.05L17.41 9H20V6l-3.72 1.86L13.41 5zM20 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2zM4 17c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/TypeSpecimen.js b/icons/es5/TypeSpecimen.js index 92c2e0a25f..4bff16bb9e 100644 --- a/icons/es5/TypeSpecimen.js +++ b/icons/es5/TypeSpecimen.js @@ -7,13 +7,17 @@ function SvgTypeSpecimen(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4z" + d: "M4 6H2v16h16v-2H4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 2H6v16h16V2zm-5.37 12.5l-.8-2.3H12.2l-.82 2.3H9.81l3.38-9h1.61l3.38 9h-1.55z" + d: "M22 2H6v16h16V2zm-5.37 12.5l-.8-2.3H12.2l-.82 2.3H9.81l3.38-9h1.61l3.38 9h-1.55z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M13.96 7.17l-1.31 3.72h2.69l-1.3-3.72z" + d: "M13.96 7.17l-1.31 3.72h2.69l-1.3-3.72z", + fill: "currentColor" })); } diff --git a/icons/es5/UTurnLeft.js b/icons/es5/UTurnLeft.js index 2da83ae2dd..3fc583d29a 100644 --- a/icons/es5/UTurnLeft.js +++ b/icons/es5/UTurnLeft.js @@ -7,9 +7,11 @@ function SvgUTurnLeft(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 9v12h-2V9c0-2.21-1.79-4-4-4S8 6.79 8 9v4.17l1.59-1.59L11 13l-4 4-4-4 1.41-1.41L6 13.17V9c0-3.31 2.69-6 6-6s6 2.69 6 6z" + d: "M18 9v12h-2V9c0-2.21-1.79-4-4-4S8 6.79 8 9v4.17l1.59-1.59L11 13l-4 4-4-4 1.41-1.41L6 13.17V9c0-3.31 2.69-6 6-6s6 2.69 6 6z", + fill: "currentColor" })); } diff --git a/icons/es5/UTurnRight.js b/icons/es5/UTurnRight.js index ddd46d1fc7..ce5f14e191 100644 --- a/icons/es5/UTurnRight.js +++ b/icons/es5/UTurnRight.js @@ -7,9 +7,11 @@ function SvgUTurnRight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 9v12h2V9c0-2.21 1.79-4 4-4s4 1.79 4 4v4.17l-1.59-1.59L13 13l4 4 4-4-1.41-1.41L18 13.17V9c0-3.31-2.69-6-6-6S6 5.69 6 9z" + d: "M6 9v12h2V9c0-2.21 1.79-4 4-4s4 1.79 4 4v4.17l-1.59-1.59L13 13l4 4 4-4-1.41-1.41L18 13.17V9c0-3.31-2.69-6-6-6S6 5.69 6 9z", + fill: "currentColor" })); } diff --git a/icons/es5/Umbrella.js b/icons/es5/Umbrella.js index f1bb8e5070..d3ef1be46b 100644 --- a/icons/es5/Umbrella.js +++ b/icons/es5/Umbrella.js @@ -7,9 +7,11 @@ function SvgUmbrella(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.5 6.92L13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59l.76-.58.28-.22v6.51L9.03 8.86l.93.23z" + d: "M14.5 6.92L13 5.77V3.4c0-.26.22-.48.5-.48s.5.21.5.48V4h2v-.6C16 2.07 14.88 1 13.5 1S11 2.07 11 3.4v2.37L9.5 6.92 6 6.07l5.05 15.25c.15.45.55.68.95.68s.8-.23.95-.69L18 6.07l-3.5.85zM13.28 8.5l.76.58.92-.23L13 14.8V8.29l.28.21zm-3.32.59l.76-.58.28-.22v6.51L9.03 8.86l.93.23z", + fill: "currentColor" })); } diff --git a/icons/es5/Unarchive.js b/icons/es5/Unarchive.js index 776d16f318..a5090eedaf 100644 --- a/icons/es5/Unarchive.js +++ b/icons/es5/Unarchive.js @@ -7,9 +7,11 @@ function SvgUnarchive(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM14 15v2h-4v-2H6.5L12 9.5l5.5 5.5H14zM5.12 5l.81-1h12l.94 1H5.12z" + d: "M18.71 3H5.29L3 5.79V21h18V5.79L18.71 3zM14 15v2h-4v-2H6.5L12 9.5l5.5 5.5H14zM5.12 5l.81-1h12l.94 1H5.12z", + fill: "currentColor" })); } diff --git a/icons/es5/UnfoldLess.js b/icons/es5/UnfoldLess.js index d8e1732c81..7b394331dc 100644 --- a/icons/es5/UnfoldLess.js +++ b/icons/es5/UnfoldLess.js @@ -7,9 +7,11 @@ function SvgUnfoldLess(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z" + d: "M7.41 18.59L8.83 20 12 16.83 15.17 20l1.41-1.41L12 14l-4.59 4.59zm9.18-13.18L15.17 4 12 7.17 8.83 4 7.41 5.41 12 10l4.59-4.59z", + fill: "currentColor" })); } diff --git a/icons/es5/UnfoldLessDouble.js b/icons/es5/UnfoldLessDouble.js index 7d12d16196..741aace578 100644 --- a/icons/es5/UnfoldLessDouble.js +++ b/icons/es5/UnfoldLessDouble.js @@ -7,13 +7,17 @@ function SvgUnfoldLessDouble(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.58 1.41L15.16 0l-3.17 3.17L8.82 0 7.41 1.41 11.99 6z" + d: "M16.58 1.41L15.16 0l-3.17 3.17L8.82 0 7.41 1.41 11.99 6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M16.58 6.41L15.16 5l-3.17 3.17L8.82 5 7.41 6.41 11.99 11zM7.42 17.59L8.84 19l3.17-3.17L15.18 19l1.41-1.41L12.01 13z" + d: "M16.58 6.41L15.16 5l-3.17 3.17L8.82 5 7.41 6.41 11.99 11zM7.42 17.59L8.84 19l3.17-3.17L15.18 19l1.41-1.41L12.01 13z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7.42 22.59L8.84 24l3.17-3.17L15.18 24l1.41-1.41L12.01 18z" + d: "M7.42 22.59L8.84 24l3.17-3.17L15.18 24l1.41-1.41L12.01 18z", + fill: "currentColor" })); } diff --git a/icons/es5/UnfoldMore.js b/icons/es5/UnfoldMore.js index 431c1754b6..bf7a29d322 100644 --- a/icons/es5/UnfoldMore.js +++ b/icons/es5/UnfoldMore.js @@ -7,9 +7,11 @@ function SvgUnfoldMore(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z" + d: "M12 5.83L15.17 9l1.41-1.41L12 3 7.41 7.59 8.83 9 12 5.83zm0 12.34L8.83 15l-1.41 1.41L12 21l4.59-4.59L15.17 15 12 18.17z", + fill: "currentColor" })); } diff --git a/icons/es5/UnfoldMoreDouble.js b/icons/es5/UnfoldMoreDouble.js index 85ec2a36fb..2f71571419 100644 --- a/icons/es5/UnfoldMoreDouble.js +++ b/icons/es5/UnfoldMoreDouble.js @@ -7,9 +7,11 @@ function SvgUnfoldMoreDouble(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7.83L15.17 11l1.41-1.41L12 5 7.41 9.59 8.83 11 12 7.83zm0-5L15.17 6l1.41-1.41L12 0 7.41 4.59 8.83 6 12 2.83zm0 18.34L8.83 18l-1.41 1.41L12 24l4.59-4.59L15.17 18 12 21.17zm0-5L8.83 13l-1.41 1.41L12 19l4.59-4.59L15.17 13 12 16.17z" + d: "M12 7.83L15.17 11l1.41-1.41L12 5 7.41 9.59 8.83 11 12 7.83zm0-5L15.17 6l1.41-1.41L12 0 7.41 4.59 8.83 6 12 2.83zm0 18.34L8.83 18l-1.41 1.41L12 24l4.59-4.59L15.17 18 12 21.17zm0-5L8.83 13l-1.41 1.41L12 19l4.59-4.59L15.17 13 12 16.17z", + fill: "currentColor" })); } diff --git a/icons/es5/Unpublished.js b/icons/es5/Unpublished.js index c54a003e4b..0ce2e276c1 100644 --- a/icons/es5/Unpublished.js +++ b/icons/es5/Unpublished.js @@ -7,9 +7,11 @@ function SvgUnpublished(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.19 21.19L2.81 2.81 1.39 4.22l2.27 2.27A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42zm-10.6-4.59l-4.24-4.24 1.41-1.41 2.83 2.83.18-.18 1.41 1.41-1.59 1.59zm3-5.84l-7.1-7.1A9.91 9.91 0 0112 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51L15 12.17l2.65-2.65-1.41-1.41-2.65 2.65z" + d: "M21.19 21.19L2.81 2.81 1.39 4.22l2.27 2.27A9.91 9.91 0 002 12c0 5.52 4.48 10 10 10 2.04 0 3.93-.61 5.51-1.66l2.27 2.27 1.41-1.42zm-10.6-4.59l-4.24-4.24 1.41-1.41 2.83 2.83.18-.18 1.41 1.41-1.59 1.59zm3-5.84l-7.1-7.1A9.91 9.91 0 0112 2c5.52 0 10 4.48 10 10 0 2.04-.61 3.93-1.66 5.51L15 12.17l2.65-2.65-1.41-1.41-2.65 2.65z", + fill: "currentColor" })); } diff --git a/icons/es5/Unsubscribe.js b/icons/es5/Unsubscribe.js index 1add66f57a..16413510fc 100644 --- a/icons/es5/Unsubscribe.js +++ b/icons/es5/Unsubscribe.js @@ -7,9 +7,11 @@ function SvgUnsubscribe(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.75.26 2.49.69V3H3v14h10.55zM12 10.5L5 7V5l7 3.5L19 5v2l-7 3.5z" + d: "M18.5 13c-1.93 0-3.5 1.57-3.5 3.5s1.57 3.5 3.5 3.5 3.5-1.57 3.5-3.5-1.57-3.5-3.5-3.5zm2 4h-4v-1h4v1zm-6.95 0c-.02-.17-.05-.33-.05-.5 0-2.76 2.24-5 5-5 .92 0 1.75.26 2.49.69V3H3v14h10.55zM12 10.5L5 7V5l7 3.5L19 5v2l-7 3.5z", + fill: "currentColor" })); } diff --git a/icons/es5/Upcoming.js b/icons/es5/Upcoming.js index d363665b22..70a657ea9a 100644 --- a/icons/es5/Upcoming.js +++ b/icons/es5/Upcoming.js @@ -7,9 +7,11 @@ function SvgUpcoming(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.16 7.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 3h2v5h-2zm-4.6 7.81L7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55zM22 12h-7c0 1.66-1.34 3-3 3s-3-1.34-3-3H2v9h20v-9z" + d: "M21.16 7.26l-1.41-1.41-3.56 3.55 1.41 1.41s3.45-3.52 3.56-3.55zM11 3h2v5h-2zm-4.6 7.81L7.81 9.4 4.26 5.84 2.84 7.26c.11.03 3.56 3.55 3.56 3.55zM22 12h-7c0 1.66-1.34 3-3 3s-3-1.34-3-3H2v9h20v-9z", + fill: "currentColor" })); } diff --git a/icons/es5/Update.js b/icons/es5/Update.js index ed2c56b7e5..30ee024046 100644 --- a/icons/es5/Update.js +++ b/icons/es5/Update.js @@ -7,9 +7,11 @@ function SvgUpdate(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11zm10 2V3l-2.64 2.64A8.937 8.937 0 0012 3a9 9 0 109 9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7z" + d: "M11 8v5l4.25 2.52.77-1.28-3.52-2.09V8H11zm10 2V3l-2.64 2.64A8.937 8.937 0 0012 3a9 9 0 109 9h-2c0 3.86-3.14 7-7 7s-7-3.14-7-7 3.14-7 7-7c1.93 0 3.68.79 4.95 2.05L14 10h7z", + fill: "currentColor" })); } diff --git a/icons/es5/UpdateDisabled.js b/icons/es5/UpdateDisabled.js index b7603ee62b..6896e6f5be 100644 --- a/icons/es5/UpdateDisabled.js +++ b/icons/es5/UpdateDisabled.js @@ -7,9 +7,11 @@ function SvgUpdateDisabled(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8.67 5.84L7.22 4.39A8.86 8.86 0 0112 3c2.74 0 5.19 1.23 6.84 3.16L21 4v6h-6l2.41-2.41C16.12 6.02 14.18 5 12 5c-1.2 0-2.34.31-3.33.84zM13 7h-2v1.17l2 2V7zm6.78 15.61l-3-3A8.973 8.973 0 0112 21a9 9 0 01-9-9c0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67A7.06 7.06 0 005 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85zM20.94 13h-2.02c-.12.83-.39 1.61-.77 2.32l1.47 1.47c.7-1.12 1.17-2.41 1.32-3.79z" + d: "M8.67 5.84L7.22 4.39A8.86 8.86 0 0112 3c2.74 0 5.19 1.23 6.84 3.16L21 4v6h-6l2.41-2.41C16.12 6.02 14.18 5 12 5c-1.2 0-2.34.31-3.33.84zM13 7h-2v1.17l2 2V7zm6.78 15.61l-3-3A8.973 8.973 0 0112 21a9 9 0 01-9-9c0-1.76.51-3.4 1.39-4.78l-3-3L2.8 2.81l18.38 18.38-1.4 1.42zm-4.46-4.46L5.84 8.67A7.06 7.06 0 005 12c0 3.86 3.14 7 7 7 1.2 0 2.34-.31 3.32-.85zM20.94 13h-2.02c-.12.83-.39 1.61-.77 2.32l1.47 1.47c.7-1.12 1.17-2.41 1.32-3.79z", + fill: "currentColor" })); } diff --git a/icons/es5/Upgrade.js b/icons/es5/Upgrade.js index df080cf21d..a7f16bc2ba 100644 --- a/icons/es5/Upgrade.js +++ b/icons/es5/Upgrade.js @@ -7,9 +7,11 @@ function SvgUpgrade(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z" + d: "M16 18v2H8v-2h8zM11 7.99V16h2V7.99h3L12 4 8 7.99h3z", + fill: "currentColor" })); } diff --git a/icons/es5/Upload.js b/icons/es5/Upload.js index 3df976e759..a050c5ef9a 100644 --- a/icons/es5/Upload.js +++ b/icons/es5/Upload.js @@ -7,9 +7,11 @@ function SvgUpload(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z" + d: "M9 16h6v-6h4l-7-7-7 7h4v6zm-4 2h14v2H5v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/UploadFile.js b/icons/es5/UploadFile.js index 8f40eecd38..c212600ceb 100644 --- a/icons/es5/UploadFile.js +++ b/icons/es5/UploadFile.js @@ -7,9 +7,11 @@ function SvgUploadFile(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm-1 13v4h-2v-4H8l4.01-4L16 15h-3zm0-6V3.5L18.5 9H13z" + d: "M14 2H4v20h16V8l-6-6zm-1 13v4h-2v-4H8l4.01-4L16 15h-3zm0-6V3.5L18.5 9H13z", + fill: "currentColor" })); } diff --git a/icons/es5/Usb.js b/icons/es5/Usb.js index c7bd102ecd..9d8da70d50 100644 --- a/icons/es5/Usb.js +++ b/icons/es5/Usb.js @@ -7,9 +7,11 @@ function SvgUsb(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95a2.2 2.2 0 004.4 0c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z" + d: "M15 7v4h1v2h-3V5h2l-3-4-3 4h2v8H8v-2.07c.7-.37 1.2-1.08 1.2-1.93 0-1.21-.99-2.2-2.2-2.2S4.8 7.79 4.8 9c0 .85.5 1.56 1.2 1.93V13c0 1.11.89 2 2 2h3v3.05c-.71.37-1.2 1.1-1.2 1.95a2.2 2.2 0 004.4 0c0-.85-.49-1.58-1.2-1.95V15h3c1.11 0 2-.89 2-2v-2h1V7h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/UsbOff.js b/icons/es5/UsbOff.js index 847e8e2efe..82a696b9e3 100644 --- a/icons/es5/UsbOff.js +++ b/icons/es5/UsbOff.js @@ -7,9 +7,11 @@ function SvgUsbOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17l2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z" + d: "M15 8h4v4h-1v2c0 .34-.08.66-.23.94L16 13.17V12h-1V8zm-4 .17l2 2V6h2l-3-4-3 4h2v2.17zM13 16v2.28c.6.34 1 .98 1 1.72 0 1.1-.9 2-2 2s-2-.9-2-2c0-.74.4-1.37 1-1.72V16H8c-1.11 0-2-.89-2-2v-2.28c-.6-.34-1-.98-1-1.72 0-.59.26-1.13.68-1.49L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-6.6-6.6H13zm-2-2v-.17l-2.51-2.51c-.14.16-.31.29-.49.4V14h3z", + fill: "currentColor" })); } diff --git a/icons/es5/Vaccines.js b/icons/es5/Vaccines.js index 2297b2420b..f306805453 100644 --- a/icons/es5/Vaccines.js +++ b/icons/es5/Vaccines.js @@ -7,9 +7,11 @@ function SvgVaccines(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5.5H8V4h1.5V2h-5v2H6v1.5H2v2h1V17h3v4l2 1.5V17h3V7.5h1v-2zM9 9H6.5v1.5H9V12H6.5v1.5H9V15H5V7.5h4V9zm10.5 1.5V10h1V8h-7l-.01 2h1.01v.5c0 .5-1.5 1.16-1.5 3V22h8v-8.5c0-1.84-1.5-2.5-1.5-3zm-3 0V10h1v.5c0 1.6 1.5 2 1.5 3v.5h-4v-.5c0-1 1.5-1.4 1.5-3zM15 20v-1.5h4V20h-4z" + d: "M12 5.5H8V4h1.5V2h-5v2H6v1.5H2v2h1V17h3v4l2 1.5V17h3V7.5h1v-2zM9 9H6.5v1.5H9V12H6.5v1.5H9V15H5V7.5h4V9zm10.5 1.5V10h1V8h-7l-.01 2h1.01v.5c0 .5-1.5 1.16-1.5 3V22h8v-8.5c0-1.84-1.5-2.5-1.5-3zm-3 0V10h1v.5c0 1.6 1.5 2 1.5 3v.5h-4v-.5c0-1 1.5-1.4 1.5-3zM15 20v-1.5h4V20h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/VapeFree.js b/icons/es5/VapeFree.js index 2ac1b24d8e..9a972b616f 100644 --- a/icons/es5/VapeFree.js +++ b/icons/es5/VapeFree.js @@ -7,9 +7,11 @@ function SvgVapeFree(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 16.5h1c1.33 0 2.71-.18 4-.5v3c-1.29-.32-2.67-.5-4-.5H2v-2zM16.17 19H8v-3h5.17L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-3.6-3.6zm2.66-3H22v3h-.17l-3-3zM11 17.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zm11-4.74V15h-1.5v-2.23c0-2.24-1.76-4.07-4-4.07V7.2c1.02 0 1.85-.83 1.85-1.85S17.52 3.5 16.5 3.5V2c1.85 0 3.35 1.5 3.35 3.35 0 .93-.38 1.77-1 2.38 1.87.89 3.15 2.81 3.15 5.03zM11.15 8.32V8.3c0-1.85 1.5-3.35 3.35-3.35v1.5c-1.02 0-1.85.73-1.85 1.75s.83 2 1.85 2h1.53c1.87 0 3.47 1.35 3.47 3.16V15H18v-1.3c0-1.31-.92-2.05-1.97-2.05h-1.55l-3.33-3.33z" + d: "M2 16.5h1c1.33 0 2.71-.18 4-.5v3c-1.29-.32-2.67-.5-4-.5H2v-2zM16.17 19H8v-3h5.17L1.39 4.22 2.8 2.81l18.38 18.38-1.41 1.41-3.6-3.6zm2.66-3H22v3h-.17l-3-3zM11 17.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zm11-4.74V15h-1.5v-2.23c0-2.24-1.76-4.07-4-4.07V7.2c1.02 0 1.85-.83 1.85-1.85S17.52 3.5 16.5 3.5V2c1.85 0 3.35 1.5 3.35 3.35 0 .93-.38 1.77-1 2.38 1.87.89 3.15 2.81 3.15 5.03zM11.15 8.32V8.3c0-1.85 1.5-3.35 3.35-3.35v1.5c-1.02 0-1.85.73-1.85 1.75s.83 2 1.85 2h1.53c1.87 0 3.47 1.35 3.47 3.16V15H18v-1.3c0-1.31-.92-2.05-1.97-2.05h-1.55l-3.33-3.33z", + fill: "currentColor" })); } diff --git a/icons/es5/VapingRooms.js b/icons/es5/VapingRooms.js index dbdaca1cfb..99b80f39ed 100644 --- a/icons/es5/VapingRooms.js +++ b/icons/es5/VapingRooms.js @@ -7,9 +7,11 @@ function SvgVapingRooms(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 16.5h1c1.33 0 2.71-.18 4-.5v3c-1.29-.32-2.67-.5-4-.5H2v-2zm20-.5v3H8v-3h14zm-11 1.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zm11-4.74V15h-1.5v-2.23c0-2.24-1.76-4.07-4-4.07V7.2c1.02 0 1.85-.83 1.85-1.85S17.52 3.5 16.5 3.5V2c1.85 0 3.35 1.5 3.35 3.35 0 .93-.38 1.77-1 2.38 1.87.89 3.15 2.81 3.15 5.03zm-2.5.6V15H18v-1.3c0-1.31-.92-2.05-1.97-2.05H14.5a3.35 3.35 0 010-6.7v1.5c-1.02 0-1.85.73-1.85 1.75s.83 2 1.85 2h1.53c1.87 0 3.47 1.35 3.47 3.16z" + d: "M2 16.5h1c1.33 0 2.71-.18 4-.5v3c-1.29-.32-2.67-.5-4-.5H2v-2zm20-.5v3H8v-3h14zm-11 1.5c0-.28-.22-.5-.5-.5s-.5.22-.5.5.22.5.5.5.5-.22.5-.5zm11-4.74V15h-1.5v-2.23c0-2.24-1.76-4.07-4-4.07V7.2c1.02 0 1.85-.83 1.85-1.85S17.52 3.5 16.5 3.5V2c1.85 0 3.35 1.5 3.35 3.35 0 .93-.38 1.77-1 2.38 1.87.89 3.15 2.81 3.15 5.03zm-2.5.6V15H18v-1.3c0-1.31-.92-2.05-1.97-2.05H14.5a3.35 3.35 0 010-6.7v1.5c-1.02 0-1.85.73-1.85 1.75s.83 2 1.85 2h1.53c1.87 0 3.47 1.35 3.47 3.16z", + fill: "currentColor" })); } diff --git a/icons/es5/VerifiedUser.js b/icons/es5/VerifiedUser.js index 9f964f82e5..91d68e1676 100644 --- a/icons/es5/VerifiedUser.js +++ b/icons/es5/VerifiedUser.js @@ -7,9 +7,11 @@ function SvgVerifiedUser(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z" + d: "M12 1L3 5v6c0 5.55 3.84 10.74 9 12 5.16-1.26 9-6.45 9-12V5l-9-4zm-2 16l-4-4 1.41-1.41L10 14.17l6.59-6.59L18 9l-8 8z", + fill: "currentColor" })); } diff --git a/icons/es5/VerticalAlignBottom.js b/icons/es5/VerticalAlignBottom.js index d178da490e..62d452f449 100644 --- a/icons/es5/VerticalAlignBottom.js +++ b/icons/es5/VerticalAlignBottom.js @@ -7,9 +7,11 @@ function SvgVerticalAlignBottom(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z" + d: "M16 13h-3V3h-2v10H8l4 4 4-4zM4 19v2h16v-2H4z", + fill: "currentColor" })); } diff --git a/icons/es5/VerticalAlignCenter.js b/icons/es5/VerticalAlignCenter.js index 7302fc904d..58d4e33ff8 100644 --- a/icons/es5/VerticalAlignCenter.js +++ b/icons/es5/VerticalAlignCenter.js @@ -7,9 +7,11 @@ function SvgVerticalAlignCenter(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z" + d: "M8 19h3v4h2v-4h3l-4-4-4 4zm8-14h-3V1h-2v4H8l4 4 4-4zM4 11v2h16v-2H4z", + fill: "currentColor" })); } diff --git a/icons/es5/VerticalAlignTop.js b/icons/es5/VerticalAlignTop.js index 6b29ac56dc..a7cb4c7c7d 100644 --- a/icons/es5/VerticalAlignTop.js +++ b/icons/es5/VerticalAlignTop.js @@ -7,9 +7,11 @@ function SvgVerticalAlignTop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z" + d: "M8 11h3v10h2V11h3l-4-4-4 4zM4 3v2h16V3H4z", + fill: "currentColor" })); } diff --git a/icons/es5/VerticalDistribute.js b/icons/es5/VerticalDistribute.js index 219a6d635c..ce6ad419bf 100644 --- a/icons/es5/VerticalDistribute.js +++ b/icons/es5/VerticalDistribute.js @@ -7,9 +7,11 @@ function SvgVerticalDistribute(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2v2H2V2h20zM7 10.5v3h10v-3H7zM2 20v2h20v-2H2z" + d: "M22 2v2H2V2h20zM7 10.5v3h10v-3H7zM2 20v2h20v-2H2z", + fill: "currentColor" })); } diff --git a/icons/es5/VerticalShades.js b/icons/es5/VerticalShades.js index db577db695..dd1a94d8a9 100644 --- a/icons/es5/VerticalShades.js +++ b/icons/es5/VerticalShades.js @@ -7,9 +7,11 @@ function SvgVerticalShades(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3H4v16H2v2h20v-2h-2zm-10 0V5h4v14h-4z" + d: "M20 19V3H4v16H2v2h20v-2h-2zm-10 0V5h4v14h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/VerticalShadesClosed.js b/icons/es5/VerticalShadesClosed.js index c8232c1da2..9ff64b75bd 100644 --- a/icons/es5/VerticalShadesClosed.js +++ b/icons/es5/VerticalShadesClosed.js @@ -7,9 +7,11 @@ function SvgVerticalShadesClosed(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 19V3H4v16H2v2h20v-2h-2zM13 5h1.5v14H13V5zm-2 14H9.5V5H11v14zM6 5h1.5v14H6V5zm10.5 14V5H18v14h-1.5z" + d: "M20 19V3H4v16H2v2h20v-2h-2zM13 5h1.5v14H13V5zm-2 14H9.5V5H11v14zM6 5h1.5v14H6V5zm10.5 14V5H18v14h-1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/VerticalSplit.js b/icons/es5/VerticalSplit.js index 12f95079b8..1cd804e120 100644 --- a/icons/es5/VerticalSplit.js +++ b/icons/es5/VerticalSplit.js @@ -7,9 +7,11 @@ function SvgVerticalSplit(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z" + d: "M3 15h8v-2H3v2zm0 4h8v-2H3v2zm0-8h8V9H3v2zm0-6v2h8V5H3zm10 0h8v14h-8V5z", + fill: "currentColor" })); } diff --git a/icons/es5/Vibration.js b/icons/es5/Vibration.js index 4ac526d8d5..cee1a584ea 100644 --- a/icons/es5/Vibration.js +++ b/icons/es5/Vibration.js @@ -7,9 +7,11 @@ function SvgVibration(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM18 3H6v18h12V3zm-2 16H8V5h8v14z" + d: "M0 15h2V9H0v6zm3 2h2V7H3v10zm19-8v6h2V9h-2zm-3 8h2V7h-2v10zM18 3H6v18h12V3zm-2 16H8V5h8v14z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoCall.js b/icons/es5/VideoCall.js index 4cd7ceda5e..a0f351b543 100644 --- a/icons/es5/VideoCall.js +++ b/icons/es5/VideoCall.js @@ -7,9 +7,11 @@ function SvgVideoCall(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z" + d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4zM14 13h-3v3H9v-3H6v-2h3V8h2v3h3v2z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoCameraBack.js b/icons/es5/VideoCameraBack.js index f81f17c857..8fbea6cbbf 100644 --- a/icons/es5/VideoCameraBack.js +++ b/icons/es5/VideoCameraBack.js @@ -7,9 +7,11 @@ function SvgVideoCameraBack(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM5 16l2.38-3.17L9 15l2.62-3.5L15 16H5z" + d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM5 16l2.38-3.17L9 15l2.62-3.5L15 16H5z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoCameraFront.js b/icons/es5/VideoCameraFront.js index 7252698b34..43fb5b2a0a 100644 --- a/icons/es5/VideoCameraFront.js +++ b/icons/es5/VideoCameraFront.js @@ -7,9 +7,11 @@ function SvgVideoCameraFront(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM10 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H6v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0114 15.43V16z" + d: "M18 10.48V4H2v16h16v-6.48l4 3.98v-11l-4 3.98zM10 8c1.1 0 2 .9 2 2s-.9 2-2 2-2-.9-2-2 .9-2 2-2zm4 8H6v-.57c0-.81.48-1.53 1.22-1.85a6.95 6.95 0 015.56 0A2.01 2.01 0 0114 15.43V16z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoChat.js b/icons/es5/VideoChat.js index 0315c3445d..d651c6035a 100644 --- a/icons/es5/VideoChat.js +++ b/icons/es5/VideoChat.js @@ -7,9 +7,11 @@ function SvgVideoChat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 2v20l4-4h16V2H2zm15 11l-2-1.99V14H7V6h8v2.99L17 7v6z" + d: "M2 2v20l4-4h16V2H2zm15 11l-2-1.99V14H7V6h8v2.99L17 7v6z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoFile.js b/icons/es5/VideoFile.js index b591a532c3..aaa36a750f 100644 --- a/icons/es5/VideoFile.js +++ b/icons/es5/VideoFile.js @@ -7,9 +7,11 @@ function SvgVideoFile(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 2H4v20h16V8l-6-6zm-1 7V3.5L18.5 9H13zm1 5l2-1.06v4.12L14 16v2H8v-6h6v2z" + d: "M14 2H4v20h16V8l-6-6zm-1 7V3.5L18.5 9H13zm1 5l2-1.06v4.12L14 16v2H8v-6h6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoLabel.js b/icons/es5/VideoLabel.js index f2e7ab75e5..5da0f6fc39 100644 --- a/icons/es5/VideoLabel.js +++ b/icons/es5/VideoLabel.js @@ -7,9 +7,11 @@ function SvgVideoLabel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zm-2 13H3V5h18v11z" + d: "M23 3H1v18h22V3zm-2 13H3V5h18v11z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoLibrary.js b/icons/es5/VideoLibrary.js index d06d0bfab6..acac06f900 100644 --- a/icons/es5/VideoLibrary.js +++ b/icons/es5/VideoLibrary.js @@ -7,9 +7,11 @@ function SvgVideoLibrary(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zM12 14.5v-9l6 4.5-6 4.5z" + d: "M4 6H2v16h16v-2H4V6zm18-4H6v16h16V2zM12 14.5v-9l6 4.5-6 4.5z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoSettings.js b/icons/es5/VideoSettings.js index 3fafcc4808..8de19d6a2c 100644 --- a/icons/es5/VideoSettings.js +++ b/icons/es5/VideoSettings.js @@ -7,11 +7,14 @@ function SvgVideoSettings(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 6h18v5h2V4H1v16h11v-2H3z" + d: "M3 6h18v5h2V4H1v16h11v-2H3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M15 12L9 8v8zm7.72 5.57l1.23-.98-1.25-2.17-1.47.58a3.44 3.44 0 00-.75-.42L20.25 13h-2.5l-.24 1.58c-.26.11-.51.26-.74.42l-1.48-.58-1.25 2.17 1.24.99c-.03.29-.04.58-.01.86l-1.23.98 1.25 2.17 1.48-.59c.23.17.48.31.75.42l.23 1.58h2.5l.24-1.58c.26-.11.51-.26.74-.42l1.48.58 1.25-2.17-1.24-.99c.03-.28.03-.57 0-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M15 12L9 8v8zm7.72 5.57l1.23-.98-1.25-2.17-1.47.58a3.44 3.44 0 00-.75-.42L20.25 13h-2.5l-.24 1.58c-.26.11-.51.26-.74.42l-1.48-.58-1.25 2.17 1.24.99c-.03.29-.04.58-.01.86l-1.23.98 1.25 2.17 1.48-.59c.23.17.48.31.75.42l.23 1.58h2.5l.24-1.58c.26-.11.51-.26.74-.42l1.48.58 1.25-2.17-1.24-.99c.03-.28.03-.57 0-.85zM19 19.5c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/VideoStable.js b/icons/es5/VideoStable.js index 0c41773aa9..6a0ff8f8ee 100644 --- a/icons/es5/VideoStable.js +++ b/icons/es5/VideoStable.js @@ -7,9 +7,11 @@ function SvgVideoStable(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 4v16h20V4H2zm2 14V6h2.95l-2.33 8.73L16.82 18H4zm16 0h-2.95l2.34-8.73L7.18 6H20v12z" + d: "M2 4v16h20V4H2zm2 14V6h2.95l-2.33 8.73L16.82 18H4zm16 0h-2.95l2.34-8.73L7.18 6H20v12z", + fill: "currentColor" })); } diff --git a/icons/es5/Videocam.js b/icons/es5/Videocam.js index ffb1ab1c39..dc8858f0df 100644 --- a/icons/es5/Videocam.js +++ b/icons/es5/Videocam.js @@ -7,9 +7,11 @@ function SvgVideocam(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4z" + d: "M17 10.5V6H3v12h14v-4.5l4 4v-11l-4 4z", + fill: "currentColor" })); } diff --git a/icons/es5/VideocamOff.js b/icons/es5/VideocamOff.js index f88ffbba73..5b22de8c2e 100644 --- a/icons/es5/VideocamOff.js +++ b/icons/es5/VideocamOff.js @@ -7,9 +7,11 @@ function SvgVideocamOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 16.61V6.5l-4 4V6h-6.61zM3.41 1.86L2 3.27 4.73 6H3v12h13.73l3 3 1.41-1.41z" + d: "M21 16.61V6.5l-4 4V6h-6.61zM3.41 1.86L2 3.27 4.73 6H3v12h13.73l3 3 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/VideogameAsset.js b/icons/es5/VideogameAsset.js index 3dffdfbb26..67f198b1bb 100644 --- a/icons/es5/VideogameAsset.js +++ b/icons/es5/VideogameAsset.js @@ -7,9 +7,11 @@ function SvgVideogameAsset(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 6H1v12h22V6zm-12 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z" + d: "M23 6H1v12h22V6zm-12 7H8v3H6v-3H3v-2h3V8h2v3h3v2zm4.5 2c-.83 0-1.5-.67-1.5-1.5s.67-1.5 1.5-1.5 1.5.67 1.5 1.5-.67 1.5-1.5 1.5zm4-3c-.83 0-1.5-.67-1.5-1.5S18.67 9 19.5 9s1.5.67 1.5 1.5-.67 1.5-1.5 1.5z", + fill: "currentColor" })); } diff --git a/icons/es5/VideogameAssetOff.js b/icons/es5/VideogameAssetOff.js index ecd397f4a6..e2f5ac8359 100644 --- a/icons/es5/VideogameAssetOff.js +++ b/icons/es5/VideogameAssetOff.js @@ -7,9 +7,11 @@ function SvgVideogameAssetOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.83 18H22V6H8.83l12 12zM17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm3.69 12.19L2.81 2.81 1.39 4.22 3.17 6H2v12h13.17l4.61 4.61 1.41-1.42zM9 13v2H7v-2H5v-2h2V9.83L10.17 13H9z" + d: "M20.83 18H22V6H8.83l12 12zM17.5 9c.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5-1.5-.67-1.5-1.5.67-1.5 1.5-1.5zm3.69 12.19L2.81 2.81 1.39 4.22 3.17 6H2v12h13.17l4.61 4.61 1.41-1.42zM9 13v2H7v-2H5v-2h2V9.83L10.17 13H9z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewAgenda.js b/icons/es5/ViewAgenda.js index 61b1ac2295..f291a39689 100644 --- a/icons/es5/ViewAgenda.js +++ b/icons/es5/ViewAgenda.js @@ -7,9 +7,11 @@ function SvgViewAgenda(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 13h18v8H3zM3 3h18v8H3z" + d: "M3 13h18v8H3zM3 3h18v8H3z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewArray.js b/icons/es5/ViewArray.js index d84f13c548..c0fe27c8ba 100644 --- a/icons/es5/ViewArray.js +++ b/icons/es5/ViewArray.js @@ -7,9 +7,11 @@ function SvgViewArray(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z" + d: "M21 5h-3v14h3V5zm-4 0H7v14h10V5zM6 5H3v14h3V5z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewCarousel.js b/icons/es5/ViewCarousel.js index 4fedd1a74b..8fd8b15480 100644 --- a/icons/es5/ViewCarousel.js +++ b/icons/es5/ViewCarousel.js @@ -7,9 +7,11 @@ function SvgViewCarousel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM18 7h4v10h-4V7z" + d: "M2 7h4v10H2V7zm5 12h10V5H7v14zM18 7h4v10h-4V7z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewColumn.js b/icons/es5/ViewColumn.js index 759739e97d..601e165cef 100644 --- a/icons/es5/ViewColumn.js +++ b/icons/es5/ViewColumn.js @@ -7,9 +7,11 @@ function SvgViewColumn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.67 5v14H9.33V5h5.34zm1 14H21V5h-5.33v14zm-7.34 0V5H3v14h5.33z" + d: "M14.67 5v14H9.33V5h5.34zm1 14H21V5h-5.33v14zm-7.34 0V5H3v14h5.33z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewComfy.js b/icons/es5/ViewComfy.js index 1054b639c9..535c1e2f4a 100644 --- a/icons/es5/ViewComfy.js +++ b/icons/es5/ViewComfy.js @@ -7,9 +7,11 @@ function SvgViewComfy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z" + d: "M3 9h4V5H3v4zm0 5h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zM8 9h4V5H8v4zm5-4v4h4V5h-4zm5 9h4v-4h-4v4zM3 19h4v-4H3v4zm5 0h4v-4H8v4zm5 0h4v-4h-4v4zm5 0h4v-4h-4v4zm0-14v4h4V5h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewComfyAlt.js b/icons/es5/ViewComfyAlt.js index 00534d8fcd..6d0e488ccb 100644 --- a/icons/es5/ViewComfyAlt.js +++ b/icons/es5/ViewComfyAlt.js @@ -7,9 +7,11 @@ function SvgViewComfyAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 4v16h20V4H2zm9 13H7v-4h4v4zm0-6H7V7h4v4zm6 6h-4v-4h4v4zm0-6h-4V7h4v4z" + d: "M2 4v16h20V4H2zm9 13H7v-4h4v4zm0-6H7V7h4v4zm6 6h-4v-4h4v4zm0-6h-4V7h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewCompact.js b/icons/es5/ViewCompact.js index 127fa88f86..e56f1781b7 100644 --- a/icons/es5/ViewCompact.js +++ b/icons/es5/ViewCompact.js @@ -7,9 +7,11 @@ function SvgViewCompact(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z" + d: "M3 19h6v-7H3v7zm7 0h12v-7H10v7zM3 5v6h19V5H3z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewCompactAlt.js b/icons/es5/ViewCompactAlt.js index e0426be550..8006cfdb82 100644 --- a/icons/es5/ViewCompactAlt.js +++ b/icons/es5/ViewCompactAlt.js @@ -7,9 +7,11 @@ function SvgViewCompactAlt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM11.5 16.5h-4v-4h4v4zm0-5h-4v-4h4v4zm5 5h-4v-4h4v4zm0-5h-4v-4h4v4z" + d: "M22 4H2v16h20V4zM11.5 16.5h-4v-4h4v4zm0-5h-4v-4h4v4zm5 5h-4v-4h4v4zm0-5h-4v-4h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewCozy.js b/icons/es5/ViewCozy.js index 5a60595cf6..8278ad408d 100644 --- a/icons/es5/ViewCozy.js +++ b/icons/es5/ViewCozy.js @@ -7,9 +7,11 @@ function SvgViewCozy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM11.25 16.75h-4v-4h4v4zm0-5.5h-4v-4h4v4zm5.5 5.5h-4v-4h4v4zm0-5.5h-4v-4h4v4z" + d: "M22 4H2v16h20V4zM11.25 16.75h-4v-4h4v4zm0-5.5h-4v-4h4v4zm5.5 5.5h-4v-4h4v4zm0-5.5h-4v-4h4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewDay.js b/icons/es5/ViewDay.js index 39b534aba8..f5d11fc663 100644 --- a/icons/es5/ViewDay.js +++ b/icons/es5/ViewDay.js @@ -7,9 +7,11 @@ function SvgViewDay(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2 21h19v-3H2v3zM21 8H2v8h19V8zM2 3v3h19V3H2z" + d: "M2 21h19v-3H2v3zM21 8H2v8h19V8zM2 3v3h19V3H2z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewHeadline.js b/icons/es5/ViewHeadline.js index a32381e806..d82bd9057d 100644 --- a/icons/es5/ViewHeadline.js +++ b/icons/es5/ViewHeadline.js @@ -7,9 +7,11 @@ function SvgViewHeadline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z" + d: "M4 15h16v-2H4v2zm0 4h16v-2H4v2zm0-8h16V9H4v2zm0-6v2h16V5H4z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewInAr.js b/icons/es5/ViewInAr.js index e14672354c..c88cd02764 100644 --- a/icons/es5/ViewInAr.js +++ b/icons/es5/ViewInAr.js @@ -7,9 +7,11 @@ function SvgViewInAr(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 1v2h3v3h2V1zm3 20h-3v2h5v-5h-2zM3 3h3V1H1v5h2zm0 15H1v5h5v-2H3zM19 7.97l-7-4.03-7 4.03v8.06l7 4.03 7-4.03V7.97zm-8 9.2l-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03l-4 2.3v-4.6l4-2.33v4.63z" + d: "M18 1v2h3v3h2V1zm3 20h-3v2h5v-5h-2zM3 3h3V1H1v5h2zm0 15H1v5h5v-2H3zM19 7.97l-7-4.03-7 4.03v8.06l7 4.03 7-4.03V7.97zm-8 9.2l-4-2.3v-4.63l4 2.33v4.6zm1-6.33L8.04 8.53 12 6.25l3.96 2.28L12 10.84zm5 4.03l-4 2.3v-4.6l4-2.33v4.63z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewKanban.js b/icons/es5/ViewKanban.js index 9946b25525..9d91d3af72 100644 --- a/icons/es5/ViewKanban.js +++ b/icons/es5/ViewKanban.js @@ -7,9 +7,11 @@ function SvgViewKanban(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zM9 17H7V7h2v10zm4-5h-2V7h2v5zm4 3h-2V7h2v8z" + d: "M21 3H3v18h18V3zM9 17H7V7h2v10zm4-5h-2V7h2v5zm4 3h-2V7h2v8z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewList.js b/icons/es5/ViewList.js index ce98c80326..e68bbb7566 100644 --- a/icons/es5/ViewList.js +++ b/icons/es5/ViewList.js @@ -7,9 +7,11 @@ function SvgViewList(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 14h4v-4H3v4zm0 5h4v-4H3v4zM3 9h4V5H3v4zm5 5h13v-4H8v4zm0 5h13v-4H8v4zM8 5v4h13V5H8z" + d: "M3 14h4v-4H3v4zm0 5h4v-4H3v4zM3 9h4V5H3v4zm5 5h13v-4H8v4zm0 5h13v-4H8v4zM8 5v4h13V5H8z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewModule.js b/icons/es5/ViewModule.js index 9843303e54..6b1b52e080 100644 --- a/icons/es5/ViewModule.js +++ b/icons/es5/ViewModule.js @@ -7,9 +7,11 @@ function SvgViewModule(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14.67 5v6.5H9.33V5h5.34zm1 6.5H21V5h-5.33v6.5zm-1 7.5v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zm-7.34 0H3V19h5.33v-6.5zm0-1V5H3v6.5h5.33z" + d: "M14.67 5v6.5H9.33V5h5.34zm1 6.5H21V5h-5.33v6.5zm-1 7.5v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zm-7.34 0H3V19h5.33v-6.5zm0-1V5H3v6.5h5.33z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewQuilt.js b/icons/es5/ViewQuilt.js index 5a7f839530..383686a94c 100644 --- a/icons/es5/ViewQuilt.js +++ b/icons/es5/ViewQuilt.js @@ -7,9 +7,11 @@ function SvgViewQuilt(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 5v6.5H9.33V5H21zm-6.33 14v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zM8.33 19V5H3v14h5.33z" + d: "M21 5v6.5H9.33V5H21zm-6.33 14v-6.5H9.33V19h5.34zm1-6.5V19H21v-6.5h-5.33zM8.33 19V5H3v14h5.33z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewSidebar.js b/icons/es5/ViewSidebar.js index fa8c5d1bf4..001863cade 100644 --- a/icons/es5/ViewSidebar.js +++ b/icons/es5/ViewSidebar.js @@ -7,9 +7,11 @@ function SvgViewSidebar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 20H2V4h14v16zm2-12h4V4h-4v4zm0 12h4v-4h-4v4zm0-6h4v-4h-4v4z" + d: "M16 20H2V4h14v16zm2-12h4V4h-4v4zm0 12h4v-4h-4v4zm0-6h4v-4h-4v4z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewStream.js b/icons/es5/ViewStream.js index f771cb75e9..5a5961c8f8 100644 --- a/icons/es5/ViewStream.js +++ b/icons/es5/ViewStream.js @@ -7,9 +7,11 @@ function SvgViewStream(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 19v-6h18v6H3zM3 5v6h18V5H3z" + d: "M3 19v-6h18v6H3zM3 5v6h18V5H3z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewTimeline.js b/icons/es5/ViewTimeline.js index 4be4f99d5a..1cf53ccd8a 100644 --- a/icons/es5/ViewTimeline.js +++ b/icons/es5/ViewTimeline.js @@ -7,9 +7,11 @@ function SvgViewTimeline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 3H3v18h18V3zm-9 14H6v-2h6v2zm3-4H9v-2h6v2zm3-4h-6V7h6v2z" + d: "M21 3H3v18h18V3zm-9 14H6v-2h6v2zm3-4H9v-2h6v2zm3-4h-6V7h6v2z", + fill: "currentColor" })); } diff --git a/icons/es5/ViewWeek.js b/icons/es5/ViewWeek.js index 169fe14d46..72c5ac0e7b 100644 --- a/icons/es5/ViewWeek.js +++ b/icons/es5/ViewWeek.js @@ -7,9 +7,11 @@ function SvgViewWeek(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7.33 20H2V4h5.33v16zM22 20V4h-5.33v16H22zm-7.33 0V4H9.33v16h5.34z" + d: "M7.33 20H2V4h5.33v16zM22 20V4h-5.33v16H22zm-7.33 0V4H9.33v16h5.34z", + fill: "currentColor" })); } diff --git a/icons/es5/Vignette.js b/icons/es5/Vignette.js index 697a8d7684..fc541a12ec 100644 --- a/icons/es5/Vignette.js +++ b/icons/es5/Vignette.js @@ -7,9 +7,11 @@ function SvgVignette(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 3H1v18h22V3zM12 18c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z" + d: "M23 3H1v18h22V3zM12 18c-4.42 0-8-2.69-8-6s3.58-6 8-6 8 2.69 8 6-3.58 6-8 6z", + fill: "currentColor" })); } diff --git a/icons/es5/Villa.js b/icons/es5/Villa.js index 2911d8b16c..fdeafdf5db 100644 --- a/icons/es5/Villa.js +++ b/icons/es5/Villa.js @@ -7,9 +7,11 @@ function SvgVilla(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 21H3V8l13-5v7H7v11zm12-11c-1.1 0-2 .9-2 2H9v9h5v-5h2v5h5v-9c0-1.1-.9-2-2-2z" + d: "M7 21H3V8l13-5v7H7v11zm12-11c-1.1 0-2 .9-2 2H9v9h5v-5h2v5h5v-9c0-1.1-.9-2-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/VoiceOverOff.js b/icons/es5/VoiceOverOff.js index 41e4ec6686..164417073b 100644 --- a/icons/es5/VoiceOverOff.js +++ b/icons/es5/VoiceOverOff.js @@ -7,9 +7,11 @@ function SvgVoiceOverOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53a3.979 3.979 0 00-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86z" + d: "M16.76 5.36l-1.68 1.69c.8 1.13.83 2.58.09 3.74l1.7 1.7c1.9-2.02 1.87-4.98-.11-7.13zM20.07 2l-1.63 1.63c2.72 2.97 2.76 7.39.14 10.56l1.64 1.64c3.74-3.89 3.71-9.84-.15-13.83zM9.43 5.04l3.53 3.53a3.979 3.979 0 00-3.53-3.53zM4.41 2.86L3 4.27l2.62 2.62C5.23 7.5 5 8.22 5 9c0 2.21 1.79 4 4 4 .78 0 1.5-.23 2.11-.62l4.4 4.4C13.74 15.6 10.78 15 9 15c-2.67 0-8 1.34-8 4v2h16v-2c0-.37-.11-.7-.29-1.02L19.73 21l1.41-1.41L4.41 2.86z", + fill: "currentColor" })); } diff --git a/icons/es5/Voicemail.js b/icons/es5/Voicemail.js index fcd9ef35e0..1ddde8a591 100644 --- a/icons/es5/Voicemail.js +++ b/icons/es5/Voicemail.js @@ -7,9 +7,11 @@ function SvgVoicemail(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z" + d: "M18.5 6C15.46 6 13 8.46 13 11.5c0 1.33.47 2.55 1.26 3.5H9.74c.79-.95 1.26-2.17 1.26-3.5C11 8.46 8.54 6 5.5 6S0 8.46 0 11.5 2.46 17 5.5 17h13c3.04 0 5.5-2.46 5.5-5.5S21.54 6 18.5 6zm-13 9C3.57 15 2 13.43 2 11.5S3.57 8 5.5 8 9 9.57 9 11.5 7.43 15 5.5 15zm13 0c-1.93 0-3.5-1.57-3.5-3.5S16.57 8 18.5 8 22 9.57 22 11.5 20.43 15 18.5 15z", + fill: "currentColor" })); } diff --git a/icons/es5/Volcano.js b/icons/es5/Volcano.js index 3d3ae742a5..fabf73e7c2 100644 --- a/icons/es5/Volcano.js +++ b/icons/es5/Volcano.js @@ -7,9 +7,11 @@ function SvgVolcano(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 8h-7l-2 5H6l-4 9h20zm-5-7h2v4h-2zm3.121 4.468L18.95 2.64l1.414 1.414-2.829 2.828zM7.64 4.05l1.414-1.414 2.828 2.828-1.414 1.415z" + d: "M18 8h-7l-2 5H6l-4 9h20zm-5-7h2v4h-2zm3.121 4.468L18.95 2.64l1.414 1.414-2.829 2.828zM7.64 4.05l1.414-1.414 2.828 2.828-1.414 1.415z", + fill: "currentColor" })); } diff --git a/icons/es5/VolumeDown.js b/icons/es5/VolumeDown.js index 9ecf1313c8..8ae28aa007 100644 --- a/icons/es5/VolumeDown.js +++ b/icons/es5/VolumeDown.js @@ -7,9 +7,11 @@ function SvgVolumeDown(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18.5 12A4.5 4.5 0 0016 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z" + d: "M18.5 12A4.5 4.5 0 0016 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM5 9v6h4l5 5V4L9 9H5z", + fill: "currentColor" })); } diff --git a/icons/es5/VolumeMute.js b/icons/es5/VolumeMute.js index 1d9f7c41dc..32f7205439 100644 --- a/icons/es5/VolumeMute.js +++ b/icons/es5/VolumeMute.js @@ -7,9 +7,11 @@ function SvgVolumeMute(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M7 9v6h4l5 5V4l-5 5H7z" + d: "M7 9v6h4l5 5V4l-5 5H7z", + fill: "currentColor" })); } diff --git a/icons/es5/VolumeOff.js b/icons/es5/VolumeOff.js index f3e4cf7643..51c319d611 100644 --- a/icons/es5/VolumeOff.js +++ b/icons/es5/VolumeOff.js @@ -7,9 +7,11 @@ function SvgVolumeOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06a8.94 8.94 0 003.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8A4.5 4.5 0 0014 7.97v1.79l2.48 2.48c.01-.08.02-.16.02-.24z" + d: "M4.34 2.93L2.93 4.34 7.29 8.7 7 9H3v6h4l5 5v-6.59l4.18 4.18c-.65.49-1.38.88-2.18 1.11v2.06a8.94 8.94 0 003.61-1.75l2.05 2.05 1.41-1.41L4.34 2.93zM19 12c0 .82-.15 1.61-.41 2.34l1.53 1.53c.56-1.17.88-2.48.88-3.87 0-4.28-2.99-7.86-7-8.77v2.06c2.89.86 5 3.54 5 6.71zm-7-8l-1.88 1.88L12 7.76zm4.5 8A4.5 4.5 0 0014 7.97v1.79l2.48 2.48c.01-.08.02-.16.02-.24z", + fill: "currentColor" })); } diff --git a/icons/es5/VolumeUp.js b/icons/es5/VolumeUp.js index 4b7de4c698..333845a56b 100644 --- a/icons/es5/VolumeUp.js +++ b/icons/es5/VolumeUp.js @@ -7,9 +7,11 @@ function SvgVolumeUp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 9v6h4l5 5V4L7 9H3zm13.5 3A4.5 4.5 0 0014 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z" + d: "M3 9v6h4l5 5V4L7 9H3zm13.5 3A4.5 4.5 0 0014 7.97v8.05c1.48-.73 2.5-2.25 2.5-4.02zM14 3.23v2.06c2.89.86 5 3.54 5 6.71s-2.11 5.85-5 6.71v2.06c4.01-.91 7-4.49 7-8.77s-2.99-7.86-7-8.77z", + fill: "currentColor" })); } diff --git a/icons/es5/VolunteerActivism.js b/icons/es5/VolunteerActivism.js index 706a202771..8456aef2a8 100644 --- a/icons/es5/VolunteerActivism.js +++ b/icons/es5/VolunteerActivism.js @@ -7,9 +7,11 @@ function SvgVolunteerActivism(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM22 17h-9l-2.09-.73.33-.95L13 16h4v-2l-8.03-3H7v9.02L14 22l8-3z" + d: "M1 11h4v11H1zm15-7.75C16.65 2.49 17.66 2 18.7 2 20.55 2 22 3.45 22 5.3c0 2.27-2.91 4.9-6 7.7-3.09-2.81-6-5.44-6-7.7C10 3.45 11.45 2 13.3 2c1.04 0 2.05.49 2.7 1.25zM22 17h-9l-2.09-.73.33-.95L13 16h4v-2l-8.03-3H7v9.02L14 22l8-3z", + fill: "currentColor" })); } diff --git a/icons/es5/VpnKey.js b/icons/es5/VpnKey.js index 4ee752cc25..bdb24b9206 100644 --- a/icons/es5/VpnKey.js +++ b/icons/es5/VpnKey.js @@ -7,9 +7,11 @@ function SvgVpnKey(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12.65 10A5.99 5.99 0 007 6c-3.31 0-6 2.69-6 6s2.69 6 6 6a5.99 5.99 0 005.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M12.65 10A5.99 5.99 0 007 6c-3.31 0-6 2.69-6 6s2.69 6 6 6a5.99 5.99 0 005.65-4H17v4h4v-4h2v-4H12.65zM7 14c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/VpnKeyOff.js b/icons/es5/VpnKeyOff.js index e94646faa7..b4c9db64b3 100644 --- a/icons/es5/VpnKeyOff.js +++ b/icons/es5/VpnKeyOff.js @@ -7,9 +7,11 @@ function SvgVpnKeyOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.83 18H21v-4h2v-4H12.83l8 8zm-1.05 4.61l1.41-1.41L2.81 2.81 1.39 4.22l2.59 2.59A6.012 6.012 0 001 12c0 3.31 2.69 6 6 6 2.21 0 4.15-1.2 5.18-2.99l7.6 7.6zM8.99 11.82c.01.06.01.12.01.18 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.06 0 .12 0 .18.01l1.81 1.81z" + d: "M20.83 18H21v-4h2v-4H12.83l8 8zm-1.05 4.61l1.41-1.41L2.81 2.81 1.39 4.22l2.59 2.59A6.012 6.012 0 001 12c0 3.31 2.69 6 6 6 2.21 0 4.15-1.2 5.18-2.99l7.6 7.6zM8.99 11.82c.01.06.01.12.01.18 0 1.1-.9 2-2 2s-2-.9-2-2 .9-2 2-2c.06 0 .12 0 .18.01l1.81 1.81z", + fill: "currentColor" })); } diff --git a/icons/es5/VpnLock.js b/icons/es5/VpnLock.js index 4d11e61b8c..5f4d6556d5 100644 --- a/icons/es5/VpnLock.js +++ b/icons/es5/VpnLock.js @@ -7,9 +7,11 @@ function SvgVpnLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19 13c0 2.08-.8 3.97-2.1 5.39V17H14v-4H7v-2h3V8h4V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03c.04.33.08.66.08 1zm-9 7.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v3h2v1.93zM22 4v-.36c0-1.31-.94-2.5-2.24-2.63A2.5 2.5 0 0017 3.5V4h-1v6h7V4h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z" + d: "M19 13c0 2.08-.8 3.97-2.1 5.39V17H14v-4H7v-2h3V8h4V3.46c-.95-.3-1.95-.46-3-.46C5.48 3 1 7.48 1 13s4.48 10 10 10 10-4.48 10-10c0-.34-.02-.67-.05-1h-2.03c.04.33.08.66.08 1zm-9 7.93c-3.95-.49-7-3.85-7-7.93 0-.62.08-1.21.21-1.79L8 16v3h2v1.93zM22 4v-.36c0-1.31-.94-2.5-2.24-2.63A2.5 2.5 0 0017 3.5V4h-1v6h7V4h-1zm-1 0h-3v-.5c0-.83.67-1.5 1.5-1.5s1.5.67 1.5 1.5V4z", + fill: "currentColor" })); } diff --git a/icons/es5/Vrpano.js b/icons/es5/Vrpano.js index c39eb2a782..2f85668b5c 100644 --- a/icons/es5/Vrpano.js +++ b/icons/es5/Vrpano.js @@ -7,9 +7,11 @@ function SvgVrpano(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5.5c-5.25 0-9.01-1.54-10-1.92V20.4c2.16-.76 5.21-1.9 10-1.9 4.78 0 7.91 1.17 10 1.9V3.6c-2.09.73-5.23 1.9-10 1.9zm0 9.5c-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4c-1.99-.25-4.21-.4-6.51-.4z" + d: "M12 5.5c-5.25 0-9.01-1.54-10-1.92V20.4c2.16-.76 5.21-1.9 10-1.9 4.78 0 7.91 1.17 10 1.9V3.6c-2.09.73-5.23 1.9-10 1.9zm0 9.5c-2.34 0-4.52.15-6.52.41l3.69-4.42 2 2.4L14 10l4.51 5.4c-1.99-.25-4.21-.4-6.51-.4z", + fill: "currentColor" })); } diff --git a/icons/es5/Wallet.js b/icons/es5/Wallet.js index 976fa853c4..9ce8dff5fb 100644 --- a/icons/es5/Wallet.js +++ b/icons/es5/Wallet.js @@ -7,9 +7,11 @@ function SvgWallet(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zm-6.25 10.09L4 11.22V10h16v.53l-4.25 3.56zM4 6h16v2H4V6z" + d: "M22 4H2v16h20V4zm-6.25 10.09L4 11.22V10h16v.53l-4.25 3.56zM4 6h16v2H4V6z", + fill: "currentColor" })); } diff --git a/icons/es5/Wallpaper.js b/icons/es5/Wallpaper.js index 5aafa7f53e..59fd214c1d 100644 --- a/icons/es5/Wallpaper.js +++ b/icons/es5/Wallpaper.js @@ -7,9 +7,11 @@ function SvgWallpaper(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 4h7V2H2v9h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM22 2h-9v2h7v7h2V2zm-2 18h-7v2h9v-9h-2v7zM4 13H2v9h9v-2H4v-7z" + d: "M4 4h7V2H2v9h2V4zm6 9l-4 5h12l-3-4-2.03 2.71L10 13zm7-4.5c0-.83-.67-1.5-1.5-1.5S14 7.67 14 8.5s.67 1.5 1.5 1.5S17 9.33 17 8.5zM22 2h-9v2h7v7h2V2zm-2 18h-7v2h9v-9h-2v7zM4 13H2v9h9v-2H4v-7z", + fill: "currentColor" })); } diff --git a/icons/es5/Warehouse.js b/icons/es5/Warehouse.js index dc49598e82..a12d0b0f59 100644 --- a/icons/es5/Warehouse.js +++ b/icons/es5/Warehouse.js @@ -7,9 +7,11 @@ function SvgWarehouse(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 21V7L12 3 2 7v14h5v-9h10v9h5zm-11-2H9v2h2v-2zm2-3h-2v2h2v-2zm2 3h-2v2h2v-2z" + d: "M22 21V7L12 3 2 7v14h5v-9h10v9h5zm-11-2H9v2h2v-2zm2-3h-2v2h2v-2zm2 3h-2v2h2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/WarningAmber.js b/icons/es5/WarningAmber.js index 1e2a560481..cb8b1b9e0e 100644 --- a/icons/es5/WarningAmber.js +++ b/icons/es5/WarningAmber.js @@ -7,9 +7,11 @@ function SvgWarningAmber(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z" + d: "M12 5.99L19.53 19H4.47L12 5.99M12 2L1 21h22L12 2zm1 14h-2v2h2v-2zm0-6h-2v4h2v-4z", + fill: "currentColor" })); } diff --git a/icons/es5/WarningFilled.js b/icons/es5/WarningFilled.js index 51992a7a16..9dbc46e315 100644 --- a/icons/es5/WarningFilled.js +++ b/icons/es5/WarningFilled.js @@ -11,10 +11,10 @@ function SvgWarningFilled(props) { xmlns: "http://www.w3.org/2000/svg" }, props), /*#__PURE__*/React.createElement("path", { d: "M12 2L1 21h22L12 2z", - fill: "#F0CC00" + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { d: "M13 16h-2v2h2v-2zM13 10h-2v4h2v-4z", - fill: "#111" + fill: "currentColor" })); } diff --git a/icons/es5/Wash.js b/icons/es5/Wash.js index b8f66e1835..11c5aeae6f 100644 --- a/icons/es5/Wash.js +++ b/icons/es5/Wash.js @@ -7,9 +7,11 @@ function SvgWash(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.12 5L1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5zm4.38 4c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zm5-8S16 3.83 16 5.5a2.5 2.5 0 005 0C21 3.83 18.5 1 18.5 1z" + d: "M9.12 5L1 12.68V23h18v-2.5h-7v-1h9V17h-9v-1h10v-2.5H12v-1h8V10H8.86l1.88-3.3L9.12 5zm4.38 4c.83 0 1.5-.67 1.5-1.5 0-.84-1.5-2.5-1.5-2.5S12 6.66 12 7.5c0 .83.67 1.5 1.5 1.5zm5-8S16 3.83 16 5.5a2.5 2.5 0 005 0C21 3.83 18.5 1 18.5 1z", + fill: "currentColor" })); } diff --git a/icons/es5/Watch.js b/icons/es5/Watch.js index 7fc7a0f9bd..123a5dbe70 100644 --- a/icons/es5/Watch.js +++ b/icons/es5/Watch.js @@ -7,9 +7,11 @@ function SvgWatch(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73A7.976 7.976 0 0020 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z" + d: "M20 12c0-2.54-1.19-4.81-3.04-6.27L16 0H8l-.95 5.73C5.19 7.19 4 9.45 4 12s1.19 4.81 3.05 6.27L8 24h8l.96-5.73A7.976 7.976 0 0020 12zM6 12c0-3.31 2.69-6 6-6s6 2.69 6 6-2.69 6-6 6-6-2.69-6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/WatchLater.js b/icons/es5/WatchLater.js index 7352be0c70..96bb7fa017 100644 --- a/icons/es5/WatchLater.js +++ b/icons/es5/WatchLater.js @@ -7,9 +7,11 @@ function SvgWatchLater(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z" + d: "M12 2C6.5 2 2 6.5 2 12s4.5 10 10 10 10-4.5 10-10S17.5 2 12 2zm4.2 14.2L11 13V7h1.5v5.2l4.5 2.7-.8 1.3z", + fill: "currentColor" })); } diff --git a/icons/es5/WatchOff.js b/icons/es5/WatchOff.js index ad661780f4..d3fb088ef6 100644 --- a/icons/es5/WatchOff.js +++ b/icons/es5/WatchOff.js @@ -7,9 +7,11 @@ function SvgWatchOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7c2.76 0 5 2.24 5 5 0 .64-.13 1.25-.35 1.82l1.5 1.5a6.963 6.963 0 00-1.79-8.79L15 2H9l-.96 3.21 2.14 2.14C10.75 7.13 11.36 7 12 7zM2.81 2.81L1.39 4.22l4.46 4.46a6.963 6.963 0 001.79 8.79L9 22h6l.96-3.21 3.82 3.82 1.41-1.41L2.81 2.81zM12 17c-2.76 0-5-2.24-5-5 0-.64.13-1.25.35-1.82l6.47 6.47c-.57.22-1.18.35-1.82.35z" + d: "M12 7c2.76 0 5 2.24 5 5 0 .64-.13 1.25-.35 1.82l1.5 1.5a6.963 6.963 0 00-1.79-8.79L15 2H9l-.96 3.21 2.14 2.14C10.75 7.13 11.36 7 12 7zM2.81 2.81L1.39 4.22l4.46 4.46a6.963 6.963 0 001.79 8.79L9 22h6l.96-3.21 3.82 3.82 1.41-1.41L2.81 2.81zM12 17c-2.76 0-5-2.24-5-5 0-.64.13-1.25.35-1.82l6.47 6.47c-.57.22-1.18.35-1.82.35z", + fill: "currentColor" })); } diff --git a/icons/es5/Water.js b/icons/es5/Water.js index 05f3a3bf47..610e7707ca 100644 --- a/icons/es5/Water.js +++ b/icons/es5/Water.js @@ -7,9 +7,11 @@ function SvgWater(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z" + d: "M21.98 14H22h-.02zM5.35 13c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1v-2c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1v2c1.9 0 2.17-1 3.35-1zm13.32 2c-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.1 1-3.34 1-1.24 0-1.38-1-3.33-1-1.95 0-2.1 1-3.34 1v2c1.95 0 2.11-1 3.34-1 1.24 0 1.38 1 3.33 1 1.95 0 2.1-1 3.34-1 1.19 0 1.42 1 3.33 1 1.94 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1v-2c-1.24 0-1.38-1-3.33-1zM5.35 9c1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.42 1 3.33 1 1.95 0 2.09-1 3.33-1 1.19 0 1.4.98 3.31 1V8c-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1-1.95 0-2.09 1-3.33 1-1.19 0-1.42-1-3.33-1C3.38 7 3.24 8 2 8v2c1.9 0 2.17-1 3.35-1z", + fill: "currentColor" })); } diff --git a/icons/es5/WaterDamage.js b/icons/es5/WaterDamage.js index 2fbac600e3..2a8c1af8d9 100644 --- a/icons/es5/WaterDamage.js +++ b/icons/es5/WaterDamage.js @@ -7,9 +7,11 @@ function SvgWaterDamage(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 3L2 12h3v8h14v-8h3L12 3zm0 13c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2z" + d: "M12 3L2 12h3v8h14v-8h3L12 3zm0 13c-1.1 0-2-.9-2-2s2-4 2-4 2 2.9 2 4-.9 2-2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/WaterDrop.js b/icons/es5/WaterDrop.js index d888ad0424..e7300784ed 100644 --- a/icons/es5/WaterDrop.js +++ b/icons/es5/WaterDrop.js @@ -7,9 +7,11 @@ function SvgWaterDrop(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm1 16.91c-.32.06-.65.09-1 .09-2.69 0-4.88-1.94-5-5h1.5c.08 2.07 1.5 3.5 3.5 3.5.35 0 .69-.04 1-.13v1.54z" + d: "M12 2c-5.33 4.55-8 8.48-8 11.8 0 4.98 3.8 8.2 8 8.2s8-3.22 8-8.2c0-3.32-2.67-7.25-8-11.8zm1 16.91c-.32.06-.65.09-1 .09-2.69 0-4.88-1.94-5-5h1.5c.08 2.07 1.5 3.5 3.5 3.5.35 0 .69-.04 1-.13v1.54z", + fill: "currentColor" })); } diff --git a/icons/es5/WaterfallChart.js b/icons/es5/WaterfallChart.js index e04ba25898..dd0b87ad43 100644 --- a/icons/es5/WaterfallChart.js +++ b/icons/es5/WaterfallChart.js @@ -7,9 +7,11 @@ function SvgWaterfallChart(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M18 4h3v16h-3V4zM3 13h3v7H3v-7zm11-9h3v3h-3V4zm-4 1h3v4h-3V5zm-3 5h3v4H7v-4z" + d: "M18 4h3v16h-3V4zM3 13h3v7H3v-7zm11-9h3v3h-3V4zm-4 1h3v4h-3V5zm-3 5h3v4H7v-4z", + fill: "currentColor" })); } diff --git a/icons/es5/Waves.js b/icons/es5/Waves.js index 18a215af16..b61654274b 100644 --- a/icons/es5/Waves.js +++ b/icons/es5/Waves.js @@ -7,9 +7,11 @@ function SvgWaves(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z" + d: "M17 16.99c-1.35 0-2.2.42-2.95.8-.65.33-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.95c1.35 0 2.2-.42 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.42 2.95-.8c.65-.33 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm0-4.45c-1.35 0-2.2.43-2.95.8-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.32-1.17.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.35 1.15-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.58.8 2.95.8v-1.95c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8zm2.95-8.08c-.75-.38-1.58-.8-2.95-.8s-2.2.42-2.95.8c-.65.32-1.18.6-2.05.6-.9 0-1.4-.25-2.05-.6-.75-.37-1.57-.8-2.95-.8s-2.2.42-2.95.8c-.65.33-1.17.6-2.05.6v1.93c1.35 0 2.2-.43 2.95-.8.65-.33 1.17-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V5.04c-.9 0-1.4-.25-2.05-.58zM17 8.09c-1.35 0-2.2.43-2.95.8-.65.35-1.15.6-2.05.6s-1.4-.25-2.05-.6c-.75-.38-1.57-.8-2.95-.8s-2.2.43-2.95.8c-.65.35-1.15.6-2.05.6v1.95c1.35 0 2.2-.43 2.95-.8.65-.32 1.18-.6 2.05-.6s1.4.25 2.05.6c.75.38 1.57.8 2.95.8s2.2-.43 2.95-.8c.65-.32 1.18-.6 2.05-.6.9 0 1.4.25 2.05.6.75.38 1.58.8 2.95.8V9.49c-.9 0-1.4-.25-2.05-.6-.75-.38-1.6-.8-2.95-.8z", + fill: "currentColor" })); } diff --git a/icons/es5/WavingHand.js b/icons/es5/WavingHand.js index 19ff5dc041..edab9afdde 100644 --- a/icons/es5/WavingHand.js +++ b/icons/es5/WavingHand.js @@ -7,9 +7,11 @@ function SvgWavingHand(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M23 17c0 3.31-2.69 6-6 6v-1.5c2.48 0 4.5-2.02 4.5-4.5H23zM1 7c0-3.31 2.69-6 6-6v1.5C4.52 2.5 2.5 4.52 2.5 7H1zm7.9-3.57L3.42 8.91C.2 12.13.2 17.35 3.42 20.58s8.44 3.22 11.67 0l7.95-7.95-1.77-1.77-5.3 5.3-.71-.71 7.42-7.42-1.77-1.77-6.72 6.72-.71-.71 7.78-7.78-1.76-1.76-7.78 7.78-.7-.71 6.36-6.36-1.77-1.77-8.51 8.51a4.003 4.003 0 01-.33 5.28l-.71-.71a3 3 0 000-4.24l-.35-.35 4.95-4.95L8.9 3.43z" + d: "M23 17c0 3.31-2.69 6-6 6v-1.5c2.48 0 4.5-2.02 4.5-4.5H23zM1 7c0-3.31 2.69-6 6-6v1.5C4.52 2.5 2.5 4.52 2.5 7H1zm7.9-3.57L3.42 8.91C.2 12.13.2 17.35 3.42 20.58s8.44 3.22 11.67 0l7.95-7.95-1.77-1.77-5.3 5.3-.71-.71 7.42-7.42-1.77-1.77-6.72 6.72-.71-.71 7.78-7.78-1.76-1.76-7.78 7.78-.7-.71 6.36-6.36-1.77-1.77-8.51 8.51a4.003 4.003 0 01-.33 5.28l-.71-.71a3 3 0 000-4.24l-.35-.35 4.95-4.95L8.9 3.43z", + fill: "currentColor" })); } diff --git a/icons/es5/WbAuto.js b/icons/es5/WbAuto.js index b6edc3d23b..f465d268cc 100644 --- a/icons/es5/WbAuto.js +++ b/icons/es5/WbAuto.js @@ -7,9 +7,11 @@ function SvgWbAuto(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z" + d: "M6.85 12.65h2.3L8 9l-1.15 3.65zM22 7l-1.2 6.29L19.3 7h-1.6l-1.49 6.29L15 7h-.76C12.77 5.17 10.53 4 8 4c-4.42 0-8 3.58-8 8s3.58 8 8 8c3.13 0 5.84-1.81 7.15-4.43l.1.43H17l1.5-6.1L20 16h1.75l2.05-9H22zm-11.7 9l-.7-2H6.4l-.7 2H3.8L7 7h2l3.2 9h-1.9z", + fill: "currentColor" })); } diff --git a/icons/es5/WbCloudy.js b/icons/es5/WbCloudy.js index 73576863fc..3e46419ffd 100644 --- a/icons/es5/WbCloudy.js +++ b/icons/es5/WbCloudy.js @@ -7,9 +7,11 @@ function SvgWbCloudy(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.37 10.04C18.68 6.59 15.65 4 12.01 4c-2.89 0-5.4 1.64-6.65 4.04A5.994 5.994 0 00.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z" + d: "M19.37 10.04C18.68 6.59 15.65 4 12.01 4c-2.89 0-5.4 1.64-6.65 4.04A5.994 5.994 0 00.01 14c0 3.31 2.69 6 6 6h13c2.76 0 5-2.24 5-5 0-2.64-2.05-4.78-4.64-4.96z", + fill: "currentColor" })); } diff --git a/icons/es5/WbIncandescent.js b/icons/es5/WbIncandescent.js index ce5710e667..c4a3815ff9 100644 --- a/icons/es5/WbIncandescent.js +++ b/icons/es5/WbIncandescent.js @@ -7,9 +7,11 @@ function SvgWbIncandescent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 23h2v-2.95h-2V23zM4 11.05H1v2h3v-2zm11-4.19V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z" + d: "M3.55 19.09l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8zM11 23h2v-2.95h-2V23zM4 11.05H1v2h3v-2zm11-4.19V2.05H9v4.81C7.21 7.9 6 9.83 6 12.05c0 3.31 2.69 6 6 6s6-2.69 6-6c0-2.22-1.21-4.15-3-5.19zm5 4.19v2h3v-2h-3zm-2.76 7.66l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4z", + fill: "currentColor" })); } diff --git a/icons/es5/WbIridescent.js b/icons/es5/WbIridescent.js index 2b52a37eac..b46e189c3f 100644 --- a/icons/es5/WbIridescent.js +++ b/icons/es5/WbIridescent.js @@ -7,9 +7,11 @@ function SvgWbIridescent(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5 15h14V9.05H5V15zm6-14v3h2V1h-2zm8.04 2.6l-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 23v-2.95h-2V23h2zm7.45-3.91l-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 5.01L5.34 6.8l1.41-1.41L4.96 3.6 3.55 5.01zM4.96 20.5l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z" + d: "M5 15h14V9.05H5V15zm6-14v3h2V1h-2zm8.04 2.6l-1.79 1.79 1.41 1.41 1.8-1.79-1.42-1.41zM13 23v-2.95h-2V23h2zm7.45-3.91l-1.8-1.79-1.41 1.41 1.79 1.8 1.42-1.42zM3.55 5.01L5.34 6.8l1.41-1.41L4.96 3.6 3.55 5.01zM4.96 20.5l1.79-1.8-1.41-1.41-1.79 1.79 1.41 1.42z", + fill: "currentColor" })); } diff --git a/icons/es5/WbShade.js b/icons/es5/WbShade.js index 002b429ccb..61ecc8780b 100644 --- a/icons/es5/WbShade.js +++ b/icons/es5/WbShade.js @@ -7,9 +7,11 @@ function SvgWbShade(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 12v2.5l5.5 5.5H22l-8-8zm0 8h3l-3-3v3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z" + d: "M14 12v2.5l5.5 5.5H22l-8-8zm0 8h3l-3-3v3zM8 4l-6 6h2v10h8V10h2L8 4zm1 10H7v-4h2v4z", + fill: "currentColor" })); } diff --git a/icons/es5/WbSunny.js b/icons/es5/WbSunny.js index 0abca2689a..ffb59a71b8 100644 --- a/icons/es5/WbSunny.js +++ b/icons/es5/WbSunny.js @@ -7,9 +7,11 @@ function SvgWbSunny(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z" + d: "M6.76 4.84l-1.8-1.79-1.41 1.41 1.79 1.79 1.42-1.41zM4 10.5H1v2h3v-2zm9-9.95h-2V3.5h2V.55zm7.45 3.91l-1.41-1.41-1.79 1.79 1.41 1.41 1.79-1.79zm-3.21 13.7l1.79 1.8 1.41-1.41-1.8-1.79-1.4 1.4zM20 10.5v2h3v-2h-3zm-8-5c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6zm-1 16.95h2V19.5h-2v2.95zm-7.45-3.91l1.41 1.41 1.79-1.8-1.41-1.41-1.79 1.8z", + fill: "currentColor" })); } diff --git a/icons/es5/WbTwilight.js b/icons/es5/WbTwilight.js index 5d6a0eaf48..234a510b5e 100644 --- a/icons/es5/WbTwilight.js +++ b/icons/es5/WbTwilight.js @@ -7,9 +7,11 @@ function SvgWbTwilight(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.955 8.662l2.12-2.122 1.416 1.414-2.121 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.543 7.925L4.957 6.51l2.121 2.12-1.414 1.415zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z" + d: "M16.955 8.662l2.12-2.122 1.416 1.414-2.121 2.122zM2 18h20v2H2zm9-14h2v3h-2zM3.543 7.925L4.957 6.51l2.121 2.12-1.414 1.415zM5 16h14c0-3.87-3.13-7-7-7s-7 3.13-7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Wc.js b/icons/es5/Wc.js index c9b5c25779..c4f9158444 100644 --- a/icons/es5/Wc.js +++ b/icons/es5/Wc.js @@ -7,9 +7,11 @@ function SvgWc(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M5.5 22v-7.5H4V7h7v7.5H9.5V22h-4zM18 22v-6h3l-3-9h-3l-3 9h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z" + d: "M5.5 22v-7.5H4V7h7v7.5H9.5V22h-4zM18 22v-6h3l-3-9h-3l-3 9h3v6h3zM7.5 6c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2zm9 0c1.11 0 2-.89 2-2s-.89-2-2-2-2 .89-2 2 .89 2 2 2z", + fill: "currentColor" })); } diff --git a/icons/es5/Web.js b/icons/es5/Web.js index dd9219f590..cf4c8c2b58 100644 --- a/icons/es5/Web.js +++ b/icons/es5/Web.js @@ -7,9 +7,11 @@ function SvgWeb(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H4v-3.5zM20 18h-3.5V9H20v9z" + d: "M22 4H2v16h20V4zM4 9h10.5v3.5H4V9zm0 5.5h10.5V18H4v-3.5zM20 18h-3.5V9H20v9z", + fill: "currentColor" })); } diff --git a/icons/es5/WebAsset.js b/icons/es5/WebAsset.js index 8ba5ddff5d..b7884435f1 100644 --- a/icons/es5/WebAsset.js +++ b/icons/es5/WebAsset.js @@ -7,9 +7,11 @@ function SvgWebAsset(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M3 4v16h18V4H3zm16 14H5V8h14v10z" + d: "M3 4v16h18V4H3zm16 14H5V8h14v10z", + fill: "currentColor" })); } diff --git a/icons/es5/WebAssetOff.js b/icons/es5/WebAssetOff.js index 59329e841e..b8d1683b9c 100644 --- a/icons/es5/WebAssetOff.js +++ b/icons/es5/WebAssetOff.js @@ -7,9 +7,11 @@ function SvgWebAssetOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6.83 4H22v15.17l-2-2V8h-9.17l-4-4zm13.66 19.31L17.17 20H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z" + d: "M6.83 4H22v15.17l-2-2V8h-9.17l-4-4zm13.66 19.31L17.17 20H2V4.83L.69 3.51 2.1 2.1l19.8 19.8-1.41 1.41zM15.17 18l-10-10H4v10h11.17z", + fill: "currentColor" })); } diff --git a/icons/es5/WebStories.js b/icons/es5/WebStories.js index d4aa618ea9..192b8cd42c 100644 --- a/icons/es5/WebStories.js +++ b/icons/es5/WebStories.js @@ -7,9 +7,11 @@ function SvgWebStories(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 4h2v16h-2V4zM2 2v20h13V2H2zm19 16h1.5V6H21v12z" + d: "M17 4h2v16h-2V4zM2 2v20h13V2H2zm19 16h1.5V6H21v12z", + fill: "currentColor" })); } diff --git a/icons/es5/Webhook.js b/icons/es5/Webhook.js index 40b629309b..f30b479ceb 100644 --- a/icons/es5/Webhook.js +++ b/icons/es5/Webhook.js @@ -7,9 +7,11 @@ function SvgWebhook(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 15h5.88c.27-.31.67-.5 1.12-.5.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.44 0-.84-.19-1.12-.5H11.9A5 5 0 116 11.1v2.07c-1.16.41-2 1.53-2 2.83 0 1.65 1.35 3 3 3s3-1.35 3-3v-1zm2.5-11c1.65 0 3 1.35 3 3h2c0-2.76-2.24-5-5-5a5.002 5.002 0 00-3.45 8.62l-2.35 3.9c-.68.14-1.2.75-1.2 1.48 0 .83.67 1.5 1.5 1.5a1.498 1.498 0 001.43-1.95l3.38-5.63A3.003 3.003 0 019.5 7c0-1.65 1.35-3 3-3zm4.5 9c-.64 0-1.23.2-1.72.54l-3.05-5.07C11.53 8.35 11 7.74 11 7c0-.83.67-1.5 1.5-1.5S14 6.17 14 7c0 .15-.02.29-.06.43l2.19 3.65c.28-.05.57-.08.87-.08 2.76 0 5 2.24 5 5s-2.24 5-5 5a5 5 0 01-4.33-2.5h2.67c.48.32 1.05.5 1.66.5 1.65 0 3-1.35 3-3s-1.35-3-3-3z" + d: "M10 15h5.88c.27-.31.67-.5 1.12-.5.83 0 1.5.67 1.5 1.5s-.67 1.5-1.5 1.5c-.44 0-.84-.19-1.12-.5H11.9A5 5 0 116 11.1v2.07c-1.16.41-2 1.53-2 2.83 0 1.65 1.35 3 3 3s3-1.35 3-3v-1zm2.5-11c1.65 0 3 1.35 3 3h2c0-2.76-2.24-5-5-5a5.002 5.002 0 00-3.45 8.62l-2.35 3.9c-.68.14-1.2.75-1.2 1.48 0 .83.67 1.5 1.5 1.5a1.498 1.498 0 001.43-1.95l3.38-5.63A3.003 3.003 0 019.5 7c0-1.65 1.35-3 3-3zm4.5 9c-.64 0-1.23.2-1.72.54l-3.05-5.07C11.53 8.35 11 7.74 11 7c0-.83.67-1.5 1.5-1.5S14 6.17 14 7c0 .15-.02.29-.06.43l2.19 3.65c.28-.05.57-.08.87-.08 2.76 0 5 2.24 5 5s-2.24 5-5 5a5 5 0 01-4.33-2.5h2.67c.48.32 1.05.5 1.66.5 1.65 0 3-1.35 3-3s-1.35-3-3-3z", + fill: "currentColor" })); } diff --git a/icons/es5/Wechat.js b/icons/es5/Wechat.js index b982c0cc4a..b6220b4b54 100644 --- a/icons/es5/Wechat.js +++ b/icons/es5/Wechat.js @@ -7,11 +7,14 @@ function SvgWechat(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.85 8.14c.39 0 .77.03 1.14.08C16.31 5.25 13.19 3 9.44 3c-4.25 0-7.7 2.88-7.7 6.43 0 2.05 1.15 3.86 2.94 5.04L3.67 16.5l2.76-1.19c.59.21 1.21.38 1.87.47-.09-.39-.14-.79-.14-1.21-.01-3.54 3.44-6.43 7.69-6.43zM12 5.89a.96.96 0 110 1.92.96.96 0 010-1.92zM6.87 7.82a.96.96 0 110-1.92.96.96 0 010 1.92z" + d: "M15.85 8.14c.39 0 .77.03 1.14.08C16.31 5.25 13.19 3 9.44 3c-4.25 0-7.7 2.88-7.7 6.43 0 2.05 1.15 3.86 2.94 5.04L3.67 16.5l2.76-1.19c.59.21 1.21.38 1.87.47-.09-.39-.14-.79-.14-1.21-.01-3.54 3.44-6.43 7.69-6.43zM12 5.89a.96.96 0 110 1.92.96.96 0 010-1.92zM6.87 7.82a.96.96 0 110-1.92.96.96 0 010 1.92z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22.26 14.57c0-2.84-2.87-5.14-6.41-5.14s-6.41 2.3-6.41 5.14 2.87 5.14 6.41 5.14c.58 0 1.14-.08 1.67-.2L20.98 21l-1.2-2.4c1.5-.94 2.48-2.38 2.48-4.03zm-8.34-.32a.96.96 0 11.96-.96c.01.53-.43.96-.96.96zm3.85 0a.96.96 0 110-1.92.96.96 0 010 1.92z" + d: "M22.26 14.57c0-2.84-2.87-5.14-6.41-5.14s-6.41 2.3-6.41 5.14 2.87 5.14 6.41 5.14c.58 0 1.14-.08 1.67-.2L20.98 21l-1.2-2.4c1.5-.94 2.48-2.38 2.48-4.03zm-8.34-.32a.96.96 0 11.96-.96c.01.53-.43.96-.96.96zm3.85 0a.96.96 0 110-1.92.96.96 0 010 1.92z", + fill: "currentColor" })); } diff --git a/icons/es5/Weekend.js b/icons/es5/Weekend.js index 0ee951b6a9..e96960352e 100644 --- a/icons/es5/Weekend.js +++ b/icons/es5/Weekend.js @@ -7,9 +7,11 @@ function SvgWeekend(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 9.03V14h12V9.03h2V5H4v4.03zM19 15H5v-4.97H1V19h22v-8.97h-4z" + d: "M6 9.03V14h12V9.03h2V5H4v4.03zM19 15H5v-4.97H1V19h22v-8.97h-4z", + fill: "currentColor" })); } diff --git a/icons/es5/West.js b/icons/es5/West.js index 45b5748385..3a1f390628 100644 --- a/icons/es5/West.js +++ b/icons/es5/West.js @@ -7,9 +7,11 @@ function SvgWest(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 19l1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z" + d: "M9 19l1.41-1.41L5.83 13H22v-2H5.83l4.59-4.59L9 5l-7 7 7 7z", + fill: "currentColor" })); } diff --git a/icons/es5/Whatsapp.js b/icons/es5/Whatsapp.js index 6ff41c6b7b..12a6712f01 100644 --- a/icons/es5/Whatsapp.js +++ b/icons/es5/Whatsapp.js @@ -7,9 +7,11 @@ function SvgWhatsapp(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M19.05 4.91A9.816 9.816 0 0012.04 2c-5.46 0-9.91 4.45-9.91 9.91 0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38c1.45.79 3.08 1.21 4.74 1.21 5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01zm-7.01 15.24c-1.48 0-2.93-.4-4.2-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.264 8.264 0 01-1.26-4.38c0-4.54 3.7-8.24 8.24-8.24 2.2 0 4.27.86 5.82 2.42a8.183 8.183 0 012.41 5.83c.02 4.54-3.68 8.23-8.22 8.23zm4.52-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.17.25-.64.81-.78.97-.14.17-.29.19-.54.06-.25-.12-1.05-.39-1.99-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43s.17-.25.25-.41c.08-.17.04-.31-.02-.43s-.56-1.34-.76-1.84c-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.22.25-.86.85-.86 2.07 0 1.22.89 2.4 1.01 2.56.12.17 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.67-1.18.21-.58.21-1.07.14-1.18s-.22-.16-.47-.28z" + d: "M19.05 4.91A9.816 9.816 0 0012.04 2c-5.46 0-9.91 4.45-9.91 9.91 0 1.75.46 3.45 1.32 4.95L2.05 22l5.25-1.38c1.45.79 3.08 1.21 4.74 1.21 5.46 0 9.91-4.45 9.91-9.91 0-2.65-1.03-5.14-2.9-7.01zm-7.01 15.24c-1.48 0-2.93-.4-4.2-1.15l-.3-.18-3.12.82.83-3.04-.2-.31a8.264 8.264 0 01-1.26-4.38c0-4.54 3.7-8.24 8.24-8.24 2.2 0 4.27.86 5.82 2.42a8.183 8.183 0 012.41 5.83c.02 4.54-3.68 8.23-8.22 8.23zm4.52-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.17.25-.64.81-.78.97-.14.17-.29.19-.54.06-.25-.12-1.05-.39-1.99-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43s.17-.25.25-.41c.08-.17.04-.31-.02-.43s-.56-1.34-.76-1.84c-.2-.48-.41-.42-.56-.43h-.48c-.17 0-.43.06-.66.31-.22.25-.86.85-.86 2.07 0 1.22.89 2.4 1.01 2.56.12.17 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.67-1.18.21-.58.21-1.07.14-1.18s-.22-.16-.47-.28z", + fill: "currentColor" })); } diff --git a/icons/es5/Whatshot.js b/icons/es5/Whatshot.js index 801fc38565..93bef03f6a 100644 --- a/icons/es5/Whatshot.js +++ b/icons/es5/Whatshot.js @@ -7,9 +7,11 @@ function SvgWhatshot(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z" + d: "M13.5.67s.74 2.65.74 4.8c0 2.06-1.35 3.73-3.41 3.73-2.07 0-3.63-1.67-3.63-3.73l.03-.36C5.21 7.51 4 10.62 4 14c0 4.42 3.58 8 8 8s8-3.58 8-8C20 8.61 17.41 3.8 13.5.67zM11.71 19c-1.78 0-3.22-1.4-3.22-3.14 0-1.62 1.05-2.76 2.81-3.12 1.77-.36 3.6-1.21 4.62-2.58.39 1.29.59 2.65.59 4.04 0 2.65-2.15 4.8-4.8 4.8z", + fill: "currentColor" })); } diff --git a/icons/es5/WheelchairPickup.js b/icons/es5/WheelchairPickup.js index 454d6436a4..d7be4033b9 100644 --- a/icons/es5/WheelchairPickup.js +++ b/icons/es5/WheelchairPickup.js @@ -7,9 +7,11 @@ function SvgWheelchairPickup(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V7H3v8h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z" + d: "M4.5 4c0-1.11.89-2 2-2s2 .89 2 2-.89 2-2 2-2-.89-2-2zm5.5 6.95V7H3v8h2v7h3.5v-.11c-1.24-1.26-2-2.99-2-4.89 0-2.58 1.41-4.84 3.5-6.05zM16.5 17c0 1.65-1.35 3-3 3s-3-1.35-3-3c0-1.11.61-2.06 1.5-2.58v-2.16c-2.02.64-3.5 2.51-3.5 4.74 0 2.76 2.24 5 5 5s5-2.24 5-5h-2zm3.04-3H15V8h-2v8h5.46l2.47 3.71 1.66-1.11-3.05-4.6z", + fill: "currentColor" })); } diff --git a/icons/es5/WhereToVote.js b/icons/es5/WhereToVote.js index 7327553404..72d76c5c12 100644 --- a/icons/es5/WhereToVote.js +++ b/icons/es5/WhereToVote.js @@ -7,9 +7,11 @@ function SvgWhereToVote(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.53 12l-3.48-3.48L8.4 9.1l2.07 2.07 5.13-5.14 1.41 1.42L10.47 14z" + d: "M12 2C8.14 2 5 5.14 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.86-3.14-7-7-7zm-1.53 12l-3.48-3.48L8.4 9.1l2.07 2.07 5.13-5.14 1.41 1.42L10.47 14z", + fill: "currentColor" })); } diff --git a/icons/es5/Widgets.js b/icons/es5/Widgets.js index a67ca9a68a..39688152b2 100644 --- a/icons/es5/Widgets.js +++ b/icons/es5/Widgets.js @@ -7,9 +7,11 @@ function SvgWidgets(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z" + d: "M13 13v8h8v-8h-8zM3 21h8v-8H3v8zM3 3v8h8V3H3zm13.66-1.31L11 7.34 16.66 13l5.66-5.66-5.66-5.65z", + fill: "currentColor" })); } diff --git a/icons/es5/WidthFull.js b/icons/es5/WidthFull.js index 74b57dc412..a0e41ea287 100644 --- a/icons/es5/WidthFull.js +++ b/icons/es5/WidthFull.js @@ -7,9 +7,11 @@ function SvgWidthFull(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM4 6h1v12H4V6zm16 12h-1V6h1v12z" + d: "M22 4H2v16h20V4zM4 6h1v12H4V6zm16 12h-1V6h1v12z", + fill: "currentColor" })); } diff --git a/icons/es5/WidthNormal.js b/icons/es5/WidthNormal.js index 7be8c189bd..bedccd204a 100644 --- a/icons/es5/WidthNormal.js +++ b/icons/es5/WidthNormal.js @@ -7,9 +7,11 @@ function SvgWidthNormal(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM4 6h4v12H4V6zm16 12h-4V6h4v12z" + d: "M22 4H2v16h20V4zM4 6h4v12H4V6zm16 12h-4V6h4v12z", + fill: "currentColor" })); } diff --git a/icons/es5/WidthWide.js b/icons/es5/WidthWide.js index e4ef916e47..a63f86ff6a 100644 --- a/icons/es5/WidthWide.js +++ b/icons/es5/WidthWide.js @@ -7,9 +7,11 @@ function SvgWidthWide(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 4H2v16h20V4zM4 6h2v12H4V6zm16 12h-2V6h2v12z" + d: "M22 4H2v16h20V4zM4 6h2v12H4V6zm16 12h-2V6h2v12z", + fill: "currentColor" })); } diff --git a/icons/es5/Wifi.js b/icons/es5/Wifi.js index ec3986765f..d4156dd1bb 100644 --- a/icons/es5/Wifi.js +++ b/icons/es5/Wifi.js @@ -7,9 +7,11 @@ function SvgWifi(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3a4.237 4.237 0 00-6 0zm-4-4l2 2a7.074 7.074 0 0110 0l2-2C15.14 9.14 8.87 9.14 5 13z" + d: "M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3a4.237 4.237 0 00-6 0zm-4-4l2 2a7.074 7.074 0 0110 0l2-2C15.14 9.14 8.87 9.14 5 13z", + fill: "currentColor" })); } diff --git a/icons/es5/Wifi1Bar.js b/icons/es5/Wifi1Bar.js index 1f97eab8d9..0849167ae4 100644 --- a/icons/es5/Wifi1Bar.js +++ b/icons/es5/Wifi1Bar.js @@ -7,9 +7,11 @@ function SvgWifi1Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.53 17.46L12 21l-3.53-3.54c.9-.9 2.15-1.46 3.53-1.46s2.63.56 3.53 1.46z" + d: "M15.53 17.46L12 21l-3.53-3.54c.9-.9 2.15-1.46 3.53-1.46s2.63.56 3.53 1.46z", + fill: "currentColor" })); } diff --git a/icons/es5/Wifi2Bar.js b/icons/es5/Wifi2Bar.js index 2c35861166..2b94fc8f8a 100644 --- a/icons/es5/Wifi2Bar.js +++ b/icons/es5/Wifi2Bar.js @@ -7,9 +7,11 @@ function SvgWifi2Bar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 10c3.03 0 5.78 1.23 7.76 3.22l-2.12 2.12A7.967 7.967 0 0012 13c-2.2 0-4.2.9-5.64 2.35l-2.12-2.12C6.22 11.23 8.97 10 12 10zm0 6c-1.38 0-2.63.56-3.53 1.46L12 21l3.53-3.54A4.98 4.98 0 0012 16z" + d: "M12 10c3.03 0 5.78 1.23 7.76 3.22l-2.12 2.12A7.967 7.967 0 0012 13c-2.2 0-4.2.9-5.64 2.35l-2.12-2.12C6.22 11.23 8.97 10 12 10zm0 6c-1.38 0-2.63.56-3.53 1.46L12 21l3.53-3.54A4.98 4.98 0 0012 16z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiCalling.js b/icons/es5/WifiCalling.js index 23d61eb5dc..71ee6fc933 100644 --- a/icons/es5/WifiCalling.js +++ b/icons/es5/WifiCalling.js @@ -7,11 +7,14 @@ function SvgWifiCalling(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.21 17.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z" + d: "M13.21 17.37a15.045 15.045 0 01-6.59-6.59l2.53-2.53L8.54 3H3.03C2.45 13.18 10.82 21.55 21 20.97v-5.51l-5.27-.61-2.52 2.52z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z" + d: "M22 4.95C21.79 4.78 19.67 3 16.5 3c-3.18 0-5.29 1.78-5.5 1.95L16.5 12 22 4.95z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiCalling3.js b/icons/es5/WifiCalling3.js index f542047f77..cc0363908c 100644 --- a/icons/es5/WifiCalling3.js +++ b/icons/es5/WifiCalling3.js @@ -7,13 +7,17 @@ function SvgWifiCalling3(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06a6.47 6.47 0 019.18 0l1.06-1.06A7.932 7.932 0 0016.49 3z" + d: "M16.49 3c-2.21 0-4.21.9-5.66 2.34l1.06 1.06a6.47 6.47 0 019.18 0l1.06-1.06A7.932 7.932 0 0016.49 3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M20.03 7.46a5.022 5.022 0 00-7.08 0l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zm-4.95 2.13L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z" + d: "M20.03 7.46a5.022 5.022 0 00-7.08 0l1.06 1.06c.63-.63 1.51-1.03 2.47-1.03s1.84.39 2.47 1.03l1.08-1.06zm-4.95 2.13L16.49 11l1.41-1.41c-.36-.37-.86-.59-1.41-.59s-1.05.22-1.41.59z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21 15l-5-1-2.9 2.9c-2.5-1.43-4.57-3.5-6-6L10 8 9 3H3c0 3.28.89 6.35 2.43 9 1.58 2.73 3.85 4.99 6.57 6.57C14.65 20.1 17.72 21 21 21v-6z" + d: "M21 15l-5-1-2.9 2.9c-2.5-1.43-4.57-3.5-6-6L10 8 9 3H3c0 3.28.89 6.35 2.43 9 1.58 2.73 3.85 4.99 6.57 6.57C14.65 20.1 17.72 21 21 21v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiChannel.js b/icons/es5/WifiChannel.js index ecb8a9a218..738d705990 100644 --- a/icons/es5/WifiChannel.js +++ b/icons/es5/WifiChannel.js @@ -7,9 +7,11 @@ function SvgWifiChannel(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16 3c-2.51 0-3.77 5.61-4.4 10.57C10.79 10.66 9.61 8 8 8 4.43 8 3 21 3 21h2.01c.61-5.27 2-9.82 2.99-10.87.98 1.05 2.38 5.61 2.99 10.87H13c.5-2.53 2-6 3-6s2.5 3.53 3 6h2s-.5-18-5-18zm0 10c-.99 0-1.82.62-2.5 1.5.57-4.77 1.54-8.62 2.5-9.44.97.81 1.91 4.67 2.49 9.43C17.81 13.62 16.98 13 16 13z" + d: "M16 3c-2.51 0-3.77 5.61-4.4 10.57C10.79 10.66 9.61 8 8 8 4.43 8 3 21 3 21h2.01c.61-5.27 2-9.82 2.99-10.87.98 1.05 2.38 5.61 2.99 10.87H13c.5-2.53 2-6 3-6s2.5 3.53 3 6h2s-.5-18-5-18zm0 10c-.99 0-1.82.62-2.5 1.5.57-4.77 1.54-8.62 2.5-9.44.97.81 1.91 4.67 2.49 9.43C17.81 13.62 16.98 13 16 13z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiFind.js b/icons/es5/WifiFind.js index ea6444e2fc..134c9bfcb0 100644 --- a/icons/es5/WifiFind.js +++ b/icons/es5/WifiFind.js @@ -7,11 +7,14 @@ function SvgWifiFind(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M11 14c0-3.36 2.64-6 6-6 2.2 0 4.08 1.13 5.13 2.86L24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98L12 21l1.86-1.87C12.14 18.09 11 16.2 11 14z" + d: "M11 14c0-3.36 2.64-6 6-6 2.2 0 4.08 1.13 5.13 2.86L24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98L12 21l1.86-1.87C12.14 18.09 11 16.2 11 14z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M21 14c0-2.24-1.76-4-4-4s-4 1.76-4 4 1.76 4 4 4c.75 0 1.44-.21 2.03-.56L21.59 20 23 18.59l-2.56-2.56c.35-.59.56-1.28.56-2.03zm-6 0c0-1.12.88-2 2-2s2 .88 2 2-.88 2-2 2-2-.88-2-2z" + d: "M21 14c0-2.24-1.76-4-4-4s-4 1.76-4 4 1.76 4 4 4c.75 0 1.44-.21 2.03-.56L21.59 20 23 18.59l-2.56-2.56c.35-.59.56-1.28.56-2.03zm-6 0c0-1.12.88-2 2-2s2 .88 2 2-.88 2-2 2-2-.88-2-2z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiLock.js b/icons/es5/WifiLock.js index 8c6b4a99fe..50a421f506 100644 --- a/icons/es5/WifiLock.js +++ b/icons/es5/WifiLock.js @@ -7,11 +7,14 @@ function SvgWifiLock(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21.98 11L24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z" + d: "M21.98 11L24 8.98A16.88 16.88 0 0012 4C7.31 4 3.07 5.9 0 8.98l6.35 6.36L12 21l3.05-3.05V15c0-.45.09-.88.23-1.29.54-1.57 2.01-2.71 3.77-2.71h2.93z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22 15.11c0-1-.68-1.92-1.66-2.08-.12-.02-.24-.02-.36-.02h-.01c-1.09.02-1.97.9-1.97 1.99v1h-1v5h6v-5h-1v-.89zM21 16h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z" + d: "M22 15.11c0-1-.68-1.92-1.66-2.08-.12-.02-.24-.02-.36-.02h-.01c-1.09.02-1.97.9-1.97 1.99v1h-1v5h6v-5h-1v-.89zM21 16h-2v-1c0-.55.45-1 1-1s1 .45 1 1v1z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiOff.js b/icons/es5/WifiOff.js index fc732a3bc6..c146dfe739 100644 --- a/icons/es5/WifiOff.js +++ b/icons/es5/WifiOff.js @@ -7,9 +7,11 @@ function SvgWifiOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zM9 17l3 3 3-3a4.237 4.237 0 00-6 0zm10-4a9.895 9.895 0 00-3.72-2.33l3.02 3.02.7-.69zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24A9.823 9.823 0 005 13l2 2a6.999 6.999 0 014.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z" + d: "M21 11l2-2c-3.73-3.73-8.87-5.15-13.7-4.31l2.58 2.58c3.3-.02 6.61 1.22 9.12 3.73zM9 17l3 3 3-3a4.237 4.237 0 00-6 0zm10-4a9.895 9.895 0 00-3.72-2.33l3.02 3.02.7-.69zM3.41 1.64L2 3.05 5.05 6.1C3.59 6.83 2.22 7.79 1 9l2 2c1.23-1.23 2.65-2.16 4.17-2.78l2.24 2.24A9.823 9.823 0 005 13l2 2a6.999 6.999 0 014.89-2.06l7.08 7.08 1.41-1.41L3.41 1.64z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiPassword.js b/icons/es5/WifiPassword.js index 0895b10cc6..c901b223c2 100644 --- a/icons/es5/WifiPassword.js +++ b/icons/es5/WifiPassword.js @@ -7,9 +7,11 @@ function SvgWifiPassword(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M24 8.98l-2.12 2.13C19.35 8.57 15.85 7 12 7s-7.35 1.57-9.88 4.11L0 8.98C3.07 5.9 7.31 4 12 4s8.93 1.9 12 4.98zM4.24 13.22l2.12 2.12A7.967 7.967 0 0112 13c2.2 0 4.2.9 5.64 2.35l2.12-2.12C17.78 11.23 15.03 10 12 10c-3.03 0-5.78 1.23-7.76 3.22zM24 19v5h-6v-5h1v-1c0-1.1.9-2 2-2s2 .9 2 2v1h1zm-2-1c0-.55-.45-1-1-1s-1 .45-1 1v1h2v-1zm-10-2c-1.38 0-2.63.56-3.53 1.46L12 21l3.53-3.54A4.98 4.98 0 0012 16z" + d: "M24 8.98l-2.12 2.13C19.35 8.57 15.85 7 12 7s-7.35 1.57-9.88 4.11L0 8.98C3.07 5.9 7.31 4 12 4s8.93 1.9 12 4.98zM4.24 13.22l2.12 2.12A7.967 7.967 0 0112 13c2.2 0 4.2.9 5.64 2.35l2.12-2.12C17.78 11.23 15.03 10 12 10c-3.03 0-5.78 1.23-7.76 3.22zM24 19v5h-6v-5h1v-1c0-1.1.9-2 2-2s2 .9 2 2v1h1zm-2-1c0-.55-.45-1-1-1s-1 .45-1 1v1h2v-1zm-10-2c-1.38 0-2.63.56-3.53 1.46L12 21l3.53-3.54A4.98 4.98 0 0012 16z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiProtectedSetup.js b/icons/es5/WifiProtectedSetup.js index 881a6cba1b..e7ff74bf14 100644 --- a/icons/es5/WifiProtectedSetup.js +++ b/icons/es5/WifiProtectedSetup.js @@ -7,11 +7,14 @@ function SvgWifiProtectedSetup(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.71 5.29L19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z" + d: "M16.71 5.29L19 3h-8v8l2.3-2.3c1.97 1.46 3.25 3.78 3.25 6.42 0 1.31-.32 2.54-.88 3.63 2.33-1.52 3.88-4.14 3.88-7.13 0-2.52-1.11-4.77-2.84-6.33z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M7.46 8.88c0-1.31.32-2.54.88-3.63a8.479 8.479 0 00-3.88 7.13c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z" + d: "M7.46 8.88c0-1.31.32-2.54.88-3.63a8.479 8.479 0 00-3.88 7.13c0 2.52 1.1 4.77 2.84 6.33L5 21h8v-8l-2.3 2.3c-1.96-1.46-3.24-3.78-3.24-6.42z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiTethering.js b/icons/es5/WifiTethering.js index 1c38f581f9..f03a677964 100644 --- a/icons/es5/WifiTethering.js +++ b/icons/es5/WifiTethering.js @@ -7,9 +7,11 @@ function SvgWifiTethering(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z" + d: "M12 11c-1.1 0-2 .9-2 2s.9 2 2 2 2-.9 2-2-.9-2-2-2zm6 2c0-3.31-2.69-6-6-6s-6 2.69-6 6c0 2.22 1.21 4.15 3 5.19l1-1.74c-1.19-.7-2-1.97-2-3.45 0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.48-.81 2.75-2 3.45l1 1.74c1.79-1.04 3-2.97 3-5.19zM12 3C6.48 3 2 7.48 2 13c0 3.7 2.01 6.92 4.99 8.65l1-1.73C5.61 18.53 4 15.96 4 13c0-4.42 3.58-8 8-8s8 3.58 8 8c0 2.96-1.61 5.53-4 6.92l1 1.73c2.99-1.73 5-4.95 5-8.65 0-5.52-4.48-10-10-10z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiTetheringError.js b/icons/es5/WifiTetheringError.js index b53e321185..8c41e495ea 100644 --- a/icons/es5/WifiTetheringError.js +++ b/icons/es5/WifiTetheringError.js @@ -7,9 +7,11 @@ function SvgWifiTetheringError(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42A3.934 3.934 0 018 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42A6.003 6.003 0 0018 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42A7.94 7.94 0 014 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" + d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42A3.934 3.934 0 018 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42A6.003 6.003 0 0018 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42A7.94 7.94 0 014 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiTetheringErrorRounded.js b/icons/es5/WifiTetheringErrorRounded.js index 95e3dc8126..fb1d6a0340 100644 --- a/icons/es5/WifiTetheringErrorRounded.js +++ b/icons/es5/WifiTetheringErrorRounded.js @@ -7,9 +7,11 @@ function SvgWifiTetheringErrorRounded(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42A3.934 3.934 0 018 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42A6.003 6.003 0 0018 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42A7.94 7.94 0 014 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z" + d: "M12 7c-3.31 0-6 2.69-6 6 0 1.66.68 3.15 1.76 4.24l1.42-1.42A3.934 3.934 0 018 13c0-2.21 1.79-4 4-4s4 1.79 4 4c0 1.11-.45 2.1-1.18 2.82l1.42 1.42A6.003 6.003 0 0018 13c0-3.31-2.69-6-6-6zm0-4C6.48 3 2 7.48 2 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42A7.94 7.94 0 014 13c0-4.42 3.58-8 8-8 2.53 0 4.78 1.17 6.24 3h2.42C18.93 5.01 15.7 3 12 3zm0 8c-1.1 0-2 .9-2 2 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59s1.05-.23 1.41-.59c.36-.36.59-.86.59-1.41 0-1.1-.9-2-2-2zm8-1h2v6h-2v-6zm0 8h2v2h-2v-2z", + fill: "currentColor" })); } diff --git a/icons/es5/WifiTetheringOff.js b/icons/es5/WifiTetheringOff.js index b648b3e292..c3c8a1995b 100644 --- a/icons/es5/WifiTetheringOff.js +++ b/icons/es5/WifiTetheringOff.js @@ -7,9 +7,11 @@ function SvgWifiTetheringOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M2.81 2.81L1.39 4.22l2.69 2.69A9.958 9.958 0 002 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42a7.957 7.957 0 01-.84-10.31l1.43 1.43a6.003 6.003 0 00.82 7.47l1.42-1.42A3.934 3.934 0 018 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49A9.953 9.953 0 0022 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z" + d: "M2.81 2.81L1.39 4.22l2.69 2.69A9.958 9.958 0 002 13c0 2.76 1.12 5.26 2.93 7.07l1.42-1.42a7.957 7.957 0 01-.84-10.31l1.43 1.43a6.003 6.003 0 00.82 7.47l1.42-1.42A3.934 3.934 0 018 13c0-.63.15-1.23.41-1.76l1.61 1.61c0 .05-.02.1-.02.15 0 .55.23 1.05.59 1.41.36.36.86.59 1.41.59.05 0 .1-.01.16-.02l7.62 7.62 1.41-1.41L2.81 2.81zM17.7 14.87c.19-.59.3-1.22.3-1.87 0-3.31-2.69-6-6-6-.65 0-1.28.1-1.87.3l1.71 1.71C11.89 9 11.95 9 12 9c2.21 0 4 1.79 4 4 0 .05 0 .11-.01.16l1.71 1.71zM12 5c4.42 0 8 3.58 8 8 0 1.22-.27 2.37-.77 3.4l1.49 1.49A9.953 9.953 0 0022 13c0-5.52-4.48-10-10-10-1.78 0-3.44.46-4.89 1.28l1.48 1.48C9.63 5.27 10.78 5 12 5z", + fill: "currentColor" })); } diff --git a/icons/es5/WindPower.js b/icons/es5/WindPower.js index e7ec72c41e..ee587bdede 100644 --- a/icons/es5/WindPower.js +++ b/icons/es5/WindPower.js @@ -7,9 +7,11 @@ function SvgWindPower(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 3h6v2H4zM1 7h5v2H1zm2 12h5v2H3zm12.32-6.91l5.42-9.04L17.32 1 12 5.97v4.74a2.485 2.485 0 013.32 1.38zM10.5 13c0-.82.4-1.54 1.01-2H1v4l7 2 3.44-2.06A2.48 2.48 0 0110.5 13zm9.67 10L23 20.17l-3.54-6.36-3.98-1c0 .06.02.12.02.19a2.5 2.5 0 01-2.5 2.5c-.36 0-.69-.08-1-.21V21c-1.1 0-2 .9-2 2h6c0-1.1-.9-2-2-2v-4.17L20.17 23z" + d: "M4 3h6v2H4zM1 7h5v2H1zm2 12h5v2H3zm12.32-6.91l5.42-9.04L17.32 1 12 5.97v4.74a2.485 2.485 0 013.32 1.38zM10.5 13c0-.82.4-1.54 1.01-2H1v4l7 2 3.44-2.06A2.48 2.48 0 0110.5 13zm9.67 10L23 20.17l-3.54-6.36-3.98-1c0 .06.02.12.02.19a2.5 2.5 0 01-2.5 2.5c-.36 0-.69-.08-1-.21V21c-1.1 0-2 .9-2 2h6c0-1.1-.9-2-2-2v-4.17L20.17 23z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 13, cy: 13, diff --git a/icons/es5/Window.js b/icons/es5/Window.js index 9bad16711f..71d1fb7da8 100644 --- a/icons/es5/Window.js +++ b/icons/es5/Window.js @@ -7,9 +7,11 @@ function SvgWindow(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zm-2 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z" + d: "M22 2H2v20h20V2zm-2 9h-7V4h7v7zm-9-7v7H4V4h7zm-7 9h7v7H4v-7zm9 7v-7h7v7h-7z", + fill: "currentColor" })); } diff --git a/icons/es5/WineBar.js b/icons/es5/WineBar.js index 88949bb77e..c112a0122e 100644 --- a/icons/es5/WineBar.js +++ b/icons/es5/WineBar.js @@ -7,9 +7,11 @@ function SvgWineBar(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm10 5H8V5h8v3z" + d: "M6 3v6c0 2.97 2.16 5.43 5 5.91V19H8v2h8v-2h-3v-4.09c2.84-.48 5-2.94 5-5.91V3H6zm10 5H8V5h8v3z", + fill: "currentColor" })); } diff --git a/icons/es5/Woman.js b/icons/es5/Woman.js index 861891274f..34eb4ef898 100644 --- a/icons/es5/Woman.js +++ b/icons/es5/Woman.js @@ -7,9 +7,11 @@ function SvgWoman(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.41 7h-2.82L7 16h3v6h4v-6h3z" + d: "M13.41 7h-2.82L7 16h3v6h4v-6h3z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 4, diff --git a/icons/es5/Woman2.js b/icons/es5/Woman2.js index e790dd7332..1701f7140e 100644 --- a/icons/es5/Woman2.js +++ b/icons/es5/Woman2.js @@ -7,9 +7,11 @@ function SvgWoman2(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M13.41 7h-2.82L7 16h3.5v6h3v-6H17z" + d: "M13.41 7h-2.82L7 16h3.5v6h3v-6H17z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 4, diff --git a/icons/es5/WooCommerce.js b/icons/es5/WooCommerce.js index e8abce2385..cd5b205a82 100644 --- a/icons/es5/WooCommerce.js +++ b/icons/es5/WooCommerce.js @@ -7,9 +7,11 @@ function SvgWooCommerce(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M20.14 7H3.86C2.83 7 1.99 7.84 2 8.86v6.21c0 1.03.83 1.86 1.86 1.86h7.71l3.52 1.96-.8-1.96h5.84c1.03 0 1.86-.83 1.86-1.86V8.86C22 7.83 21.17 7 20.14 7zM3.51 8.44c-.23.02-.4.1-.51.25-.12.15-.16.34-.13.55.48 3.07.93 5.13 1.35 6.21.16.39.35.58.57.56.34-.02.75-.5 1.23-1.42.25-.52.65-1.31 1.18-2.35.44 1.55 1.05 2.71 1.81 3.48.21.22.43.32.65.3a.51.51 0 00.43-.29c.08-.16.11-.34.1-.54-.05-.74.02-1.78.23-3.12.21-1.37.47-2.36.79-2.95a.688.688 0 00-.17-.86.718.718 0 00-.52-.16c-.24.02-.42.13-.54.36-.51.92-.87 2.42-1.08 4.5-.31-.78-.57-1.71-.78-2.8-.09-.49-.31-.72-.67-.69-.24.02-.45.18-.61.49l-1.79 3.41c-.29-1.19-.57-2.63-.83-4.34-.05-.43-.29-.62-.71-.59zm15.76.59c.58.12 1.01.43 1.31.95.26.44.39.97.39 1.61 0 .84-.21 1.61-.64 2.31-.49.82-1.13 1.23-1.92 1.23-.14 0-.29-.02-.44-.05a1.88 1.88 0 01-1.31-.95c-.26-.45-.39-.99-.39-1.62 0-.84.21-1.61.64-2.31.5-.82 1.14-1.23 1.92-1.23.14.01.28.03.44.06zm-.34 4.42c.3-.27.51-.67.62-1.21.03-.19.06-.39.06-.61 0-.24-.05-.49-.15-.74-.12-.32-.29-.49-.48-.53-.29-.06-.58.11-.85.51a2.609 2.609 0 00-.49 1.57c0 .24.05.49.15.74.12.32.29.49.48.53.2.04.42-.05.66-.26zm-3.48-3.47c-.29-.52-.74-.83-1.31-.95-.15-.03-.3-.05-.44-.05-.78 0-1.42.41-1.92 1.23a4.3 4.3 0 00-.64 2.31c0 .63.13 1.17.39 1.62.29.52.73.83 1.31.95.16.03.3.05.44.05.79 0 1.43-.41 1.92-1.23.43-.7.64-1.47.64-2.31 0-.65-.13-1.18-.39-1.62zm-1.03 2.26c-.11.54-.32.94-.62 1.21-.24.21-.46.3-.66.26-.2-.04-.36-.21-.48-.53-.1-.25-.15-.51-.15-.74 0-.2.02-.41.06-.6.07-.34.21-.66.43-.97.27-.4.56-.56.85-.51.2.04.36.21.48.53.1.25.15.51.15.74 0 .22-.02.42-.06.61z" + d: "M20.14 7H3.86C2.83 7 1.99 7.84 2 8.86v6.21c0 1.03.83 1.86 1.86 1.86h7.71l3.52 1.96-.8-1.96h5.84c1.03 0 1.86-.83 1.86-1.86V8.86C22 7.83 21.17 7 20.14 7zM3.51 8.44c-.23.02-.4.1-.51.25-.12.15-.16.34-.13.55.48 3.07.93 5.13 1.35 6.21.16.39.35.58.57.56.34-.02.75-.5 1.23-1.42.25-.52.65-1.31 1.18-2.35.44 1.55 1.05 2.71 1.81 3.48.21.22.43.32.65.3a.51.51 0 00.43-.29c.08-.16.11-.34.1-.54-.05-.74.02-1.78.23-3.12.21-1.37.47-2.36.79-2.95a.688.688 0 00-.17-.86.718.718 0 00-.52-.16c-.24.02-.42.13-.54.36-.51.92-.87 2.42-1.08 4.5-.31-.78-.57-1.71-.78-2.8-.09-.49-.31-.72-.67-.69-.24.02-.45.18-.61.49l-1.79 3.41c-.29-1.19-.57-2.63-.83-4.34-.05-.43-.29-.62-.71-.59zm15.76.59c.58.12 1.01.43 1.31.95.26.44.39.97.39 1.61 0 .84-.21 1.61-.64 2.31-.49.82-1.13 1.23-1.92 1.23-.14 0-.29-.02-.44-.05a1.88 1.88 0 01-1.31-.95c-.26-.45-.39-.99-.39-1.62 0-.84.21-1.61.64-2.31.5-.82 1.14-1.23 1.92-1.23.14.01.28.03.44.06zm-.34 4.42c.3-.27.51-.67.62-1.21.03-.19.06-.39.06-.61 0-.24-.05-.49-.15-.74-.12-.32-.29-.49-.48-.53-.29-.06-.58.11-.85.51a2.609 2.609 0 00-.49 1.57c0 .24.05.49.15.74.12.32.29.49.48.53.2.04.42-.05.66-.26zm-3.48-3.47c-.29-.52-.74-.83-1.31-.95-.15-.03-.3-.05-.44-.05-.78 0-1.42.41-1.92 1.23a4.3 4.3 0 00-.64 2.31c0 .63.13 1.17.39 1.62.29.52.73.83 1.31.95.16.03.3.05.44.05.79 0 1.43-.41 1.92-1.23.43-.7.64-1.47.64-2.31 0-.65-.13-1.18-.39-1.62zm-1.03 2.26c-.11.54-.32.94-.62 1.21-.24.21-.46.3-.66.26-.2-.04-.36-.21-.48-.53-.1-.25-.15-.51-.15-.74 0-.2.02-.41.06-.6.07-.34.21-.66.43-.97.27-.4.56-.56.85-.51.2.04.36.21.48.53.1.25.15.51.15.74 0 .22-.02.42-.06.61z", + fill: "currentColor" })); } diff --git a/icons/es5/Wordpress.js b/icons/es5/Wordpress.js index 2164f37f6b..470ca4e986 100644 --- a/icons/es5/Wordpress.js +++ b/icons/es5/Wordpress.js @@ -7,9 +7,11 @@ function SvgWordpress(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zM3.01 12c0-1.3.28-2.54.78-3.66l4.29 11.75c-3-1.46-5.07-4.53-5.07-8.09zM12 20.99c-.88 0-1.73-.13-2.54-.37l2.7-7.84 2.76 7.57c.02.04.04.09.06.12-.93.34-1.93.52-2.98.52zm1.24-13.21c.54-.03 1.03-.09 1.03-.09.48-.06.43-.77-.06-.74 0 0-1.46.11-2.4.11-.88 0-2.37-.11-2.37-.11-.48-.02-.54.72-.05.75 0 0 .46.06.94.09l1.4 3.84-1.97 5.9-3.27-9.75c.54-.02 1.03-.08 1.03-.08.48-.06.43-.77-.06-.74 0 0-1.46.11-2.4.11-.17 0-.37 0-.58-.01C6.1 4.62 8.86 3.01 12 3.01c2.34 0 4.47.89 6.07 2.36-.04 0-.08-.01-.12-.01-.88 0-1.51.77-1.51 1.6 0 .74.43 1.37.88 2.11.34.6.74 1.37.74 2.48 0 .77-.3 1.66-.68 2.91l-.9 3-3.24-9.68zm6.65-.09a8.988 8.988 0 01-3.37 12.08l2.75-7.94c.51-1.28.68-2.31.68-3.22 0-.33-.02-.64-.06-.92z" + d: "M12 2C6.49 2 2 6.49 2 12s4.49 10 10 10 10-4.49 10-10S17.51 2 12 2zM3.01 12c0-1.3.28-2.54.78-3.66l4.29 11.75c-3-1.46-5.07-4.53-5.07-8.09zM12 20.99c-.88 0-1.73-.13-2.54-.37l2.7-7.84 2.76 7.57c.02.04.04.09.06.12-.93.34-1.93.52-2.98.52zm1.24-13.21c.54-.03 1.03-.09 1.03-.09.48-.06.43-.77-.06-.74 0 0-1.46.11-2.4.11-.88 0-2.37-.11-2.37-.11-.48-.02-.54.72-.05.75 0 0 .46.06.94.09l1.4 3.84-1.97 5.9-3.27-9.75c.54-.02 1.03-.08 1.03-.08.48-.06.43-.77-.06-.74 0 0-1.46.11-2.4.11-.17 0-.37 0-.58-.01C6.1 4.62 8.86 3.01 12 3.01c2.34 0 4.47.89 6.07 2.36-.04 0-.08-.01-.12-.01-.88 0-1.51.77-1.51 1.6 0 .74.43 1.37.88 2.11.34.6.74 1.37.74 2.48 0 .77-.3 1.66-.68 2.91l-.9 3-3.24-9.68zm6.65-.09a8.988 8.988 0 01-3.37 12.08l2.75-7.94c.51-1.28.68-2.31.68-3.22 0-.33-.02-.64-.06-.92z", + fill: "currentColor" })); } diff --git a/icons/es5/Work.js b/icons/es5/Work.js index a86d22b9da..1114d930d7 100644 --- a/icons/es5/Work.js +++ b/icons/es5/Work.js @@ -7,9 +7,11 @@ function SvgWork(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 6h-6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6zm-8 0h-4V4h4v2z" + d: "M22 6h-6V4c0-1.1-.9-2-2-2h-4c-1.1 0-2 .9-2 2v2H2v15h20V6zm-8 0h-4V4h4v2z", + fill: "currentColor" })); } diff --git a/icons/es5/WorkHistory.js b/icons/es5/WorkHistory.js index 495557d603..f3f9a0f6b7 100644 --- a/icons/es5/WorkHistory.js +++ b/icons/es5/WorkHistory.js @@ -7,11 +7,14 @@ function SvgWorkHistory(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M16.66 11.13c2-.37 3.88.11 5.34 1.13V6h-6V2H8v4H2v15h9.68a7 7 0 01-.52-4.51c.59-2.7 2.78-4.86 5.5-5.36zM10 4h4v2h-4V4z" + d: "M16.66 11.13c2-.37 3.88.11 5.34 1.13V6h-6V2H8v4H2v15h9.68a7 7 0 01-.52-4.51c.59-2.7 2.78-4.86 5.5-5.36zM10 4h4v2h-4V4z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z" + d: "M18 13c-2.76 0-5 2.24-5 5s2.24 5 5 5 5-2.24 5-5-2.24-5-5-5zm1.65 7.35L17.5 18.2V15h1v2.79l1.85 1.85-.7.71z", + fill: "currentColor" })); } diff --git a/icons/es5/WorkOff.js b/icons/es5/WorkOff.js index 62462e531d..d1fc2df3d8 100644 --- a/icons/es5/WorkOff.js +++ b/icons/es5/WorkOff.js @@ -7,9 +7,11 @@ function SvgWorkOff(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M10 4h4v2h-3.6L22 17.6V6h-6V4c0-1.1-.9-2-2-2h-4c-.98 0-1.79.71-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H2.01L2 21h17.74l2 2 1.41-1.41z" + d: "M10 4h4v2h-3.6L22 17.6V6h-6V4c0-1.1-.9-2-2-2h-4c-.98 0-1.79.71-1.96 1.64L10 5.6V4zM3.4 1.84L1.99 3.25 4.74 6H2.01L2 21h17.74l2 2 1.41-1.41z", + fill: "currentColor" })); } diff --git a/icons/es5/WorkOutline.js b/icons/es5/WorkOutline.js index af34963d55..53f197bae2 100644 --- a/icons/es5/WorkOutline.js +++ b/icons/es5/WorkOutline.js @@ -7,9 +7,11 @@ function SvgWorkOutline(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 6V4h-4v2h4zM4 8v11h16V8H4zm18-2v15H2.01V6H8V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v2h6z" + d: "M14 6V4h-4v2h4zM4 8v11h16V8H4zm18-2v15H2.01V6H8V4c0-1.1.9-2 2-2h4c1.1 0 2 .9 2 2v2h6z", + fill: "currentColor" })); } diff --git a/icons/es5/WorkspacePremium.js b/icons/es5/WorkspacePremium.js index aa925ab615..6a633ec5d9 100644 --- a/icons/es5/WorkspacePremium.js +++ b/icons/es5/WorkspacePremium.js @@ -7,9 +7,11 @@ function SvgWorkspacePremium(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9.68 13.69L12 11.93l2.31 1.76-.88-2.85L15.75 9h-2.84L12 6.19 11.09 9H8.25l2.31 1.84-.88 2.85zM20 10c0-4.42-3.58-8-8-8s-8 3.58-8 8c0 2.03.76 3.87 2 5.28V23l6-2 6 2v-7.72A7.96 7.96 0 0020 10zm-8-6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z" + d: "M9.68 13.69L12 11.93l2.31 1.76-.88-2.85L15.75 9h-2.84L12 6.19 11.09 9H8.25l2.31 1.84-.88 2.85zM20 10c0-4.42-3.58-8-8-8s-8 3.58-8 8c0 2.03.76 3.87 2 5.28V23l6-2 6 2v-7.72A7.96 7.96 0 0020 10zm-8-6c3.31 0 6 2.69 6 6s-2.69 6-6 6-6-2.69-6-6 2.69-6 6-6z", + fill: "currentColor" })); } diff --git a/icons/es5/Workspaces.js b/icons/es5/Workspaces.js index 5cf844b705..a0d57b1c93 100644 --- a/icons/es5/Workspaces.js +++ b/icons/es5/Workspaces.js @@ -7,9 +7,11 @@ function SvgWorkspaces(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z" + d: "M6 13c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6-10C9.8 3 8 4.8 8 7s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4zm6 10c-2.2 0-4 1.8-4 4s1.8 4 4 4 4-1.8 4-4-1.8-4-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/WrapText.js b/icons/es5/WrapText.js index adada2ac27..f5ec101c73 100644 --- a/icons/es5/WrapText.js +++ b/icons/es5/WrapText.js @@ -7,9 +7,11 @@ function SvgWrapText(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z" + d: "M4 19h6v-2H4v2zM20 5H4v2h16V5zm-3 6H4v2h13.25c1.1 0 2 .9 2 2s-.9 2-2 2H15v-2l-3 3 3 3v-2h2c2.21 0 4-1.79 4-4s-1.79-4-4-4z", + fill: "currentColor" })); } diff --git a/icons/es5/WrongLocation.js b/icons/es5/WrongLocation.js index a563332668..308b7f5f79 100644 --- a/icons/es5/WrongLocation.js +++ b/icons/es5/WrongLocation.js @@ -7,11 +7,14 @@ function SvgWrongLocation(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M14 10V3.26c-.65-.17-1.32-.26-2-.26-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-.41-.04-.81-.09-1.2H14zm-2 3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z" + d: "M14 10V3.26c-.65-.17-1.32-.26-2-.26-4.2 0-8 3.22-8 8.2 0 3.32 2.67 7.25 8 11.8 5.33-4.55 8-8.48 8-11.8 0-.41-.04-.81-.09-1.2H14zm-2 3c-1.1 0-2-.9-2-2s.9-2 2-2 2 .9 2 2-.9 2-2 2z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("path", { - d: "M22.54 2.88l-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z" + d: "M22.54 2.88l-1.42-1.42L19 3.59l-2.12-2.13-1.42 1.42L17.59 5l-2.13 2.12 1.42 1.42L19 6.41l2.12 2.13 1.42-1.42L20.41 5z", + fill: "currentColor" })); } diff --git a/icons/es5/Wysiwyg.js b/icons/es5/Wysiwyg.js index 44cb611fa6..24b0912631 100644 --- a/icons/es5/Wysiwyg.js +++ b/icons/es5/Wysiwyg.js @@ -7,9 +7,11 @@ function SvgWysiwyg(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17 12H7v-2h10v2zm-4 2H7v2h6v-2zm8 7H3V3h18v18zM19 7H5v12h14V7z" + d: "M17 12H7v-2h10v2zm-4 2H7v2h6v-2zm8 7H3V3h18v18zM19 7H5v12h14V7z", + fill: "currentColor" })); } diff --git a/icons/es5/Yard.js b/icons/es5/Yard.js index 25486caa37..208e2a6d1f 100644 --- a/icons/es5/Yard.js +++ b/icons/es5/Yard.js @@ -7,9 +7,11 @@ function SvgYard(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M22 2H2v20h20V2zM8 8.22a1.562 1.562 0 012.45-1.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12A1.562 1.562 0 0116 8.22c0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12A1.562 1.562 0 018 11.03c0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c-3.31 0-6-2.69-6-6 3.31 0 6 2.69 6 6 0-3.31 2.69-6 6-6 0 3.31-2.69 6-6 6z" + d: "M22 2H2v20h20V2zM8 8.22a1.562 1.562 0 012.45-1.28l-.01-.12c0-.86.7-1.56 1.56-1.56s1.56.7 1.56 1.56l-.01.12A1.562 1.562 0 0116 8.22c0 .62-.37 1.16-.89 1.4.52.25.89.79.89 1.41 0 .86-.7 1.56-1.56 1.56-.33 0-.64-.11-.89-.28l.01.12c0 .86-.7 1.56-1.56 1.56s-1.56-.7-1.56-1.56l.01-.12A1.562 1.562 0 018 11.03c0-.62.37-1.16.89-1.4C8.37 9.38 8 8.84 8 8.22zM12 19c-3.31 0-6-2.69-6-6 3.31 0 6 2.69 6 6 0-3.31 2.69-6 6-6 0 3.31-2.69 6-6 6z", + fill: "currentColor" }), /*#__PURE__*/React.createElement("circle", { cx: 12, cy: 9.62, diff --git a/icons/es5/YoutubeSearchedFor.js b/icons/es5/YoutubeSearchedFor.js index c0c6d94864..a5a9411a45 100644 --- a/icons/es5/YoutubeSearchedFor.js +++ b/icons/es5/YoutubeSearchedFor.js @@ -7,9 +7,11 @@ function SvgYoutubeSearchedFor(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M17.01 14h-.8l-.27-.27a6.451 6.451 0 001.57-4.23c0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51a4.5 4.5 0 019 0 4.507 4.507 0 01-6.32 4.12L7.71 15.1a6.474 6.474 0 007.52-.67l.27.27v.79l5.01 4.99L22 19l-4.99-5z" + d: "M17.01 14h-.8l-.27-.27a6.451 6.451 0 001.57-4.23c0-3.59-2.91-6.5-6.5-6.5s-6.5 3-6.5 6.5H2l3.84 4 4.16-4H6.51a4.5 4.5 0 019 0 4.507 4.507 0 01-6.32 4.12L7.71 15.1a6.474 6.474 0 007.52-.67l.27.27v.79l5.01 4.99L22 19l-4.99-5z", + fill: "currentColor" })); } diff --git a/icons/es5/Zoom.js b/icons/es5/Zoom.js index 6c79f93d4b..f6f44d2b11 100644 --- a/icons/es5/Zoom.js +++ b/icons/es5/Zoom.js @@ -11,7 +11,7 @@ function SvgZoom(props) { xmlns: "http://www.w3.org/2000/svg", xmlnsXlink: "http://www.w3.org/1999/xlink" }, props), /*#__PURE__*/React.createElement("path", { - fill: "url(#zoom_svg__pattern0)", + fill: "currentColor", d: "M.668.998h24v24.004h-24z" }), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("pattern", { id: "zoom_svg__pattern0", diff --git a/icons/es5/ZoomIn.js b/icons/es5/ZoomIn.js index 081e69cded..726e64fed6 100644 --- a/icons/es5/ZoomIn.js +++ b/icons/es5/ZoomIn.js @@ -7,9 +7,11 @@ function SvgZoomIn(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z" + d: "M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zm.5-7H9v2H7v1h2v2h1v-2h2V9h-2z", + fill: "currentColor" })); } diff --git a/icons/es5/ZoomInMap.js b/icons/es5/ZoomInMap.js index c3d6fe60a2..9b4a00badd 100644 --- a/icons/es5/ZoomInMap.js +++ b/icons/es5/ZoomInMap.js @@ -7,9 +7,11 @@ function SvgZoomInMap(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M9 9V3H7v2.59L3.91 2.5 2.5 3.91 5.59 7H3v2h6zm12 0V7h-2.59l3.09-3.09-1.41-1.41L17 5.59V3h-2v6h6zM3 15v2h2.59L2.5 20.09l1.41 1.41L7 18.41V21h2v-6H3zm12 0v6h2v-2.59l3.09 3.09 1.41-1.41L18.41 17H21v-2h-6z" + d: "M9 9V3H7v2.59L3.91 2.5 2.5 3.91 5.59 7H3v2h6zm12 0V7h-2.59l3.09-3.09-1.41-1.41L17 5.59V3h-2v6h6zM3 15v2h2.59L2.5 20.09l1.41 1.41L7 18.41V21h2v-6H3zm12 0v6h2v-2.59l3.09 3.09 1.41-1.41L18.41 17H21v-2h-6z", + fill: "currentColor" })); } diff --git a/icons/es5/ZoomOut.js b/icons/es5/ZoomOut.js index c130a34892..343f52cf96 100644 --- a/icons/es5/ZoomOut.js +++ b/icons/es5/ZoomOut.js @@ -7,9 +7,11 @@ function SvgZoomOut(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7V9z" + d: "M15.5 14h-.79l-.28-.27A6.471 6.471 0 0016 9.5 6.5 6.5 0 109.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14zM7 9h5v1H7V9z", + fill: "currentColor" })); } diff --git a/icons/es5/ZoomOutMap.js b/icons/es5/ZoomOutMap.js index f5be275348..983650f936 100644 --- a/icons/es5/ZoomOutMap.js +++ b/icons/es5/ZoomOutMap.js @@ -7,9 +7,11 @@ function SvgZoomOutMap(props) { xmlns: "http://www.w3.org/2000/svg", width: 24, height: 24, - viewBox: "0 0 24 24" + viewBox: "0 0 24 24", + fill: "none" }, props), /*#__PURE__*/React.createElement("path", { - d: "M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z" + d: "M15 3l2.3 2.3-2.89 2.87 1.42 1.42L18.7 6.7 21 9V3h-6zM3 9l2.3-2.3 2.87 2.89 1.42-1.42L6.7 5.3 9 3H3v6zm6 12l-2.3-2.3 2.89-2.87-1.42-1.42L5.3 17.3 3 15v6h6zm12-6l-2.3 2.3-2.87-2.89-1.42 1.42 2.89 2.87L15 21h6v-6z", + fill: "currentColor" })); } diff --git a/icons/es5/index.js b/icons/es5/index.js index 2e0ced6d54..dc50f36a8c 100644 --- a/icons/es5/index.js +++ b/icons/es5/index.js @@ -660,6 +660,7 @@ export { default as EdgesensorLow } from './EdgesensorLow'; export { default as Edit } from './Edit'; export { default as EditAttributes } from './EditAttributes'; export { default as EditCalendar } from './EditCalendar'; +export { default as EditCircle } from './EditCircle'; export { default as EditLocation } from './EditLocation'; export { default as EditLocationAlt } from './EditLocationAlt'; export { default as EditNote } from './EditNote'; @@ -751,6 +752,7 @@ export { default as FeaturedPlayList } from './FeaturedPlayList'; export { default as FeaturedVideo } from './FeaturedVideo'; export { default as Feed } from './Feed'; export { default as Feedback } from './Feedback'; +export { default as FeedbackOutline } from './FeedbackOutline'; export { default as Female } from './Female'; export { default as Fence } from './Fence'; export { default as Festival } from './Festival'; @@ -1991,6 +1993,7 @@ export { default as TextRotationAngleup } from './TextRotationAngleup'; export { default as TextRotationDown } from './TextRotationDown'; export { default as TextRotationNone } from './TextRotationNone'; export { default as TextSnippet } from './TextSnippet'; +export { default as TextToSpeech } from './TextToSpeech'; export { default as Textsms } from './Textsms'; export { default as Texture } from './Texture'; export { default as TheaterComedy } from './TheaterComedy'; @@ -2233,4 +2236,4 @@ export { default as Zoom } from './Zoom'; export { default as ZoomIn } from './ZoomIn'; export { default as ZoomInMap } from './ZoomInMap'; export { default as ZoomOut } from './ZoomOut'; -export { default as ZoomOutMap } from './ZoomOutMap'; +export { default as ZoomOutMap } from './ZoomOutMap'; \ No newline at end of file diff --git a/icons/jsx/10K.jsx b/icons/jsx/10K.jsx index c62ab0f760..6bdbf2c7bd 100644 --- a/icons/jsx/10K.jsx +++ b/icons/jsx/10K.jsx @@ -7,9 +7,13 @@ function Svg10K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/10Mp.jsx b/icons/jsx/10Mp.jsx index e91de5c88d..7912e1f146 100644 --- a/icons/jsx/10Mp.jsx +++ b/icons/jsx/10Mp.jsx @@ -7,9 +7,13 @@ function Svg10Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/11Mp.jsx b/icons/jsx/11Mp.jsx index 20ffa8066d..5faf8b655d 100644 --- a/icons/jsx/11Mp.jsx +++ b/icons/jsx/11Mp.jsx @@ -7,10 +7,14 @@ function Svg11Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/123.jsx b/icons/jsx/123.jsx index 58e01ab341..f330dca520 100644 --- a/icons/jsx/123.jsx +++ b/icons/jsx/123.jsx @@ -7,9 +7,13 @@ function Svg123(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/12Mp.jsx b/icons/jsx/12Mp.jsx index 707d32c835..388c101808 100644 --- a/icons/jsx/12Mp.jsx +++ b/icons/jsx/12Mp.jsx @@ -7,10 +7,14 @@ function Svg12Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/13Mp.jsx b/icons/jsx/13Mp.jsx index 5f394b261f..b6d9cd73d5 100644 --- a/icons/jsx/13Mp.jsx +++ b/icons/jsx/13Mp.jsx @@ -7,10 +7,14 @@ function Svg13Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/14Mp.jsx b/icons/jsx/14Mp.jsx index 62cfff1383..ac54c19c00 100644 --- a/icons/jsx/14Mp.jsx +++ b/icons/jsx/14Mp.jsx @@ -7,10 +7,14 @@ function Svg14Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/15Mp.jsx b/icons/jsx/15Mp.jsx index 3c2ec1ac02..7afdbcc530 100644 --- a/icons/jsx/15Mp.jsx +++ b/icons/jsx/15Mp.jsx @@ -7,10 +7,14 @@ function Svg15Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/16Mp.jsx b/icons/jsx/16Mp.jsx index dcaeffc038..c94c9712e5 100644 --- a/icons/jsx/16Mp.jsx +++ b/icons/jsx/16Mp.jsx @@ -7,11 +7,15 @@ function Svg16Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/17Mp.jsx b/icons/jsx/17Mp.jsx index e8b3c99d95..77f12c863d 100644 --- a/icons/jsx/17Mp.jsx +++ b/icons/jsx/17Mp.jsx @@ -7,10 +7,14 @@ function Svg17Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/18Mp.jsx b/icons/jsx/18Mp.jsx index 2950a1f736..c3f3dacecc 100644 --- a/icons/jsx/18Mp.jsx +++ b/icons/jsx/18Mp.jsx @@ -7,11 +7,15 @@ function Svg18Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/18UpRating.jsx b/icons/jsx/18UpRating.jsx index 2a7372678b..4a9e38aa98 100644 --- a/icons/jsx/18UpRating.jsx +++ b/icons/jsx/18UpRating.jsx @@ -7,10 +7,14 @@ function Svg18UpRating(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/19Mp.jsx b/icons/jsx/19Mp.jsx index 18bffd9c5c..e909e7a08b 100644 --- a/icons/jsx/19Mp.jsx +++ b/icons/jsx/19Mp.jsx @@ -7,10 +7,14 @@ function Svg19Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/1K.jsx b/icons/jsx/1K.jsx index 69eccead66..11af6ea036 100644 --- a/icons/jsx/1K.jsx +++ b/icons/jsx/1K.jsx @@ -7,9 +7,13 @@ function Svg1K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/1KPlus.jsx b/icons/jsx/1KPlus.jsx index eabf3f54fc..0e0b95300a 100644 --- a/icons/jsx/1KPlus.jsx +++ b/icons/jsx/1KPlus.jsx @@ -7,9 +7,13 @@ function Svg1KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/1XMobiledata.jsx b/icons/jsx/1XMobiledata.jsx index 24da8925ae..9d572d7feb 100644 --- a/icons/jsx/1XMobiledata.jsx +++ b/icons/jsx/1XMobiledata.jsx @@ -7,9 +7,13 @@ function Svg1XMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/20Mp.jsx b/icons/jsx/20Mp.jsx index 28e2aac97c..e47935e832 100644 --- a/icons/jsx/20Mp.jsx +++ b/icons/jsx/20Mp.jsx @@ -7,11 +7,15 @@ function Svg20Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/21Mp.jsx b/icons/jsx/21Mp.jsx index cbbb716190..2c0747d93c 100644 --- a/icons/jsx/21Mp.jsx +++ b/icons/jsx/21Mp.jsx @@ -7,10 +7,14 @@ function Svg21Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/22Mp.jsx b/icons/jsx/22Mp.jsx index 1bf50a27e4..b3bf4ce222 100644 --- a/icons/jsx/22Mp.jsx +++ b/icons/jsx/22Mp.jsx @@ -7,10 +7,14 @@ function Svg22Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/23Mp.jsx b/icons/jsx/23Mp.jsx index f0a51c685b..b884a332fd 100644 --- a/icons/jsx/23Mp.jsx +++ b/icons/jsx/23Mp.jsx @@ -7,10 +7,14 @@ function Svg23Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/24Mp.jsx b/icons/jsx/24Mp.jsx index 565e630724..203f2c9ac1 100644 --- a/icons/jsx/24Mp.jsx +++ b/icons/jsx/24Mp.jsx @@ -7,10 +7,14 @@ function Svg24Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/2K.jsx b/icons/jsx/2K.jsx index 84e7f9b9aa..465810d7a5 100644 --- a/icons/jsx/2K.jsx +++ b/icons/jsx/2K.jsx @@ -7,9 +7,13 @@ function Svg2K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/2KPlus.jsx b/icons/jsx/2KPlus.jsx index 4c3c9f759e..4e4dee1192 100644 --- a/icons/jsx/2KPlus.jsx +++ b/icons/jsx/2KPlus.jsx @@ -7,9 +7,13 @@ function Svg2KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/2Mp.jsx b/icons/jsx/2Mp.jsx index 9c3e30b748..6ee1c751e5 100644 --- a/icons/jsx/2Mp.jsx +++ b/icons/jsx/2Mp.jsx @@ -7,10 +7,14 @@ function Svg2Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/30Fps.jsx b/icons/jsx/30Fps.jsx index 7c8808644d..2a574b40d1 100644 --- a/icons/jsx/30Fps.jsx +++ b/icons/jsx/30Fps.jsx @@ -7,9 +7,13 @@ function Svg30Fps(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/30FpsSelect.jsx b/icons/jsx/30FpsSelect.jsx index 5baf0a54a3..b6cc64deb8 100644 --- a/icons/jsx/30FpsSelect.jsx +++ b/icons/jsx/30FpsSelect.jsx @@ -7,9 +7,13 @@ function Svg30FpsSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/360.jsx b/icons/jsx/360.jsx index 25b65736a1..20da86ea9e 100644 --- a/icons/jsx/360.jsx +++ b/icons/jsx/360.jsx @@ -7,9 +7,13 @@ function Svg360(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/3DRotation.jsx b/icons/jsx/3DRotation.jsx index c6ace2eb38..bff19ab7b1 100644 --- a/icons/jsx/3DRotation.jsx +++ b/icons/jsx/3DRotation.jsx @@ -7,9 +7,13 @@ function Svg3DRotation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/3GMobiledata.jsx b/icons/jsx/3GMobiledata.jsx index 1f52fec87f..15581a050f 100644 --- a/icons/jsx/3GMobiledata.jsx +++ b/icons/jsx/3GMobiledata.jsx @@ -7,9 +7,13 @@ function Svg3GMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/3K.jsx b/icons/jsx/3K.jsx index 2f36e8e3b2..a30cb392c1 100644 --- a/icons/jsx/3K.jsx +++ b/icons/jsx/3K.jsx @@ -7,9 +7,13 @@ function Svg3K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/3KPlus.jsx b/icons/jsx/3KPlus.jsx index bfdb9f6be8..835af4fe8a 100644 --- a/icons/jsx/3KPlus.jsx +++ b/icons/jsx/3KPlus.jsx @@ -7,9 +7,13 @@ function Svg3KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/3Mp.jsx b/icons/jsx/3Mp.jsx index 074a508ad0..84179aebc9 100644 --- a/icons/jsx/3Mp.jsx +++ b/icons/jsx/3Mp.jsx @@ -7,10 +7,14 @@ function Svg3Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/3P.jsx b/icons/jsx/3P.jsx index 85175a6f55..3239480c8a 100644 --- a/icons/jsx/3P.jsx +++ b/icons/jsx/3P.jsx @@ -7,9 +7,13 @@ function Svg3P(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/4GMobiledata.jsx b/icons/jsx/4GMobiledata.jsx index 7293094c8a..f9742a7398 100644 --- a/icons/jsx/4GMobiledata.jsx +++ b/icons/jsx/4GMobiledata.jsx @@ -7,9 +7,13 @@ function Svg4GMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/4GPlusMobiledata.jsx b/icons/jsx/4GPlusMobiledata.jsx index 5847ef9427..289b22d13a 100644 --- a/icons/jsx/4GPlusMobiledata.jsx +++ b/icons/jsx/4GPlusMobiledata.jsx @@ -7,9 +7,13 @@ function Svg4GPlusMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/4K.jsx b/icons/jsx/4K.jsx index 677bbe7cbb..0a12ccca2e 100644 --- a/icons/jsx/4K.jsx +++ b/icons/jsx/4K.jsx @@ -7,9 +7,13 @@ function Svg4K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/4KPlus.jsx b/icons/jsx/4KPlus.jsx index 67f8712321..fdd40af236 100644 --- a/icons/jsx/4KPlus.jsx +++ b/icons/jsx/4KPlus.jsx @@ -7,9 +7,13 @@ function Svg4KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/4Mp.jsx b/icons/jsx/4Mp.jsx index ea30949b45..786861a15b 100644 --- a/icons/jsx/4Mp.jsx +++ b/icons/jsx/4Mp.jsx @@ -7,10 +7,14 @@ function Svg4Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/5G.jsx b/icons/jsx/5G.jsx index 6bba2ffd75..a215bafe05 100644 --- a/icons/jsx/5G.jsx +++ b/icons/jsx/5G.jsx @@ -7,9 +7,13 @@ function Svg5G(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/5K.jsx b/icons/jsx/5K.jsx index 575546f782..912f0a46f8 100644 --- a/icons/jsx/5K.jsx +++ b/icons/jsx/5K.jsx @@ -7,9 +7,13 @@ function Svg5K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/5KPlus.jsx b/icons/jsx/5KPlus.jsx index b994fbf2c6..42a568c0aa 100644 --- a/icons/jsx/5KPlus.jsx +++ b/icons/jsx/5KPlus.jsx @@ -7,9 +7,13 @@ function Svg5KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/5Mp.jsx b/icons/jsx/5Mp.jsx index 4f8c3a9538..2fc005cbc7 100644 --- a/icons/jsx/5Mp.jsx +++ b/icons/jsx/5Mp.jsx @@ -7,10 +7,14 @@ function Svg5Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/60Fps.jsx b/icons/jsx/60Fps.jsx index 3951d244dd..2475e7df47 100644 --- a/icons/jsx/60Fps.jsx +++ b/icons/jsx/60Fps.jsx @@ -7,9 +7,13 @@ function Svg60Fps(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/60FpsSelect.jsx b/icons/jsx/60FpsSelect.jsx index 5551d157fb..47a4dcaf3a 100644 --- a/icons/jsx/60FpsSelect.jsx +++ b/icons/jsx/60FpsSelect.jsx @@ -7,9 +7,13 @@ function Svg60FpsSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/6FtApart.jsx b/icons/jsx/6FtApart.jsx index 8ff6b7b269..0fe5e89ab6 100644 --- a/icons/jsx/6FtApart.jsx +++ b/icons/jsx/6FtApart.jsx @@ -7,9 +7,13 @@ function Svg6FtApart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/6K.jsx b/icons/jsx/6K.jsx index 8fb9777042..278f106681 100644 --- a/icons/jsx/6K.jsx +++ b/icons/jsx/6K.jsx @@ -7,9 +7,13 @@ function Svg6K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/6KPlus.jsx b/icons/jsx/6KPlus.jsx index c030f9751a..9b672b0832 100644 --- a/icons/jsx/6KPlus.jsx +++ b/icons/jsx/6KPlus.jsx @@ -7,9 +7,13 @@ function Svg6KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/6Mp.jsx b/icons/jsx/6Mp.jsx index 928832810b..8fb306a6ff 100644 --- a/icons/jsx/6Mp.jsx +++ b/icons/jsx/6Mp.jsx @@ -7,11 +7,15 @@ function Svg6Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/7K.jsx b/icons/jsx/7K.jsx index 0ed0597f4a..2becd8062a 100644 --- a/icons/jsx/7K.jsx +++ b/icons/jsx/7K.jsx @@ -7,9 +7,13 @@ function Svg7K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/7KPlus.jsx b/icons/jsx/7KPlus.jsx index 3d282de195..ec6256ed9c 100644 --- a/icons/jsx/7KPlus.jsx +++ b/icons/jsx/7KPlus.jsx @@ -7,9 +7,13 @@ function Svg7KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/7Mp.jsx b/icons/jsx/7Mp.jsx index ffb6c03474..afd212df72 100644 --- a/icons/jsx/7Mp.jsx +++ b/icons/jsx/7Mp.jsx @@ -7,10 +7,14 @@ function Svg7Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/8K.jsx b/icons/jsx/8K.jsx index 5518f69460..b72b530928 100644 --- a/icons/jsx/8K.jsx +++ b/icons/jsx/8K.jsx @@ -7,9 +7,13 @@ function Svg8K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/8KPlus.jsx b/icons/jsx/8KPlus.jsx index a237092368..f4a6fd329d 100644 --- a/icons/jsx/8KPlus.jsx +++ b/icons/jsx/8KPlus.jsx @@ -7,9 +7,13 @@ function Svg8KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/8Mp.jsx b/icons/jsx/8Mp.jsx index 9e66c67042..a6c922eb0b 100644 --- a/icons/jsx/8Mp.jsx +++ b/icons/jsx/8Mp.jsx @@ -7,11 +7,15 @@ function Svg8Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/9K.jsx b/icons/jsx/9K.jsx index 1502f6bfe1..d83add0370 100644 --- a/icons/jsx/9K.jsx +++ b/icons/jsx/9K.jsx @@ -7,9 +7,13 @@ function Svg9K(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/9KPlus.jsx b/icons/jsx/9KPlus.jsx index 858fbd6919..94e4755ba0 100644 --- a/icons/jsx/9KPlus.jsx +++ b/icons/jsx/9KPlus.jsx @@ -7,9 +7,13 @@ function Svg9KPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/9Mp.jsx b/icons/jsx/9Mp.jsx index 81118ca96e..470e739f04 100644 --- a/icons/jsx/9Mp.jsx +++ b/icons/jsx/9Mp.jsx @@ -7,11 +7,15 @@ function Svg9Mp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/Abc.jsx b/icons/jsx/Abc.jsx index 3bf1a293d0..c6a28eda1b 100644 --- a/icons/jsx/Abc.jsx +++ b/icons/jsx/Abc.jsx @@ -7,9 +7,13 @@ function SvgAbc(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AcUnit.jsx b/icons/jsx/AcUnit.jsx index 923e774e3f..d8683bd439 100644 --- a/icons/jsx/AcUnit.jsx +++ b/icons/jsx/AcUnit.jsx @@ -7,9 +7,13 @@ function SvgAcUnit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccessAlarm.jsx b/icons/jsx/AccessAlarm.jsx index ae26458677..d212ee890f 100644 --- a/icons/jsx/AccessAlarm.jsx +++ b/icons/jsx/AccessAlarm.jsx @@ -7,9 +7,13 @@ function SvgAccessAlarm(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccessAlarms.jsx b/icons/jsx/AccessAlarms.jsx index 586e31b2d7..7a50ab4c32 100644 --- a/icons/jsx/AccessAlarms.jsx +++ b/icons/jsx/AccessAlarms.jsx @@ -7,9 +7,13 @@ function SvgAccessAlarms(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccessTime.jsx b/icons/jsx/AccessTime.jsx index e2c3b8755e..b43da267b6 100644 --- a/icons/jsx/AccessTime.jsx +++ b/icons/jsx/AccessTime.jsx @@ -7,9 +7,13 @@ function SvgAccessTime(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccessTimeFilled.jsx b/icons/jsx/AccessTimeFilled.jsx index 611fe47ff1..1cd1fc84f3 100644 --- a/icons/jsx/AccessTimeFilled.jsx +++ b/icons/jsx/AccessTimeFilled.jsx @@ -7,9 +7,13 @@ function SvgAccessTimeFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Accessibility.jsx b/icons/jsx/Accessibility.jsx index 6cb12537d1..9f770063e7 100644 --- a/icons/jsx/Accessibility.jsx +++ b/icons/jsx/Accessibility.jsx @@ -7,9 +7,13 @@ function SvgAccessibility(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccessibilityNew.jsx b/icons/jsx/AccessibilityNew.jsx index 80ad599f23..16c18acf68 100644 --- a/icons/jsx/AccessibilityNew.jsx +++ b/icons/jsx/AccessibilityNew.jsx @@ -7,9 +7,13 @@ function SvgAccessibilityNew(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Accessible.jsx b/icons/jsx/Accessible.jsx index 6731226f42..f082ff9365 100644 --- a/icons/jsx/Accessible.jsx +++ b/icons/jsx/Accessible.jsx @@ -7,10 +7,14 @@ function SvgAccessible(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccessibleForward.jsx b/icons/jsx/AccessibleForward.jsx index 7a2817e3a4..a95a104e13 100644 --- a/icons/jsx/AccessibleForward.jsx +++ b/icons/jsx/AccessibleForward.jsx @@ -7,10 +7,14 @@ function SvgAccessibleForward(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccountBalance.jsx b/icons/jsx/AccountBalance.jsx index e45a06c559..9f6f68a832 100644 --- a/icons/jsx/AccountBalance.jsx +++ b/icons/jsx/AccountBalance.jsx @@ -7,9 +7,13 @@ function SvgAccountBalance(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccountBalanceWallet.jsx b/icons/jsx/AccountBalanceWallet.jsx index 77248a0562..fb1c15a8a1 100644 --- a/icons/jsx/AccountBalanceWallet.jsx +++ b/icons/jsx/AccountBalanceWallet.jsx @@ -7,9 +7,13 @@ function SvgAccountBalanceWallet(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccountBox.jsx b/icons/jsx/AccountBox.jsx index bf19f66cf6..7fe8b87487 100644 --- a/icons/jsx/AccountBox.jsx +++ b/icons/jsx/AccountBox.jsx @@ -7,9 +7,13 @@ function SvgAccountBox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccountCircle.jsx b/icons/jsx/AccountCircle.jsx index 170fa8f8a5..89da2fb391 100644 --- a/icons/jsx/AccountCircle.jsx +++ b/icons/jsx/AccountCircle.jsx @@ -7,9 +7,13 @@ function SvgAccountCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AccountTree.jsx b/icons/jsx/AccountTree.jsx index b0fb0aab58..78fc96e5aa 100644 --- a/icons/jsx/AccountTree.jsx +++ b/icons/jsx/AccountTree.jsx @@ -7,9 +7,13 @@ function SvgAccountTree(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AdUnits.jsx b/icons/jsx/AdUnits.jsx index 34293c3e0d..6940c29b0b 100644 --- a/icons/jsx/AdUnits.jsx +++ b/icons/jsx/AdUnits.jsx @@ -7,10 +7,11 @@ function SvgAdUnits(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Adb.jsx b/icons/jsx/Adb.jsx index 9756d93cab..26dd22abd8 100644 --- a/icons/jsx/Adb.jsx +++ b/icons/jsx/Adb.jsx @@ -7,9 +7,13 @@ function SvgAdb(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddAPhoto.jsx b/icons/jsx/AddAPhoto.jsx index 889857590c..3f77562e5b 100644 --- a/icons/jsx/AddAPhoto.jsx +++ b/icons/jsx/AddAPhoto.jsx @@ -7,9 +7,13 @@ function SvgAddAPhoto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddAlarm.jsx b/icons/jsx/AddAlarm.jsx index 117a057c4c..268ba4e98a 100644 --- a/icons/jsx/AddAlarm.jsx +++ b/icons/jsx/AddAlarm.jsx @@ -7,9 +7,13 @@ function SvgAddAlarm(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddBox.jsx b/icons/jsx/AddBox.jsx index 52dd2ebb9b..48d272b5b2 100644 --- a/icons/jsx/AddBox.jsx +++ b/icons/jsx/AddBox.jsx @@ -7,9 +7,13 @@ function SvgAddBox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddBusiness.jsx b/icons/jsx/AddBusiness.jsx index 013248c519..24d03e3926 100644 --- a/icons/jsx/AddBusiness.jsx +++ b/icons/jsx/AddBusiness.jsx @@ -7,10 +7,14 @@ function SvgAddBusiness(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AddCard.jsx b/icons/jsx/AddCard.jsx index 5b03ac5528..3e5f540fc6 100644 --- a/icons/jsx/AddCard.jsx +++ b/icons/jsx/AddCard.jsx @@ -7,9 +7,13 @@ function SvgAddCard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddCircleOutline.jsx b/icons/jsx/AddCircleOutline.jsx index ee6275e280..84ff4ffd6a 100644 --- a/icons/jsx/AddCircleOutline.jsx +++ b/icons/jsx/AddCircleOutline.jsx @@ -7,9 +7,13 @@ function SvgAddCircleOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddHome.jsx b/icons/jsx/AddHome.jsx index 43e804555d..cceb0f5d17 100644 --- a/icons/jsx/AddHome.jsx +++ b/icons/jsx/AddHome.jsx @@ -7,10 +7,17 @@ function SvgAddHome(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AddHomeWork.jsx b/icons/jsx/AddHomeWork.jsx index 894556cc3c..c9251a8668 100644 --- a/icons/jsx/AddHomeWork.jsx +++ b/icons/jsx/AddHomeWork.jsx @@ -7,10 +7,17 @@ function SvgAddHomeWork(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AddIcCall.jsx b/icons/jsx/AddIcCall.jsx index a45ddf3780..ec02872f39 100644 --- a/icons/jsx/AddIcCall.jsx +++ b/icons/jsx/AddIcCall.jsx @@ -7,9 +7,13 @@ function SvgAddIcCall(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddLink.jsx b/icons/jsx/AddLink.jsx index 6f88a74907..c42c793d2a 100644 --- a/icons/jsx/AddLink.jsx +++ b/icons/jsx/AddLink.jsx @@ -7,9 +7,13 @@ function SvgAddLink(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddLocation.jsx b/icons/jsx/AddLocation.jsx index c046fa51dd..20d5143be6 100644 --- a/icons/jsx/AddLocation.jsx +++ b/icons/jsx/AddLocation.jsx @@ -7,9 +7,13 @@ function SvgAddLocation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddLocationAlt.jsx b/icons/jsx/AddLocationAlt.jsx index 8c2c1e6a2c..732b66a19c 100644 --- a/icons/jsx/AddLocationAlt.jsx +++ b/icons/jsx/AddLocationAlt.jsx @@ -7,9 +7,13 @@ function SvgAddLocationAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddModerator.jsx b/icons/jsx/AddModerator.jsx index f2bfb96cda..35d946fd84 100644 --- a/icons/jsx/AddModerator.jsx +++ b/icons/jsx/AddModerator.jsx @@ -7,10 +7,17 @@ function SvgAddModerator(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AddPhotoAlternate.jsx b/icons/jsx/AddPhotoAlternate.jsx index 032dff337d..f3a8223fe7 100644 --- a/icons/jsx/AddPhotoAlternate.jsx +++ b/icons/jsx/AddPhotoAlternate.jsx @@ -7,9 +7,13 @@ function SvgAddPhotoAlternate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddReaction.jsx b/icons/jsx/AddReaction.jsx index f6c5dd4bf7..e9eac37969 100644 --- a/icons/jsx/AddReaction.jsx +++ b/icons/jsx/AddReaction.jsx @@ -7,9 +7,13 @@ function SvgAddReaction(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddRoad.jsx b/icons/jsx/AddRoad.jsx index 2f2fe80c32..0755aa30c5 100644 --- a/icons/jsx/AddRoad.jsx +++ b/icons/jsx/AddRoad.jsx @@ -7,9 +7,13 @@ function SvgAddRoad(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddShoppingCart.jsx b/icons/jsx/AddShoppingCart.jsx index 9a7bccc511..deb53023df 100644 --- a/icons/jsx/AddShoppingCart.jsx +++ b/icons/jsx/AddShoppingCart.jsx @@ -7,9 +7,13 @@ function SvgAddShoppingCart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddTask.jsx b/icons/jsx/AddTask.jsx index 9af68c6f65..1b154aaa99 100644 --- a/icons/jsx/AddTask.jsx +++ b/icons/jsx/AddTask.jsx @@ -7,9 +7,13 @@ function SvgAddTask(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddToDrive.jsx b/icons/jsx/AddToDrive.jsx index f13935c200..813b5239a1 100644 --- a/icons/jsx/AddToDrive.jsx +++ b/icons/jsx/AddToDrive.jsx @@ -7,9 +7,13 @@ function SvgAddToDrive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddToHomeScreen.jsx b/icons/jsx/AddToHomeScreen.jsx index 1b5b445a26..a24b6d7180 100644 --- a/icons/jsx/AddToHomeScreen.jsx +++ b/icons/jsx/AddToHomeScreen.jsx @@ -7,9 +7,13 @@ function SvgAddToHomeScreen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddToPhotos.jsx b/icons/jsx/AddToPhotos.jsx index 6842375f73..f03f5b1bc7 100644 --- a/icons/jsx/AddToPhotos.jsx +++ b/icons/jsx/AddToPhotos.jsx @@ -7,9 +7,13 @@ function SvgAddToPhotos(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AddToQueue.jsx b/icons/jsx/AddToQueue.jsx index 28d390dfdc..5f3b38df5d 100644 --- a/icons/jsx/AddToQueue.jsx +++ b/icons/jsx/AddToQueue.jsx @@ -7,9 +7,13 @@ function SvgAddToQueue(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Addchart.jsx b/icons/jsx/Addchart.jsx index ddee188186..64300926d7 100644 --- a/icons/jsx/Addchart.jsx +++ b/icons/jsx/Addchart.jsx @@ -7,10 +7,14 @@ function SvgAddchart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AdfScanner.jsx b/icons/jsx/AdfScanner.jsx index 64f3dceedb..08e84c7d41 100644 --- a/icons/jsx/AdfScanner.jsx +++ b/icons/jsx/AdfScanner.jsx @@ -7,9 +7,13 @@ function SvgAdfScanner(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Adjust.jsx b/icons/jsx/Adjust.jsx index 18f0dc18b1..a2dce39184 100644 --- a/icons/jsx/Adjust.jsx +++ b/icons/jsx/Adjust.jsx @@ -7,9 +7,13 @@ function SvgAdjust(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AdminPanelSettings.jsx b/icons/jsx/AdminPanelSettings.jsx index 789a27a693..3aa3d437f7 100644 --- a/icons/jsx/AdminPanelSettings.jsx +++ b/icons/jsx/AdminPanelSettings.jsx @@ -7,10 +7,17 @@ function SvgAdminPanelSettings(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Adobe.jsx b/icons/jsx/Adobe.jsx index d602a2a667..363221fe71 100644 --- a/icons/jsx/Adobe.jsx +++ b/icons/jsx/Adobe.jsx @@ -7,9 +7,13 @@ function SvgAdobe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AdsClick.jsx b/icons/jsx/AdsClick.jsx index 27d21db82e..59db52c1b1 100644 --- a/icons/jsx/AdsClick.jsx +++ b/icons/jsx/AdsClick.jsx @@ -7,9 +7,13 @@ function SvgAdsClick(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Agriculture.jsx b/icons/jsx/Agriculture.jsx index bc245b3dc7..1efbc92b21 100644 --- a/icons/jsx/Agriculture.jsx +++ b/icons/jsx/Agriculture.jsx @@ -7,10 +7,17 @@ function SvgAgriculture(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Air.jsx b/icons/jsx/Air.jsx index 4690103ed0..b8400f9b54 100644 --- a/icons/jsx/Air.jsx +++ b/icons/jsx/Air.jsx @@ -7,9 +7,13 @@ function SvgAir(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineSeatFlat.jsx b/icons/jsx/AirlineSeatFlat.jsx index 6f6a7397d6..cdbac042e1 100644 --- a/icons/jsx/AirlineSeatFlat.jsx +++ b/icons/jsx/AirlineSeatFlat.jsx @@ -7,9 +7,13 @@ function SvgAirlineSeatFlat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineSeatFlatAngled.jsx b/icons/jsx/AirlineSeatFlatAngled.jsx index afbd90bdb8..9544ec05ed 100644 --- a/icons/jsx/AirlineSeatFlatAngled.jsx +++ b/icons/jsx/AirlineSeatFlatAngled.jsx @@ -7,9 +7,13 @@ function SvgAirlineSeatFlatAngled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineSeatIndividualSuite.jsx b/icons/jsx/AirlineSeatIndividualSuite.jsx index 04ce1d4147..32db244a88 100644 --- a/icons/jsx/AirlineSeatIndividualSuite.jsx +++ b/icons/jsx/AirlineSeatIndividualSuite.jsx @@ -7,9 +7,13 @@ function SvgAirlineSeatIndividualSuite(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineSeatLegroomExtra.jsx b/icons/jsx/AirlineSeatLegroomExtra.jsx index baff1a7117..0e819fa270 100644 --- a/icons/jsx/AirlineSeatLegroomExtra.jsx +++ b/icons/jsx/AirlineSeatLegroomExtra.jsx @@ -7,9 +7,13 @@ function SvgAirlineSeatLegroomExtra(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineSeatLegroomNormal.jsx b/icons/jsx/AirlineSeatLegroomNormal.jsx index cd5f9347ed..364ed14fe1 100644 --- a/icons/jsx/AirlineSeatLegroomNormal.jsx +++ b/icons/jsx/AirlineSeatLegroomNormal.jsx @@ -7,9 +7,13 @@ function SvgAirlineSeatLegroomNormal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineSeatLegroomReduced.jsx b/icons/jsx/AirlineSeatLegroomReduced.jsx index 114a702516..4a10f523dd 100644 --- a/icons/jsx/AirlineSeatLegroomReduced.jsx +++ b/icons/jsx/AirlineSeatLegroomReduced.jsx @@ -7,9 +7,13 @@ function SvgAirlineSeatLegroomReduced(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineSeatReclineExtra.jsx b/icons/jsx/AirlineSeatReclineExtra.jsx index 5a6c5fe8ac..b60758b020 100644 --- a/icons/jsx/AirlineSeatReclineExtra.jsx +++ b/icons/jsx/AirlineSeatReclineExtra.jsx @@ -7,9 +7,13 @@ function SvgAirlineSeatReclineExtra(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineSeatReclineNormal.jsx b/icons/jsx/AirlineSeatReclineNormal.jsx index 845f423590..6233ebe38e 100644 --- a/icons/jsx/AirlineSeatReclineNormal.jsx +++ b/icons/jsx/AirlineSeatReclineNormal.jsx @@ -7,9 +7,13 @@ function SvgAirlineSeatReclineNormal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirlineStops.jsx b/icons/jsx/AirlineStops.jsx index eb9996a485..c7c2a2c398 100644 --- a/icons/jsx/AirlineStops.jsx +++ b/icons/jsx/AirlineStops.jsx @@ -7,9 +7,13 @@ function SvgAirlineStops(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Airlines.jsx b/icons/jsx/Airlines.jsx index 3215906f75..05ed6490c3 100644 --- a/icons/jsx/Airlines.jsx +++ b/icons/jsx/Airlines.jsx @@ -7,9 +7,13 @@ function SvgAirlines(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirplaneTicket.jsx b/icons/jsx/AirplaneTicket.jsx index c7ce4f5abb..2fb576954a 100644 --- a/icons/jsx/AirplaneTicket.jsx +++ b/icons/jsx/AirplaneTicket.jsx @@ -7,9 +7,13 @@ function SvgAirplaneTicket(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirplanemodeActive.jsx b/icons/jsx/AirplanemodeActive.jsx index 79d0631003..ccb1b688ee 100644 --- a/icons/jsx/AirplanemodeActive.jsx +++ b/icons/jsx/AirplanemodeActive.jsx @@ -7,9 +7,13 @@ function SvgAirplanemodeActive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirplanemodeInactive.jsx b/icons/jsx/AirplanemodeInactive.jsx index d9db4ed88b..ff421f470b 100644 --- a/icons/jsx/AirplanemodeInactive.jsx +++ b/icons/jsx/AirplanemodeInactive.jsx @@ -7,9 +7,13 @@ function SvgAirplanemodeInactive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Airplay.jsx b/icons/jsx/Airplay.jsx index c357e01f95..f49553f90a 100644 --- a/icons/jsx/Airplay.jsx +++ b/icons/jsx/Airplay.jsx @@ -7,9 +7,13 @@ function SvgAirplay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AirportShuttle.jsx b/icons/jsx/AirportShuttle.jsx index d0ccc0ef4a..f87563237c 100644 --- a/icons/jsx/AirportShuttle.jsx +++ b/icons/jsx/AirportShuttle.jsx @@ -7,9 +7,13 @@ function SvgAirportShuttle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Alarm.jsx b/icons/jsx/Alarm.jsx index ff35704231..653910c9a0 100644 --- a/icons/jsx/Alarm.jsx +++ b/icons/jsx/Alarm.jsx @@ -7,9 +7,13 @@ function SvgAlarm(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlarmAdd.jsx b/icons/jsx/AlarmAdd.jsx index fd4b88b3de..82883ff45f 100644 --- a/icons/jsx/AlarmAdd.jsx +++ b/icons/jsx/AlarmAdd.jsx @@ -7,9 +7,13 @@ function SvgAlarmAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlarmOff.jsx b/icons/jsx/AlarmOff.jsx index ae9f09d84e..3a5e2d7389 100644 --- a/icons/jsx/AlarmOff.jsx +++ b/icons/jsx/AlarmOff.jsx @@ -7,9 +7,13 @@ function SvgAlarmOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlarmOn.jsx b/icons/jsx/AlarmOn.jsx index adc42fc339..9176a354af 100644 --- a/icons/jsx/AlarmOn.jsx +++ b/icons/jsx/AlarmOn.jsx @@ -7,9 +7,13 @@ function SvgAlarmOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Album.jsx b/icons/jsx/Album.jsx index 41447ce8db..e532c076ed 100644 --- a/icons/jsx/Album.jsx +++ b/icons/jsx/Album.jsx @@ -7,9 +7,13 @@ function SvgAlbum(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlignHorizontalCenter.jsx b/icons/jsx/AlignHorizontalCenter.jsx index ce1d96bcb1..d5f438800b 100644 --- a/icons/jsx/AlignHorizontalCenter.jsx +++ b/icons/jsx/AlignHorizontalCenter.jsx @@ -7,9 +7,13 @@ function SvgAlignHorizontalCenter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlignHorizontalLeft.jsx b/icons/jsx/AlignHorizontalLeft.jsx index 3901035563..8eeb78e375 100644 --- a/icons/jsx/AlignHorizontalLeft.jsx +++ b/icons/jsx/AlignHorizontalLeft.jsx @@ -7,9 +7,13 @@ function SvgAlignHorizontalLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlignHorizontalRight.jsx b/icons/jsx/AlignHorizontalRight.jsx index 5ec5edf8cf..bb0a48f870 100644 --- a/icons/jsx/AlignHorizontalRight.jsx +++ b/icons/jsx/AlignHorizontalRight.jsx @@ -7,9 +7,13 @@ function SvgAlignHorizontalRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlignVerticalBottom.jsx b/icons/jsx/AlignVerticalBottom.jsx index 85a4c9c0e5..1654e72dc1 100644 --- a/icons/jsx/AlignVerticalBottom.jsx +++ b/icons/jsx/AlignVerticalBottom.jsx @@ -7,9 +7,13 @@ function SvgAlignVerticalBottom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlignVerticalCenter.jsx b/icons/jsx/AlignVerticalCenter.jsx index 545f77ba9f..e7692abd8e 100644 --- a/icons/jsx/AlignVerticalCenter.jsx +++ b/icons/jsx/AlignVerticalCenter.jsx @@ -7,9 +7,13 @@ function SvgAlignVerticalCenter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlignVerticalTop.jsx b/icons/jsx/AlignVerticalTop.jsx index 235f5457b9..0609bc4faf 100644 --- a/icons/jsx/AlignVerticalTop.jsx +++ b/icons/jsx/AlignVerticalTop.jsx @@ -7,9 +7,13 @@ function SvgAlignVerticalTop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AllInbox.jsx b/icons/jsx/AllInbox.jsx index f3d232ed8c..970f003670 100644 --- a/icons/jsx/AllInbox.jsx +++ b/icons/jsx/AllInbox.jsx @@ -7,9 +7,13 @@ function SvgAllInbox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AllInclusive.jsx b/icons/jsx/AllInclusive.jsx index c3223318ae..3973e1f894 100644 --- a/icons/jsx/AllInclusive.jsx +++ b/icons/jsx/AllInclusive.jsx @@ -7,9 +7,13 @@ function SvgAllInclusive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AllOut.jsx b/icons/jsx/AllOut.jsx index 3ad4244904..01fa64a10b 100644 --- a/icons/jsx/AllOut.jsx +++ b/icons/jsx/AllOut.jsx @@ -7,9 +7,13 @@ function SvgAllOut(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AltRoute.jsx b/icons/jsx/AltRoute.jsx index 3857d3e636..c6f6ec0b17 100644 --- a/icons/jsx/AltRoute.jsx +++ b/icons/jsx/AltRoute.jsx @@ -7,9 +7,13 @@ function SvgAltRoute(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AlternateEmail.jsx b/icons/jsx/AlternateEmail.jsx index 72a1fa8282..48da52560f 100644 --- a/icons/jsx/AlternateEmail.jsx +++ b/icons/jsx/AlternateEmail.jsx @@ -7,9 +7,13 @@ function SvgAlternateEmail(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AmpStories.jsx b/icons/jsx/AmpStories.jsx index 8272e5bd3e..5c3988952e 100644 --- a/icons/jsx/AmpStories.jsx +++ b/icons/jsx/AmpStories.jsx @@ -7,9 +7,10 @@ function SvgAmpStories(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Analytics.jsx b/icons/jsx/Analytics.jsx index 0c0c2f9aff..d6ea198d43 100644 --- a/icons/jsx/Analytics.jsx +++ b/icons/jsx/Analytics.jsx @@ -7,9 +7,13 @@ function SvgAnalytics(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Anchor.jsx b/icons/jsx/Anchor.jsx index ce189bd4b7..e5f6d4d943 100644 --- a/icons/jsx/Anchor.jsx +++ b/icons/jsx/Anchor.jsx @@ -7,9 +7,13 @@ function SvgAnchor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Android.jsx b/icons/jsx/Android.jsx index 4638b4087d..6b7ea9cc73 100644 --- a/icons/jsx/Android.jsx +++ b/icons/jsx/Android.jsx @@ -7,9 +7,13 @@ function SvgAndroid(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Animation.jsx b/icons/jsx/Animation.jsx index e4597a6eb9..3029353d80 100644 --- a/icons/jsx/Animation.jsx +++ b/icons/jsx/Animation.jsx @@ -7,9 +7,13 @@ function SvgAnimation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Announcement.jsx b/icons/jsx/Announcement.jsx index c8d8105cd7..6d74e27015 100644 --- a/icons/jsx/Announcement.jsx +++ b/icons/jsx/Announcement.jsx @@ -7,9 +7,13 @@ function SvgAnnouncement(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Aod.jsx b/icons/jsx/Aod.jsx index 5ede7e6188..86203961e2 100644 --- a/icons/jsx/Aod.jsx +++ b/icons/jsx/Aod.jsx @@ -7,9 +7,13 @@ function SvgAod(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Apartment.jsx b/icons/jsx/Apartment.jsx index 9e44211b51..45d087cc3c 100644 --- a/icons/jsx/Apartment.jsx +++ b/icons/jsx/Apartment.jsx @@ -7,9 +7,13 @@ function SvgApartment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Api.jsx b/icons/jsx/Api.jsx index 9a21ebf86b..08e433088a 100644 --- a/icons/jsx/Api.jsx +++ b/icons/jsx/Api.jsx @@ -7,9 +7,13 @@ function SvgApi(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AppBlocking.jsx b/icons/jsx/AppBlocking.jsx index 5072cf5cf5..a2a4219bf8 100644 --- a/icons/jsx/AppBlocking.jsx +++ b/icons/jsx/AppBlocking.jsx @@ -7,10 +7,14 @@ function SvgAppBlocking(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AppRegistration.jsx b/icons/jsx/AppRegistration.jsx index 1c7113e2d4..e0c7d531ff 100644 --- a/icons/jsx/AppRegistration.jsx +++ b/icons/jsx/AppRegistration.jsx @@ -7,9 +7,13 @@ function SvgAppRegistration(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AppSettingsAlt.jsx b/icons/jsx/AppSettingsAlt.jsx index 306836aa0c..bb6dc8b95a 100644 --- a/icons/jsx/AppSettingsAlt.jsx +++ b/icons/jsx/AppSettingsAlt.jsx @@ -7,9 +7,13 @@ function SvgAppSettingsAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AppShortcut.jsx b/icons/jsx/AppShortcut.jsx index b0236196f9..82ce5207e1 100644 --- a/icons/jsx/AppShortcut.jsx +++ b/icons/jsx/AppShortcut.jsx @@ -7,10 +7,17 @@ function SvgAppShortcut(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Apple.jsx b/icons/jsx/Apple.jsx index cc96b2d88f..18cfebce56 100644 --- a/icons/jsx/Apple.jsx +++ b/icons/jsx/Apple.jsx @@ -7,9 +7,13 @@ function SvgApple(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Approval.jsx b/icons/jsx/Approval.jsx index e738fb76ca..1fea9fee22 100644 --- a/icons/jsx/Approval.jsx +++ b/icons/jsx/Approval.jsx @@ -7,9 +7,13 @@ function SvgApproval(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Apps.jsx b/icons/jsx/Apps.jsx index 2d51fb135f..b115245e47 100644 --- a/icons/jsx/Apps.jsx +++ b/icons/jsx/Apps.jsx @@ -7,9 +7,13 @@ function SvgApps(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AppsOutage.jsx b/icons/jsx/AppsOutage.jsx index c1a6d0477f..e6cd60bfe3 100644 --- a/icons/jsx/AppsOutage.jsx +++ b/icons/jsx/AppsOutage.jsx @@ -7,9 +7,13 @@ function SvgAppsOutage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Architecture.jsx b/icons/jsx/Architecture.jsx index 61bac4fdef..751f10e158 100644 --- a/icons/jsx/Architecture.jsx +++ b/icons/jsx/Architecture.jsx @@ -7,9 +7,13 @@ function SvgArchitecture(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Archive.jsx b/icons/jsx/Archive.jsx index ce4f131649..7679d82ba9 100644 --- a/icons/jsx/Archive.jsx +++ b/icons/jsx/Archive.jsx @@ -7,9 +7,13 @@ function SvgArchive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AreaChart.jsx b/icons/jsx/AreaChart.jsx index 3d7f22cc3e..fbceedadc4 100644 --- a/icons/jsx/AreaChart.jsx +++ b/icons/jsx/AreaChart.jsx @@ -7,9 +7,13 @@ function SvgAreaChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowBackIosNew.jsx b/icons/jsx/ArrowBackIosNew.jsx index 4fbf13a5ee..bb148327a1 100644 --- a/icons/jsx/ArrowBackIosNew.jsx +++ b/icons/jsx/ArrowBackIosNew.jsx @@ -7,9 +7,13 @@ function SvgArrowBackIosNew(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowCircleDown.jsx b/icons/jsx/ArrowCircleDown.jsx index 7a4c472cb2..fdb9dd61d9 100644 --- a/icons/jsx/ArrowCircleDown.jsx +++ b/icons/jsx/ArrowCircleDown.jsx @@ -7,9 +7,13 @@ function SvgArrowCircleDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowCircleLeft.jsx b/icons/jsx/ArrowCircleLeft.jsx index bebb8c0b62..3398ee29cb 100644 --- a/icons/jsx/ArrowCircleLeft.jsx +++ b/icons/jsx/ArrowCircleLeft.jsx @@ -7,9 +7,13 @@ function SvgArrowCircleLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowCircleRight.jsx b/icons/jsx/ArrowCircleRight.jsx index 048b2ffb90..8a341ec54b 100644 --- a/icons/jsx/ArrowCircleRight.jsx +++ b/icons/jsx/ArrowCircleRight.jsx @@ -7,9 +7,13 @@ function SvgArrowCircleRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowCircleUp.jsx b/icons/jsx/ArrowCircleUp.jsx index 381c708147..eb3553a8c2 100644 --- a/icons/jsx/ArrowCircleUp.jsx +++ b/icons/jsx/ArrowCircleUp.jsx @@ -7,9 +7,13 @@ function SvgArrowCircleUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowDownward.jsx b/icons/jsx/ArrowDownward.jsx index 9e44bc0c1c..2eff7f38ea 100644 --- a/icons/jsx/ArrowDownward.jsx +++ b/icons/jsx/ArrowDownward.jsx @@ -7,9 +7,13 @@ function SvgArrowDownward(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowLeft.jsx b/icons/jsx/ArrowLeft.jsx index 6728124aea..6c0288dc36 100644 --- a/icons/jsx/ArrowLeft.jsx +++ b/icons/jsx/ArrowLeft.jsx @@ -7,9 +7,10 @@ function SvgArrowLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowOutward.jsx b/icons/jsx/ArrowOutward.jsx index 6a638f7441..e437d89417 100644 --- a/icons/jsx/ArrowOutward.jsx +++ b/icons/jsx/ArrowOutward.jsx @@ -7,9 +7,13 @@ function SvgArrowOutward(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowRight.jsx b/icons/jsx/ArrowRight.jsx index 9e9b85f421..be4c9c1614 100644 --- a/icons/jsx/ArrowRight.jsx +++ b/icons/jsx/ArrowRight.jsx @@ -7,9 +7,10 @@ function SvgArrowRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowRightAlt.jsx b/icons/jsx/ArrowRightAlt.jsx index 0556df64ae..266925ccc1 100644 --- a/icons/jsx/ArrowRightAlt.jsx +++ b/icons/jsx/ArrowRightAlt.jsx @@ -7,9 +7,10 @@ function SvgArrowRightAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArrowUpward.jsx b/icons/jsx/ArrowUpward.jsx index 17724fefeb..6804d9cd98 100644 --- a/icons/jsx/ArrowUpward.jsx +++ b/icons/jsx/ArrowUpward.jsx @@ -7,9 +7,13 @@ function SvgArrowUpward(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ArtTrack.jsx b/icons/jsx/ArtTrack.jsx index 15d14d945d..80d3fba3a7 100644 --- a/icons/jsx/ArtTrack.jsx +++ b/icons/jsx/ArtTrack.jsx @@ -7,9 +7,13 @@ function SvgArtTrack(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AspectRatio.jsx b/icons/jsx/AspectRatio.jsx index b7992304ea..d1c34caf5e 100644 --- a/icons/jsx/AspectRatio.jsx +++ b/icons/jsx/AspectRatio.jsx @@ -7,9 +7,13 @@ function SvgAspectRatio(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Assessment.jsx b/icons/jsx/Assessment.jsx index 1fe55f3326..4138d136dd 100644 --- a/icons/jsx/Assessment.jsx +++ b/icons/jsx/Assessment.jsx @@ -7,9 +7,13 @@ function SvgAssessment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssignmentInd.jsx b/icons/jsx/AssignmentInd.jsx index dbce7acd47..00b8792c09 100644 --- a/icons/jsx/AssignmentInd.jsx +++ b/icons/jsx/AssignmentInd.jsx @@ -7,9 +7,13 @@ function SvgAssignmentInd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssignmentLate.jsx b/icons/jsx/AssignmentLate.jsx index 5cbf786a43..e13a23b727 100644 --- a/icons/jsx/AssignmentLate.jsx +++ b/icons/jsx/AssignmentLate.jsx @@ -7,9 +7,13 @@ function SvgAssignmentLate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssignmentReturn.jsx b/icons/jsx/AssignmentReturn.jsx index 947a4f4fd5..65a9e0701e 100644 --- a/icons/jsx/AssignmentReturn.jsx +++ b/icons/jsx/AssignmentReturn.jsx @@ -7,9 +7,13 @@ function SvgAssignmentReturn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssignmentReturned.jsx b/icons/jsx/AssignmentReturned.jsx index 5f1e59ee90..eb8466b190 100644 --- a/icons/jsx/AssignmentReturned.jsx +++ b/icons/jsx/AssignmentReturned.jsx @@ -7,9 +7,13 @@ function SvgAssignmentReturned(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssignmentTurnedIn.jsx b/icons/jsx/AssignmentTurnedIn.jsx index f402fc0d13..b492c2b680 100644 --- a/icons/jsx/AssignmentTurnedIn.jsx +++ b/icons/jsx/AssignmentTurnedIn.jsx @@ -7,9 +7,13 @@ function SvgAssignmentTurnedIn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssistWalker.jsx b/icons/jsx/AssistWalker.jsx index 4bfa21e2c1..e2b48cd2e8 100644 --- a/icons/jsx/AssistWalker.jsx +++ b/icons/jsx/AssistWalker.jsx @@ -7,10 +7,14 @@ function SvgAssistWalker(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Assistant.jsx b/icons/jsx/Assistant.jsx index e12ed06600..5602c5f24c 100644 --- a/icons/jsx/Assistant.jsx +++ b/icons/jsx/Assistant.jsx @@ -7,9 +7,13 @@ function SvgAssistant(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssistantDirection.jsx b/icons/jsx/AssistantDirection.jsx index ba85dc6d07..71c6e42109 100644 --- a/icons/jsx/AssistantDirection.jsx +++ b/icons/jsx/AssistantDirection.jsx @@ -7,9 +7,13 @@ function SvgAssistantDirection(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssistantPhoto.jsx b/icons/jsx/AssistantPhoto.jsx index 9ceb1e1da3..bbac3275b0 100644 --- a/icons/jsx/AssistantPhoto.jsx +++ b/icons/jsx/AssistantPhoto.jsx @@ -7,9 +7,10 @@ function SvgAssistantPhoto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AssuredWorkload.jsx b/icons/jsx/AssuredWorkload.jsx index 1279b0ebcc..d55e2f3809 100644 --- a/icons/jsx/AssuredWorkload.jsx +++ b/icons/jsx/AssuredWorkload.jsx @@ -7,9 +7,13 @@ function SvgAssuredWorkload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Atm.jsx b/icons/jsx/Atm.jsx index f8a792a2de..50a0848f5e 100644 --- a/icons/jsx/Atm.jsx +++ b/icons/jsx/Atm.jsx @@ -7,9 +7,13 @@ function SvgAtm(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AttachEmail.jsx b/icons/jsx/AttachEmail.jsx index b5531434f2..612af3eef1 100644 --- a/icons/jsx/AttachEmail.jsx +++ b/icons/jsx/AttachEmail.jsx @@ -7,10 +7,17 @@ function SvgAttachEmail(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AttachFile.jsx b/icons/jsx/AttachFile.jsx index c489974de1..f356b4e945 100644 --- a/icons/jsx/AttachFile.jsx +++ b/icons/jsx/AttachFile.jsx @@ -7,9 +7,13 @@ function SvgAttachFile(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AttachMoney.jsx b/icons/jsx/AttachMoney.jsx index 8ce701d198..3abc794089 100644 --- a/icons/jsx/AttachMoney.jsx +++ b/icons/jsx/AttachMoney.jsx @@ -7,9 +7,13 @@ function SvgAttachMoney(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Attachment.jsx b/icons/jsx/Attachment.jsx index 29dcbe8355..551cade9fb 100644 --- a/icons/jsx/Attachment.jsx +++ b/icons/jsx/Attachment.jsx @@ -7,9 +7,13 @@ function SvgAttachment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Attractions.jsx b/icons/jsx/Attractions.jsx index 3134a3f836..bd5f5e03d5 100644 --- a/icons/jsx/Attractions.jsx +++ b/icons/jsx/Attractions.jsx @@ -7,9 +7,13 @@ function SvgAttractions(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Attribution.jsx b/icons/jsx/Attribution.jsx index 5c2d8c430e..945da613a4 100644 --- a/icons/jsx/Attribution.jsx +++ b/icons/jsx/Attribution.jsx @@ -7,9 +7,13 @@ function SvgAttribution(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/AudioFile.jsx b/icons/jsx/AudioFile.jsx index 45518b5f0d..8819412fb1 100644 --- a/icons/jsx/AudioFile.jsx +++ b/icons/jsx/AudioFile.jsx @@ -7,9 +7,13 @@ function SvgAudioFile(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Audiotrack.jsx b/icons/jsx/Audiotrack.jsx index 09c4fb5bf9..4f6184db44 100644 --- a/icons/jsx/Audiotrack.jsx +++ b/icons/jsx/Audiotrack.jsx @@ -7,9 +7,13 @@ function SvgAudiotrack(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AutoAwesome.jsx b/icons/jsx/AutoAwesome.jsx index e61b255031..82c34cfd35 100644 --- a/icons/jsx/AutoAwesome.jsx +++ b/icons/jsx/AutoAwesome.jsx @@ -7,9 +7,13 @@ function SvgAutoAwesome(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AutoAwesomeMosaic.jsx b/icons/jsx/AutoAwesomeMosaic.jsx index f9322d525b..58cb642bc0 100644 --- a/icons/jsx/AutoAwesomeMosaic.jsx +++ b/icons/jsx/AutoAwesomeMosaic.jsx @@ -7,9 +7,13 @@ function SvgAutoAwesomeMosaic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AutoAwesomeMotion.jsx b/icons/jsx/AutoAwesomeMotion.jsx index 30dc683f2c..dcc0fc7030 100644 --- a/icons/jsx/AutoAwesomeMotion.jsx +++ b/icons/jsx/AutoAwesomeMotion.jsx @@ -7,9 +7,13 @@ function SvgAutoAwesomeMotion(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AutoDelete.jsx b/icons/jsx/AutoDelete.jsx index 2eea01e925..68ab074c1d 100644 --- a/icons/jsx/AutoDelete.jsx +++ b/icons/jsx/AutoDelete.jsx @@ -7,10 +7,14 @@ function SvgAutoDelete(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AutoFixHigh.jsx b/icons/jsx/AutoFixHigh.jsx index d19ac81378..a0a5421f75 100644 --- a/icons/jsx/AutoFixHigh.jsx +++ b/icons/jsx/AutoFixHigh.jsx @@ -7,9 +7,13 @@ function SvgAutoFixHigh(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AutoFixNormal.jsx b/icons/jsx/AutoFixNormal.jsx index 0616ec6dc8..bf250f7489 100644 --- a/icons/jsx/AutoFixNormal.jsx +++ b/icons/jsx/AutoFixNormal.jsx @@ -7,9 +7,13 @@ function SvgAutoFixNormal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AutoFixOff.jsx b/icons/jsx/AutoFixOff.jsx index 705ebb6119..cd0035dc3b 100644 --- a/icons/jsx/AutoFixOff.jsx +++ b/icons/jsx/AutoFixOff.jsx @@ -7,9 +7,13 @@ function SvgAutoFixOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AutoGraph.jsx b/icons/jsx/AutoGraph.jsx index 6fed6e1753..79d17436bf 100644 --- a/icons/jsx/AutoGraph.jsx +++ b/icons/jsx/AutoGraph.jsx @@ -7,9 +7,13 @@ function SvgAutoGraph(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AutoMode.jsx b/icons/jsx/AutoMode.jsx index f08a256bcb..ff47bd8eb2 100644 --- a/icons/jsx/AutoMode.jsx +++ b/icons/jsx/AutoMode.jsx @@ -7,10 +7,17 @@ function SvgAutoMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AutoStories.jsx b/icons/jsx/AutoStories.jsx index ad02384998..ac0594a713 100644 --- a/icons/jsx/AutoStories.jsx +++ b/icons/jsx/AutoStories.jsx @@ -7,10 +7,14 @@ function SvgAutoStories(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/AutofpsSelect.jsx b/icons/jsx/AutofpsSelect.jsx index 0f37490a63..9113e02bcd 100644 --- a/icons/jsx/AutofpsSelect.jsx +++ b/icons/jsx/AutofpsSelect.jsx @@ -7,10 +7,17 @@ function SvgAutofpsSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Autorenew.jsx b/icons/jsx/Autorenew.jsx index 7eaf96736e..426bf34c76 100644 --- a/icons/jsx/Autorenew.jsx +++ b/icons/jsx/Autorenew.jsx @@ -7,9 +7,13 @@ function SvgAutorenew(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/AvTimer.jsx b/icons/jsx/AvTimer.jsx index 18005c6f7a..639337885b 100644 --- a/icons/jsx/AvTimer.jsx +++ b/icons/jsx/AvTimer.jsx @@ -7,9 +7,13 @@ function SvgAvTimer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BabyChangingStation.jsx b/icons/jsx/BabyChangingStation.jsx index 95729713b1..7559cb4876 100644 --- a/icons/jsx/BabyChangingStation.jsx +++ b/icons/jsx/BabyChangingStation.jsx @@ -7,9 +7,13 @@ function SvgBabyChangingStation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BackHand.jsx b/icons/jsx/BackHand.jsx index 0880654803..afe5c354d2 100644 --- a/icons/jsx/BackHand.jsx +++ b/icons/jsx/BackHand.jsx @@ -7,9 +7,13 @@ function SvgBackHand(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Backpack.jsx b/icons/jsx/Backpack.jsx index 36b5783446..346fab30b1 100644 --- a/icons/jsx/Backpack.jsx +++ b/icons/jsx/Backpack.jsx @@ -7,9 +7,13 @@ function SvgBackpack(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Backspace.jsx b/icons/jsx/Backspace.jsx index 0939cec14a..f17d151f9a 100644 --- a/icons/jsx/Backspace.jsx +++ b/icons/jsx/Backspace.jsx @@ -7,9 +7,13 @@ function SvgBackspace(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Backup.jsx b/icons/jsx/Backup.jsx index 1579a0867b..d872ec1895 100644 --- a/icons/jsx/Backup.jsx +++ b/icons/jsx/Backup.jsx @@ -7,9 +7,13 @@ function SvgBackup(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BackupTable.jsx b/icons/jsx/BackupTable.jsx index ba565b726e..bf271ef738 100644 --- a/icons/jsx/BackupTable.jsx +++ b/icons/jsx/BackupTable.jsx @@ -7,10 +7,14 @@ function SvgBackupTable(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Badge.jsx b/icons/jsx/Badge.jsx index dbd46ae8b7..a8dd137caa 100644 --- a/icons/jsx/Badge.jsx +++ b/icons/jsx/Badge.jsx @@ -7,9 +7,13 @@ function SvgBadge(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BakeryDining.jsx b/icons/jsx/BakeryDining.jsx index eef671f433..aa67eb0fc0 100644 --- a/icons/jsx/BakeryDining.jsx +++ b/icons/jsx/BakeryDining.jsx @@ -7,9 +7,13 @@ function SvgBakeryDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Balance.jsx b/icons/jsx/Balance.jsx index f6cef47fba..b0848e0986 100644 --- a/icons/jsx/Balance.jsx +++ b/icons/jsx/Balance.jsx @@ -7,9 +7,13 @@ function SvgBalance(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Balcony.jsx b/icons/jsx/Balcony.jsx index 5cf627a17f..8d9c52b9a5 100644 --- a/icons/jsx/Balcony.jsx +++ b/icons/jsx/Balcony.jsx @@ -7,9 +7,13 @@ function SvgBalcony(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Ballot.jsx b/icons/jsx/Ballot.jsx index f30c297309..5432799736 100644 --- a/icons/jsx/Ballot.jsx +++ b/icons/jsx/Ballot.jsx @@ -7,9 +7,13 @@ function SvgBallot(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BarChart.jsx b/icons/jsx/BarChart.jsx index b98aee3779..989da02b2f 100644 --- a/icons/jsx/BarChart.jsx +++ b/icons/jsx/BarChart.jsx @@ -7,9 +7,13 @@ function SvgBarChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Barcode.jsx b/icons/jsx/Barcode.jsx index c035027d55..f96c42363b 100644 --- a/icons/jsx/Barcode.jsx +++ b/icons/jsx/Barcode.jsx @@ -7,11 +7,13 @@ function SvgBarcode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/BatchPrediction.jsx b/icons/jsx/BatchPrediction.jsx index 5eee695e66..f9f519b301 100644 --- a/icons/jsx/BatchPrediction.jsx +++ b/icons/jsx/BatchPrediction.jsx @@ -7,9 +7,13 @@ function SvgBatchPrediction(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Bathroom.jsx b/icons/jsx/Bathroom.jsx index c4f653795a..5ddd74fd7e 100644 --- a/icons/jsx/Bathroom.jsx +++ b/icons/jsx/Bathroom.jsx @@ -7,9 +7,13 @@ function SvgBathroom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Bathtub.jsx b/icons/jsx/Bathtub.jsx index 3043cabc4e..9f5b3abfcb 100644 --- a/icons/jsx/Bathtub.jsx +++ b/icons/jsx/Bathtub.jsx @@ -7,10 +7,14 @@ function SvgBathtub(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Battery0Bar.jsx b/icons/jsx/Battery0Bar.jsx index 55ac265019..752cba2298 100644 --- a/icons/jsx/Battery0Bar.jsx +++ b/icons/jsx/Battery0Bar.jsx @@ -7,9 +7,10 @@ function SvgBattery0Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Battery1Bar.jsx b/icons/jsx/Battery1Bar.jsx index 38f7e1b831..f934457fbf 100644 --- a/icons/jsx/Battery1Bar.jsx +++ b/icons/jsx/Battery1Bar.jsx @@ -7,9 +7,10 @@ function SvgBattery1Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Battery20.jsx b/icons/jsx/Battery20.jsx index a45c397ffc..bc74cec90a 100644 --- a/icons/jsx/Battery20.jsx +++ b/icons/jsx/Battery20.jsx @@ -7,10 +7,15 @@ function SvgBattery20(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Battery2Bar.jsx b/icons/jsx/Battery2Bar.jsx index 5d332b6316..1afb74c9e6 100644 --- a/icons/jsx/Battery2Bar.jsx +++ b/icons/jsx/Battery2Bar.jsx @@ -7,9 +7,10 @@ function SvgBattery2Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Battery30.jsx b/icons/jsx/Battery30.jsx index bc95043ea9..486b76b632 100644 --- a/icons/jsx/Battery30.jsx +++ b/icons/jsx/Battery30.jsx @@ -7,10 +7,15 @@ function SvgBattery30(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Battery3Bar.jsx b/icons/jsx/Battery3Bar.jsx index d73779bab3..f668fc3ac8 100644 --- a/icons/jsx/Battery3Bar.jsx +++ b/icons/jsx/Battery3Bar.jsx @@ -7,9 +7,10 @@ function SvgBattery3Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Battery4Bar.jsx b/icons/jsx/Battery4Bar.jsx index 2b2037b2f0..8d05afc720 100644 --- a/icons/jsx/Battery4Bar.jsx +++ b/icons/jsx/Battery4Bar.jsx @@ -7,9 +7,10 @@ function SvgBattery4Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Battery50.jsx b/icons/jsx/Battery50.jsx index 0c3cac8f5c..50a3d2c9bd 100644 --- a/icons/jsx/Battery50.jsx +++ b/icons/jsx/Battery50.jsx @@ -7,10 +7,15 @@ function SvgBattery50(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Battery5Bar.jsx b/icons/jsx/Battery5Bar.jsx index 018c5d383e..82064626ee 100644 --- a/icons/jsx/Battery5Bar.jsx +++ b/icons/jsx/Battery5Bar.jsx @@ -7,9 +7,10 @@ function SvgBattery5Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Battery60.jsx b/icons/jsx/Battery60.jsx index 9ae5c26928..50178b2c85 100644 --- a/icons/jsx/Battery60.jsx +++ b/icons/jsx/Battery60.jsx @@ -7,10 +7,15 @@ function SvgBattery60(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Battery6Bar.jsx b/icons/jsx/Battery6Bar.jsx index 93bc09bded..afd09c0484 100644 --- a/icons/jsx/Battery6Bar.jsx +++ b/icons/jsx/Battery6Bar.jsx @@ -7,9 +7,10 @@ function SvgBattery6Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Battery80.jsx b/icons/jsx/Battery80.jsx index dae875efba..a6990ede7f 100644 --- a/icons/jsx/Battery80.jsx +++ b/icons/jsx/Battery80.jsx @@ -7,10 +7,15 @@ function SvgBattery80(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Battery90.jsx b/icons/jsx/Battery90.jsx index 09e6506d55..6deff80c42 100644 --- a/icons/jsx/Battery90.jsx +++ b/icons/jsx/Battery90.jsx @@ -7,10 +7,15 @@ function SvgBattery90(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/BatteryAlert.jsx b/icons/jsx/BatteryAlert.jsx index 08cd95c595..94c881b114 100644 --- a/icons/jsx/BatteryAlert.jsx +++ b/icons/jsx/BatteryAlert.jsx @@ -7,9 +7,13 @@ function SvgBatteryAlert(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BatteryCharging20.jsx b/icons/jsx/BatteryCharging20.jsx index 6a4d5a4a7f..1e4c3143e6 100644 --- a/icons/jsx/BatteryCharging20.jsx +++ b/icons/jsx/BatteryCharging20.jsx @@ -7,12 +7,14 @@ function SvgBatteryCharging20(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/BatteryCharging30.jsx b/icons/jsx/BatteryCharging30.jsx index 07d0377c5a..c08d6b838e 100644 --- a/icons/jsx/BatteryCharging30.jsx +++ b/icons/jsx/BatteryCharging30.jsx @@ -7,13 +7,15 @@ function SvgBatteryCharging30(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BatteryCharging50.jsx b/icons/jsx/BatteryCharging50.jsx index 01ac313d7c..bd12d7b3d4 100644 --- a/icons/jsx/BatteryCharging50.jsx +++ b/icons/jsx/BatteryCharging50.jsx @@ -7,12 +7,17 @@ function SvgBatteryCharging50(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/BatteryCharging60.jsx b/icons/jsx/BatteryCharging60.jsx index 3c4a179097..da061ab79d 100644 --- a/icons/jsx/BatteryCharging60.jsx +++ b/icons/jsx/BatteryCharging60.jsx @@ -7,10 +7,18 @@ function SvgBatteryCharging60(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/BatteryCharging80.jsx b/icons/jsx/BatteryCharging80.jsx index db2f803217..189f7f4120 100644 --- a/icons/jsx/BatteryCharging80.jsx +++ b/icons/jsx/BatteryCharging80.jsx @@ -7,10 +7,18 @@ function SvgBatteryCharging80(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/BatteryCharging90.jsx b/icons/jsx/BatteryCharging90.jsx index ba0e44d8e6..104ece5f75 100644 --- a/icons/jsx/BatteryCharging90.jsx +++ b/icons/jsx/BatteryCharging90.jsx @@ -7,10 +7,18 @@ function SvgBatteryCharging90(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/BatteryChargingFull.jsx b/icons/jsx/BatteryChargingFull.jsx index b3f9319323..773d64dfbb 100644 --- a/icons/jsx/BatteryChargingFull.jsx +++ b/icons/jsx/BatteryChargingFull.jsx @@ -7,9 +7,13 @@ function SvgBatteryChargingFull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BatteryFull.jsx b/icons/jsx/BatteryFull.jsx index df22ca7fd6..ad833af63d 100644 --- a/icons/jsx/BatteryFull.jsx +++ b/icons/jsx/BatteryFull.jsx @@ -7,9 +7,10 @@ function SvgBatteryFull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BatterySaver.jsx b/icons/jsx/BatterySaver.jsx index 5a85e73948..947332f8a4 100644 --- a/icons/jsx/BatterySaver.jsx +++ b/icons/jsx/BatterySaver.jsx @@ -7,9 +7,13 @@ function SvgBatterySaver(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BatteryStd.jsx b/icons/jsx/BatteryStd.jsx index 8217d665f5..0003149d62 100644 --- a/icons/jsx/BatteryStd.jsx +++ b/icons/jsx/BatteryStd.jsx @@ -7,9 +7,10 @@ function SvgBatteryStd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BatteryUnknown.jsx b/icons/jsx/BatteryUnknown.jsx index 093c3cb3aa..34e0ec0c7c 100644 --- a/icons/jsx/BatteryUnknown.jsx +++ b/icons/jsx/BatteryUnknown.jsx @@ -7,9 +7,13 @@ function SvgBatteryUnknown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Bbb.jsx b/icons/jsx/Bbb.jsx index 360fdd7ab3..186b06d98b 100644 --- a/icons/jsx/Bbb.jsx +++ b/icons/jsx/Bbb.jsx @@ -11,7 +11,7 @@ function SvgBbb(props) { fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/Bed.jsx b/icons/jsx/Bed.jsx index f3e50bade4..709b1dea0e 100644 --- a/icons/jsx/Bed.jsx +++ b/icons/jsx/Bed.jsx @@ -7,9 +7,13 @@ function SvgBed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BedroomBaby.jsx b/icons/jsx/BedroomBaby.jsx index 8e4d14b746..ebb4aedbf6 100644 --- a/icons/jsx/BedroomBaby.jsx +++ b/icons/jsx/BedroomBaby.jsx @@ -7,10 +7,17 @@ function SvgBedroomBaby(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/BedroomChild.jsx b/icons/jsx/BedroomChild.jsx index 0f8c8d8d7e..e681c7d80b 100644 --- a/icons/jsx/BedroomChild.jsx +++ b/icons/jsx/BedroomChild.jsx @@ -7,10 +7,14 @@ function SvgBedroomChild(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/BedroomParent.jsx b/icons/jsx/BedroomParent.jsx index 9e5d5e7ad7..49163c9a38 100644 --- a/icons/jsx/BedroomParent.jsx +++ b/icons/jsx/BedroomParent.jsx @@ -7,10 +7,17 @@ function SvgBedroomParent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Bedtime.jsx b/icons/jsx/Bedtime.jsx index 0028950b13..f3d004dea3 100644 --- a/icons/jsx/Bedtime.jsx +++ b/icons/jsx/Bedtime.jsx @@ -7,9 +7,13 @@ function SvgBedtime(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BedtimeOff.jsx b/icons/jsx/BedtimeOff.jsx index d38858f672..621fb9a6f2 100644 --- a/icons/jsx/BedtimeOff.jsx +++ b/icons/jsx/BedtimeOff.jsx @@ -7,9 +7,13 @@ function SvgBedtimeOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Beenhere.jsx b/icons/jsx/Beenhere.jsx index 35619940ba..d0f7e00186 100644 --- a/icons/jsx/Beenhere.jsx +++ b/icons/jsx/Beenhere.jsx @@ -7,9 +7,13 @@ function SvgBeenhere(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Bento.jsx b/icons/jsx/Bento.jsx index 887d3bdda0..566ff8995b 100644 --- a/icons/jsx/Bento.jsx +++ b/icons/jsx/Bento.jsx @@ -7,9 +7,13 @@ function SvgBento(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BikeScooter.jsx b/icons/jsx/BikeScooter.jsx index 8d48369e1f..1234c289c0 100644 --- a/icons/jsx/BikeScooter.jsx +++ b/icons/jsx/BikeScooter.jsx @@ -7,10 +7,17 @@ function SvgBikeScooter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Biotech.jsx b/icons/jsx/Biotech.jsx index 1a59cdc938..685c55972c 100644 --- a/icons/jsx/Biotech.jsx +++ b/icons/jsx/Biotech.jsx @@ -7,10 +7,17 @@ function SvgBiotech(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); diff --git a/icons/jsx/Blender.jsx b/icons/jsx/Blender.jsx index 64fda0d433..eeb410e6e6 100644 --- a/icons/jsx/Blender.jsx +++ b/icons/jsx/Blender.jsx @@ -7,9 +7,13 @@ function SvgBlender(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Blind.jsx b/icons/jsx/Blind.jsx index e7226c9b3c..1e96ab2a57 100644 --- a/icons/jsx/Blind.jsx +++ b/icons/jsx/Blind.jsx @@ -7,10 +7,14 @@ function SvgBlind(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Blinds.jsx b/icons/jsx/Blinds.jsx index 2770f50725..5bd247a865 100644 --- a/icons/jsx/Blinds.jsx +++ b/icons/jsx/Blinds.jsx @@ -7,9 +7,13 @@ function SvgBlinds(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BlindsClosed.jsx b/icons/jsx/BlindsClosed.jsx index ce8802d652..00f6fb342b 100644 --- a/icons/jsx/BlindsClosed.jsx +++ b/icons/jsx/BlindsClosed.jsx @@ -7,9 +7,13 @@ function SvgBlindsClosed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Block.jsx b/icons/jsx/Block.jsx index 0a33c55072..51f3af38a4 100644 --- a/icons/jsx/Block.jsx +++ b/icons/jsx/Block.jsx @@ -7,9 +7,13 @@ function SvgBlock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Bloodtype.jsx b/icons/jsx/Bloodtype.jsx index 1dc4579edb..82fee41cd6 100644 --- a/icons/jsx/Bloodtype.jsx +++ b/icons/jsx/Bloodtype.jsx @@ -7,9 +7,13 @@ function SvgBloodtype(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Bluetooth.jsx b/icons/jsx/Bluetooth.jsx index 55e6bee2ba..1490a602a2 100644 --- a/icons/jsx/Bluetooth.jsx +++ b/icons/jsx/Bluetooth.jsx @@ -7,9 +7,13 @@ function SvgBluetooth(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BluetoothAudio.jsx b/icons/jsx/BluetoothAudio.jsx index d270568636..6add2d012f 100644 --- a/icons/jsx/BluetoothAudio.jsx +++ b/icons/jsx/BluetoothAudio.jsx @@ -7,9 +7,13 @@ function SvgBluetoothAudio(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BluetoothConnected.jsx b/icons/jsx/BluetoothConnected.jsx index 1f6dfebb46..9209aeacdb 100644 --- a/icons/jsx/BluetoothConnected.jsx +++ b/icons/jsx/BluetoothConnected.jsx @@ -7,9 +7,13 @@ function SvgBluetoothConnected(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BluetoothDisabled.jsx b/icons/jsx/BluetoothDisabled.jsx index 344b606e54..9800df3e0c 100644 --- a/icons/jsx/BluetoothDisabled.jsx +++ b/icons/jsx/BluetoothDisabled.jsx @@ -7,9 +7,13 @@ function SvgBluetoothDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BluetoothDrive.jsx b/icons/jsx/BluetoothDrive.jsx index a98d6a79b2..918aa039c2 100644 --- a/icons/jsx/BluetoothDrive.jsx +++ b/icons/jsx/BluetoothDrive.jsx @@ -7,10 +7,17 @@ function SvgBluetoothDrive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/BluetoothSearching.jsx b/icons/jsx/BluetoothSearching.jsx index 77a6e8583d..399a8961fd 100644 --- a/icons/jsx/BluetoothSearching.jsx +++ b/icons/jsx/BluetoothSearching.jsx @@ -7,9 +7,13 @@ function SvgBluetoothSearching(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BlurCircular.jsx b/icons/jsx/BlurCircular.jsx index d79d7247f7..5e112fdbbe 100644 --- a/icons/jsx/BlurCircular.jsx +++ b/icons/jsx/BlurCircular.jsx @@ -7,9 +7,13 @@ function SvgBlurCircular(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BlurLinear.jsx b/icons/jsx/BlurLinear.jsx index d6fea7ef4b..781db591b4 100644 --- a/icons/jsx/BlurLinear.jsx +++ b/icons/jsx/BlurLinear.jsx @@ -7,9 +7,13 @@ function SvgBlurLinear(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BlurOff.jsx b/icons/jsx/BlurOff.jsx index 6f141e56ef..4ca3d829fa 100644 --- a/icons/jsx/BlurOff.jsx +++ b/icons/jsx/BlurOff.jsx @@ -7,21 +7,37 @@ function SvgBlurOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + - + - + - + ); } diff --git a/icons/jsx/BlurOn.jsx b/icons/jsx/BlurOn.jsx index 4c5fde7f47..090c3fa7cd 100644 --- a/icons/jsx/BlurOn.jsx +++ b/icons/jsx/BlurOn.jsx @@ -7,9 +7,13 @@ function SvgBlurOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Bolt.jsx b/icons/jsx/Bolt.jsx index 503c5ada46..2908822788 100644 --- a/icons/jsx/Bolt.jsx +++ b/icons/jsx/Bolt.jsx @@ -7,9 +7,13 @@ function SvgBolt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Book.jsx b/icons/jsx/Book.jsx index 2772e51eb9..7034a786d7 100644 --- a/icons/jsx/Book.jsx +++ b/icons/jsx/Book.jsx @@ -7,9 +7,10 @@ function SvgBook(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BookOnline.jsx b/icons/jsx/BookOnline.jsx index f98c64424b..df1017d834 100644 --- a/icons/jsx/BookOnline.jsx +++ b/icons/jsx/BookOnline.jsx @@ -7,9 +7,13 @@ function SvgBookOnline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BookmarkAdd.jsx b/icons/jsx/BookmarkAdd.jsx index b954a3d1ce..2d1d668e6f 100644 --- a/icons/jsx/BookmarkAdd.jsx +++ b/icons/jsx/BookmarkAdd.jsx @@ -7,9 +7,13 @@ function SvgBookmarkAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BookmarkAdded.jsx b/icons/jsx/BookmarkAdded.jsx index 26733fde63..e19c079fff 100644 --- a/icons/jsx/BookmarkAdded.jsx +++ b/icons/jsx/BookmarkAdded.jsx @@ -7,9 +7,13 @@ function SvgBookmarkAdded(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BookmarkBorder.jsx b/icons/jsx/BookmarkBorder.jsx index b4486b6c3a..eedf0275cb 100644 --- a/icons/jsx/BookmarkBorder.jsx +++ b/icons/jsx/BookmarkBorder.jsx @@ -7,9 +7,13 @@ function SvgBookmarkBorder(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BookmarkRemove.jsx b/icons/jsx/BookmarkRemove.jsx index 271b671a72..d3ba108143 100644 --- a/icons/jsx/BookmarkRemove.jsx +++ b/icons/jsx/BookmarkRemove.jsx @@ -7,9 +7,13 @@ function SvgBookmarkRemove(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Bookmarks.jsx b/icons/jsx/Bookmarks.jsx index e24bef8973..2dd3557518 100644 --- a/icons/jsx/Bookmarks.jsx +++ b/icons/jsx/Bookmarks.jsx @@ -7,9 +7,13 @@ function SvgBookmarks(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderAll.jsx b/icons/jsx/BorderAll.jsx index e7b1035d60..b63a88dd3e 100644 --- a/icons/jsx/BorderAll.jsx +++ b/icons/jsx/BorderAll.jsx @@ -7,9 +7,13 @@ function SvgBorderAll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderBottom.jsx b/icons/jsx/BorderBottom.jsx index f54767ae61..452795d07e 100644 --- a/icons/jsx/BorderBottom.jsx +++ b/icons/jsx/BorderBottom.jsx @@ -7,9 +7,13 @@ function SvgBorderBottom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderClear.jsx b/icons/jsx/BorderClear.jsx index 4af11d03b1..35553a18ba 100644 --- a/icons/jsx/BorderClear.jsx +++ b/icons/jsx/BorderClear.jsx @@ -7,9 +7,13 @@ function SvgBorderClear(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderColor.jsx b/icons/jsx/BorderColor.jsx index b556e95226..c459e481c4 100644 --- a/icons/jsx/BorderColor.jsx +++ b/icons/jsx/BorderColor.jsx @@ -7,9 +7,13 @@ function SvgBorderColor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderHorizontal.jsx b/icons/jsx/BorderHorizontal.jsx index e311569335..34b0b58201 100644 --- a/icons/jsx/BorderHorizontal.jsx +++ b/icons/jsx/BorderHorizontal.jsx @@ -7,9 +7,13 @@ function SvgBorderHorizontal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderInner.jsx b/icons/jsx/BorderInner.jsx index 384e65c471..6e6cd5590c 100644 --- a/icons/jsx/BorderInner.jsx +++ b/icons/jsx/BorderInner.jsx @@ -7,9 +7,13 @@ function SvgBorderInner(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderLeft.jsx b/icons/jsx/BorderLeft.jsx index 99f210a2bf..f35e0285be 100644 --- a/icons/jsx/BorderLeft.jsx +++ b/icons/jsx/BorderLeft.jsx @@ -7,9 +7,13 @@ function SvgBorderLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderOuter.jsx b/icons/jsx/BorderOuter.jsx index e5552b3796..bc176ca2b2 100644 --- a/icons/jsx/BorderOuter.jsx +++ b/icons/jsx/BorderOuter.jsx @@ -7,9 +7,13 @@ function SvgBorderOuter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderRight.jsx b/icons/jsx/BorderRight.jsx index 635d3e53ce..a6f08a35a3 100644 --- a/icons/jsx/BorderRight.jsx +++ b/icons/jsx/BorderRight.jsx @@ -7,9 +7,13 @@ function SvgBorderRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderStyle.jsx b/icons/jsx/BorderStyle.jsx index 1b36a9e5cb..a42349c291 100644 --- a/icons/jsx/BorderStyle.jsx +++ b/icons/jsx/BorderStyle.jsx @@ -7,9 +7,13 @@ function SvgBorderStyle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderTop.jsx b/icons/jsx/BorderTop.jsx index 2a9cbc44e6..e16e3638dc 100644 --- a/icons/jsx/BorderTop.jsx +++ b/icons/jsx/BorderTop.jsx @@ -7,9 +7,13 @@ function SvgBorderTop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BorderVertical.jsx b/icons/jsx/BorderVertical.jsx index 13a80c62f5..48a03f323e 100644 --- a/icons/jsx/BorderVertical.jsx +++ b/icons/jsx/BorderVertical.jsx @@ -7,9 +7,13 @@ function SvgBorderVertical(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Boy.jsx b/icons/jsx/Boy.jsx index 2346a772c0..9e587f5f69 100644 --- a/icons/jsx/Boy.jsx +++ b/icons/jsx/Boy.jsx @@ -7,9 +7,13 @@ function SvgBoy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BrandingWatermark.jsx b/icons/jsx/BrandingWatermark.jsx index 81e22062a1..fcb6191b5f 100644 --- a/icons/jsx/BrandingWatermark.jsx +++ b/icons/jsx/BrandingWatermark.jsx @@ -7,9 +7,10 @@ function SvgBrandingWatermark(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BreakfastDining.jsx b/icons/jsx/BreakfastDining.jsx index 697276745f..9cb58a3a09 100644 --- a/icons/jsx/BreakfastDining.jsx +++ b/icons/jsx/BreakfastDining.jsx @@ -7,9 +7,13 @@ function SvgBreakfastDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Brightness1.jsx b/icons/jsx/Brightness1.jsx index 9a840ae8a0..588e142193 100644 --- a/icons/jsx/Brightness1.jsx +++ b/icons/jsx/Brightness1.jsx @@ -7,6 +7,7 @@ function SvgBrightness1(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > diff --git a/icons/jsx/Brightness2.jsx b/icons/jsx/Brightness2.jsx index e30cd452ab..0853b0b29c 100644 --- a/icons/jsx/Brightness2.jsx +++ b/icons/jsx/Brightness2.jsx @@ -7,9 +7,13 @@ function SvgBrightness2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Brightness3.jsx b/icons/jsx/Brightness3.jsx index 8ae3cc380f..56b189d25c 100644 --- a/icons/jsx/Brightness3.jsx +++ b/icons/jsx/Brightness3.jsx @@ -7,9 +7,13 @@ function SvgBrightness3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Brightness4.jsx b/icons/jsx/Brightness4.jsx index 5988403996..4ec9851b56 100644 --- a/icons/jsx/Brightness4.jsx +++ b/icons/jsx/Brightness4.jsx @@ -7,9 +7,13 @@ function SvgBrightness4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Brightness5.jsx b/icons/jsx/Brightness5.jsx index 6a17499dc9..b167255d32 100644 --- a/icons/jsx/Brightness5.jsx +++ b/icons/jsx/Brightness5.jsx @@ -7,9 +7,13 @@ function SvgBrightness5(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Brightness6.jsx b/icons/jsx/Brightness6.jsx index dfe67f9377..79ae6593ac 100644 --- a/icons/jsx/Brightness6.jsx +++ b/icons/jsx/Brightness6.jsx @@ -7,9 +7,13 @@ function SvgBrightness6(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Brightness7.jsx b/icons/jsx/Brightness7.jsx index 279961b63b..3d515c7c30 100644 --- a/icons/jsx/Brightness7.jsx +++ b/icons/jsx/Brightness7.jsx @@ -7,9 +7,13 @@ function SvgBrightness7(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BrightnessAuto.jsx b/icons/jsx/BrightnessAuto.jsx index ba0f241885..b0b38b7d67 100644 --- a/icons/jsx/BrightnessAuto.jsx +++ b/icons/jsx/BrightnessAuto.jsx @@ -7,9 +7,13 @@ function SvgBrightnessAuto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BrightnessHigh.jsx b/icons/jsx/BrightnessHigh.jsx index 94af34ea5a..e9f87e4258 100644 --- a/icons/jsx/BrightnessHigh.jsx +++ b/icons/jsx/BrightnessHigh.jsx @@ -7,9 +7,13 @@ function SvgBrightnessHigh(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BrightnessLow.jsx b/icons/jsx/BrightnessLow.jsx index 41fa307c4d..ce1014d3a6 100644 --- a/icons/jsx/BrightnessLow.jsx +++ b/icons/jsx/BrightnessLow.jsx @@ -7,9 +7,13 @@ function SvgBrightnessLow(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BrightnessMedium.jsx b/icons/jsx/BrightnessMedium.jsx index 8ddde89b6d..2600b8fbbc 100644 --- a/icons/jsx/BrightnessMedium.jsx +++ b/icons/jsx/BrightnessMedium.jsx @@ -7,9 +7,13 @@ function SvgBrightnessMedium(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BroadcastOnHome.jsx b/icons/jsx/BroadcastOnHome.jsx index 61481145e8..dc1eaeed60 100644 --- a/icons/jsx/BroadcastOnHome.jsx +++ b/icons/jsx/BroadcastOnHome.jsx @@ -7,11 +7,21 @@ function SvgBroadcastOnHome(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/BroadcastOnPersonal.jsx b/icons/jsx/BroadcastOnPersonal.jsx index ee24ddf53d..0365107fbb 100644 --- a/icons/jsx/BroadcastOnPersonal.jsx +++ b/icons/jsx/BroadcastOnPersonal.jsx @@ -7,11 +7,21 @@ function SvgBroadcastOnPersonal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/BrokenImage.jsx b/icons/jsx/BrokenImage.jsx index 9eb26ac343..f21b127d40 100644 --- a/icons/jsx/BrokenImage.jsx +++ b/icons/jsx/BrokenImage.jsx @@ -7,9 +7,13 @@ function SvgBrokenImage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BrowseGallery.jsx b/icons/jsx/BrowseGallery.jsx index 774d656a5d..b99c5ca110 100644 --- a/icons/jsx/BrowseGallery.jsx +++ b/icons/jsx/BrowseGallery.jsx @@ -7,10 +7,17 @@ function SvgBrowseGallery(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/BrowserNotSupported.jsx b/icons/jsx/BrowserNotSupported.jsx index b0100eb129..2cd90d374e 100644 --- a/icons/jsx/BrowserNotSupported.jsx +++ b/icons/jsx/BrowserNotSupported.jsx @@ -7,9 +7,13 @@ function SvgBrowserNotSupported(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BrowserUpdated.jsx b/icons/jsx/BrowserUpdated.jsx index 5a54b21da5..4cf0601502 100644 --- a/icons/jsx/BrowserUpdated.jsx +++ b/icons/jsx/BrowserUpdated.jsx @@ -7,9 +7,13 @@ function SvgBrowserUpdated(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BrunchDining.jsx b/icons/jsx/BrunchDining.jsx index b051d1d725..078c327597 100644 --- a/icons/jsx/BrunchDining.jsx +++ b/icons/jsx/BrunchDining.jsx @@ -7,9 +7,13 @@ function SvgBrunchDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Brush.jsx b/icons/jsx/Brush.jsx index 4532815a79..508a4581d7 100644 --- a/icons/jsx/Brush.jsx +++ b/icons/jsx/Brush.jsx @@ -7,9 +7,13 @@ function SvgBrush(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BubbleChart.jsx b/icons/jsx/BubbleChart.jsx index e41426575f..feaa068c48 100644 --- a/icons/jsx/BubbleChart.jsx +++ b/icons/jsx/BubbleChart.jsx @@ -7,6 +7,7 @@ function SvgBubbleChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > diff --git a/icons/jsx/BugReport.jsx b/icons/jsx/BugReport.jsx index 482a247ca2..4d8b45930f 100644 --- a/icons/jsx/BugReport.jsx +++ b/icons/jsx/BugReport.jsx @@ -7,9 +7,13 @@ function SvgBugReport(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Build.jsx b/icons/jsx/Build.jsx index 91e618133c..6045fbd9b2 100644 --- a/icons/jsx/Build.jsx +++ b/icons/jsx/Build.jsx @@ -7,9 +7,13 @@ function SvgBuild(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BuildCircle.jsx b/icons/jsx/BuildCircle.jsx index 95472f2361..a4811eaf95 100644 --- a/icons/jsx/BuildCircle.jsx +++ b/icons/jsx/BuildCircle.jsx @@ -7,11 +7,13 @@ function SvgBuildCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/Bungalow.jsx b/icons/jsx/Bungalow.jsx index bc17b60a32..28b2172e6f 100644 --- a/icons/jsx/Bungalow.jsx +++ b/icons/jsx/Bungalow.jsx @@ -7,9 +7,13 @@ function SvgBungalow(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BurstMode.jsx b/icons/jsx/BurstMode.jsx index 752b530318..c16ea7f60a 100644 --- a/icons/jsx/BurstMode.jsx +++ b/icons/jsx/BurstMode.jsx @@ -7,9 +7,13 @@ function SvgBurstMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BusAlert.jsx b/icons/jsx/BusAlert.jsx index d2cdc4cec3..8aaf54f98a 100644 --- a/icons/jsx/BusAlert.jsx +++ b/icons/jsx/BusAlert.jsx @@ -7,10 +7,17 @@ function SvgBusAlert(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Business.jsx b/icons/jsx/Business.jsx index c6a7658c95..1ebf010822 100644 --- a/icons/jsx/Business.jsx +++ b/icons/jsx/Business.jsx @@ -7,9 +7,13 @@ function SvgBusiness(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/BusinessCenter.jsx b/icons/jsx/BusinessCenter.jsx index 3a4b4b977c..9cd62de7a7 100644 --- a/icons/jsx/BusinessCenter.jsx +++ b/icons/jsx/BusinessCenter.jsx @@ -7,9 +7,13 @@ function SvgBusinessCenter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cabin.jsx b/icons/jsx/Cabin.jsx index f300b0979c..99d2d3af98 100644 --- a/icons/jsx/Cabin.jsx +++ b/icons/jsx/Cabin.jsx @@ -7,9 +7,13 @@ function SvgCabin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cable.jsx b/icons/jsx/Cable.jsx index 1202343475..b1ec3e4e64 100644 --- a/icons/jsx/Cable.jsx +++ b/icons/jsx/Cable.jsx @@ -7,9 +7,13 @@ function SvgCable(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cached.jsx b/icons/jsx/Cached.jsx index a5ee84bb44..7f05a45506 100644 --- a/icons/jsx/Cached.jsx +++ b/icons/jsx/Cached.jsx @@ -7,9 +7,13 @@ function SvgCached(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cake.jsx b/icons/jsx/Cake.jsx index ca396ad3be..1842f3f9be 100644 --- a/icons/jsx/Cake.jsx +++ b/icons/jsx/Cake.jsx @@ -7,9 +7,13 @@ function SvgCake(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Calculate.jsx b/icons/jsx/Calculate.jsx index 4c6d95c328..f6c46f9378 100644 --- a/icons/jsx/Calculate.jsx +++ b/icons/jsx/Calculate.jsx @@ -7,9 +7,13 @@ function SvgCalculate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CalendarMonth.jsx b/icons/jsx/CalendarMonth.jsx index f13fa3eb54..76a1cf2874 100644 --- a/icons/jsx/CalendarMonth.jsx +++ b/icons/jsx/CalendarMonth.jsx @@ -7,9 +7,13 @@ function SvgCalendarMonth(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CalendarToday.jsx b/icons/jsx/CalendarToday.jsx index e28383d8c6..c68e85dad0 100644 --- a/icons/jsx/CalendarToday.jsx +++ b/icons/jsx/CalendarToday.jsx @@ -7,9 +7,13 @@ function SvgCalendarToday(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CalendarViewDay.jsx b/icons/jsx/CalendarViewDay.jsx index 60241ea6c7..81fd1163fa 100644 --- a/icons/jsx/CalendarViewDay.jsx +++ b/icons/jsx/CalendarViewDay.jsx @@ -7,9 +7,13 @@ function SvgCalendarViewDay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CalendarViewMonth.jsx b/icons/jsx/CalendarViewMonth.jsx index 6c57278373..c18244abbb 100644 --- a/icons/jsx/CalendarViewMonth.jsx +++ b/icons/jsx/CalendarViewMonth.jsx @@ -7,9 +7,13 @@ function SvgCalendarViewMonth(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CalendarViewWeek.jsx b/icons/jsx/CalendarViewWeek.jsx index 183d2d8f81..64c28b0523 100644 --- a/icons/jsx/CalendarViewWeek.jsx +++ b/icons/jsx/CalendarViewWeek.jsx @@ -7,9 +7,13 @@ function SvgCalendarViewWeek(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Call.jsx b/icons/jsx/Call.jsx index 9dc8338ea0..720aa3ba09 100644 --- a/icons/jsx/Call.jsx +++ b/icons/jsx/Call.jsx @@ -7,9 +7,13 @@ function SvgCall(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CallEnd.jsx b/icons/jsx/CallEnd.jsx index 17d878c620..f46e219634 100644 --- a/icons/jsx/CallEnd.jsx +++ b/icons/jsx/CallEnd.jsx @@ -7,9 +7,13 @@ function SvgCallEnd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CallMade.jsx b/icons/jsx/CallMade.jsx index 975cf50267..04d0a3e336 100644 --- a/icons/jsx/CallMade.jsx +++ b/icons/jsx/CallMade.jsx @@ -7,9 +7,13 @@ function SvgCallMade(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CallMerge.jsx b/icons/jsx/CallMerge.jsx index da90607530..3170cfb8a2 100644 --- a/icons/jsx/CallMerge.jsx +++ b/icons/jsx/CallMerge.jsx @@ -7,9 +7,13 @@ function SvgCallMerge(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CallMissed.jsx b/icons/jsx/CallMissed.jsx index 175f549050..04f8428de9 100644 --- a/icons/jsx/CallMissed.jsx +++ b/icons/jsx/CallMissed.jsx @@ -7,9 +7,13 @@ function SvgCallMissed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CallMissedOutgoing.jsx b/icons/jsx/CallMissedOutgoing.jsx index c21431853f..151b40937a 100644 --- a/icons/jsx/CallMissedOutgoing.jsx +++ b/icons/jsx/CallMissedOutgoing.jsx @@ -7,9 +7,13 @@ function SvgCallMissedOutgoing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CallReceived.jsx b/icons/jsx/CallReceived.jsx index 0dddcd2fd0..48c7c9f8e8 100644 --- a/icons/jsx/CallReceived.jsx +++ b/icons/jsx/CallReceived.jsx @@ -7,9 +7,13 @@ function SvgCallReceived(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CallSplit.jsx b/icons/jsx/CallSplit.jsx index f30072df5f..2ebfbe4cfd 100644 --- a/icons/jsx/CallSplit.jsx +++ b/icons/jsx/CallSplit.jsx @@ -7,9 +7,13 @@ function SvgCallSplit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CallToAction.jsx b/icons/jsx/CallToAction.jsx index 4c033d5e51..89b4800c30 100644 --- a/icons/jsx/CallToAction.jsx +++ b/icons/jsx/CallToAction.jsx @@ -7,9 +7,10 @@ function SvgCallToAction(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Camera.jsx b/icons/jsx/Camera.jsx index 9648ee7948..f817a52386 100644 --- a/icons/jsx/Camera.jsx +++ b/icons/jsx/Camera.jsx @@ -7,9 +7,13 @@ function SvgCamera(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CameraAlt.jsx b/icons/jsx/CameraAlt.jsx index 57d2401aed..c68480d87d 100644 --- a/icons/jsx/CameraAlt.jsx +++ b/icons/jsx/CameraAlt.jsx @@ -7,10 +7,14 @@ function SvgCameraAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CameraEnhance.jsx b/icons/jsx/CameraEnhance.jsx index 5d9ba6175a..7cfc08764c 100644 --- a/icons/jsx/CameraEnhance.jsx +++ b/icons/jsx/CameraEnhance.jsx @@ -7,9 +7,13 @@ function SvgCameraEnhance(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CameraFront.jsx b/icons/jsx/CameraFront.jsx index 953034b7db..2dce5e44a6 100644 --- a/icons/jsx/CameraFront.jsx +++ b/icons/jsx/CameraFront.jsx @@ -7,9 +7,13 @@ function SvgCameraFront(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CameraIndoor.jsx b/icons/jsx/CameraIndoor.jsx index eac751dd0c..5dec32efa6 100644 --- a/icons/jsx/CameraIndoor.jsx +++ b/icons/jsx/CameraIndoor.jsx @@ -7,9 +7,13 @@ function SvgCameraIndoor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CameraOutdoor.jsx b/icons/jsx/CameraOutdoor.jsx index fd4a4dfa81..de4e4673a8 100644 --- a/icons/jsx/CameraOutdoor.jsx +++ b/icons/jsx/CameraOutdoor.jsx @@ -7,9 +7,13 @@ function SvgCameraOutdoor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CameraRear.jsx b/icons/jsx/CameraRear.jsx index 3930344c59..7a1906d452 100644 --- a/icons/jsx/CameraRear.jsx +++ b/icons/jsx/CameraRear.jsx @@ -7,9 +7,13 @@ function SvgCameraRear(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CameraRoll.jsx b/icons/jsx/CameraRoll.jsx index e056963a10..b71bd92601 100644 --- a/icons/jsx/CameraRoll.jsx +++ b/icons/jsx/CameraRoll.jsx @@ -7,9 +7,13 @@ function SvgCameraRoll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cameraswitch.jsx b/icons/jsx/Cameraswitch.jsx index 0d635ce637..08c2ac027b 100644 --- a/icons/jsx/Cameraswitch.jsx +++ b/icons/jsx/Cameraswitch.jsx @@ -7,10 +7,17 @@ function SvgCameraswitch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Campaign.jsx b/icons/jsx/Campaign.jsx index 153d7a5ecf..0354f8b949 100644 --- a/icons/jsx/Campaign.jsx +++ b/icons/jsx/Campaign.jsx @@ -7,9 +7,13 @@ function SvgCampaign(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CancelPresentation.jsx b/icons/jsx/CancelPresentation.jsx index aa16b2040f..452c820cbd 100644 --- a/icons/jsx/CancelPresentation.jsx +++ b/icons/jsx/CancelPresentation.jsx @@ -7,9 +7,13 @@ function SvgCancelPresentation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CancelScheduleSend.jsx b/icons/jsx/CancelScheduleSend.jsx index 832d1ad1d3..b1412beeb0 100644 --- a/icons/jsx/CancelScheduleSend.jsx +++ b/icons/jsx/CancelScheduleSend.jsx @@ -7,10 +7,17 @@ function SvgCancelScheduleSend(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/CandlestickChart.jsx b/icons/jsx/CandlestickChart.jsx index 6c044a8118..a647c9cdd5 100644 --- a/icons/jsx/CandlestickChart.jsx +++ b/icons/jsx/CandlestickChart.jsx @@ -7,9 +7,13 @@ function SvgCandlestickChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CarCrash.jsx b/icons/jsx/CarCrash.jsx index f8adf6a327..386aa872ea 100644 --- a/icons/jsx/CarCrash.jsx +++ b/icons/jsx/CarCrash.jsx @@ -7,9 +7,13 @@ function SvgCarCrash(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CarRental.jsx b/icons/jsx/CarRental.jsx index 44e26dd57a..23d0852c1f 100644 --- a/icons/jsx/CarRental.jsx +++ b/icons/jsx/CarRental.jsx @@ -7,9 +7,13 @@ function SvgCarRental(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CarRepair.jsx b/icons/jsx/CarRepair.jsx index eec5ab200a..09126cd8af 100644 --- a/icons/jsx/CarRepair.jsx +++ b/icons/jsx/CarRepair.jsx @@ -7,9 +7,13 @@ function SvgCarRepair(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CardGiftcard.jsx b/icons/jsx/CardGiftcard.jsx index d8fb60fe1f..4536793115 100644 --- a/icons/jsx/CardGiftcard.jsx +++ b/icons/jsx/CardGiftcard.jsx @@ -7,9 +7,13 @@ function SvgCardGiftcard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CardMembership.jsx b/icons/jsx/CardMembership.jsx index afd3123eab..3761fc232c 100644 --- a/icons/jsx/CardMembership.jsx +++ b/icons/jsx/CardMembership.jsx @@ -7,9 +7,13 @@ function SvgCardMembership(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CardTravel.jsx b/icons/jsx/CardTravel.jsx index 11ae6b1248..67bc5b5ab0 100644 --- a/icons/jsx/CardTravel.jsx +++ b/icons/jsx/CardTravel.jsx @@ -7,9 +7,13 @@ function SvgCardTravel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Carpenter.jsx b/icons/jsx/Carpenter.jsx index 9fab0522a2..0f7ec4afb4 100644 --- a/icons/jsx/Carpenter.jsx +++ b/icons/jsx/Carpenter.jsx @@ -7,9 +7,13 @@ function SvgCarpenter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cases.jsx b/icons/jsx/Cases.jsx index abc2179c1d..c9eba2a7fa 100644 --- a/icons/jsx/Cases.jsx +++ b/icons/jsx/Cases.jsx @@ -7,9 +7,13 @@ function SvgCases(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Casino.jsx b/icons/jsx/Casino.jsx index d0ef1e7a77..de88e6c896 100644 --- a/icons/jsx/Casino.jsx +++ b/icons/jsx/Casino.jsx @@ -7,9 +7,13 @@ function SvgCasino(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cast.jsx b/icons/jsx/Cast.jsx index a9624a3ff0..8206546f48 100644 --- a/icons/jsx/Cast.jsx +++ b/icons/jsx/Cast.jsx @@ -7,9 +7,13 @@ function SvgCast(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CastConnected.jsx b/icons/jsx/CastConnected.jsx index 6692199cb4..d58199b1a6 100644 --- a/icons/jsx/CastConnected.jsx +++ b/icons/jsx/CastConnected.jsx @@ -7,9 +7,13 @@ function SvgCastConnected(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CastForEducation.jsx b/icons/jsx/CastForEducation.jsx index 8e83cd99b5..28b0e26122 100644 --- a/icons/jsx/CastForEducation.jsx +++ b/icons/jsx/CastForEducation.jsx @@ -7,9 +7,13 @@ function SvgCastForEducation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Castle.jsx b/icons/jsx/Castle.jsx index f590beabfd..0ce37fa49c 100644 --- a/icons/jsx/Castle.jsx +++ b/icons/jsx/Castle.jsx @@ -7,9 +7,13 @@ function SvgCastle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CatchingPokemon.jsx b/icons/jsx/CatchingPokemon.jsx index 614a47fbfd..06810323fe 100644 --- a/icons/jsx/CatchingPokemon.jsx +++ b/icons/jsx/CatchingPokemon.jsx @@ -7,9 +7,13 @@ function SvgCatchingPokemon(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Category.jsx b/icons/jsx/Category.jsx index 8ff77d01e1..a54067ab6b 100644 --- a/icons/jsx/Category.jsx +++ b/icons/jsx/Category.jsx @@ -7,11 +7,12 @@ function SvgCategory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/Celebration.jsx b/icons/jsx/Celebration.jsx index bd1fa2fd0b..da6135e547 100644 --- a/icons/jsx/Celebration.jsx +++ b/icons/jsx/Celebration.jsx @@ -7,10 +7,17 @@ function SvgCelebration(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/CellTower.jsx b/icons/jsx/CellTower.jsx index ef982a49c2..05ddd9dabc 100644 --- a/icons/jsx/CellTower.jsx +++ b/icons/jsx/CellTower.jsx @@ -7,10 +7,17 @@ function SvgCellTower(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/CellWifi.jsx b/icons/jsx/CellWifi.jsx index ef1fff21aa..31a69f4aa5 100644 --- a/icons/jsx/CellWifi.jsx +++ b/icons/jsx/CellWifi.jsx @@ -7,9 +7,13 @@ function SvgCellWifi(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CenterFocusStrong.jsx b/icons/jsx/CenterFocusStrong.jsx index ba8335faa2..2cab7039c7 100644 --- a/icons/jsx/CenterFocusStrong.jsx +++ b/icons/jsx/CenterFocusStrong.jsx @@ -7,9 +7,13 @@ function SvgCenterFocusStrong(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CenterFocusWeak.jsx b/icons/jsx/CenterFocusWeak.jsx index 808902aed9..c2607e28a9 100644 --- a/icons/jsx/CenterFocusWeak.jsx +++ b/icons/jsx/CenterFocusWeak.jsx @@ -7,9 +7,13 @@ function SvgCenterFocusWeak(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Chair.jsx b/icons/jsx/Chair.jsx index 3a9493c707..f51f62110c 100644 --- a/icons/jsx/Chair.jsx +++ b/icons/jsx/Chair.jsx @@ -7,10 +7,14 @@ function SvgChair(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/ChairAlt.jsx b/icons/jsx/ChairAlt.jsx index 7bb4f14361..5c5051c696 100644 --- a/icons/jsx/ChairAlt.jsx +++ b/icons/jsx/ChairAlt.jsx @@ -7,9 +7,13 @@ function SvgChairAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Chalet.jsx b/icons/jsx/Chalet.jsx index 16f862a0ab..4ecc9f67cc 100644 --- a/icons/jsx/Chalet.jsx +++ b/icons/jsx/Chalet.jsx @@ -7,9 +7,13 @@ function SvgChalet(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChangeCircle.jsx b/icons/jsx/ChangeCircle.jsx index eb493b448b..3c65c89bed 100644 --- a/icons/jsx/ChangeCircle.jsx +++ b/icons/jsx/ChangeCircle.jsx @@ -7,9 +7,13 @@ function SvgChangeCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChangeHistory.jsx b/icons/jsx/ChangeHistory.jsx index b13f2e8929..91452e4c8f 100644 --- a/icons/jsx/ChangeHistory.jsx +++ b/icons/jsx/ChangeHistory.jsx @@ -7,9 +7,13 @@ function SvgChangeHistory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChargingStation.jsx b/icons/jsx/ChargingStation.jsx index 6b57dcc917..afe4119549 100644 --- a/icons/jsx/ChargingStation.jsx +++ b/icons/jsx/ChargingStation.jsx @@ -7,9 +7,13 @@ function SvgChargingStation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Chat.jsx b/icons/jsx/Chat.jsx index 94d49a8643..a3b265b9d5 100644 --- a/icons/jsx/Chat.jsx +++ b/icons/jsx/Chat.jsx @@ -7,9 +7,13 @@ function SvgChat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChatBubble.jsx b/icons/jsx/ChatBubble.jsx index 9cfd742164..5172b7544a 100644 --- a/icons/jsx/ChatBubble.jsx +++ b/icons/jsx/ChatBubble.jsx @@ -7,9 +7,10 @@ function SvgChatBubble(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChatBubbleOutline.jsx b/icons/jsx/ChatBubbleOutline.jsx index 9fe4a5cff3..fe81a9a607 100644 --- a/icons/jsx/ChatBubbleOutline.jsx +++ b/icons/jsx/ChatBubbleOutline.jsx @@ -7,9 +7,13 @@ function SvgChatBubbleOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Checklist.jsx b/icons/jsx/Checklist.jsx index 5de85a6d6f..db85421cd1 100644 --- a/icons/jsx/Checklist.jsx +++ b/icons/jsx/Checklist.jsx @@ -7,9 +7,13 @@ function SvgChecklist(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChecklistRtl.jsx b/icons/jsx/ChecklistRtl.jsx index 466acd170f..5d03410648 100644 --- a/icons/jsx/ChecklistRtl.jsx +++ b/icons/jsx/ChecklistRtl.jsx @@ -7,9 +7,13 @@ function SvgChecklistRtl(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Checkroom.jsx b/icons/jsx/Checkroom.jsx index 5160989729..fce1b895d6 100644 --- a/icons/jsx/Checkroom.jsx +++ b/icons/jsx/Checkroom.jsx @@ -7,9 +7,13 @@ function SvgCheckroom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChildCare.jsx b/icons/jsx/ChildCare.jsx index dc4150ef16..8a29ac12fe 100644 --- a/icons/jsx/ChildCare.jsx +++ b/icons/jsx/ChildCare.jsx @@ -7,11 +7,15 @@ function SvgChildCare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChildFriendly.jsx b/icons/jsx/ChildFriendly.jsx index 6753b4ce4d..1aab3b93ac 100644 --- a/icons/jsx/ChildFriendly.jsx +++ b/icons/jsx/ChildFriendly.jsx @@ -7,9 +7,13 @@ function SvgChildFriendly(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ChromeReaderMode.jsx b/icons/jsx/ChromeReaderMode.jsx index be10a19a7e..a0e0f5c5f5 100644 --- a/icons/jsx/ChromeReaderMode.jsx +++ b/icons/jsx/ChromeReaderMode.jsx @@ -7,9 +7,13 @@ function SvgChromeReaderMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Church.jsx b/icons/jsx/Church.jsx index 57dd57d600..ea654020ff 100644 --- a/icons/jsx/Church.jsx +++ b/icons/jsx/Church.jsx @@ -7,9 +7,13 @@ function SvgChurch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Circle.jsx b/icons/jsx/Circle.jsx index 172abeb87f..4fb66f46f7 100644 --- a/icons/jsx/Circle.jsx +++ b/icons/jsx/Circle.jsx @@ -7,9 +7,13 @@ function SvgCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CircleNotifications.jsx b/icons/jsx/CircleNotifications.jsx index c8ff74dca5..6aefe93c77 100644 --- a/icons/jsx/CircleNotifications.jsx +++ b/icons/jsx/CircleNotifications.jsx @@ -7,9 +7,13 @@ function SvgCircleNotifications(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CleanHands.jsx b/icons/jsx/CleanHands.jsx index 6c725add14..96c0e0f693 100644 --- a/icons/jsx/CleanHands.jsx +++ b/icons/jsx/CleanHands.jsx @@ -7,9 +7,13 @@ function SvgCleanHands(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CleaningServices.jsx b/icons/jsx/CleaningServices.jsx index 74d7c44996..3dd8a8e70e 100644 --- a/icons/jsx/CleaningServices.jsx +++ b/icons/jsx/CleaningServices.jsx @@ -7,9 +7,13 @@ function SvgCleaningServices(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Clear.jsx b/icons/jsx/Clear.jsx index 6f81c801a8..903c7762d7 100644 --- a/icons/jsx/Clear.jsx +++ b/icons/jsx/Clear.jsx @@ -7,9 +7,13 @@ function SvgClear(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ClearAll.jsx b/icons/jsx/ClearAll.jsx index 301ee60fc8..d74ff30082 100644 --- a/icons/jsx/ClearAll.jsx +++ b/icons/jsx/ClearAll.jsx @@ -7,9 +7,13 @@ function SvgClearAll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CloseFullscreen.jsx b/icons/jsx/CloseFullscreen.jsx index 5c38cecd63..2b70dc3c2f 100644 --- a/icons/jsx/CloseFullscreen.jsx +++ b/icons/jsx/CloseFullscreen.jsx @@ -7,9 +7,13 @@ function SvgCloseFullscreen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ClosedCaption.jsx b/icons/jsx/ClosedCaption.jsx index 6823efceb5..577c899fad 100644 --- a/icons/jsx/ClosedCaption.jsx +++ b/icons/jsx/ClosedCaption.jsx @@ -7,9 +7,13 @@ function SvgClosedCaption(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ClosedCaptionDisabled.jsx b/icons/jsx/ClosedCaptionDisabled.jsx index 0d0e20638a..0f219853f5 100644 --- a/icons/jsx/ClosedCaptionDisabled.jsx +++ b/icons/jsx/ClosedCaptionDisabled.jsx @@ -7,9 +7,13 @@ function SvgClosedCaptionDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ClosedCaptionOff.jsx b/icons/jsx/ClosedCaptionOff.jsx index a2583774b3..bff6fd507f 100644 --- a/icons/jsx/ClosedCaptionOff.jsx +++ b/icons/jsx/ClosedCaptionOff.jsx @@ -7,9 +7,13 @@ function SvgClosedCaptionOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cloud.jsx b/icons/jsx/Cloud.jsx index 76067a3dff..5e9a20292c 100644 --- a/icons/jsx/Cloud.jsx +++ b/icons/jsx/Cloud.jsx @@ -7,9 +7,13 @@ function SvgCloud(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CloudCircle.jsx b/icons/jsx/CloudCircle.jsx index 9faca578a9..58f982b8ac 100644 --- a/icons/jsx/CloudCircle.jsx +++ b/icons/jsx/CloudCircle.jsx @@ -7,9 +7,13 @@ function SvgCloudCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CloudDone.jsx b/icons/jsx/CloudDone.jsx index 0f32c6d98e..046a6a83bf 100644 --- a/icons/jsx/CloudDone.jsx +++ b/icons/jsx/CloudDone.jsx @@ -7,9 +7,13 @@ function SvgCloudDone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CloudDownload.jsx b/icons/jsx/CloudDownload.jsx index 1024cf6214..a0b160d3f2 100644 --- a/icons/jsx/CloudDownload.jsx +++ b/icons/jsx/CloudDownload.jsx @@ -7,9 +7,13 @@ function SvgCloudDownload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CloudOff.jsx b/icons/jsx/CloudOff.jsx index a7187ca7b5..f99ef9c5f3 100644 --- a/icons/jsx/CloudOff.jsx +++ b/icons/jsx/CloudOff.jsx @@ -7,9 +7,13 @@ function SvgCloudOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CloudQueue.jsx b/icons/jsx/CloudQueue.jsx index 4bc20ab06d..0c310a7ba9 100644 --- a/icons/jsx/CloudQueue.jsx +++ b/icons/jsx/CloudQueue.jsx @@ -7,9 +7,13 @@ function SvgCloudQueue(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CloudSync.jsx b/icons/jsx/CloudSync.jsx index a5be5131ba..5927fb567a 100644 --- a/icons/jsx/CloudSync.jsx +++ b/icons/jsx/CloudSync.jsx @@ -7,9 +7,13 @@ function SvgCloudSync(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CloudUpload.jsx b/icons/jsx/CloudUpload.jsx index 65a22c5159..0f5583abb0 100644 --- a/icons/jsx/CloudUpload.jsx +++ b/icons/jsx/CloudUpload.jsx @@ -7,9 +7,13 @@ function SvgCloudUpload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Co2.jsx b/icons/jsx/Co2.jsx index 53aad499ab..58ad3432ef 100644 --- a/icons/jsx/Co2.jsx +++ b/icons/jsx/Co2.jsx @@ -7,9 +7,13 @@ function SvgCo2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CoPresent.jsx b/icons/jsx/CoPresent.jsx index 984b21612b..fdc5e2158b 100644 --- a/icons/jsx/CoPresent.jsx +++ b/icons/jsx/CoPresent.jsx @@ -7,11 +7,15 @@ function SvgCoPresent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/Code.jsx b/icons/jsx/Code.jsx index 15becb6aa2..20d2044b03 100644 --- a/icons/jsx/Code.jsx +++ b/icons/jsx/Code.jsx @@ -7,9 +7,13 @@ function SvgCode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CodeOff.jsx b/icons/jsx/CodeOff.jsx index f762b2f03d..889f11c636 100644 --- a/icons/jsx/CodeOff.jsx +++ b/icons/jsx/CodeOff.jsx @@ -7,9 +7,13 @@ function SvgCodeOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Coffee.jsx b/icons/jsx/Coffee.jsx index 9dff7f95d2..13c3c4929e 100644 --- a/icons/jsx/Coffee.jsx +++ b/icons/jsx/Coffee.jsx @@ -7,9 +7,13 @@ function SvgCoffee(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CoffeeMaker.jsx b/icons/jsx/CoffeeMaker.jsx index 3bb20b59ef..291ec6f6d6 100644 --- a/icons/jsx/CoffeeMaker.jsx +++ b/icons/jsx/CoffeeMaker.jsx @@ -7,9 +7,13 @@ function SvgCoffeeMaker(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/Collections.jsx b/icons/jsx/Collections.jsx index ac610c1f57..7e1ddf94c1 100644 --- a/icons/jsx/Collections.jsx +++ b/icons/jsx/Collections.jsx @@ -7,9 +7,13 @@ function SvgCollections(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CollectionsBookmark.jsx b/icons/jsx/CollectionsBookmark.jsx index d16250cd9b..9b611956f3 100644 --- a/icons/jsx/CollectionsBookmark.jsx +++ b/icons/jsx/CollectionsBookmark.jsx @@ -7,9 +7,13 @@ function SvgCollectionsBookmark(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ColorLens.jsx b/icons/jsx/ColorLens.jsx index 19c8efbb8e..ed4986c181 100644 --- a/icons/jsx/ColorLens.jsx +++ b/icons/jsx/ColorLens.jsx @@ -7,9 +7,13 @@ function SvgColorLens(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Colorize.jsx b/icons/jsx/Colorize.jsx index 087ee7fcb7..aadc2835c2 100644 --- a/icons/jsx/Colorize.jsx +++ b/icons/jsx/Colorize.jsx @@ -7,9 +7,13 @@ function SvgColorize(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Comment.jsx b/icons/jsx/Comment.jsx index 3f09a5f713..e2a5809db1 100644 --- a/icons/jsx/Comment.jsx +++ b/icons/jsx/Comment.jsx @@ -7,9 +7,13 @@ function SvgComment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CommentBank.jsx b/icons/jsx/CommentBank.jsx index 099032ec4b..ad90e70c8c 100644 --- a/icons/jsx/CommentBank.jsx +++ b/icons/jsx/CommentBank.jsx @@ -7,9 +7,13 @@ function SvgCommentBank(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CommentsDisabled.jsx b/icons/jsx/CommentsDisabled.jsx index 701fedb964..870a51bbed 100644 --- a/icons/jsx/CommentsDisabled.jsx +++ b/icons/jsx/CommentsDisabled.jsx @@ -7,9 +7,13 @@ function SvgCommentsDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Commit.jsx b/icons/jsx/Commit.jsx index 967573f42d..8b44bbdce1 100644 --- a/icons/jsx/Commit.jsx +++ b/icons/jsx/Commit.jsx @@ -7,9 +7,13 @@ function SvgCommit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Commute.jsx b/icons/jsx/Commute.jsx index 96478517b4..17a341454a 100644 --- a/icons/jsx/Commute.jsx +++ b/icons/jsx/Commute.jsx @@ -7,9 +7,13 @@ function SvgCommute(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Compare.jsx b/icons/jsx/Compare.jsx index 2f740cc8ff..5ab2f992b9 100644 --- a/icons/jsx/Compare.jsx +++ b/icons/jsx/Compare.jsx @@ -7,9 +7,13 @@ function SvgCompare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CompareArrows.jsx b/icons/jsx/CompareArrows.jsx index e9bfbc8a43..ffffd8f3b5 100644 --- a/icons/jsx/CompareArrows.jsx +++ b/icons/jsx/CompareArrows.jsx @@ -7,9 +7,13 @@ function SvgCompareArrows(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CompassCalibration.jsx b/icons/jsx/CompassCalibration.jsx index 448f736731..25320c065d 100644 --- a/icons/jsx/CompassCalibration.jsx +++ b/icons/jsx/CompassCalibration.jsx @@ -7,10 +7,14 @@ function SvgCompassCalibration(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Compost.jsx b/icons/jsx/Compost.jsx index f392a9217f..7c66bede85 100644 --- a/icons/jsx/Compost.jsx +++ b/icons/jsx/Compost.jsx @@ -7,9 +7,13 @@ function SvgCompost(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Compress.jsx b/icons/jsx/Compress.jsx index 66b056378f..4439708ef5 100644 --- a/icons/jsx/Compress.jsx +++ b/icons/jsx/Compress.jsx @@ -7,9 +7,13 @@ function SvgCompress(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Computer.jsx b/icons/jsx/Computer.jsx index 39a0175474..08df5bf1bc 100644 --- a/icons/jsx/Computer.jsx +++ b/icons/jsx/Computer.jsx @@ -7,9 +7,13 @@ function SvgComputer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ConfirmationNumber.jsx b/icons/jsx/ConfirmationNumber.jsx index be7bb28627..16ebbaf7e5 100644 --- a/icons/jsx/ConfirmationNumber.jsx +++ b/icons/jsx/ConfirmationNumber.jsx @@ -7,9 +7,13 @@ function SvgConfirmationNumber(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ConnectWithoutContact.jsx b/icons/jsx/ConnectWithoutContact.jsx index a6c156952b..1bb5b95dca 100644 --- a/icons/jsx/ConnectWithoutContact.jsx +++ b/icons/jsx/ConnectWithoutContact.jsx @@ -7,9 +7,13 @@ function SvgConnectWithoutContact(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ConnectedTv.jsx b/icons/jsx/ConnectedTv.jsx index 221bf4133d..560951d0e4 100644 --- a/icons/jsx/ConnectedTv.jsx +++ b/icons/jsx/ConnectedTv.jsx @@ -7,11 +7,18 @@ function SvgConnectedTv(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/ConnectingAirports.jsx b/icons/jsx/ConnectingAirports.jsx index 5439c5e136..4398e48f59 100644 --- a/icons/jsx/ConnectingAirports.jsx +++ b/icons/jsx/ConnectingAirports.jsx @@ -7,9 +7,13 @@ function SvgConnectingAirports(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Construction.jsx b/icons/jsx/Construction.jsx index b706d41b57..7dfacdde24 100644 --- a/icons/jsx/Construction.jsx +++ b/icons/jsx/Construction.jsx @@ -7,9 +7,13 @@ function SvgConstruction(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContactEmergency.jsx b/icons/jsx/ContactEmergency.jsx index 1b7f923a3f..f446390c67 100644 --- a/icons/jsx/ContactEmergency.jsx +++ b/icons/jsx/ContactEmergency.jsx @@ -7,9 +7,13 @@ function SvgContactEmergency(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContactPage.jsx b/icons/jsx/ContactPage.jsx index 4a4a53821c..46b31b222d 100644 --- a/icons/jsx/ContactPage.jsx +++ b/icons/jsx/ContactPage.jsx @@ -7,9 +7,13 @@ function SvgContactPage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContactPhone.jsx b/icons/jsx/ContactPhone.jsx index 1e277ea69b..b7cc9a8836 100644 --- a/icons/jsx/ContactPhone.jsx +++ b/icons/jsx/ContactPhone.jsx @@ -7,9 +7,13 @@ function SvgContactPhone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContactSupport.jsx b/icons/jsx/ContactSupport.jsx index a136f8e44b..587447fdb3 100644 --- a/icons/jsx/ContactSupport.jsx +++ b/icons/jsx/ContactSupport.jsx @@ -7,9 +7,13 @@ function SvgContactSupport(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Contactless.jsx b/icons/jsx/Contactless.jsx index ea49def5ec..59b2e7def0 100644 --- a/icons/jsx/Contactless.jsx +++ b/icons/jsx/Contactless.jsx @@ -7,9 +7,13 @@ function SvgContactless(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Contacts.jsx b/icons/jsx/Contacts.jsx index d5ebd01df1..ae7e9cd3c5 100644 --- a/icons/jsx/Contacts.jsx +++ b/icons/jsx/Contacts.jsx @@ -7,9 +7,13 @@ function SvgContacts(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContentCopy.jsx b/icons/jsx/ContentCopy.jsx index 7555390bc3..d18594a78f 100644 --- a/icons/jsx/ContentCopy.jsx +++ b/icons/jsx/ContentCopy.jsx @@ -7,9 +7,13 @@ function SvgContentCopy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContentCut.jsx b/icons/jsx/ContentCut.jsx index aa560f8609..26b811d0cc 100644 --- a/icons/jsx/ContentCut.jsx +++ b/icons/jsx/ContentCut.jsx @@ -7,9 +7,13 @@ function SvgContentCut(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContentPaste.jsx b/icons/jsx/ContentPaste.jsx index 13040042d9..f99e7b223c 100644 --- a/icons/jsx/ContentPaste.jsx +++ b/icons/jsx/ContentPaste.jsx @@ -7,9 +7,13 @@ function SvgContentPaste(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContentPasteGo.jsx b/icons/jsx/ContentPasteGo.jsx index e139d6da87..baf92bbd1c 100644 --- a/icons/jsx/ContentPasteGo.jsx +++ b/icons/jsx/ContentPasteGo.jsx @@ -7,10 +7,17 @@ function SvgContentPasteGo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/ContentPasteOff.jsx b/icons/jsx/ContentPasteOff.jsx index fde335cdab..3ba11a208a 100644 --- a/icons/jsx/ContentPasteOff.jsx +++ b/icons/jsx/ContentPasteOff.jsx @@ -7,9 +7,13 @@ function SvgContentPasteOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ContentPasteSearch.jsx b/icons/jsx/ContentPasteSearch.jsx index 14977290a7..974db19769 100644 --- a/icons/jsx/ContentPasteSearch.jsx +++ b/icons/jsx/ContentPasteSearch.jsx @@ -7,10 +7,17 @@ function SvgContentPasteSearch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Contrast.jsx b/icons/jsx/Contrast.jsx index 8591a9294d..9f5523cefb 100644 --- a/icons/jsx/Contrast.jsx +++ b/icons/jsx/Contrast.jsx @@ -7,9 +7,13 @@ function SvgContrast(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ControlCamera.jsx b/icons/jsx/ControlCamera.jsx index ca0fb393c8..5450178608 100644 --- a/icons/jsx/ControlCamera.jsx +++ b/icons/jsx/ControlCamera.jsx @@ -7,9 +7,13 @@ function SvgControlCamera(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/ControlPoint.jsx b/icons/jsx/ControlPoint.jsx index 0b9d01d4cf..014bce81f7 100644 --- a/icons/jsx/ControlPoint.jsx +++ b/icons/jsx/ControlPoint.jsx @@ -7,9 +7,13 @@ function SvgControlPoint(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ControlPointDuplicate.jsx b/icons/jsx/ControlPointDuplicate.jsx index c507a3438a..25d9c7561b 100644 --- a/icons/jsx/ControlPointDuplicate.jsx +++ b/icons/jsx/ControlPointDuplicate.jsx @@ -7,9 +7,13 @@ function SvgControlPointDuplicate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cookie.jsx b/icons/jsx/Cookie.jsx index b3f73c9c77..095c44783d 100644 --- a/icons/jsx/Cookie.jsx +++ b/icons/jsx/Cookie.jsx @@ -7,9 +7,13 @@ function SvgCookie(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CopyAll.jsx b/icons/jsx/CopyAll.jsx index e3360bba30..07fe79959f 100644 --- a/icons/jsx/CopyAll.jsx +++ b/icons/jsx/CopyAll.jsx @@ -7,9 +7,13 @@ function SvgCopyAll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Copyright.jsx b/icons/jsx/Copyright.jsx index d5420bdac9..c08ba16a07 100644 --- a/icons/jsx/Copyright.jsx +++ b/icons/jsx/Copyright.jsx @@ -7,9 +7,13 @@ function SvgCopyright(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Coronavirus.jsx b/icons/jsx/Coronavirus.jsx index 41193fa2b3..14637a51df 100644 --- a/icons/jsx/Coronavirus.jsx +++ b/icons/jsx/Coronavirus.jsx @@ -7,9 +7,13 @@ function SvgCoronavirus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CorporateFare.jsx b/icons/jsx/CorporateFare.jsx index 5e6767d1c6..2218c48848 100644 --- a/icons/jsx/CorporateFare.jsx +++ b/icons/jsx/CorporateFare.jsx @@ -7,9 +7,13 @@ function SvgCorporateFare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cottage.jsx b/icons/jsx/Cottage.jsx index b4b520a261..96629549f8 100644 --- a/icons/jsx/Cottage.jsx +++ b/icons/jsx/Cottage.jsx @@ -7,9 +7,13 @@ function SvgCottage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Countertops.jsx b/icons/jsx/Countertops.jsx index 564b09794c..0287912332 100644 --- a/icons/jsx/Countertops.jsx +++ b/icons/jsx/Countertops.jsx @@ -7,9 +7,13 @@ function SvgCountertops(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Create.jsx b/icons/jsx/Create.jsx index 7599b57ef9..cfcceecccf 100644 --- a/icons/jsx/Create.jsx +++ b/icons/jsx/Create.jsx @@ -7,9 +7,13 @@ function SvgCreate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CreateNewFolder.jsx b/icons/jsx/CreateNewFolder.jsx index 5219794e3c..f2812b3028 100644 --- a/icons/jsx/CreateNewFolder.jsx +++ b/icons/jsx/CreateNewFolder.jsx @@ -7,9 +7,13 @@ function SvgCreateNewFolder(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CreditCard.jsx b/icons/jsx/CreditCard.jsx index bf72099838..0344647573 100644 --- a/icons/jsx/CreditCard.jsx +++ b/icons/jsx/CreditCard.jsx @@ -7,9 +7,13 @@ function SvgCreditCard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CreditCardOff.jsx b/icons/jsx/CreditCardOff.jsx index 16c1a4e930..fc3b69c9fc 100644 --- a/icons/jsx/CreditCardOff.jsx +++ b/icons/jsx/CreditCardOff.jsx @@ -7,9 +7,13 @@ function SvgCreditCardOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CreditScore.jsx b/icons/jsx/CreditScore.jsx index a9522bae56..630b68355d 100644 --- a/icons/jsx/CreditScore.jsx +++ b/icons/jsx/CreditScore.jsx @@ -7,9 +7,13 @@ function SvgCreditScore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Crib.jsx b/icons/jsx/Crib.jsx index 1bce17065c..0dee90e895 100644 --- a/icons/jsx/Crib.jsx +++ b/icons/jsx/Crib.jsx @@ -7,9 +7,13 @@ function SvgCrib(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CrisisAlert.jsx b/icons/jsx/CrisisAlert.jsx index 24d2bd39fb..9c5fea74c9 100644 --- a/icons/jsx/CrisisAlert.jsx +++ b/icons/jsx/CrisisAlert.jsx @@ -7,9 +7,13 @@ function SvgCrisisAlert(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Crop.jsx b/icons/jsx/Crop.jsx index 514adff4cf..cf0e3c6845 100644 --- a/icons/jsx/Crop.jsx +++ b/icons/jsx/Crop.jsx @@ -7,9 +7,13 @@ function SvgCrop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Crop169.jsx b/icons/jsx/Crop169.jsx index 886053d622..640041a8bb 100644 --- a/icons/jsx/Crop169.jsx +++ b/icons/jsx/Crop169.jsx @@ -7,9 +7,10 @@ function SvgCrop169(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Crop32.jsx b/icons/jsx/Crop32.jsx index 71ddd05fb0..61a9b5754f 100644 --- a/icons/jsx/Crop32.jsx +++ b/icons/jsx/Crop32.jsx @@ -7,9 +7,10 @@ function SvgCrop32(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Crop54.jsx b/icons/jsx/Crop54.jsx index 27fe5c4806..7f1fee443e 100644 --- a/icons/jsx/Crop54.jsx +++ b/icons/jsx/Crop54.jsx @@ -7,9 +7,10 @@ function SvgCrop54(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Crop75.jsx b/icons/jsx/Crop75.jsx index 752c3df1d4..6552d8b96b 100644 --- a/icons/jsx/Crop75.jsx +++ b/icons/jsx/Crop75.jsx @@ -7,9 +7,10 @@ function SvgCrop75(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CropDin.jsx b/icons/jsx/CropDin.jsx index f47b0d7726..bfc26c2c55 100644 --- a/icons/jsx/CropDin.jsx +++ b/icons/jsx/CropDin.jsx @@ -7,9 +7,10 @@ function SvgCropDin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CropFree.jsx b/icons/jsx/CropFree.jsx index 29de1e666d..9eeeeacf19 100644 --- a/icons/jsx/CropFree.jsx +++ b/icons/jsx/CropFree.jsx @@ -7,9 +7,13 @@ function SvgCropFree(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CropLandscape.jsx b/icons/jsx/CropLandscape.jsx index c5507890b0..9402007cde 100644 --- a/icons/jsx/CropLandscape.jsx +++ b/icons/jsx/CropLandscape.jsx @@ -7,9 +7,10 @@ function SvgCropLandscape(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CropOriginal.jsx b/icons/jsx/CropOriginal.jsx index 116c6f280a..93678b4501 100644 --- a/icons/jsx/CropOriginal.jsx +++ b/icons/jsx/CropOriginal.jsx @@ -7,9 +7,13 @@ function SvgCropOriginal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CropPortrait.jsx b/icons/jsx/CropPortrait.jsx index c4d3a0c554..e828077ce4 100644 --- a/icons/jsx/CropPortrait.jsx +++ b/icons/jsx/CropPortrait.jsx @@ -7,9 +7,10 @@ function SvgCropPortrait(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CropRotate.jsx b/icons/jsx/CropRotate.jsx index 32c0060093..c8cb8eb6ec 100644 --- a/icons/jsx/CropRotate.jsx +++ b/icons/jsx/CropRotate.jsx @@ -7,9 +7,13 @@ function SvgCropRotate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CropSquare.jsx b/icons/jsx/CropSquare.jsx index 400e979bd5..12dbcb9dcb 100644 --- a/icons/jsx/CropSquare.jsx +++ b/icons/jsx/CropSquare.jsx @@ -7,9 +7,10 @@ function SvgCropSquare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CrueltyFree.jsx b/icons/jsx/CrueltyFree.jsx index bda87f5e5f..63f3158a7e 100644 --- a/icons/jsx/CrueltyFree.jsx +++ b/icons/jsx/CrueltyFree.jsx @@ -7,9 +7,13 @@ function SvgCrueltyFree(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Css.jsx b/icons/jsx/Css.jsx index 12a1fe46bc..bc36d57b78 100644 --- a/icons/jsx/Css.jsx +++ b/icons/jsx/Css.jsx @@ -7,9 +7,13 @@ function SvgCss(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyBitcoin.jsx b/icons/jsx/CurrencyBitcoin.jsx index 0665328818..c317c06f35 100644 --- a/icons/jsx/CurrencyBitcoin.jsx +++ b/icons/jsx/CurrencyBitcoin.jsx @@ -7,9 +7,13 @@ function SvgCurrencyBitcoin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyExchange.jsx b/icons/jsx/CurrencyExchange.jsx index deeb078cf6..59dbada712 100644 --- a/icons/jsx/CurrencyExchange.jsx +++ b/icons/jsx/CurrencyExchange.jsx @@ -7,9 +7,13 @@ function SvgCurrencyExchange(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyFranc.jsx b/icons/jsx/CurrencyFranc.jsx index fb4299ced0..8a2a55b509 100644 --- a/icons/jsx/CurrencyFranc.jsx +++ b/icons/jsx/CurrencyFranc.jsx @@ -7,9 +7,13 @@ function SvgCurrencyFranc(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyLira.jsx b/icons/jsx/CurrencyLira.jsx index 74ae14b371..0ee48bcfed 100644 --- a/icons/jsx/CurrencyLira.jsx +++ b/icons/jsx/CurrencyLira.jsx @@ -7,9 +7,13 @@ function SvgCurrencyLira(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyPound.jsx b/icons/jsx/CurrencyPound.jsx index 14d76aa37e..5285e3522a 100644 --- a/icons/jsx/CurrencyPound.jsx +++ b/icons/jsx/CurrencyPound.jsx @@ -7,9 +7,13 @@ function SvgCurrencyPound(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyRuble.jsx b/icons/jsx/CurrencyRuble.jsx index 692fe70411..72c90bebb1 100644 --- a/icons/jsx/CurrencyRuble.jsx +++ b/icons/jsx/CurrencyRuble.jsx @@ -7,9 +7,13 @@ function SvgCurrencyRuble(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyRupee.jsx b/icons/jsx/CurrencyRupee.jsx index f99ff6d714..88ea7feb09 100644 --- a/icons/jsx/CurrencyRupee.jsx +++ b/icons/jsx/CurrencyRupee.jsx @@ -7,9 +7,13 @@ function SvgCurrencyRupee(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyYen.jsx b/icons/jsx/CurrencyYen.jsx index 9f85c0ff10..a5f567aad4 100644 --- a/icons/jsx/CurrencyYen.jsx +++ b/icons/jsx/CurrencyYen.jsx @@ -7,9 +7,13 @@ function SvgCurrencyYen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurrencyYuan.jsx b/icons/jsx/CurrencyYuan.jsx index 4232d88452..90afbe4a07 100644 --- a/icons/jsx/CurrencyYuan.jsx +++ b/icons/jsx/CurrencyYuan.jsx @@ -7,9 +7,13 @@ function SvgCurrencyYuan(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Curtains.jsx b/icons/jsx/Curtains.jsx index ccd99cfc4b..9853f08e53 100644 --- a/icons/jsx/Curtains.jsx +++ b/icons/jsx/Curtains.jsx @@ -7,9 +7,13 @@ function SvgCurtains(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/CurtainsClosed.jsx b/icons/jsx/CurtainsClosed.jsx index fdb970cd31..8f8735f76e 100644 --- a/icons/jsx/CurtainsClosed.jsx +++ b/icons/jsx/CurtainsClosed.jsx @@ -7,9 +7,13 @@ function SvgCurtainsClosed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Cyclone.jsx b/icons/jsx/Cyclone.jsx index 66ae723138..9800eeb350 100644 --- a/icons/jsx/Cyclone.jsx +++ b/icons/jsx/Cyclone.jsx @@ -7,10 +7,17 @@ function SvgCyclone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Dangerous.jsx b/icons/jsx/Dangerous.jsx index 775a1d9307..4c1a1a038e 100644 --- a/icons/jsx/Dangerous.jsx +++ b/icons/jsx/Dangerous.jsx @@ -7,9 +7,13 @@ function SvgDangerous(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DarkMode.jsx b/icons/jsx/DarkMode.jsx index bbe2f9d031..390462da77 100644 --- a/icons/jsx/DarkMode.jsx +++ b/icons/jsx/DarkMode.jsx @@ -7,9 +7,13 @@ function SvgDarkMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Dashboard.jsx b/icons/jsx/Dashboard.jsx index 062031abd8..f685bf34ac 100644 --- a/icons/jsx/Dashboard.jsx +++ b/icons/jsx/Dashboard.jsx @@ -7,9 +7,13 @@ function SvgDashboard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DashboardCustomize.jsx b/icons/jsx/DashboardCustomize.jsx index 90dd2f4290..7ada85c078 100644 --- a/icons/jsx/DashboardCustomize.jsx +++ b/icons/jsx/DashboardCustomize.jsx @@ -7,9 +7,13 @@ function SvgDashboardCustomize(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DataArray.jsx b/icons/jsx/DataArray.jsx index 37e908a328..5f1727a0bf 100644 --- a/icons/jsx/DataArray.jsx +++ b/icons/jsx/DataArray.jsx @@ -7,9 +7,13 @@ function SvgDataArray(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DataExploration.jsx b/icons/jsx/DataExploration.jsx index 8a7aa8f9c4..3e4ef75a40 100644 --- a/icons/jsx/DataExploration.jsx +++ b/icons/jsx/DataExploration.jsx @@ -7,9 +7,13 @@ function SvgDataExploration(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DataObject.jsx b/icons/jsx/DataObject.jsx index fe8ffd593f..426380f3db 100644 --- a/icons/jsx/DataObject.jsx +++ b/icons/jsx/DataObject.jsx @@ -7,9 +7,13 @@ function SvgDataObject(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DataSaverOff.jsx b/icons/jsx/DataSaverOff.jsx index bd45a5646d..2f9ac68f73 100644 --- a/icons/jsx/DataSaverOff.jsx +++ b/icons/jsx/DataSaverOff.jsx @@ -7,9 +7,13 @@ function SvgDataSaverOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DataSaverOn.jsx b/icons/jsx/DataSaverOn.jsx index b279f6385a..3487905536 100644 --- a/icons/jsx/DataSaverOn.jsx +++ b/icons/jsx/DataSaverOn.jsx @@ -7,9 +7,13 @@ function SvgDataSaverOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DataThresholding.jsx b/icons/jsx/DataThresholding.jsx index d73ac0616b..72cd650db0 100644 --- a/icons/jsx/DataThresholding.jsx +++ b/icons/jsx/DataThresholding.jsx @@ -7,9 +7,13 @@ function SvgDataThresholding(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DataUsage.jsx b/icons/jsx/DataUsage.jsx index d8770b244d..0e02098deb 100644 --- a/icons/jsx/DataUsage.jsx +++ b/icons/jsx/DataUsage.jsx @@ -7,9 +7,13 @@ function SvgDataUsage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Dataset.jsx b/icons/jsx/Dataset.jsx index 310cd2081f..3c9ba1df36 100644 --- a/icons/jsx/Dataset.jsx +++ b/icons/jsx/Dataset.jsx @@ -7,9 +7,13 @@ function SvgDataset(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DatasetLinked.jsx b/icons/jsx/DatasetLinked.jsx index 3799dde434..def190bac2 100644 --- a/icons/jsx/DatasetLinked.jsx +++ b/icons/jsx/DatasetLinked.jsx @@ -7,11 +7,18 @@ function SvgDatasetLinked(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/Deblur.jsx b/icons/jsx/Deblur.jsx index f14c5615d7..85c880c6ed 100644 --- a/icons/jsx/Deblur.jsx +++ b/icons/jsx/Deblur.jsx @@ -7,9 +7,10 @@ function SvgDeblur(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + diff --git a/icons/jsx/Deck.jsx b/icons/jsx/Deck.jsx index 5180c8143b..31ebf709a8 100644 --- a/icons/jsx/Deck.jsx +++ b/icons/jsx/Deck.jsx @@ -7,10 +7,14 @@ function SvgDeck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Dehaze.jsx b/icons/jsx/Dehaze.jsx index 1a6d779bae..a627595375 100644 --- a/icons/jsx/Dehaze.jsx +++ b/icons/jsx/Dehaze.jsx @@ -7,9 +7,13 @@ function SvgDehaze(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeleteForever.jsx b/icons/jsx/DeleteForever.jsx index 26878a0367..077f32f4f7 100644 --- a/icons/jsx/DeleteForever.jsx +++ b/icons/jsx/DeleteForever.jsx @@ -7,9 +7,13 @@ function SvgDeleteForever(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeleteOutline.jsx b/icons/jsx/DeleteOutline.jsx index 495f421a1c..30158e913d 100644 --- a/icons/jsx/DeleteOutline.jsx +++ b/icons/jsx/DeleteOutline.jsx @@ -7,9 +7,13 @@ function SvgDeleteOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeleteSweep.jsx b/icons/jsx/DeleteSweep.jsx index f230cad133..1d71d32357 100644 --- a/icons/jsx/DeleteSweep.jsx +++ b/icons/jsx/DeleteSweep.jsx @@ -7,9 +7,13 @@ function SvgDeleteSweep(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeliveryDining.jsx b/icons/jsx/DeliveryDining.jsx index 3375189890..984d38a1b6 100644 --- a/icons/jsx/DeliveryDining.jsx +++ b/icons/jsx/DeliveryDining.jsx @@ -7,10 +7,17 @@ function SvgDeliveryDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/DensityLarge.jsx b/icons/jsx/DensityLarge.jsx index f81e10e310..db51332071 100644 --- a/icons/jsx/DensityLarge.jsx +++ b/icons/jsx/DensityLarge.jsx @@ -7,9 +7,10 @@ function SvgDensityLarge(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DensityMedium.jsx b/icons/jsx/DensityMedium.jsx index cec5a2d381..9f36d38c53 100644 --- a/icons/jsx/DensityMedium.jsx +++ b/icons/jsx/DensityMedium.jsx @@ -7,9 +7,10 @@ function SvgDensityMedium(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DensitySmall.jsx b/icons/jsx/DensitySmall.jsx index bb85a8e116..f9ae2cdf12 100644 --- a/icons/jsx/DensitySmall.jsx +++ b/icons/jsx/DensitySmall.jsx @@ -7,9 +7,13 @@ function SvgDensitySmall(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DepartureBoard.jsx b/icons/jsx/DepartureBoard.jsx index 3be3a9f153..f2c27f8dac 100644 --- a/icons/jsx/DepartureBoard.jsx +++ b/icons/jsx/DepartureBoard.jsx @@ -7,9 +7,13 @@ function SvgDepartureBoard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Description.jsx b/icons/jsx/Description.jsx index ebbd468ba8..57baf9d24c 100644 --- a/icons/jsx/Description.jsx +++ b/icons/jsx/Description.jsx @@ -7,9 +7,13 @@ function SvgDescription(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Deselect.jsx b/icons/jsx/Deselect.jsx index bbbb67337f..4ac436507c 100644 --- a/icons/jsx/Deselect.jsx +++ b/icons/jsx/Deselect.jsx @@ -7,9 +7,13 @@ function SvgDeselect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DesignServices.jsx b/icons/jsx/DesignServices.jsx index 7dd9a9ae7e..c64af36261 100644 --- a/icons/jsx/DesignServices.jsx +++ b/icons/jsx/DesignServices.jsx @@ -7,9 +7,13 @@ function SvgDesignServices(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Desk.jsx b/icons/jsx/Desk.jsx index c599bd30c3..0ea53ddcd1 100644 --- a/icons/jsx/Desk.jsx +++ b/icons/jsx/Desk.jsx @@ -7,9 +7,13 @@ function SvgDesk(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DesktopAccessDisabled.jsx b/icons/jsx/DesktopAccessDisabled.jsx index 3902e17199..33461dd903 100644 --- a/icons/jsx/DesktopAccessDisabled.jsx +++ b/icons/jsx/DesktopAccessDisabled.jsx @@ -7,9 +7,13 @@ function SvgDesktopAccessDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DesktopMac.jsx b/icons/jsx/DesktopMac.jsx index a9d28db7ef..81289567be 100644 --- a/icons/jsx/DesktopMac.jsx +++ b/icons/jsx/DesktopMac.jsx @@ -7,9 +7,13 @@ function SvgDesktopMac(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DesktopWindows.jsx b/icons/jsx/DesktopWindows.jsx index a393aa20cf..e24a88c60e 100644 --- a/icons/jsx/DesktopWindows.jsx +++ b/icons/jsx/DesktopWindows.jsx @@ -7,9 +7,13 @@ function SvgDesktopWindows(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Details.jsx b/icons/jsx/Details.jsx index 1e6c478405..1b341821c1 100644 --- a/icons/jsx/Details.jsx +++ b/icons/jsx/Details.jsx @@ -7,9 +7,13 @@ function SvgDetails(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeveloperBoard.jsx b/icons/jsx/DeveloperBoard.jsx index 5618e92d80..b79de3337c 100644 --- a/icons/jsx/DeveloperBoard.jsx +++ b/icons/jsx/DeveloperBoard.jsx @@ -7,9 +7,13 @@ function SvgDeveloperBoard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeveloperBoardOff.jsx b/icons/jsx/DeveloperBoardOff.jsx index 10a4fe0e96..4283ebe29f 100644 --- a/icons/jsx/DeveloperBoardOff.jsx +++ b/icons/jsx/DeveloperBoardOff.jsx @@ -7,9 +7,13 @@ function SvgDeveloperBoardOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeveloperMode.jsx b/icons/jsx/DeveloperMode.jsx index 3782718503..3422077b12 100644 --- a/icons/jsx/DeveloperMode.jsx +++ b/icons/jsx/DeveloperMode.jsx @@ -7,9 +7,13 @@ function SvgDeveloperMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeviceHub.jsx b/icons/jsx/DeviceHub.jsx index cb3bcff1ac..bbd22c9c5b 100644 --- a/icons/jsx/DeviceHub.jsx +++ b/icons/jsx/DeviceHub.jsx @@ -7,9 +7,13 @@ function SvgDeviceHub(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeviceThermostat.jsx b/icons/jsx/DeviceThermostat.jsx index 52aaa8151c..51a948426d 100644 --- a/icons/jsx/DeviceThermostat.jsx +++ b/icons/jsx/DeviceThermostat.jsx @@ -7,9 +7,13 @@ function SvgDeviceThermostat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DeviceUnknown.jsx b/icons/jsx/DeviceUnknown.jsx index 6a08f13d4d..4c8bb82ecd 100644 --- a/icons/jsx/DeviceUnknown.jsx +++ b/icons/jsx/DeviceUnknown.jsx @@ -7,9 +7,13 @@ function SvgDeviceUnknown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Devices.jsx b/icons/jsx/Devices.jsx index 01b1620875..f470b1803d 100644 --- a/icons/jsx/Devices.jsx +++ b/icons/jsx/Devices.jsx @@ -7,9 +7,13 @@ function SvgDevices(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DevicesFold.jsx b/icons/jsx/DevicesFold.jsx index dd0bedf3bf..445e00551f 100644 --- a/icons/jsx/DevicesFold.jsx +++ b/icons/jsx/DevicesFold.jsx @@ -7,9 +7,13 @@ function SvgDevicesFold(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DevicesOther.jsx b/icons/jsx/DevicesOther.jsx index 6b8775d32e..9869ebbd86 100644 --- a/icons/jsx/DevicesOther.jsx +++ b/icons/jsx/DevicesOther.jsx @@ -7,9 +7,13 @@ function SvgDevicesOther(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DialerSip.jsx b/icons/jsx/DialerSip.jsx index c59341af14..e0c427f064 100644 --- a/icons/jsx/DialerSip.jsx +++ b/icons/jsx/DialerSip.jsx @@ -7,9 +7,13 @@ function SvgDialerSip(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Dialpad.jsx b/icons/jsx/Dialpad.jsx index 84b27b8ee8..4c6de9e363 100644 --- a/icons/jsx/Dialpad.jsx +++ b/icons/jsx/Dialpad.jsx @@ -7,9 +7,13 @@ function SvgDialpad(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Diamond.jsx b/icons/jsx/Diamond.jsx index b9dfc5d82f..d085d31a54 100644 --- a/icons/jsx/Diamond.jsx +++ b/icons/jsx/Diamond.jsx @@ -7,9 +7,13 @@ function SvgDiamond(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Difference.jsx b/icons/jsx/Difference.jsx index 30c3b34a9a..2ce4b8e0dd 100644 --- a/icons/jsx/Difference.jsx +++ b/icons/jsx/Difference.jsx @@ -7,9 +7,13 @@ function SvgDifference(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Dining.jsx b/icons/jsx/Dining.jsx index 9d1b2ede80..58653d3b79 100644 --- a/icons/jsx/Dining.jsx +++ b/icons/jsx/Dining.jsx @@ -7,9 +7,13 @@ function SvgDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DinnerDining.jsx b/icons/jsx/DinnerDining.jsx index 1422ce5b7d..28c706d893 100644 --- a/icons/jsx/DinnerDining.jsx +++ b/icons/jsx/DinnerDining.jsx @@ -7,9 +7,13 @@ function SvgDinnerDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Directions.jsx b/icons/jsx/Directions.jsx index cf11fd6d45..2d0749fb74 100644 --- a/icons/jsx/Directions.jsx +++ b/icons/jsx/Directions.jsx @@ -7,9 +7,13 @@ function SvgDirections(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsBike.jsx b/icons/jsx/DirectionsBike.jsx index c194bed409..7ea330a908 100644 --- a/icons/jsx/DirectionsBike.jsx +++ b/icons/jsx/DirectionsBike.jsx @@ -7,9 +7,13 @@ function SvgDirectionsBike(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsBoat.jsx b/icons/jsx/DirectionsBoat.jsx index 75f5da7301..50b57b652e 100644 --- a/icons/jsx/DirectionsBoat.jsx +++ b/icons/jsx/DirectionsBoat.jsx @@ -7,9 +7,13 @@ function SvgDirectionsBoat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsBoatFilled.jsx b/icons/jsx/DirectionsBoatFilled.jsx index adec02f6ea..9d1433d571 100644 --- a/icons/jsx/DirectionsBoatFilled.jsx +++ b/icons/jsx/DirectionsBoatFilled.jsx @@ -7,9 +7,13 @@ function SvgDirectionsBoatFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsBus.jsx b/icons/jsx/DirectionsBus.jsx index ad16dbbf18..299f297912 100644 --- a/icons/jsx/DirectionsBus.jsx +++ b/icons/jsx/DirectionsBus.jsx @@ -7,9 +7,13 @@ function SvgDirectionsBus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsBusFilled.jsx b/icons/jsx/DirectionsBusFilled.jsx index 1888148524..be311012f7 100644 --- a/icons/jsx/DirectionsBusFilled.jsx +++ b/icons/jsx/DirectionsBusFilled.jsx @@ -7,9 +7,13 @@ function SvgDirectionsBusFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsCar.jsx b/icons/jsx/DirectionsCar.jsx index 4915f62c76..7b8bf14e5e 100644 --- a/icons/jsx/DirectionsCar.jsx +++ b/icons/jsx/DirectionsCar.jsx @@ -7,9 +7,13 @@ function SvgDirectionsCar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsCarFilled.jsx b/icons/jsx/DirectionsCarFilled.jsx index 034d8e8902..10b161e5b0 100644 --- a/icons/jsx/DirectionsCarFilled.jsx +++ b/icons/jsx/DirectionsCarFilled.jsx @@ -7,9 +7,13 @@ function SvgDirectionsCarFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsOff.jsx b/icons/jsx/DirectionsOff.jsx index 959ae73be6..2e8dbc0160 100644 --- a/icons/jsx/DirectionsOff.jsx +++ b/icons/jsx/DirectionsOff.jsx @@ -7,9 +7,13 @@ function SvgDirectionsOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsRailway.jsx b/icons/jsx/DirectionsRailway.jsx index 1c27385f93..cc1492e731 100644 --- a/icons/jsx/DirectionsRailway.jsx +++ b/icons/jsx/DirectionsRailway.jsx @@ -7,9 +7,13 @@ function SvgDirectionsRailway(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsRailwayFilled.jsx b/icons/jsx/DirectionsRailwayFilled.jsx index b038e7589e..f49148683a 100644 --- a/icons/jsx/DirectionsRailwayFilled.jsx +++ b/icons/jsx/DirectionsRailwayFilled.jsx @@ -7,9 +7,13 @@ function SvgDirectionsRailwayFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsRun.jsx b/icons/jsx/DirectionsRun.jsx index bd00cdb9f9..e364621ca4 100644 --- a/icons/jsx/DirectionsRun.jsx +++ b/icons/jsx/DirectionsRun.jsx @@ -7,9 +7,13 @@ function SvgDirectionsRun(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsSubway.jsx b/icons/jsx/DirectionsSubway.jsx index 8295e82b62..55d8e30e60 100644 --- a/icons/jsx/DirectionsSubway.jsx +++ b/icons/jsx/DirectionsSubway.jsx @@ -7,9 +7,13 @@ function SvgDirectionsSubway(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsSubwayFilled.jsx b/icons/jsx/DirectionsSubwayFilled.jsx index b912d067b7..9fb42718e7 100644 --- a/icons/jsx/DirectionsSubwayFilled.jsx +++ b/icons/jsx/DirectionsSubwayFilled.jsx @@ -7,9 +7,13 @@ function SvgDirectionsSubwayFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsTransit.jsx b/icons/jsx/DirectionsTransit.jsx index b40a15a82d..3ec3b56b26 100644 --- a/icons/jsx/DirectionsTransit.jsx +++ b/icons/jsx/DirectionsTransit.jsx @@ -7,9 +7,13 @@ function SvgDirectionsTransit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsTransitFilled.jsx b/icons/jsx/DirectionsTransitFilled.jsx index 3b8689530c..57d4d702a1 100644 --- a/icons/jsx/DirectionsTransitFilled.jsx +++ b/icons/jsx/DirectionsTransitFilled.jsx @@ -7,9 +7,13 @@ function SvgDirectionsTransitFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirectionsWalk.jsx b/icons/jsx/DirectionsWalk.jsx index f09d44eb7e..c569d3659b 100644 --- a/icons/jsx/DirectionsWalk.jsx +++ b/icons/jsx/DirectionsWalk.jsx @@ -7,9 +7,13 @@ function SvgDirectionsWalk(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DirtyLens.jsx b/icons/jsx/DirtyLens.jsx index 60ba637c88..051ba6a4be 100644 --- a/icons/jsx/DirtyLens.jsx +++ b/icons/jsx/DirtyLens.jsx @@ -7,9 +7,13 @@ function SvgDirtyLens(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DisabledByDefault.jsx b/icons/jsx/DisabledByDefault.jsx index f701b334cb..67c2160fd4 100644 --- a/icons/jsx/DisabledByDefault.jsx +++ b/icons/jsx/DisabledByDefault.jsx @@ -7,9 +7,13 @@ function SvgDisabledByDefault(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DisabledVisible.jsx b/icons/jsx/DisabledVisible.jsx index 8b8fd6c99f..b4ff50ce9b 100644 --- a/icons/jsx/DisabledVisible.jsx +++ b/icons/jsx/DisabledVisible.jsx @@ -7,9 +7,13 @@ function SvgDisabledVisible(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DiscFull.jsx b/icons/jsx/DiscFull.jsx index 06a34dac87..8fd8247af3 100644 --- a/icons/jsx/DiscFull.jsx +++ b/icons/jsx/DiscFull.jsx @@ -7,9 +7,13 @@ function SvgDiscFull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Discord.jsx b/icons/jsx/Discord.jsx index 223c5905a8..1ff3da9abb 100644 --- a/icons/jsx/Discord.jsx +++ b/icons/jsx/Discord.jsx @@ -7,9 +7,13 @@ function SvgDiscord(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Discount.jsx b/icons/jsx/Discount.jsx index 574b42ddca..2b49f694ff 100644 --- a/icons/jsx/Discount.jsx +++ b/icons/jsx/Discount.jsx @@ -7,10 +7,17 @@ function SvgDiscount(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/DisplaySettings.jsx b/icons/jsx/DisplaySettings.jsx index 79d2859ae6..4ab1142864 100644 --- a/icons/jsx/DisplaySettings.jsx +++ b/icons/jsx/DisplaySettings.jsx @@ -7,10 +7,14 @@ function SvgDisplaySettings(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Diversity1.jsx b/icons/jsx/Diversity1.jsx index 076a4cf513..9a805f282c 100644 --- a/icons/jsx/Diversity1.jsx +++ b/icons/jsx/Diversity1.jsx @@ -7,13 +7,23 @@ function SvgDiversity1(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - - + + ); } diff --git a/icons/jsx/Diversity2.jsx b/icons/jsx/Diversity2.jsx index 9846ca031c..9653bc703a 100644 --- a/icons/jsx/Diversity2.jsx +++ b/icons/jsx/Diversity2.jsx @@ -7,11 +7,21 @@ function SvgDiversity2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/Diversity3.jsx b/icons/jsx/Diversity3.jsx index 7944096da9..4952259f93 100644 --- a/icons/jsx/Diversity3.jsx +++ b/icons/jsx/Diversity3.jsx @@ -7,10 +7,17 @@ function SvgDiversity3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Divide.jsx b/icons/jsx/Divide.jsx index be3da551fd..b19e68bf3e 100644 --- a/icons/jsx/Divide.jsx +++ b/icons/jsx/Divide.jsx @@ -7,9 +7,13 @@ function SvgDivide(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Dns.jsx b/icons/jsx/Dns.jsx index 028efb420e..69916b1dd3 100644 --- a/icons/jsx/Dns.jsx +++ b/icons/jsx/Dns.jsx @@ -7,9 +7,13 @@ function SvgDns(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoDisturb.jsx b/icons/jsx/DoDisturb.jsx index 3c0867c168..41f0f1f656 100644 --- a/icons/jsx/DoDisturb.jsx +++ b/icons/jsx/DoDisturb.jsx @@ -7,9 +7,13 @@ function SvgDoDisturb(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoDisturbAlt.jsx b/icons/jsx/DoDisturbAlt.jsx index 2817a8e73d..24c1591291 100644 --- a/icons/jsx/DoDisturbAlt.jsx +++ b/icons/jsx/DoDisturbAlt.jsx @@ -7,9 +7,13 @@ function SvgDoDisturbAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoDisturbOff.jsx b/icons/jsx/DoDisturbOff.jsx index 90f14e32e1..dc93506555 100644 --- a/icons/jsx/DoDisturbOff.jsx +++ b/icons/jsx/DoDisturbOff.jsx @@ -7,9 +7,13 @@ function SvgDoDisturbOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoDisturbOn.jsx b/icons/jsx/DoDisturbOn.jsx index 5e0f8529be..2144aa1376 100644 --- a/icons/jsx/DoDisturbOn.jsx +++ b/icons/jsx/DoDisturbOn.jsx @@ -7,9 +7,13 @@ function SvgDoDisturbOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoNotDisturb.jsx b/icons/jsx/DoNotDisturb.jsx index 6aed910453..7cb230671d 100644 --- a/icons/jsx/DoNotDisturb.jsx +++ b/icons/jsx/DoNotDisturb.jsx @@ -7,9 +7,13 @@ function SvgDoNotDisturb(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoNotDisturbAlt.jsx b/icons/jsx/DoNotDisturbAlt.jsx index f4822831f2..2dd8c29179 100644 --- a/icons/jsx/DoNotDisturbAlt.jsx +++ b/icons/jsx/DoNotDisturbAlt.jsx @@ -7,9 +7,13 @@ function SvgDoNotDisturbAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoNotDisturbOff.jsx b/icons/jsx/DoNotDisturbOff.jsx index 07bf8ce191..76c78cfd0e 100644 --- a/icons/jsx/DoNotDisturbOff.jsx +++ b/icons/jsx/DoNotDisturbOff.jsx @@ -7,9 +7,13 @@ function SvgDoNotDisturbOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoNotDisturbOn.jsx b/icons/jsx/DoNotDisturbOn.jsx index bfc1fed52b..0c7467e4de 100644 --- a/icons/jsx/DoNotDisturbOn.jsx +++ b/icons/jsx/DoNotDisturbOn.jsx @@ -7,9 +7,13 @@ function SvgDoNotDisturbOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoNotDisturbOnTotalSilence.jsx b/icons/jsx/DoNotDisturbOnTotalSilence.jsx index ceb176457a..583402beb5 100644 --- a/icons/jsx/DoNotDisturbOnTotalSilence.jsx +++ b/icons/jsx/DoNotDisturbOnTotalSilence.jsx @@ -7,9 +7,13 @@ function SvgDoNotDisturbOnTotalSilence(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoNotStep.jsx b/icons/jsx/DoNotStep.jsx index 6ffc8eb11f..910bd7339a 100644 --- a/icons/jsx/DoNotStep.jsx +++ b/icons/jsx/DoNotStep.jsx @@ -7,9 +7,13 @@ function SvgDoNotStep(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoNotTouch.jsx b/icons/jsx/DoNotTouch.jsx index 79563cbe45..32d9a6ab5a 100644 --- a/icons/jsx/DoNotTouch.jsx +++ b/icons/jsx/DoNotTouch.jsx @@ -7,9 +7,13 @@ function SvgDoNotTouch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Dock.jsx b/icons/jsx/Dock.jsx index be238cff4e..5f98c0618d 100644 --- a/icons/jsx/Dock.jsx +++ b/icons/jsx/Dock.jsx @@ -7,9 +7,13 @@ function SvgDock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DocumentScanner.jsx b/icons/jsx/DocumentScanner.jsx index 39ad76d94a..266a42b9c1 100644 --- a/icons/jsx/DocumentScanner.jsx +++ b/icons/jsx/DocumentScanner.jsx @@ -7,9 +7,13 @@ function SvgDocumentScanner(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Domain.jsx b/icons/jsx/Domain.jsx index 0f062e6818..f57fdf163f 100644 --- a/icons/jsx/Domain.jsx +++ b/icons/jsx/Domain.jsx @@ -7,9 +7,13 @@ function SvgDomain(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DomainAdd.jsx b/icons/jsx/DomainAdd.jsx index a0b3066d7b..efb4ff293c 100644 --- a/icons/jsx/DomainAdd.jsx +++ b/icons/jsx/DomainAdd.jsx @@ -7,9 +7,13 @@ function SvgDomainAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DomainDisabled.jsx b/icons/jsx/DomainDisabled.jsx index ee260cb2da..a0190c3a93 100644 --- a/icons/jsx/DomainDisabled.jsx +++ b/icons/jsx/DomainDisabled.jsx @@ -7,9 +7,13 @@ function SvgDomainDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DomainVerification.jsx b/icons/jsx/DomainVerification.jsx index 137511c439..7ed9f11942 100644 --- a/icons/jsx/DomainVerification.jsx +++ b/icons/jsx/DomainVerification.jsx @@ -7,10 +7,14 @@ function SvgDomainVerification(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Done.jsx b/icons/jsx/Done.jsx index aa31f2a864..394976f4ca 100644 --- a/icons/jsx/Done.jsx +++ b/icons/jsx/Done.jsx @@ -7,9 +7,13 @@ function SvgDone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoneAll.jsx b/icons/jsx/DoneAll.jsx index 6bcf9981ac..b7b65390e5 100644 --- a/icons/jsx/DoneAll.jsx +++ b/icons/jsx/DoneAll.jsx @@ -7,9 +7,13 @@ function SvgDoneAll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoneOutline.jsx b/icons/jsx/DoneOutline.jsx index c7b5970f87..3971f390b4 100644 --- a/icons/jsx/DoneOutline.jsx +++ b/icons/jsx/DoneOutline.jsx @@ -7,9 +7,13 @@ function SvgDoneOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DonutLarge.jsx b/icons/jsx/DonutLarge.jsx index 4b7e7990aa..2d4dd0ef93 100644 --- a/icons/jsx/DonutLarge.jsx +++ b/icons/jsx/DonutLarge.jsx @@ -7,9 +7,13 @@ function SvgDonutLarge(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DonutSmall.jsx b/icons/jsx/DonutSmall.jsx index d43d6f6b30..dba5723ea7 100644 --- a/icons/jsx/DonutSmall.jsx +++ b/icons/jsx/DonutSmall.jsx @@ -7,9 +7,13 @@ function SvgDonutSmall(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoorBack.jsx b/icons/jsx/DoorBack.jsx index fabbc5a644..bbc3275d90 100644 --- a/icons/jsx/DoorBack.jsx +++ b/icons/jsx/DoorBack.jsx @@ -7,9 +7,13 @@ function SvgDoorBack(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoorFront.jsx b/icons/jsx/DoorFront.jsx index e74b4d0f0e..e1ddb83110 100644 --- a/icons/jsx/DoorFront.jsx +++ b/icons/jsx/DoorFront.jsx @@ -7,9 +7,13 @@ function SvgDoorFront(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoorSliding.jsx b/icons/jsx/DoorSliding.jsx index 1028f946c6..8c4f710fce 100644 --- a/icons/jsx/DoorSliding.jsx +++ b/icons/jsx/DoorSliding.jsx @@ -7,9 +7,13 @@ function SvgDoorSliding(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Doorbell.jsx b/icons/jsx/Doorbell.jsx index e80297dafc..4f911dad13 100644 --- a/icons/jsx/Doorbell.jsx +++ b/icons/jsx/Doorbell.jsx @@ -7,9 +7,13 @@ function SvgDoorbell(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DoubleArrow.jsx b/icons/jsx/DoubleArrow.jsx index 058dfd3716..ae6a81dfc9 100644 --- a/icons/jsx/DoubleArrow.jsx +++ b/icons/jsx/DoubleArrow.jsx @@ -7,10 +7,11 @@ function SvgDoubleArrow(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/DownhillSkiing.jsx b/icons/jsx/DownhillSkiing.jsx index 0d151ca839..ca8077f307 100644 --- a/icons/jsx/DownhillSkiing.jsx +++ b/icons/jsx/DownhillSkiing.jsx @@ -7,9 +7,13 @@ function SvgDownhillSkiing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DownloadForOffline.jsx b/icons/jsx/DownloadForOffline.jsx index b56aee1efb..185c2db9cb 100644 --- a/icons/jsx/DownloadForOffline.jsx +++ b/icons/jsx/DownloadForOffline.jsx @@ -7,9 +7,13 @@ function SvgDownloadForOffline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Drafts.jsx b/icons/jsx/Drafts.jsx index f4b8f5b760..04a1e238bc 100644 --- a/icons/jsx/Drafts.jsx +++ b/icons/jsx/Drafts.jsx @@ -7,9 +7,13 @@ function SvgDrafts(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DragHandle.jsx b/icons/jsx/DragHandle.jsx index 78ab24a848..bfe078ca62 100644 --- a/icons/jsx/DragHandle.jsx +++ b/icons/jsx/DragHandle.jsx @@ -7,9 +7,10 @@ function SvgDragHandle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DragIndicator.jsx b/icons/jsx/DragIndicator.jsx index b1769ca635..4ea48fa0af 100644 --- a/icons/jsx/DragIndicator.jsx +++ b/icons/jsx/DragIndicator.jsx @@ -7,9 +7,13 @@ function SvgDragIndicator(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Draw.jsx b/icons/jsx/Draw.jsx index ccdfaea34d..ebe5d8c055 100644 --- a/icons/jsx/Draw.jsx +++ b/icons/jsx/Draw.jsx @@ -7,9 +7,13 @@ function SvgDraw(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DriveEta.jsx b/icons/jsx/DriveEta.jsx index cbba757cb6..ebc04ff3e2 100644 --- a/icons/jsx/DriveEta.jsx +++ b/icons/jsx/DriveEta.jsx @@ -7,9 +7,13 @@ function SvgDriveEta(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DriveFileMove.jsx b/icons/jsx/DriveFileMove.jsx index f1f24d8b80..770086fd10 100644 --- a/icons/jsx/DriveFileMove.jsx +++ b/icons/jsx/DriveFileMove.jsx @@ -7,9 +7,13 @@ function SvgDriveFileMove(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DriveFileMoveRtl.jsx b/icons/jsx/DriveFileMoveRtl.jsx index fefd4ce571..91df3afa49 100644 --- a/icons/jsx/DriveFileMoveRtl.jsx +++ b/icons/jsx/DriveFileMoveRtl.jsx @@ -7,9 +7,13 @@ function SvgDriveFileMoveRtl(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DriveFileRenameOutline.jsx b/icons/jsx/DriveFileRenameOutline.jsx index 253e67740a..21afef497f 100644 --- a/icons/jsx/DriveFileRenameOutline.jsx +++ b/icons/jsx/DriveFileRenameOutline.jsx @@ -7,9 +7,13 @@ function SvgDriveFileRenameOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DriveFolderUpload.jsx b/icons/jsx/DriveFolderUpload.jsx index eb5d1f1188..79bef16ab6 100644 --- a/icons/jsx/DriveFolderUpload.jsx +++ b/icons/jsx/DriveFolderUpload.jsx @@ -7,9 +7,13 @@ function SvgDriveFolderUpload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Dry.jsx b/icons/jsx/Dry.jsx index cfe6bbb5ad..56bdfadbf7 100644 --- a/icons/jsx/Dry.jsx +++ b/icons/jsx/Dry.jsx @@ -7,9 +7,13 @@ function SvgDry(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DryCleaning.jsx b/icons/jsx/DryCleaning.jsx index 9e298effa8..3cd11cd9c6 100644 --- a/icons/jsx/DryCleaning.jsx +++ b/icons/jsx/DryCleaning.jsx @@ -7,9 +7,13 @@ function SvgDryCleaning(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Duo.jsx b/icons/jsx/Duo.jsx index 8d494c54f1..93cd5cd171 100644 --- a/icons/jsx/Duo.jsx +++ b/icons/jsx/Duo.jsx @@ -7,9 +7,13 @@ function SvgDuo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Dvr.jsx b/icons/jsx/Dvr.jsx index 1371e2bacd..39e0a328f2 100644 --- a/icons/jsx/Dvr.jsx +++ b/icons/jsx/Dvr.jsx @@ -7,9 +7,13 @@ function SvgDvr(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/DynamicFeed.jsx b/icons/jsx/DynamicFeed.jsx index 871c2c7a3a..0fd1b5131f 100644 --- a/icons/jsx/DynamicFeed.jsx +++ b/icons/jsx/DynamicFeed.jsx @@ -7,10 +7,14 @@ function SvgDynamicFeed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/DynamicForm.jsx b/icons/jsx/DynamicForm.jsx index 64ad14440d..59b2c3e452 100644 --- a/icons/jsx/DynamicForm.jsx +++ b/icons/jsx/DynamicForm.jsx @@ -7,9 +7,13 @@ function SvgDynamicForm(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EMobiledata.jsx b/icons/jsx/EMobiledata.jsx index 8166de941a..645e28df06 100644 --- a/icons/jsx/EMobiledata.jsx +++ b/icons/jsx/EMobiledata.jsx @@ -7,9 +7,10 @@ function SvgEMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Earbuds.jsx b/icons/jsx/Earbuds.jsx index 6884499fb8..c89d64c0e5 100644 --- a/icons/jsx/Earbuds.jsx +++ b/icons/jsx/Earbuds.jsx @@ -7,10 +7,14 @@ function SvgEarbuds(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/EarbudsBattery.jsx b/icons/jsx/EarbudsBattery.jsx index 066042a29a..a0cc3b3d7d 100644 --- a/icons/jsx/EarbudsBattery.jsx +++ b/icons/jsx/EarbudsBattery.jsx @@ -7,9 +7,13 @@ function SvgEarbudsBattery(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/East.jsx b/icons/jsx/East.jsx index 8f962f4a09..bd7937a69f 100644 --- a/icons/jsx/East.jsx +++ b/icons/jsx/East.jsx @@ -7,9 +7,13 @@ function SvgEast(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Eco.jsx b/icons/jsx/Eco.jsx index ce6982e5bc..b9dea1c9af 100644 --- a/icons/jsx/Eco.jsx +++ b/icons/jsx/Eco.jsx @@ -7,9 +7,13 @@ function SvgEco(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EdgesensorHigh.jsx b/icons/jsx/EdgesensorHigh.jsx index 0b9fc1080a..e62e88ccea 100644 --- a/icons/jsx/EdgesensorHigh.jsx +++ b/icons/jsx/EdgesensorHigh.jsx @@ -7,9 +7,13 @@ function SvgEdgesensorHigh(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EdgesensorLow.jsx b/icons/jsx/EdgesensorLow.jsx index 83c39a3b1e..47fffa72b2 100644 --- a/icons/jsx/EdgesensorLow.jsx +++ b/icons/jsx/EdgesensorLow.jsx @@ -7,9 +7,13 @@ function SvgEdgesensorLow(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EditAttributes.jsx b/icons/jsx/EditAttributes.jsx index 82dfc47618..33b8e489cd 100644 --- a/icons/jsx/EditAttributes.jsx +++ b/icons/jsx/EditAttributes.jsx @@ -7,9 +7,13 @@ function SvgEditAttributes(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EditCalendar.jsx b/icons/jsx/EditCalendar.jsx index 8b095b186d..bc3383d487 100644 --- a/icons/jsx/EditCalendar.jsx +++ b/icons/jsx/EditCalendar.jsx @@ -7,9 +7,13 @@ function SvgEditCalendar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EditCircle.jsx b/icons/jsx/EditCircle.jsx new file mode 100644 index 0000000000..b9c07d1ca1 --- /dev/null +++ b/icons/jsx/EditCircle.jsx @@ -0,0 +1,19 @@ +import * as React from "react"; + +function SvgEditCircle(props) { + return ( + + + + ); +} + +export default SvgEditCircle; diff --git a/icons/jsx/EditLocation.jsx b/icons/jsx/EditLocation.jsx index 77b3fbd1fc..ece0201c84 100644 --- a/icons/jsx/EditLocation.jsx +++ b/icons/jsx/EditLocation.jsx @@ -7,9 +7,13 @@ function SvgEditLocation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EditLocationAlt.jsx b/icons/jsx/EditLocationAlt.jsx index 3773f6e811..0acf9b737a 100644 --- a/icons/jsx/EditLocationAlt.jsx +++ b/icons/jsx/EditLocationAlt.jsx @@ -7,9 +7,13 @@ function SvgEditLocationAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EditNote.jsx b/icons/jsx/EditNote.jsx index 0d47bf9b8e..c0cc6d5f73 100644 --- a/icons/jsx/EditNote.jsx +++ b/icons/jsx/EditNote.jsx @@ -7,9 +7,13 @@ function SvgEditNote(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EditNotifications.jsx b/icons/jsx/EditNotifications.jsx index d17d8419d1..8d4aabc4fe 100644 --- a/icons/jsx/EditNotifications.jsx +++ b/icons/jsx/EditNotifications.jsx @@ -7,9 +7,13 @@ function SvgEditNotifications(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EditOff.jsx b/icons/jsx/EditOff.jsx index 345d5fb9cc..795b9aa468 100644 --- a/icons/jsx/EditOff.jsx +++ b/icons/jsx/EditOff.jsx @@ -7,9 +7,13 @@ function SvgEditOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EditRoad.jsx b/icons/jsx/EditRoad.jsx index 15abc6926e..c54bef626f 100644 --- a/icons/jsx/EditRoad.jsx +++ b/icons/jsx/EditRoad.jsx @@ -7,9 +7,13 @@ function SvgEditRoad(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Egg.jsx b/icons/jsx/Egg.jsx index da251398b1..72ee3becca 100644 --- a/icons/jsx/Egg.jsx +++ b/icons/jsx/Egg.jsx @@ -7,9 +7,13 @@ function SvgEgg(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EggAlt.jsx b/icons/jsx/EggAlt.jsx index 574d426fb0..0b7c73d247 100644 --- a/icons/jsx/EggAlt.jsx +++ b/icons/jsx/EggAlt.jsx @@ -7,9 +7,13 @@ function SvgEggAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Eject.jsx b/icons/jsx/Eject.jsx index 2449d82818..789ae5be5c 100644 --- a/icons/jsx/Eject.jsx +++ b/icons/jsx/Eject.jsx @@ -7,9 +7,10 @@ function SvgEject(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Elderly.jsx b/icons/jsx/Elderly.jsx index f199e908ef..9c447407f0 100644 --- a/icons/jsx/Elderly.jsx +++ b/icons/jsx/Elderly.jsx @@ -7,9 +7,13 @@ function SvgElderly(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ElderlyWoman.jsx b/icons/jsx/ElderlyWoman.jsx index 0ce08f42a3..3c9a59c03f 100644 --- a/icons/jsx/ElderlyWoman.jsx +++ b/icons/jsx/ElderlyWoman.jsx @@ -7,9 +7,13 @@ function SvgElderlyWoman(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ElectricBike.jsx b/icons/jsx/ElectricBike.jsx index 0e3b87f84b..5191f47803 100644 --- a/icons/jsx/ElectricBike.jsx +++ b/icons/jsx/ElectricBike.jsx @@ -7,9 +7,13 @@ function SvgElectricBike(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ElectricBolt.jsx b/icons/jsx/ElectricBolt.jsx index 89d2429411..b3f2dd996d 100644 --- a/icons/jsx/ElectricBolt.jsx +++ b/icons/jsx/ElectricBolt.jsx @@ -7,9 +7,13 @@ function SvgElectricBolt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ElectricCar.jsx b/icons/jsx/ElectricCar.jsx index d10dfc51ea..032df59e04 100644 --- a/icons/jsx/ElectricCar.jsx +++ b/icons/jsx/ElectricCar.jsx @@ -7,9 +7,13 @@ function SvgElectricCar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ElectricMeter.jsx b/icons/jsx/ElectricMeter.jsx index 3012f5f202..4a06f93100 100644 --- a/icons/jsx/ElectricMeter.jsx +++ b/icons/jsx/ElectricMeter.jsx @@ -7,9 +7,13 @@ function SvgElectricMeter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ElectricMoped.jsx b/icons/jsx/ElectricMoped.jsx index faf3c5c0f2..ffe67413fc 100644 --- a/icons/jsx/ElectricMoped.jsx +++ b/icons/jsx/ElectricMoped.jsx @@ -7,10 +7,17 @@ function SvgElectricMoped(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/ElectricRickshaw.jsx b/icons/jsx/ElectricRickshaw.jsx index 9cb84e93a9..ad49d7bcf8 100644 --- a/icons/jsx/ElectricRickshaw.jsx +++ b/icons/jsx/ElectricRickshaw.jsx @@ -7,9 +7,13 @@ function SvgElectricRickshaw(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ElectricScooter.jsx b/icons/jsx/ElectricScooter.jsx index facc8542c7..10c56c992e 100644 --- a/icons/jsx/ElectricScooter.jsx +++ b/icons/jsx/ElectricScooter.jsx @@ -7,10 +7,17 @@ function SvgElectricScooter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/ElectricalServices.jsx b/icons/jsx/ElectricalServices.jsx index 732f3c710d..10e495aec0 100644 --- a/icons/jsx/ElectricalServices.jsx +++ b/icons/jsx/ElectricalServices.jsx @@ -7,10 +7,14 @@ function SvgElectricalServices(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Elevator.jsx b/icons/jsx/Elevator.jsx index 49fb3bfc6d..3d2bc1c657 100644 --- a/icons/jsx/Elevator.jsx +++ b/icons/jsx/Elevator.jsx @@ -7,9 +7,13 @@ function SvgElevator(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Emergency.jsx b/icons/jsx/Emergency.jsx index c736b5c7a6..b96d284130 100644 --- a/icons/jsx/Emergency.jsx +++ b/icons/jsx/Emergency.jsx @@ -7,9 +7,13 @@ function SvgEmergency(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmergencyRecording.jsx b/icons/jsx/EmergencyRecording.jsx index 1cf5c5dc43..d654a54b5f 100644 --- a/icons/jsx/EmergencyRecording.jsx +++ b/icons/jsx/EmergencyRecording.jsx @@ -7,9 +7,13 @@ function SvgEmergencyRecording(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmergencyShare.jsx b/icons/jsx/EmergencyShare.jsx index 029efec6c3..5798413077 100644 --- a/icons/jsx/EmergencyShare.jsx +++ b/icons/jsx/EmergencyShare.jsx @@ -7,9 +7,13 @@ function SvgEmergencyShare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmojiEmotions.jsx b/icons/jsx/EmojiEmotions.jsx index 80ff35d3b8..82529b0817 100644 --- a/icons/jsx/EmojiEmotions.jsx +++ b/icons/jsx/EmojiEmotions.jsx @@ -7,9 +7,13 @@ function SvgEmojiEmotions(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmojiEvents.jsx b/icons/jsx/EmojiEvents.jsx index 1697c3e007..8e5156bdc7 100644 --- a/icons/jsx/EmojiEvents.jsx +++ b/icons/jsx/EmojiEvents.jsx @@ -7,9 +7,13 @@ function SvgEmojiEvents(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmojiFlags.jsx b/icons/jsx/EmojiFlags.jsx index cab74c65c2..6846428779 100644 --- a/icons/jsx/EmojiFlags.jsx +++ b/icons/jsx/EmojiFlags.jsx @@ -7,9 +7,13 @@ function SvgEmojiFlags(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmojiFoodBeverage.jsx b/icons/jsx/EmojiFoodBeverage.jsx index 4b3b3f5fad..afdeb245bb 100644 --- a/icons/jsx/EmojiFoodBeverage.jsx +++ b/icons/jsx/EmojiFoodBeverage.jsx @@ -7,9 +7,13 @@ function SvgEmojiFoodBeverage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmojiNature.jsx b/icons/jsx/EmojiNature.jsx index 43237264ba..c756739234 100644 --- a/icons/jsx/EmojiNature.jsx +++ b/icons/jsx/EmojiNature.jsx @@ -7,9 +7,13 @@ function SvgEmojiNature(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmojiObjects.jsx b/icons/jsx/EmojiObjects.jsx index 7c2a5f92e0..817a87056f 100644 --- a/icons/jsx/EmojiObjects.jsx +++ b/icons/jsx/EmojiObjects.jsx @@ -7,9 +7,13 @@ function SvgEmojiObjects(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmojiPeople.jsx b/icons/jsx/EmojiPeople.jsx index b6bc63c852..d4119e8a75 100644 --- a/icons/jsx/EmojiPeople.jsx +++ b/icons/jsx/EmojiPeople.jsx @@ -7,10 +7,14 @@ function SvgEmojiPeople(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EmojiSymbols.jsx b/icons/jsx/EmojiSymbols.jsx index b713023a52..54f237008a 100644 --- a/icons/jsx/EmojiSymbols.jsx +++ b/icons/jsx/EmojiSymbols.jsx @@ -7,12 +7,19 @@ function SvgEmojiSymbols(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/EmojiTransportation.jsx b/icons/jsx/EmojiTransportation.jsx index 294ea4e593..4c8e2236a5 100644 --- a/icons/jsx/EmojiTransportation.jsx +++ b/icons/jsx/EmojiTransportation.jsx @@ -7,11 +7,18 @@ function SvgEmojiTransportation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/EnergySavingsLeaf.jsx b/icons/jsx/EnergySavingsLeaf.jsx index 8e8b81f89f..71267ac20e 100644 --- a/icons/jsx/EnergySavingsLeaf.jsx +++ b/icons/jsx/EnergySavingsLeaf.jsx @@ -7,9 +7,13 @@ function SvgEnergySavingsLeaf(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Engineering.jsx b/icons/jsx/Engineering.jsx index 7e1e505aa2..9c4b442790 100644 --- a/icons/jsx/Engineering.jsx +++ b/icons/jsx/Engineering.jsx @@ -7,9 +7,13 @@ function SvgEngineering(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EnhancedEncryption.jsx b/icons/jsx/EnhancedEncryption.jsx index 11d1ca0de9..41177334ad 100644 --- a/icons/jsx/EnhancedEncryption.jsx +++ b/icons/jsx/EnhancedEncryption.jsx @@ -7,9 +7,13 @@ function SvgEnhancedEncryption(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Equalizer.jsx b/icons/jsx/Equalizer.jsx index fb1bc876c7..d83a88b08b 100644 --- a/icons/jsx/Equalizer.jsx +++ b/icons/jsx/Equalizer.jsx @@ -7,9 +7,13 @@ function SvgEqualizer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Equals.jsx b/icons/jsx/Equals.jsx index 149b05d629..74fb80968f 100644 --- a/icons/jsx/Equals.jsx +++ b/icons/jsx/Equals.jsx @@ -7,9 +7,10 @@ function SvgEquals(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ErrorOutline.jsx b/icons/jsx/ErrorOutline.jsx index 2967475820..6ddaeaf6bf 100644 --- a/icons/jsx/ErrorOutline.jsx +++ b/icons/jsx/ErrorOutline.jsx @@ -7,9 +7,13 @@ function SvgErrorOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Escalator.jsx b/icons/jsx/Escalator.jsx index b6ab9bf13f..4ddcc13037 100644 --- a/icons/jsx/Escalator.jsx +++ b/icons/jsx/Escalator.jsx @@ -7,9 +7,13 @@ function SvgEscalator(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EscalatorWarning.jsx b/icons/jsx/EscalatorWarning.jsx index 869ae0f8c9..d3bbebc78d 100644 --- a/icons/jsx/EscalatorWarning.jsx +++ b/icons/jsx/EscalatorWarning.jsx @@ -7,9 +7,13 @@ function SvgEscalatorWarning(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Euro.jsx b/icons/jsx/Euro.jsx index 42052a8add..06eeb2277b 100644 --- a/icons/jsx/Euro.jsx +++ b/icons/jsx/Euro.jsx @@ -7,9 +7,13 @@ function SvgEuro(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EuroSymbol.jsx b/icons/jsx/EuroSymbol.jsx index 878b439110..6382a73ddb 100644 --- a/icons/jsx/EuroSymbol.jsx +++ b/icons/jsx/EuroSymbol.jsx @@ -7,9 +7,13 @@ function SvgEuroSymbol(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EvStation.jsx b/icons/jsx/EvStation.jsx index 96ef7be0d1..389f7579d5 100644 --- a/icons/jsx/EvStation.jsx +++ b/icons/jsx/EvStation.jsx @@ -7,9 +7,13 @@ function SvgEvStation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EventRepeat.jsx b/icons/jsx/EventRepeat.jsx index 31af131d50..0b24e729ec 100644 --- a/icons/jsx/EventRepeat.jsx +++ b/icons/jsx/EventRepeat.jsx @@ -7,9 +7,13 @@ function SvgEventRepeat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/EventSeat.jsx b/icons/jsx/EventSeat.jsx index 9e5cd1cf24..58b90b6859 100644 --- a/icons/jsx/EventSeat.jsx +++ b/icons/jsx/EventSeat.jsx @@ -7,9 +7,13 @@ function SvgEventSeat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExitToApp.jsx b/icons/jsx/ExitToApp.jsx index d93302f459..e43f029bee 100644 --- a/icons/jsx/ExitToApp.jsx +++ b/icons/jsx/ExitToApp.jsx @@ -7,9 +7,13 @@ function SvgExitToApp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Expand.jsx b/icons/jsx/Expand.jsx index cd6ac09ab2..8bb85c086f 100644 --- a/icons/jsx/Expand.jsx +++ b/icons/jsx/Expand.jsx @@ -7,9 +7,13 @@ function SvgExpand(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExpandCircleDown.jsx b/icons/jsx/ExpandCircleDown.jsx index e535ed340d..9357e7cdfc 100644 --- a/icons/jsx/ExpandCircleDown.jsx +++ b/icons/jsx/ExpandCircleDown.jsx @@ -7,9 +7,13 @@ function SvgExpandCircleDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Explicit.jsx b/icons/jsx/Explicit.jsx index faa2696f5d..e384f181f6 100644 --- a/icons/jsx/Explicit.jsx +++ b/icons/jsx/Explicit.jsx @@ -7,9 +7,13 @@ function SvgExplicit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Explore.jsx b/icons/jsx/Explore.jsx index 3dba450144..279b5105f8 100644 --- a/icons/jsx/Explore.jsx +++ b/icons/jsx/Explore.jsx @@ -7,9 +7,13 @@ function SvgExplore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExploreOff.jsx b/icons/jsx/ExploreOff.jsx index 90f1d96122..42380cced8 100644 --- a/icons/jsx/ExploreOff.jsx +++ b/icons/jsx/ExploreOff.jsx @@ -7,9 +7,13 @@ function SvgExploreOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Exposure.jsx b/icons/jsx/Exposure.jsx index 6c53cdaf95..d8e16d56de 100644 --- a/icons/jsx/Exposure.jsx +++ b/icons/jsx/Exposure.jsx @@ -7,9 +7,13 @@ function SvgExposure(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExposureNeg1.jsx b/icons/jsx/ExposureNeg1.jsx index 3d29934909..6fda4f9ef8 100644 --- a/icons/jsx/ExposureNeg1.jsx +++ b/icons/jsx/ExposureNeg1.jsx @@ -7,9 +7,13 @@ function SvgExposureNeg1(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExposureNeg2.jsx b/icons/jsx/ExposureNeg2.jsx index 8e50eb7a85..8e3bb1098f 100644 --- a/icons/jsx/ExposureNeg2.jsx +++ b/icons/jsx/ExposureNeg2.jsx @@ -7,9 +7,13 @@ function SvgExposureNeg2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExposurePlus1.jsx b/icons/jsx/ExposurePlus1.jsx index d0ca7de48b..742cd11d0b 100644 --- a/icons/jsx/ExposurePlus1.jsx +++ b/icons/jsx/ExposurePlus1.jsx @@ -7,9 +7,13 @@ function SvgExposurePlus1(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExposurePlus2.jsx b/icons/jsx/ExposurePlus2.jsx index 7227fa7247..85f72b4a1e 100644 --- a/icons/jsx/ExposurePlus2.jsx +++ b/icons/jsx/ExposurePlus2.jsx @@ -7,9 +7,13 @@ function SvgExposurePlus2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExposureZero.jsx b/icons/jsx/ExposureZero.jsx index 9e721c5ac9..12da043388 100644 --- a/icons/jsx/ExposureZero.jsx +++ b/icons/jsx/ExposureZero.jsx @@ -7,9 +7,13 @@ function SvgExposureZero(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Extension.jsx b/icons/jsx/Extension.jsx index a362c53fae..3add607c6d 100644 --- a/icons/jsx/Extension.jsx +++ b/icons/jsx/Extension.jsx @@ -7,9 +7,13 @@ function SvgExtension(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ExtensionOff.jsx b/icons/jsx/ExtensionOff.jsx index d0bb805817..9d2b6a7371 100644 --- a/icons/jsx/ExtensionOff.jsx +++ b/icons/jsx/ExtensionOff.jsx @@ -7,9 +7,13 @@ function SvgExtensionOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Face.jsx b/icons/jsx/Face.jsx index a046aba891..22dbec3b56 100644 --- a/icons/jsx/Face.jsx +++ b/icons/jsx/Face.jsx @@ -7,9 +7,13 @@ function SvgFace(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Face2.jsx b/icons/jsx/Face2.jsx index 4233281973..5b04e56f76 100644 --- a/icons/jsx/Face2.jsx +++ b/icons/jsx/Face2.jsx @@ -7,9 +7,13 @@ function SvgFace2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + diff --git a/icons/jsx/Face3.jsx b/icons/jsx/Face3.jsx index 20bd501426..cc97f3e011 100644 --- a/icons/jsx/Face3.jsx +++ b/icons/jsx/Face3.jsx @@ -7,11 +7,15 @@ function SvgFace3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Face4.jsx b/icons/jsx/Face4.jsx index 347c370425..8673aade76 100644 --- a/icons/jsx/Face4.jsx +++ b/icons/jsx/Face4.jsx @@ -7,9 +7,13 @@ function SvgFace4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + diff --git a/icons/jsx/Face5.jsx b/icons/jsx/Face5.jsx index 4fae7b6988..02f5e940aa 100644 --- a/icons/jsx/Face5.jsx +++ b/icons/jsx/Face5.jsx @@ -7,9 +7,13 @@ function SvgFace5(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + diff --git a/icons/jsx/Face6.jsx b/icons/jsx/Face6.jsx index 014de6b14f..8de634f815 100644 --- a/icons/jsx/Face6.jsx +++ b/icons/jsx/Face6.jsx @@ -7,9 +7,13 @@ function SvgFace6(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + diff --git a/icons/jsx/FaceRetouchingNatural.jsx b/icons/jsx/FaceRetouchingNatural.jsx index 273863ea3e..61598e5658 100644 --- a/icons/jsx/FaceRetouchingNatural.jsx +++ b/icons/jsx/FaceRetouchingNatural.jsx @@ -7,12 +7,19 @@ function SvgFaceRetouchingNatural(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/FaceRetouchingOff.jsx b/icons/jsx/FaceRetouchingOff.jsx index c68008856a..72c3c8c6f2 100644 --- a/icons/jsx/FaceRetouchingOff.jsx +++ b/icons/jsx/FaceRetouchingOff.jsx @@ -7,10 +7,14 @@ function SvgFaceRetouchingOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Facebook.jsx b/icons/jsx/Facebook.jsx index 1773e53e85..c6bc938c7d 100644 --- a/icons/jsx/Facebook.jsx +++ b/icons/jsx/Facebook.jsx @@ -7,9 +7,13 @@ function SvgFacebook(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FacebookCircle.jsx b/icons/jsx/FacebookCircle.jsx index 2e45e04254..426ec270f0 100644 --- a/icons/jsx/FacebookCircle.jsx +++ b/icons/jsx/FacebookCircle.jsx @@ -12,7 +12,7 @@ function SvgFacebookCircle(props) { > ); diff --git a/icons/jsx/FactCheck.jsx b/icons/jsx/FactCheck.jsx index 06e16dcdd6..553d97d8a7 100644 --- a/icons/jsx/FactCheck.jsx +++ b/icons/jsx/FactCheck.jsx @@ -7,11 +7,13 @@ function SvgFactCheck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/Factory.jsx b/icons/jsx/Factory.jsx index 689ef2bf64..607cea0864 100644 --- a/icons/jsx/Factory.jsx +++ b/icons/jsx/Factory.jsx @@ -7,9 +7,13 @@ function SvgFactory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FamilyRestroom.jsx b/icons/jsx/FamilyRestroom.jsx index 87afe06a8c..6909fa09ac 100644 --- a/icons/jsx/FamilyRestroom.jsx +++ b/icons/jsx/FamilyRestroom.jsx @@ -7,9 +7,13 @@ function SvgFamilyRestroom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FastForward.jsx b/icons/jsx/FastForward.jsx index 66b85787bc..ba17d2e0e5 100644 --- a/icons/jsx/FastForward.jsx +++ b/icons/jsx/FastForward.jsx @@ -7,9 +7,10 @@ function SvgFastForward(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FastRewind.jsx b/icons/jsx/FastRewind.jsx index 8e5923494d..3dc803c6b2 100644 --- a/icons/jsx/FastRewind.jsx +++ b/icons/jsx/FastRewind.jsx @@ -7,9 +7,13 @@ function SvgFastRewind(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Fastfood.jsx b/icons/jsx/Fastfood.jsx index 9ae6cb7330..1379cf485a 100644 --- a/icons/jsx/Fastfood.jsx +++ b/icons/jsx/Fastfood.jsx @@ -7,9 +7,13 @@ function SvgFastfood(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Fax.jsx b/icons/jsx/Fax.jsx index 2c40169335..28912e690a 100644 --- a/icons/jsx/Fax.jsx +++ b/icons/jsx/Fax.jsx @@ -7,9 +7,13 @@ function SvgFax(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FeaturedPlayList.jsx b/icons/jsx/FeaturedPlayList.jsx index 204ed01f2e..59ab91190f 100644 --- a/icons/jsx/FeaturedPlayList.jsx +++ b/icons/jsx/FeaturedPlayList.jsx @@ -7,9 +7,13 @@ function SvgFeaturedPlayList(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FeaturedVideo.jsx b/icons/jsx/FeaturedVideo.jsx index f99369446d..47cad4a14a 100644 --- a/icons/jsx/FeaturedVideo.jsx +++ b/icons/jsx/FeaturedVideo.jsx @@ -7,9 +7,10 @@ function SvgFeaturedVideo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Feed.jsx b/icons/jsx/Feed.jsx index 8e722c09fa..21b5796259 100644 --- a/icons/jsx/Feed.jsx +++ b/icons/jsx/Feed.jsx @@ -7,9 +7,13 @@ function SvgFeed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Feedback.jsx b/icons/jsx/Feedback.jsx index 6fc6243257..325053105d 100644 --- a/icons/jsx/Feedback.jsx +++ b/icons/jsx/Feedback.jsx @@ -7,9 +7,13 @@ function SvgFeedback(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FeedbackOutline.jsx b/icons/jsx/FeedbackOutline.jsx new file mode 100644 index 0000000000..cb6103de64 --- /dev/null +++ b/icons/jsx/FeedbackOutline.jsx @@ -0,0 +1,19 @@ +import * as React from "react"; +function SvgFeedbackOutline(props) { + return ( + + + + ); +} +export default SvgFeedbackOutline; diff --git a/icons/jsx/Female.jsx b/icons/jsx/Female.jsx index 3272b2b437..31c96e8349 100644 --- a/icons/jsx/Female.jsx +++ b/icons/jsx/Female.jsx @@ -7,9 +7,13 @@ function SvgFemale(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Fence.jsx b/icons/jsx/Fence.jsx index 3e20db0649..41f9d731ca 100644 --- a/icons/jsx/Fence.jsx +++ b/icons/jsx/Fence.jsx @@ -7,9 +7,13 @@ function SvgFence(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Festival.jsx b/icons/jsx/Festival.jsx index 9ee2d55df6..6033e2c692 100644 --- a/icons/jsx/Festival.jsx +++ b/icons/jsx/Festival.jsx @@ -7,9 +7,13 @@ function SvgFestival(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FiberDvr.jsx b/icons/jsx/FiberDvr.jsx index 9cb2ff0b2a..81f0628cb4 100644 --- a/icons/jsx/FiberDvr.jsx +++ b/icons/jsx/FiberDvr.jsx @@ -7,9 +7,13 @@ function SvgFiberDvr(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FiberManualRecord.jsx b/icons/jsx/FiberManualRecord.jsx index 40a35295d8..0cfcd98ad8 100644 --- a/icons/jsx/FiberManualRecord.jsx +++ b/icons/jsx/FiberManualRecord.jsx @@ -7,6 +7,7 @@ function SvgFiberManualRecord(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > diff --git a/icons/jsx/FiberNew.jsx b/icons/jsx/FiberNew.jsx index 37ae92263d..69b95dfa1a 100644 --- a/icons/jsx/FiberNew.jsx +++ b/icons/jsx/FiberNew.jsx @@ -7,9 +7,13 @@ function SvgFiberNew(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FiberPin.jsx b/icons/jsx/FiberPin.jsx index a786930973..9027f26150 100644 --- a/icons/jsx/FiberPin.jsx +++ b/icons/jsx/FiberPin.jsx @@ -7,9 +7,13 @@ function SvgFiberPin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FiberSmartRecord.jsx b/icons/jsx/FiberSmartRecord.jsx index 7380b80cb8..9b3248e4d0 100644 --- a/icons/jsx/FiberSmartRecord.jsx +++ b/icons/jsx/FiberSmartRecord.jsx @@ -7,10 +7,14 @@ function SvgFiberSmartRecord(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FileCopy.jsx b/icons/jsx/FileCopy.jsx index d33aa85730..1173967b70 100644 --- a/icons/jsx/FileCopy.jsx +++ b/icons/jsx/FileCopy.jsx @@ -7,9 +7,13 @@ function SvgFileCopy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FileDownload.jsx b/icons/jsx/FileDownload.jsx index 112a3c75d7..78fd9c405b 100644 --- a/icons/jsx/FileDownload.jsx +++ b/icons/jsx/FileDownload.jsx @@ -7,9 +7,10 @@ function SvgFileDownload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FileDownloadDone.jsx b/icons/jsx/FileDownloadDone.jsx index deac2f9360..2c5cef477e 100644 --- a/icons/jsx/FileDownloadDone.jsx +++ b/icons/jsx/FileDownloadDone.jsx @@ -7,9 +7,13 @@ function SvgFileDownloadDone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FileDownloadOff.jsx b/icons/jsx/FileDownloadOff.jsx index 6a63bfcc73..8b04cfb608 100644 --- a/icons/jsx/FileDownloadOff.jsx +++ b/icons/jsx/FileDownloadOff.jsx @@ -7,9 +7,13 @@ function SvgFileDownloadOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FileOpen.jsx b/icons/jsx/FileOpen.jsx index ccd0188390..c9d1b65a7e 100644 --- a/icons/jsx/FileOpen.jsx +++ b/icons/jsx/FileOpen.jsx @@ -7,9 +7,13 @@ function SvgFileOpen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilePresent.jsx b/icons/jsx/FilePresent.jsx index 3ca3dfce03..8007838e59 100644 --- a/icons/jsx/FilePresent.jsx +++ b/icons/jsx/FilePresent.jsx @@ -7,9 +7,13 @@ function SvgFilePresent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FileUpload.jsx b/icons/jsx/FileUpload.jsx index 0501de475b..1f7e33c0bd 100644 --- a/icons/jsx/FileUpload.jsx +++ b/icons/jsx/FileUpload.jsx @@ -7,9 +7,10 @@ function SvgFileUpload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter.jsx b/icons/jsx/Filter.jsx index b3fe6bfbf0..27749cc223 100644 --- a/icons/jsx/Filter.jsx +++ b/icons/jsx/Filter.jsx @@ -7,9 +7,13 @@ function SvgFilter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter1.jsx b/icons/jsx/Filter1.jsx index 7c0cf1ad76..87a77bba23 100644 --- a/icons/jsx/Filter1.jsx +++ b/icons/jsx/Filter1.jsx @@ -7,9 +7,13 @@ function SvgFilter1(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter2.jsx b/icons/jsx/Filter2.jsx index 84aee13896..8a1e10a290 100644 --- a/icons/jsx/Filter2.jsx +++ b/icons/jsx/Filter2.jsx @@ -7,9 +7,13 @@ function SvgFilter2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter3.jsx b/icons/jsx/Filter3.jsx index c9a38fd37a..2e070b4e60 100644 --- a/icons/jsx/Filter3.jsx +++ b/icons/jsx/Filter3.jsx @@ -7,9 +7,13 @@ function SvgFilter3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter4.jsx b/icons/jsx/Filter4.jsx index c820bc7b5e..0af39f101c 100644 --- a/icons/jsx/Filter4.jsx +++ b/icons/jsx/Filter4.jsx @@ -7,9 +7,13 @@ function SvgFilter4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter5.jsx b/icons/jsx/Filter5.jsx index be294960b6..285757e26c 100644 --- a/icons/jsx/Filter5.jsx +++ b/icons/jsx/Filter5.jsx @@ -7,9 +7,13 @@ function SvgFilter5(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter6.jsx b/icons/jsx/Filter6.jsx index 11474c85dd..36a0a687ed 100644 --- a/icons/jsx/Filter6.jsx +++ b/icons/jsx/Filter6.jsx @@ -7,9 +7,13 @@ function SvgFilter6(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter7.jsx b/icons/jsx/Filter7.jsx index af85b1716b..2b057003ff 100644 --- a/icons/jsx/Filter7.jsx +++ b/icons/jsx/Filter7.jsx @@ -7,9 +7,13 @@ function SvgFilter7(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter8.jsx b/icons/jsx/Filter8.jsx index 0e9106c7d5..6ac58e6408 100644 --- a/icons/jsx/Filter8.jsx +++ b/icons/jsx/Filter8.jsx @@ -7,9 +7,13 @@ function SvgFilter8(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter9.jsx b/icons/jsx/Filter9.jsx index b09e357ecf..164c538e9b 100644 --- a/icons/jsx/Filter9.jsx +++ b/icons/jsx/Filter9.jsx @@ -7,9 +7,13 @@ function SvgFilter9(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Filter9Plus.jsx b/icons/jsx/Filter9Plus.jsx index a417199164..04ad67b9d8 100644 --- a/icons/jsx/Filter9Plus.jsx +++ b/icons/jsx/Filter9Plus.jsx @@ -7,9 +7,13 @@ function SvgFilter9Plus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterAlt.jsx b/icons/jsx/FilterAlt.jsx index 2619041190..30b4976c6d 100644 --- a/icons/jsx/FilterAlt.jsx +++ b/icons/jsx/FilterAlt.jsx @@ -7,9 +7,13 @@ function SvgFilterAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterAltOff.jsx b/icons/jsx/FilterAltOff.jsx index 3810ff029d..f4415eead2 100644 --- a/icons/jsx/FilterAltOff.jsx +++ b/icons/jsx/FilterAltOff.jsx @@ -7,9 +7,13 @@ function SvgFilterAltOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterBAndW.jsx b/icons/jsx/FilterBAndW.jsx index 28bbdfc231..aa1d5f836d 100644 --- a/icons/jsx/FilterBAndW.jsx +++ b/icons/jsx/FilterBAndW.jsx @@ -7,9 +7,13 @@ function SvgFilterBAndW(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterCenterFocus.jsx b/icons/jsx/FilterCenterFocus.jsx index 7495012386..7cba14f442 100644 --- a/icons/jsx/FilterCenterFocus.jsx +++ b/icons/jsx/FilterCenterFocus.jsx @@ -7,9 +7,13 @@ function SvgFilterCenterFocus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterDrama.jsx b/icons/jsx/FilterDrama.jsx index 8b943575c8..2908a0de55 100644 --- a/icons/jsx/FilterDrama.jsx +++ b/icons/jsx/FilterDrama.jsx @@ -7,9 +7,13 @@ function SvgFilterDrama(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterFrames.jsx b/icons/jsx/FilterFrames.jsx index f8416b8571..4ec61baf8f 100644 --- a/icons/jsx/FilterFrames.jsx +++ b/icons/jsx/FilterFrames.jsx @@ -7,9 +7,13 @@ function SvgFilterFrames(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterHdr.jsx b/icons/jsx/FilterHdr.jsx index 8443188549..395d646d3b 100644 --- a/icons/jsx/FilterHdr.jsx +++ b/icons/jsx/FilterHdr.jsx @@ -7,9 +7,13 @@ function SvgFilterHdr(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterList.jsx b/icons/jsx/FilterList.jsx index ba84b3c8c2..4ccbae4831 100644 --- a/icons/jsx/FilterList.jsx +++ b/icons/jsx/FilterList.jsx @@ -7,9 +7,13 @@ function SvgFilterList(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterListOff.jsx b/icons/jsx/FilterListOff.jsx index d805a4bb83..d7a123d009 100644 --- a/icons/jsx/FilterListOff.jsx +++ b/icons/jsx/FilterListOff.jsx @@ -7,9 +7,13 @@ function SvgFilterListOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterNone.jsx b/icons/jsx/FilterNone.jsx index 98ea3169f3..38707c7ef5 100644 --- a/icons/jsx/FilterNone.jsx +++ b/icons/jsx/FilterNone.jsx @@ -7,9 +7,13 @@ function SvgFilterNone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterTiltShift.jsx b/icons/jsx/FilterTiltShift.jsx index 45bc10fc14..3dd36200b7 100644 --- a/icons/jsx/FilterTiltShift.jsx +++ b/icons/jsx/FilterTiltShift.jsx @@ -7,9 +7,13 @@ function SvgFilterTiltShift(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FilterVintage.jsx b/icons/jsx/FilterVintage.jsx index 06fc08f733..995f2a96f5 100644 --- a/icons/jsx/FilterVintage.jsx +++ b/icons/jsx/FilterVintage.jsx @@ -7,9 +7,13 @@ function SvgFilterVintage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FindInPage.jsx b/icons/jsx/FindInPage.jsx index d90a1578f4..cd4a687063 100644 --- a/icons/jsx/FindInPage.jsx +++ b/icons/jsx/FindInPage.jsx @@ -7,9 +7,13 @@ function SvgFindInPage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FindReplace.jsx b/icons/jsx/FindReplace.jsx index c9be926955..4b35ca3f32 100644 --- a/icons/jsx/FindReplace.jsx +++ b/icons/jsx/FindReplace.jsx @@ -7,9 +7,13 @@ function SvgFindReplace(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Fingerprint.jsx b/icons/jsx/Fingerprint.jsx index 854f195f99..e4b9869e58 100644 --- a/icons/jsx/Fingerprint.jsx +++ b/icons/jsx/Fingerprint.jsx @@ -7,9 +7,13 @@ function SvgFingerprint(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FireExtinguisher.jsx b/icons/jsx/FireExtinguisher.jsx index 19d1c30c7b..f7896bde66 100644 --- a/icons/jsx/FireExtinguisher.jsx +++ b/icons/jsx/FireExtinguisher.jsx @@ -7,9 +7,13 @@ function SvgFireExtinguisher(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FireHydrantAlt.jsx b/icons/jsx/FireHydrantAlt.jsx index a07344ad68..5fd2d79b6c 100644 --- a/icons/jsx/FireHydrantAlt.jsx +++ b/icons/jsx/FireHydrantAlt.jsx @@ -7,9 +7,13 @@ function SvgFireHydrantAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/FireTruck.jsx b/icons/jsx/FireTruck.jsx index 1ea5cafbdb..98203bca30 100644 --- a/icons/jsx/FireTruck.jsx +++ b/icons/jsx/FireTruck.jsx @@ -7,10 +7,17 @@ function SvgFireTruck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Fireplace.jsx b/icons/jsx/Fireplace.jsx index 2204c7e2db..c882576ee2 100644 --- a/icons/jsx/Fireplace.jsx +++ b/icons/jsx/Fireplace.jsx @@ -7,9 +7,13 @@ function SvgFireplace(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FirstPage.jsx b/icons/jsx/FirstPage.jsx index 3b0339b865..7aa22e3be3 100644 --- a/icons/jsx/FirstPage.jsx +++ b/icons/jsx/FirstPage.jsx @@ -7,9 +7,13 @@ function SvgFirstPage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FitScreen.jsx b/icons/jsx/FitScreen.jsx index 2982890525..3f0abc5978 100644 --- a/icons/jsx/FitScreen.jsx +++ b/icons/jsx/FitScreen.jsx @@ -7,9 +7,13 @@ function SvgFitScreen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Fitbit.jsx b/icons/jsx/Fitbit.jsx index 13d563fc45..d853bc6ef3 100644 --- a/icons/jsx/Fitbit.jsx +++ b/icons/jsx/Fitbit.jsx @@ -7,9 +7,13 @@ function SvgFitbit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FitnessCenter.jsx b/icons/jsx/FitnessCenter.jsx index b5f3763f40..7f9fd12c11 100644 --- a/icons/jsx/FitnessCenter.jsx +++ b/icons/jsx/FitnessCenter.jsx @@ -7,9 +7,13 @@ function SvgFitnessCenter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlagCircle.jsx b/icons/jsx/FlagCircle.jsx index adfa23ab67..1fcc90315b 100644 --- a/icons/jsx/FlagCircle.jsx +++ b/icons/jsx/FlagCircle.jsx @@ -7,9 +7,13 @@ function SvgFlagCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Flaky.jsx b/icons/jsx/Flaky.jsx index ab31fd1a8f..153e2208b8 100644 --- a/icons/jsx/Flaky.jsx +++ b/icons/jsx/Flaky.jsx @@ -7,11 +7,13 @@ function SvgFlaky(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/Flare.jsx b/icons/jsx/Flare.jsx index 3b4da1ff6a..74ac72efe7 100644 --- a/icons/jsx/Flare.jsx +++ b/icons/jsx/Flare.jsx @@ -7,9 +7,13 @@ function SvgFlare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlashAuto.jsx b/icons/jsx/FlashAuto.jsx index 2b39c4270c..3ce081580c 100644 --- a/icons/jsx/FlashAuto.jsx +++ b/icons/jsx/FlashAuto.jsx @@ -7,9 +7,13 @@ function SvgFlashAuto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlashOff.jsx b/icons/jsx/FlashOff.jsx index 0795e9cf75..c0f3e9f7f4 100644 --- a/icons/jsx/FlashOff.jsx +++ b/icons/jsx/FlashOff.jsx @@ -7,9 +7,13 @@ function SvgFlashOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlashOn.jsx b/icons/jsx/FlashOn.jsx index de079705bb..8dad17615b 100644 --- a/icons/jsx/FlashOn.jsx +++ b/icons/jsx/FlashOn.jsx @@ -7,9 +7,10 @@ function SvgFlashOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlashlightOff.jsx b/icons/jsx/FlashlightOff.jsx index a3c4ddb7b1..82ddc6f1f9 100644 --- a/icons/jsx/FlashlightOff.jsx +++ b/icons/jsx/FlashlightOff.jsx @@ -7,9 +7,13 @@ function SvgFlashlightOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlashlightOn.jsx b/icons/jsx/FlashlightOn.jsx index 7525cb6324..a73e90ec39 100644 --- a/icons/jsx/FlashlightOn.jsx +++ b/icons/jsx/FlashlightOn.jsx @@ -7,9 +7,13 @@ function SvgFlashlightOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Flatware.jsx b/icons/jsx/Flatware.jsx index c9dcdf8f8b..65c8bc4da9 100644 --- a/icons/jsx/Flatware.jsx +++ b/icons/jsx/Flatware.jsx @@ -7,9 +7,13 @@ function SvgFlatware(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Flight.jsx b/icons/jsx/Flight.jsx index bc65010163..c372c62906 100644 --- a/icons/jsx/Flight.jsx +++ b/icons/jsx/Flight.jsx @@ -7,9 +7,13 @@ function SvgFlight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlightClass.jsx b/icons/jsx/FlightClass.jsx index 274f40f547..6cc5f0da86 100644 --- a/icons/jsx/FlightClass.jsx +++ b/icons/jsx/FlightClass.jsx @@ -7,9 +7,13 @@ function SvgFlightClass(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlightLand.jsx b/icons/jsx/FlightLand.jsx index 9362dc8f52..b88347c444 100644 --- a/icons/jsx/FlightLand.jsx +++ b/icons/jsx/FlightLand.jsx @@ -7,9 +7,13 @@ function SvgFlightLand(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlightTakeoff.jsx b/icons/jsx/FlightTakeoff.jsx index 52a9f33db6..bdea2214da 100644 --- a/icons/jsx/FlightTakeoff.jsx +++ b/icons/jsx/FlightTakeoff.jsx @@ -7,9 +7,13 @@ function SvgFlightTakeoff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Flip.jsx b/icons/jsx/Flip.jsx index f85cf0a18d..9ee71faa2a 100644 --- a/icons/jsx/Flip.jsx +++ b/icons/jsx/Flip.jsx @@ -7,9 +7,13 @@ function SvgFlip(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlipCameraAndroid.jsx b/icons/jsx/FlipCameraAndroid.jsx index df0cef8b87..0e1830c5b4 100644 --- a/icons/jsx/FlipCameraAndroid.jsx +++ b/icons/jsx/FlipCameraAndroid.jsx @@ -7,10 +7,17 @@ function SvgFlipCameraAndroid(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/FlipCameraIos.jsx b/icons/jsx/FlipCameraIos.jsx index cbc2585bb6..12b998fa99 100644 --- a/icons/jsx/FlipCameraIos.jsx +++ b/icons/jsx/FlipCameraIos.jsx @@ -7,9 +7,13 @@ function SvgFlipCameraIos(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlipToBack.jsx b/icons/jsx/FlipToBack.jsx index 8bef5feb59..4779b6ac32 100644 --- a/icons/jsx/FlipToBack.jsx +++ b/icons/jsx/FlipToBack.jsx @@ -7,9 +7,13 @@ function SvgFlipToBack(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlipToFront.jsx b/icons/jsx/FlipToFront.jsx index 01803602c9..3a52c0ccff 100644 --- a/icons/jsx/FlipToFront.jsx +++ b/icons/jsx/FlipToFront.jsx @@ -7,9 +7,13 @@ function SvgFlipToFront(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Flood.jsx b/icons/jsx/Flood.jsx index b2dae737fa..be2b4d32ca 100644 --- a/icons/jsx/Flood.jsx +++ b/icons/jsx/Flood.jsx @@ -7,9 +7,13 @@ function SvgFlood(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Flourescent.jsx b/icons/jsx/Flourescent.jsx index d23d8c0137..d839a44791 100644 --- a/icons/jsx/Flourescent.jsx +++ b/icons/jsx/Flourescent.jsx @@ -7,9 +7,13 @@ function SvgFlourescent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Fluorescent.jsx b/icons/jsx/Fluorescent.jsx index ef208d8bd1..4f1807b768 100644 --- a/icons/jsx/Fluorescent.jsx +++ b/icons/jsx/Fluorescent.jsx @@ -7,9 +7,13 @@ function SvgFluorescent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FlutterDash.jsx b/icons/jsx/FlutterDash.jsx index 09bb9475bf..b778864924 100644 --- a/icons/jsx/FlutterDash.jsx +++ b/icons/jsx/FlutterDash.jsx @@ -7,9 +7,13 @@ function SvgFlutterDash(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FmdBad.jsx b/icons/jsx/FmdBad.jsx index 17450f819a..4931a8d8a0 100644 --- a/icons/jsx/FmdBad.jsx +++ b/icons/jsx/FmdBad.jsx @@ -7,9 +7,13 @@ function SvgFmdBad(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FmdGood.jsx b/icons/jsx/FmdGood.jsx index 16015e8722..b1c7af1047 100644 --- a/icons/jsx/FmdGood.jsx +++ b/icons/jsx/FmdGood.jsx @@ -7,9 +7,13 @@ function SvgFmdGood(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Folder.jsx b/icons/jsx/Folder.jsx index 0e71ac3c4b..0aacea5d79 100644 --- a/icons/jsx/Folder.jsx +++ b/icons/jsx/Folder.jsx @@ -7,9 +7,10 @@ function SvgFolder(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FolderCopy.jsx b/icons/jsx/FolderCopy.jsx index ac33c5e987..e36d711f14 100644 --- a/icons/jsx/FolderCopy.jsx +++ b/icons/jsx/FolderCopy.jsx @@ -7,10 +7,11 @@ function SvgFolderCopy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/FolderDelete.jsx b/icons/jsx/FolderDelete.jsx index dbda87f787..2e61c65ca5 100644 --- a/icons/jsx/FolderDelete.jsx +++ b/icons/jsx/FolderDelete.jsx @@ -7,9 +7,13 @@ function SvgFolderDelete(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FolderOff.jsx b/icons/jsx/FolderOff.jsx index eece6c3e1c..ff5da77608 100644 --- a/icons/jsx/FolderOff.jsx +++ b/icons/jsx/FolderOff.jsx @@ -7,9 +7,13 @@ function SvgFolderOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FolderOpen.jsx b/icons/jsx/FolderOpen.jsx index 56ee835bde..26c46bb97d 100644 --- a/icons/jsx/FolderOpen.jsx +++ b/icons/jsx/FolderOpen.jsx @@ -7,9 +7,10 @@ function SvgFolderOpen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FolderShared.jsx b/icons/jsx/FolderShared.jsx index bd5de9bcd1..27217011e9 100644 --- a/icons/jsx/FolderShared.jsx +++ b/icons/jsx/FolderShared.jsx @@ -7,9 +7,13 @@ function SvgFolderShared(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FolderSpecial.jsx b/icons/jsx/FolderSpecial.jsx index 777a4ebfca..9f9726bd7a 100644 --- a/icons/jsx/FolderSpecial.jsx +++ b/icons/jsx/FolderSpecial.jsx @@ -7,9 +7,13 @@ function SvgFolderSpecial(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FolderZip.jsx b/icons/jsx/FolderZip.jsx index a8d1697b60..4f8d863251 100644 --- a/icons/jsx/FolderZip.jsx +++ b/icons/jsx/FolderZip.jsx @@ -7,9 +7,13 @@ function SvgFolderZip(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FollowTheSigns.jsx b/icons/jsx/FollowTheSigns.jsx index 7febf71bfd..a8a4405963 100644 --- a/icons/jsx/FollowTheSigns.jsx +++ b/icons/jsx/FollowTheSigns.jsx @@ -7,9 +7,13 @@ function SvgFollowTheSigns(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FontDownload.jsx b/icons/jsx/FontDownload.jsx index 384a71969f..3feb0a4de2 100644 --- a/icons/jsx/FontDownload.jsx +++ b/icons/jsx/FontDownload.jsx @@ -7,9 +7,13 @@ function SvgFontDownload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FontDownloadOff.jsx b/icons/jsx/FontDownloadOff.jsx index 47870fba91..993ef8745b 100644 --- a/icons/jsx/FontDownloadOff.jsx +++ b/icons/jsx/FontDownloadOff.jsx @@ -7,9 +7,13 @@ function SvgFontDownloadOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FoodBank.jsx b/icons/jsx/FoodBank.jsx index e92724c25a..ed0215b46d 100644 --- a/icons/jsx/FoodBank.jsx +++ b/icons/jsx/FoodBank.jsx @@ -7,9 +7,13 @@ function SvgFoodBank(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Forest.jsx b/icons/jsx/Forest.jsx index 5382c2f99d..7f4675fc41 100644 --- a/icons/jsx/Forest.jsx +++ b/icons/jsx/Forest.jsx @@ -7,10 +7,17 @@ function SvgForest(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/ForkLeft.jsx b/icons/jsx/ForkLeft.jsx index a28d9cac3b..4525e5fc2c 100644 --- a/icons/jsx/ForkLeft.jsx +++ b/icons/jsx/ForkLeft.jsx @@ -7,9 +7,13 @@ function SvgForkLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ForkRight.jsx b/icons/jsx/ForkRight.jsx index 6770c40bb2..047faaf32a 100644 --- a/icons/jsx/ForkRight.jsx +++ b/icons/jsx/ForkRight.jsx @@ -7,9 +7,13 @@ function SvgForkRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatAlignCenter.jsx b/icons/jsx/FormatAlignCenter.jsx index 7a9e21be9a..6a7df2e138 100644 --- a/icons/jsx/FormatAlignCenter.jsx +++ b/icons/jsx/FormatAlignCenter.jsx @@ -7,9 +7,13 @@ function SvgFormatAlignCenter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatAlignJustify.jsx b/icons/jsx/FormatAlignJustify.jsx index 28fa3f4a66..9505494ca2 100644 --- a/icons/jsx/FormatAlignJustify.jsx +++ b/icons/jsx/FormatAlignJustify.jsx @@ -7,9 +7,13 @@ function SvgFormatAlignJustify(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatAlignLeft.jsx b/icons/jsx/FormatAlignLeft.jsx index 1583c637b5..26e6102652 100644 --- a/icons/jsx/FormatAlignLeft.jsx +++ b/icons/jsx/FormatAlignLeft.jsx @@ -7,9 +7,13 @@ function SvgFormatAlignLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatAlignRight.jsx b/icons/jsx/FormatAlignRight.jsx index e2d7e0c806..1011f967f4 100644 --- a/icons/jsx/FormatAlignRight.jsx +++ b/icons/jsx/FormatAlignRight.jsx @@ -7,9 +7,13 @@ function SvgFormatAlignRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatBold.jsx b/icons/jsx/FormatBold.jsx index 7646fc4723..e421eedcee 100644 --- a/icons/jsx/FormatBold.jsx +++ b/icons/jsx/FormatBold.jsx @@ -7,9 +7,13 @@ function SvgFormatBold(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatClear.jsx b/icons/jsx/FormatClear.jsx index 03f0fe0b19..f4b6cddea5 100644 --- a/icons/jsx/FormatClear.jsx +++ b/icons/jsx/FormatClear.jsx @@ -7,9 +7,13 @@ function SvgFormatClear(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatColorFill.jsx b/icons/jsx/FormatColorFill.jsx index 4f87cf9502..4d86fc6699 100644 --- a/icons/jsx/FormatColorFill.jsx +++ b/icons/jsx/FormatColorFill.jsx @@ -7,9 +7,13 @@ function SvgFormatColorFill(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatColorReset.jsx b/icons/jsx/FormatColorReset.jsx index 1cd4d5ec48..fa97c21e5a 100644 --- a/icons/jsx/FormatColorReset.jsx +++ b/icons/jsx/FormatColorReset.jsx @@ -7,9 +7,13 @@ function SvgFormatColorReset(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatColorText.jsx b/icons/jsx/FormatColorText.jsx index 5ca3e04127..1d9fd7f042 100644 --- a/icons/jsx/FormatColorText.jsx +++ b/icons/jsx/FormatColorText.jsx @@ -7,9 +7,13 @@ function SvgFormatColorText(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatIndentDecrease.jsx b/icons/jsx/FormatIndentDecrease.jsx index 44d4bec1fd..8e55f47b34 100644 --- a/icons/jsx/FormatIndentDecrease.jsx +++ b/icons/jsx/FormatIndentDecrease.jsx @@ -7,9 +7,13 @@ function SvgFormatIndentDecrease(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatIndentIncrease.jsx b/icons/jsx/FormatIndentIncrease.jsx index 745e2b0289..e54ccdbff5 100644 --- a/icons/jsx/FormatIndentIncrease.jsx +++ b/icons/jsx/FormatIndentIncrease.jsx @@ -7,9 +7,13 @@ function SvgFormatIndentIncrease(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatItalic.jsx b/icons/jsx/FormatItalic.jsx index 521a63dd72..22111b28dd 100644 --- a/icons/jsx/FormatItalic.jsx +++ b/icons/jsx/FormatItalic.jsx @@ -7,9 +7,13 @@ function SvgFormatItalic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatLineSpacing.jsx b/icons/jsx/FormatLineSpacing.jsx index a3b08edd5d..a513515bf9 100644 --- a/icons/jsx/FormatLineSpacing.jsx +++ b/icons/jsx/FormatLineSpacing.jsx @@ -7,9 +7,13 @@ function SvgFormatLineSpacing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatListBulleted.jsx b/icons/jsx/FormatListBulleted.jsx index e8041fe134..9fc753c058 100644 --- a/icons/jsx/FormatListBulleted.jsx +++ b/icons/jsx/FormatListBulleted.jsx @@ -7,9 +7,13 @@ function SvgFormatListBulleted(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatListNumbered.jsx b/icons/jsx/FormatListNumbered.jsx index 6bcbd15ea6..f09537b928 100644 --- a/icons/jsx/FormatListNumbered.jsx +++ b/icons/jsx/FormatListNumbered.jsx @@ -7,9 +7,13 @@ function SvgFormatListNumbered(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatListNumberedRtl.jsx b/icons/jsx/FormatListNumberedRtl.jsx index 9595bd84df..12ad9760f0 100644 --- a/icons/jsx/FormatListNumberedRtl.jsx +++ b/icons/jsx/FormatListNumberedRtl.jsx @@ -7,9 +7,13 @@ function SvgFormatListNumberedRtl(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatOverline.jsx b/icons/jsx/FormatOverline.jsx index 63f2da9086..27b480def2 100644 --- a/icons/jsx/FormatOverline.jsx +++ b/icons/jsx/FormatOverline.jsx @@ -7,9 +7,13 @@ function SvgFormatOverline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatPaint.jsx b/icons/jsx/FormatPaint.jsx index 9d2e78f4d3..ecbc428873 100644 --- a/icons/jsx/FormatPaint.jsx +++ b/icons/jsx/FormatPaint.jsx @@ -7,9 +7,10 @@ function SvgFormatPaint(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatQuote.jsx b/icons/jsx/FormatQuote.jsx index efc7a3dc10..5f0c387f97 100644 --- a/icons/jsx/FormatQuote.jsx +++ b/icons/jsx/FormatQuote.jsx @@ -7,9 +7,13 @@ function SvgFormatQuote(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatShapes.jsx b/icons/jsx/FormatShapes.jsx index c39ece027b..1f49582d0a 100644 --- a/icons/jsx/FormatShapes.jsx +++ b/icons/jsx/FormatShapes.jsx @@ -7,9 +7,13 @@ function SvgFormatShapes(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatStrikethrough.jsx b/icons/jsx/FormatStrikethrough.jsx index 408f67e1ec..e744921241 100644 --- a/icons/jsx/FormatStrikethrough.jsx +++ b/icons/jsx/FormatStrikethrough.jsx @@ -7,9 +7,13 @@ function SvgFormatStrikethrough(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatTextdirectionLToR.jsx b/icons/jsx/FormatTextdirectionLToR.jsx index 36a2babd1a..cb55522553 100644 --- a/icons/jsx/FormatTextdirectionLToR.jsx +++ b/icons/jsx/FormatTextdirectionLToR.jsx @@ -7,9 +7,13 @@ function SvgFormatTextdirectionLToR(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatTextdirectionRToL.jsx b/icons/jsx/FormatTextdirectionRToL.jsx index c6e31cb212..d29e00f1e6 100644 --- a/icons/jsx/FormatTextdirectionRToL.jsx +++ b/icons/jsx/FormatTextdirectionRToL.jsx @@ -7,9 +7,13 @@ function SvgFormatTextdirectionRToL(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FormatUnderlined.jsx b/icons/jsx/FormatUnderlined.jsx index aea1cdb89b..536d24b8bf 100644 --- a/icons/jsx/FormatUnderlined.jsx +++ b/icons/jsx/FormatUnderlined.jsx @@ -7,9 +7,13 @@ function SvgFormatUnderlined(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Fort.jsx b/icons/jsx/Fort.jsx index dbc712400a..f2a7f21d21 100644 --- a/icons/jsx/Fort.jsx +++ b/icons/jsx/Fort.jsx @@ -7,9 +7,13 @@ function SvgFort(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Forum.jsx b/icons/jsx/Forum.jsx index 5521398aec..170a7aa934 100644 --- a/icons/jsx/Forum.jsx +++ b/icons/jsx/Forum.jsx @@ -7,9 +7,13 @@ function SvgForum(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Forward.jsx b/icons/jsx/Forward.jsx index a55487cd62..24839b1f55 100644 --- a/icons/jsx/Forward.jsx +++ b/icons/jsx/Forward.jsx @@ -7,9 +7,10 @@ function SvgForward(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Forward10.jsx b/icons/jsx/Forward10.jsx index fc49021404..c690c1b93c 100644 --- a/icons/jsx/Forward10.jsx +++ b/icons/jsx/Forward10.jsx @@ -7,10 +7,17 @@ function SvgForward10(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Forward30.jsx b/icons/jsx/Forward30.jsx index 2db02018fe..0b3eb18754 100644 --- a/icons/jsx/Forward30.jsx +++ b/icons/jsx/Forward30.jsx @@ -7,9 +7,13 @@ function SvgForward30(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Forward5.jsx b/icons/jsx/Forward5.jsx index 0a76ed314b..943bbc1ac4 100644 --- a/icons/jsx/Forward5.jsx +++ b/icons/jsx/Forward5.jsx @@ -7,9 +7,13 @@ function SvgForward5(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ForwardToInbox.jsx b/icons/jsx/ForwardToInbox.jsx index e150d626e6..91f04751fa 100644 --- a/icons/jsx/ForwardToInbox.jsx +++ b/icons/jsx/ForwardToInbox.jsx @@ -7,9 +7,13 @@ function SvgForwardToInbox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Foundation.jsx b/icons/jsx/Foundation.jsx index 69fe1901c5..7e4e8e3c35 100644 --- a/icons/jsx/Foundation.jsx +++ b/icons/jsx/Foundation.jsx @@ -7,9 +7,13 @@ function SvgFoundation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FreeBreakfast.jsx b/icons/jsx/FreeBreakfast.jsx index 009374b87a..a892f488a9 100644 --- a/icons/jsx/FreeBreakfast.jsx +++ b/icons/jsx/FreeBreakfast.jsx @@ -7,9 +7,13 @@ function SvgFreeBreakfast(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FreeCancellation.jsx b/icons/jsx/FreeCancellation.jsx index f30bce4c33..f25665087c 100644 --- a/icons/jsx/FreeCancellation.jsx +++ b/icons/jsx/FreeCancellation.jsx @@ -7,9 +7,13 @@ function SvgFreeCancellation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FrontHand.jsx b/icons/jsx/FrontHand.jsx index 3d18fc2030..fae7ce54fe 100644 --- a/icons/jsx/FrontHand.jsx +++ b/icons/jsx/FrontHand.jsx @@ -7,9 +7,13 @@ function SvgFrontHand(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Fullscreen.jsx b/icons/jsx/Fullscreen.jsx index a013cf0d18..2b3c0e8769 100644 --- a/icons/jsx/Fullscreen.jsx +++ b/icons/jsx/Fullscreen.jsx @@ -7,9 +7,13 @@ function SvgFullscreen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/FullscreenExit.jsx b/icons/jsx/FullscreenExit.jsx index 8b73515d5c..123fc964a8 100644 --- a/icons/jsx/FullscreenExit.jsx +++ b/icons/jsx/FullscreenExit.jsx @@ -7,9 +7,13 @@ function SvgFullscreenExit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Functions.jsx b/icons/jsx/Functions.jsx index 5b2dee906f..8bf4cc2faa 100644 --- a/icons/jsx/Functions.jsx +++ b/icons/jsx/Functions.jsx @@ -7,9 +7,13 @@ function SvgFunctions(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GMobiledata.jsx b/icons/jsx/GMobiledata.jsx index 3c1f8af73d..dfbf9912b2 100644 --- a/icons/jsx/GMobiledata.jsx +++ b/icons/jsx/GMobiledata.jsx @@ -7,9 +7,10 @@ function SvgGMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GTranslate.jsx b/icons/jsx/GTranslate.jsx index d4b2f69b26..c6bed97291 100644 --- a/icons/jsx/GTranslate.jsx +++ b/icons/jsx/GTranslate.jsx @@ -7,9 +7,13 @@ function SvgGTranslate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Gamepad.jsx b/icons/jsx/Gamepad.jsx index eb4bb2a94d..009bb400ea 100644 --- a/icons/jsx/Gamepad.jsx +++ b/icons/jsx/Gamepad.jsx @@ -7,9 +7,13 @@ function SvgGamepad(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Games.jsx b/icons/jsx/Games.jsx index 8f42821b89..36a10d8ff6 100644 --- a/icons/jsx/Games.jsx +++ b/icons/jsx/Games.jsx @@ -7,9 +7,13 @@ function SvgGames(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Garage.jsx b/icons/jsx/Garage.jsx index 9cffa6d36f..e345cae838 100644 --- a/icons/jsx/Garage.jsx +++ b/icons/jsx/Garage.jsx @@ -7,12 +7,16 @@ function SvgGarage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/GasMeter.jsx b/icons/jsx/GasMeter.jsx index 593fdadba2..8ad6e222d6 100644 --- a/icons/jsx/GasMeter.jsx +++ b/icons/jsx/GasMeter.jsx @@ -7,9 +7,13 @@ function SvgGasMeter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Gavel.jsx b/icons/jsx/Gavel.jsx index 99ffde105d..ed86907509 100644 --- a/icons/jsx/Gavel.jsx +++ b/icons/jsx/Gavel.jsx @@ -7,9 +7,13 @@ function SvgGavel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GeneratingTokens.jsx b/icons/jsx/GeneratingTokens.jsx index e10b1ce6ff..697640df6a 100644 --- a/icons/jsx/GeneratingTokens.jsx +++ b/icons/jsx/GeneratingTokens.jsx @@ -7,9 +7,13 @@ function SvgGeneratingTokens(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Gesture.jsx b/icons/jsx/Gesture.jsx index 2d73d2f98c..2d588ea1b1 100644 --- a/icons/jsx/Gesture.jsx +++ b/icons/jsx/Gesture.jsx @@ -7,9 +7,13 @@ function SvgGesture(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GetApp.jsx b/icons/jsx/GetApp.jsx index a0bbcafeb9..acf942525d 100644 --- a/icons/jsx/GetApp.jsx +++ b/icons/jsx/GetApp.jsx @@ -7,9 +7,10 @@ function SvgGetApp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Gif.jsx b/icons/jsx/Gif.jsx index b621b06e61..aad4bbddfc 100644 --- a/icons/jsx/Gif.jsx +++ b/icons/jsx/Gif.jsx @@ -7,9 +7,13 @@ function SvgGif(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GifBox.jsx b/icons/jsx/GifBox.jsx index 24d749ce1c..eaca635acc 100644 --- a/icons/jsx/GifBox.jsx +++ b/icons/jsx/GifBox.jsx @@ -7,9 +7,13 @@ function SvgGifBox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Girl.jsx b/icons/jsx/Girl.jsx index bac7a47889..381eb2050d 100644 --- a/icons/jsx/Girl.jsx +++ b/icons/jsx/Girl.jsx @@ -7,9 +7,13 @@ function SvgGirl(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Gite.jsx b/icons/jsx/Gite.jsx index 95216933c7..1391ef00e2 100644 --- a/icons/jsx/Gite.jsx +++ b/icons/jsx/Gite.jsx @@ -7,9 +7,13 @@ function SvgGite(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GolfCourse.jsx b/icons/jsx/GolfCourse.jsx index b00a99915a..54a8bffa34 100644 --- a/icons/jsx/GolfCourse.jsx +++ b/icons/jsx/GolfCourse.jsx @@ -7,10 +7,14 @@ function SvgGolfCourse(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GoogleMeet.jsx b/icons/jsx/GoogleMeet.jsx index 83130154fd..d39be1998f 100644 --- a/icons/jsx/GoogleMeet.jsx +++ b/icons/jsx/GoogleMeet.jsx @@ -11,7 +11,7 @@ function SvgGoogleMeet(props) { xmlnsXlink="http://www.w3.org/1999/xlink" {...props} > - + - + ); } diff --git a/icons/jsx/GppGood.jsx b/icons/jsx/GppGood.jsx index d214985cb1..24463ebbcc 100644 --- a/icons/jsx/GppGood.jsx +++ b/icons/jsx/GppGood.jsx @@ -7,9 +7,13 @@ function SvgGppGood(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GppMaybe.jsx b/icons/jsx/GppMaybe.jsx index 0ef7d106f4..c5a05862aa 100644 --- a/icons/jsx/GppMaybe.jsx +++ b/icons/jsx/GppMaybe.jsx @@ -7,9 +7,13 @@ function SvgGppMaybe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GpsFixed.jsx b/icons/jsx/GpsFixed.jsx index 786c6e2ce9..3ddb2b4fb4 100644 --- a/icons/jsx/GpsFixed.jsx +++ b/icons/jsx/GpsFixed.jsx @@ -7,9 +7,13 @@ function SvgGpsFixed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GpsNotFixed.jsx b/icons/jsx/GpsNotFixed.jsx index bb5bf35d6f..e5ef875f7a 100644 --- a/icons/jsx/GpsNotFixed.jsx +++ b/icons/jsx/GpsNotFixed.jsx @@ -7,9 +7,13 @@ function SvgGpsNotFixed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GpsOff.jsx b/icons/jsx/GpsOff.jsx index 9be67eca67..f01db3e1ce 100644 --- a/icons/jsx/GpsOff.jsx +++ b/icons/jsx/GpsOff.jsx @@ -7,9 +7,13 @@ function SvgGpsOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Grade.jsx b/icons/jsx/Grade.jsx index 9d7fd13e5a..8b0b19e40b 100644 --- a/icons/jsx/Grade.jsx +++ b/icons/jsx/Grade.jsx @@ -7,9 +7,13 @@ function SvgGrade(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Gradient.jsx b/icons/jsx/Gradient.jsx index a58546e059..bc164b6b10 100644 --- a/icons/jsx/Gradient.jsx +++ b/icons/jsx/Gradient.jsx @@ -7,9 +7,13 @@ function SvgGradient(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Grading.jsx b/icons/jsx/Grading.jsx index 93ff98573f..4b1a2ba941 100644 --- a/icons/jsx/Grading.jsx +++ b/icons/jsx/Grading.jsx @@ -7,9 +7,13 @@ function SvgGrading(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Grain.jsx b/icons/jsx/Grain.jsx index 0abcef2710..588da0ffbe 100644 --- a/icons/jsx/Grain.jsx +++ b/icons/jsx/Grain.jsx @@ -7,9 +7,13 @@ function SvgGrain(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GraphicEq.jsx b/icons/jsx/GraphicEq.jsx index 58c776c5cc..1cc6ecb6c2 100644 --- a/icons/jsx/GraphicEq.jsx +++ b/icons/jsx/GraphicEq.jsx @@ -7,9 +7,13 @@ function SvgGraphicEq(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Grass.jsx b/icons/jsx/Grass.jsx index fbd73d5760..3940737212 100644 --- a/icons/jsx/Grass.jsx +++ b/icons/jsx/Grass.jsx @@ -7,9 +7,13 @@ function SvgGrass(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GreaterThan.jsx b/icons/jsx/GreaterThan.jsx index b5f2b7ffdc..558c5f8f08 100644 --- a/icons/jsx/GreaterThan.jsx +++ b/icons/jsx/GreaterThan.jsx @@ -7,11 +7,13 @@ function SvgGreaterThan(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/GreaterThanEqual.jsx b/icons/jsx/GreaterThanEqual.jsx index 086c08c88d..e5899c85f5 100644 --- a/icons/jsx/GreaterThanEqual.jsx +++ b/icons/jsx/GreaterThanEqual.jsx @@ -7,13 +7,15 @@ function SvgGreaterThanEqual(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Grid3X3.jsx b/icons/jsx/Grid3X3.jsx index 4e59fe2628..7e8f5750d2 100644 --- a/icons/jsx/Grid3X3.jsx +++ b/icons/jsx/Grid3X3.jsx @@ -7,9 +7,13 @@ function SvgGrid3X3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Grid4X4.jsx b/icons/jsx/Grid4X4.jsx index ecd1482333..d85d761455 100644 --- a/icons/jsx/Grid4X4.jsx +++ b/icons/jsx/Grid4X4.jsx @@ -7,9 +7,13 @@ function SvgGrid4X4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GridGoldenratio.jsx b/icons/jsx/GridGoldenratio.jsx index 118eb04a65..6433cc1670 100644 --- a/icons/jsx/GridGoldenratio.jsx +++ b/icons/jsx/GridGoldenratio.jsx @@ -7,9 +7,13 @@ function SvgGridGoldenratio(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GridOff.jsx b/icons/jsx/GridOff.jsx index 96701f0a93..755dcf9d31 100644 --- a/icons/jsx/GridOff.jsx +++ b/icons/jsx/GridOff.jsx @@ -7,9 +7,13 @@ function SvgGridOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GridOn.jsx b/icons/jsx/GridOn.jsx index d2002c7024..51e3e787cb 100644 --- a/icons/jsx/GridOn.jsx +++ b/icons/jsx/GridOn.jsx @@ -7,9 +7,13 @@ function SvgGridOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Group.jsx b/icons/jsx/Group.jsx index 59d2c85b82..1ad3484f53 100644 --- a/icons/jsx/Group.jsx +++ b/icons/jsx/Group.jsx @@ -7,9 +7,13 @@ function SvgGroup(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GroupAdd.jsx b/icons/jsx/GroupAdd.jsx index 262d2481a1..769757464a 100644 --- a/icons/jsx/GroupAdd.jsx +++ b/icons/jsx/GroupAdd.jsx @@ -7,9 +7,13 @@ function SvgGroupAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GroupOff.jsx b/icons/jsx/GroupOff.jsx index 6f4b0620d5..7ee82266de 100644 --- a/icons/jsx/GroupOff.jsx +++ b/icons/jsx/GroupOff.jsx @@ -7,9 +7,13 @@ function SvgGroupOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GroupRemove.jsx b/icons/jsx/GroupRemove.jsx index 5f87c232e7..c2c4de1c79 100644 --- a/icons/jsx/GroupRemove.jsx +++ b/icons/jsx/GroupRemove.jsx @@ -7,9 +7,13 @@ function SvgGroupRemove(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/GroupWork.jsx b/icons/jsx/GroupWork.jsx index efd3cd9c1b..132e3519a7 100644 --- a/icons/jsx/GroupWork.jsx +++ b/icons/jsx/GroupWork.jsx @@ -7,9 +7,13 @@ function SvgGroupWork(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Groups.jsx b/icons/jsx/Groups.jsx index 0121706a4a..0d09b5db0b 100644 --- a/icons/jsx/Groups.jsx +++ b/icons/jsx/Groups.jsx @@ -7,9 +7,13 @@ function SvgGroups(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Groups2.jsx b/icons/jsx/Groups2.jsx index 9810926a0b..46aedb34cd 100644 --- a/icons/jsx/Groups2.jsx +++ b/icons/jsx/Groups2.jsx @@ -7,9 +7,13 @@ function SvgGroups2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Groups3.jsx b/icons/jsx/Groups3.jsx index 1e376e787a..25b32d8d8a 100644 --- a/icons/jsx/Groups3.jsx +++ b/icons/jsx/Groups3.jsx @@ -7,9 +7,13 @@ function SvgGroups3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HMobiledata.jsx b/icons/jsx/HMobiledata.jsx index 040533736d..2ddca68668 100644 --- a/icons/jsx/HMobiledata.jsx +++ b/icons/jsx/HMobiledata.jsx @@ -7,9 +7,10 @@ function SvgHMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HPlusMobiledata.jsx b/icons/jsx/HPlusMobiledata.jsx index 558faa73e0..138839a171 100644 --- a/icons/jsx/HPlusMobiledata.jsx +++ b/icons/jsx/HPlusMobiledata.jsx @@ -7,9 +7,13 @@ function SvgHPlusMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hail.jsx b/icons/jsx/Hail.jsx index 699b75c27e..f482059883 100644 --- a/icons/jsx/Hail.jsx +++ b/icons/jsx/Hail.jsx @@ -7,9 +7,13 @@ function SvgHail(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Handshake.jsx b/icons/jsx/Handshake.jsx index 4416e14c0a..bebf2e1309 100644 --- a/icons/jsx/Handshake.jsx +++ b/icons/jsx/Handshake.jsx @@ -7,9 +7,13 @@ function SvgHandshake(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Handyman.jsx b/icons/jsx/Handyman.jsx index 64eb21ce90..7fd50c0ff1 100644 --- a/icons/jsx/Handyman.jsx +++ b/icons/jsx/Handyman.jsx @@ -7,10 +7,17 @@ function SvgHandyman(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Hardware.jsx b/icons/jsx/Hardware.jsx index b09962a7ee..50da92551a 100644 --- a/icons/jsx/Hardware.jsx +++ b/icons/jsx/Hardware.jsx @@ -7,9 +7,13 @@ function SvgHardware(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hd.jsx b/icons/jsx/Hd.jsx index 87651ccc85..e68abbe87b 100644 --- a/icons/jsx/Hd.jsx +++ b/icons/jsx/Hd.jsx @@ -7,9 +7,13 @@ function SvgHd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HdrAuto.jsx b/icons/jsx/HdrAuto.jsx index 57ebede15a..07c69f0aeb 100644 --- a/icons/jsx/HdrAuto.jsx +++ b/icons/jsx/HdrAuto.jsx @@ -7,10 +7,14 @@ function SvgHdrAuto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/HdrAutoSelect.jsx b/icons/jsx/HdrAutoSelect.jsx index 58438ffa6e..3a10f3e8b4 100644 --- a/icons/jsx/HdrAutoSelect.jsx +++ b/icons/jsx/HdrAutoSelect.jsx @@ -7,10 +7,17 @@ function SvgHdrAutoSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/HdrEnhancedSelect.jsx b/icons/jsx/HdrEnhancedSelect.jsx index 29db8ebb9f..2086888410 100644 --- a/icons/jsx/HdrEnhancedSelect.jsx +++ b/icons/jsx/HdrEnhancedSelect.jsx @@ -7,9 +7,13 @@ function SvgHdrEnhancedSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HdrOff.jsx b/icons/jsx/HdrOff.jsx index f68d77aff8..c73b9907d8 100644 --- a/icons/jsx/HdrOff.jsx +++ b/icons/jsx/HdrOff.jsx @@ -7,9 +7,13 @@ function SvgHdrOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HdrOffSelect.jsx b/icons/jsx/HdrOffSelect.jsx index 2947d887cf..5c355c1eda 100644 --- a/icons/jsx/HdrOffSelect.jsx +++ b/icons/jsx/HdrOffSelect.jsx @@ -7,9 +7,13 @@ function SvgHdrOffSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HdrOn.jsx b/icons/jsx/HdrOn.jsx index 215805becb..770ea62f0e 100644 --- a/icons/jsx/HdrOn.jsx +++ b/icons/jsx/HdrOn.jsx @@ -7,9 +7,13 @@ function SvgHdrOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HdrOnSelect.jsx b/icons/jsx/HdrOnSelect.jsx index 3f437fd8af..ce65024322 100644 --- a/icons/jsx/HdrOnSelect.jsx +++ b/icons/jsx/HdrOnSelect.jsx @@ -7,9 +7,13 @@ function SvgHdrOnSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HdrPlus.jsx b/icons/jsx/HdrPlus.jsx index b77671194b..ae6d4f9b45 100644 --- a/icons/jsx/HdrPlus.jsx +++ b/icons/jsx/HdrPlus.jsx @@ -7,10 +7,14 @@ function SvgHdrPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/HdrStrong.jsx b/icons/jsx/HdrStrong.jsx index bc1dcd5bfd..875fb01811 100644 --- a/icons/jsx/HdrStrong.jsx +++ b/icons/jsx/HdrStrong.jsx @@ -7,9 +7,13 @@ function SvgHdrStrong(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HdrWeak.jsx b/icons/jsx/HdrWeak.jsx index 171ff96485..d2a358b9f1 100644 --- a/icons/jsx/HdrWeak.jsx +++ b/icons/jsx/HdrWeak.jsx @@ -7,9 +7,13 @@ function SvgHdrWeak(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Headphones.jsx b/icons/jsx/Headphones.jsx index f595d01a89..e1b5c4c471 100644 --- a/icons/jsx/Headphones.jsx +++ b/icons/jsx/Headphones.jsx @@ -7,9 +7,13 @@ function SvgHeadphones(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HeadphonesBattery.jsx b/icons/jsx/HeadphonesBattery.jsx index e3813ebd93..471bf0bb5b 100644 --- a/icons/jsx/HeadphonesBattery.jsx +++ b/icons/jsx/HeadphonesBattery.jsx @@ -7,9 +7,13 @@ function SvgHeadphonesBattery(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Headset.jsx b/icons/jsx/Headset.jsx index f304d3e407..ecef8e3a0e 100644 --- a/icons/jsx/Headset.jsx +++ b/icons/jsx/Headset.jsx @@ -7,9 +7,13 @@ function SvgHeadset(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HeadsetMic.jsx b/icons/jsx/HeadsetMic.jsx index f77cebef34..cc515c6a11 100644 --- a/icons/jsx/HeadsetMic.jsx +++ b/icons/jsx/HeadsetMic.jsx @@ -7,9 +7,13 @@ function SvgHeadsetMic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HeadsetOff.jsx b/icons/jsx/HeadsetOff.jsx index c79452fb40..cd82242933 100644 --- a/icons/jsx/HeadsetOff.jsx +++ b/icons/jsx/HeadsetOff.jsx @@ -7,9 +7,13 @@ function SvgHeadsetOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Healing.jsx b/icons/jsx/Healing.jsx index ebd16ab02d..17afa8778c 100644 --- a/icons/jsx/Healing.jsx +++ b/icons/jsx/Healing.jsx @@ -7,9 +7,13 @@ function SvgHealing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HealthAndSafety.jsx b/icons/jsx/HealthAndSafety.jsx index a4021ce722..dc110f993a 100644 --- a/icons/jsx/HealthAndSafety.jsx +++ b/icons/jsx/HealthAndSafety.jsx @@ -7,9 +7,13 @@ function SvgHealthAndSafety(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hearing.jsx b/icons/jsx/Hearing.jsx index 019b7bbed3..058714a7fc 100644 --- a/icons/jsx/Hearing.jsx +++ b/icons/jsx/Hearing.jsx @@ -7,9 +7,13 @@ function SvgHearing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HearingDisabled.jsx b/icons/jsx/HearingDisabled.jsx index eb23d28668..fe2f38a934 100644 --- a/icons/jsx/HearingDisabled.jsx +++ b/icons/jsx/HearingDisabled.jsx @@ -7,9 +7,13 @@ function SvgHearingDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HeartBroken.jsx b/icons/jsx/HeartBroken.jsx index 70deb7312f..9b42dbf61f 100644 --- a/icons/jsx/HeartBroken.jsx +++ b/icons/jsx/HeartBroken.jsx @@ -7,9 +7,13 @@ function SvgHeartBroken(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HeatPump.jsx b/icons/jsx/HeatPump.jsx index f90c627672..8ad6a056a5 100644 --- a/icons/jsx/HeatPump.jsx +++ b/icons/jsx/HeatPump.jsx @@ -7,9 +7,13 @@ function SvgHeatPump(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Height.jsx b/icons/jsx/Height.jsx index 1b39b99928..368c089d90 100644 --- a/icons/jsx/Height.jsx +++ b/icons/jsx/Height.jsx @@ -7,9 +7,13 @@ function SvgHeight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HelpCenter.jsx b/icons/jsx/HelpCenter.jsx index 97e46c09ab..298a5b8d6d 100644 --- a/icons/jsx/HelpCenter.jsx +++ b/icons/jsx/HelpCenter.jsx @@ -7,9 +7,13 @@ function SvgHelpCenter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HelpOutline.jsx b/icons/jsx/HelpOutline.jsx index 96b078254b..8d49bac74c 100644 --- a/icons/jsx/HelpOutline.jsx +++ b/icons/jsx/HelpOutline.jsx @@ -7,9 +7,13 @@ function SvgHelpOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hevc.jsx b/icons/jsx/Hevc.jsx index a773316510..af253df16f 100644 --- a/icons/jsx/Hevc.jsx +++ b/icons/jsx/Hevc.jsx @@ -7,9 +7,13 @@ function SvgHevc(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hexagon.jsx b/icons/jsx/Hexagon.jsx index 66412051db..8e78a056da 100644 --- a/icons/jsx/Hexagon.jsx +++ b/icons/jsx/Hexagon.jsx @@ -7,9 +7,10 @@ function SvgHexagon(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HideImage.jsx b/icons/jsx/HideImage.jsx index a3ec2aab1a..1318493769 100644 --- a/icons/jsx/HideImage.jsx +++ b/icons/jsx/HideImage.jsx @@ -7,9 +7,13 @@ function SvgHideImage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HideSource.jsx b/icons/jsx/HideSource.jsx index 6a5c884e25..053f7af30c 100644 --- a/icons/jsx/HideSource.jsx +++ b/icons/jsx/HideSource.jsx @@ -7,9 +7,13 @@ function SvgHideSource(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HighQuality.jsx b/icons/jsx/HighQuality.jsx index 6855bc5aac..dd8a9ac75c 100644 --- a/icons/jsx/HighQuality.jsx +++ b/icons/jsx/HighQuality.jsx @@ -7,9 +7,13 @@ function SvgHighQuality(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HighlightAlt.jsx b/icons/jsx/HighlightAlt.jsx index eae4bb6480..698abced56 100644 --- a/icons/jsx/HighlightAlt.jsx +++ b/icons/jsx/HighlightAlt.jsx @@ -7,9 +7,13 @@ function SvgHighlightAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HighlightOff.jsx b/icons/jsx/HighlightOff.jsx index cf59afa868..4219053b20 100644 --- a/icons/jsx/HighlightOff.jsx +++ b/icons/jsx/HighlightOff.jsx @@ -7,9 +7,13 @@ function SvgHighlightOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hiking.jsx b/icons/jsx/Hiking.jsx index 94233e0359..662a5c7971 100644 --- a/icons/jsx/Hiking.jsx +++ b/icons/jsx/Hiking.jsx @@ -7,9 +7,13 @@ function SvgHiking(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/History.jsx b/icons/jsx/History.jsx index 2809bfe8e0..d0a75924ab 100644 --- a/icons/jsx/History.jsx +++ b/icons/jsx/History.jsx @@ -7,9 +7,13 @@ function SvgHistory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HistoryEdu.jsx b/icons/jsx/HistoryEdu.jsx index a784ee43b2..7807d941c0 100644 --- a/icons/jsx/HistoryEdu.jsx +++ b/icons/jsx/HistoryEdu.jsx @@ -7,9 +7,13 @@ function SvgHistoryEdu(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HistoryToggleOff.jsx b/icons/jsx/HistoryToggleOff.jsx index 9325c60875..0348444d4d 100644 --- a/icons/jsx/HistoryToggleOff.jsx +++ b/icons/jsx/HistoryToggleOff.jsx @@ -7,9 +7,13 @@ function SvgHistoryToggleOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hive.jsx b/icons/jsx/Hive.jsx index 4fe76d93f8..911fb974ed 100644 --- a/icons/jsx/Hive.jsx +++ b/icons/jsx/Hive.jsx @@ -7,9 +7,13 @@ function SvgHive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hls.jsx b/icons/jsx/Hls.jsx index 89b50ff6ac..1a8b2e5219 100644 --- a/icons/jsx/Hls.jsx +++ b/icons/jsx/Hls.jsx @@ -7,9 +7,13 @@ function SvgHls(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HlsOff.jsx b/icons/jsx/HlsOff.jsx index dea677992d..c2748f1913 100644 --- a/icons/jsx/HlsOff.jsx +++ b/icons/jsx/HlsOff.jsx @@ -7,9 +7,13 @@ function SvgHlsOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HolidayVillage.jsx b/icons/jsx/HolidayVillage.jsx index 3c04a6e399..8a6b00bffe 100644 --- a/icons/jsx/HolidayVillage.jsx +++ b/icons/jsx/HolidayVillage.jsx @@ -7,9 +7,13 @@ function SvgHolidayVillage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HomeMax.jsx b/icons/jsx/HomeMax.jsx index c50d47d53f..571fa2e97e 100644 --- a/icons/jsx/HomeMax.jsx +++ b/icons/jsx/HomeMax.jsx @@ -7,9 +7,13 @@ function SvgHomeMax(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HomeMini.jsx b/icons/jsx/HomeMini.jsx index e4636db135..0616bf875f 100644 --- a/icons/jsx/HomeMini.jsx +++ b/icons/jsx/HomeMini.jsx @@ -7,9 +7,13 @@ function SvgHomeMini(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HomeRepairService.jsx b/icons/jsx/HomeRepairService.jsx index a9f647c6dd..f96498c6a6 100644 --- a/icons/jsx/HomeRepairService.jsx +++ b/icons/jsx/HomeRepairService.jsx @@ -7,9 +7,13 @@ function SvgHomeRepairService(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HomeWork.jsx b/icons/jsx/HomeWork.jsx index d9da2e3bc0..160f77b9db 100644 --- a/icons/jsx/HomeWork.jsx +++ b/icons/jsx/HomeWork.jsx @@ -7,10 +7,14 @@ function SvgHomeWork(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/HorizontalDistribute.jsx b/icons/jsx/HorizontalDistribute.jsx index e15fbc3ac7..b79b483d5a 100644 --- a/icons/jsx/HorizontalDistribute.jsx +++ b/icons/jsx/HorizontalDistribute.jsx @@ -7,9 +7,13 @@ function SvgHorizontalDistribute(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HorizontalRule.jsx b/icons/jsx/HorizontalRule.jsx index 12924649e7..7117a562f6 100644 --- a/icons/jsx/HorizontalRule.jsx +++ b/icons/jsx/HorizontalRule.jsx @@ -7,9 +7,10 @@ function SvgHorizontalRule(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HorizontalSplit.jsx b/icons/jsx/HorizontalSplit.jsx index e81f27dafc..2735038175 100644 --- a/icons/jsx/HorizontalSplit.jsx +++ b/icons/jsx/HorizontalSplit.jsx @@ -7,9 +7,13 @@ function SvgHorizontalSplit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HotTub.jsx b/icons/jsx/HotTub.jsx index 3511b1f197..acccf6cff0 100644 --- a/icons/jsx/HotTub.jsx +++ b/icons/jsx/HotTub.jsx @@ -7,10 +7,14 @@ function SvgHotTub(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hotel.jsx b/icons/jsx/Hotel.jsx index a33cc5710e..f4f2f09e2d 100644 --- a/icons/jsx/Hotel.jsx +++ b/icons/jsx/Hotel.jsx @@ -7,9 +7,13 @@ function SvgHotel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HotelClass.jsx b/icons/jsx/HotelClass.jsx index 12d4157b9d..b4c5315140 100644 --- a/icons/jsx/HotelClass.jsx +++ b/icons/jsx/HotelClass.jsx @@ -7,9 +7,13 @@ function SvgHotelClass(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HourglassBottom.jsx b/icons/jsx/HourglassBottom.jsx index 57b6af40bd..499b341dc2 100644 --- a/icons/jsx/HourglassBottom.jsx +++ b/icons/jsx/HourglassBottom.jsx @@ -7,9 +7,13 @@ function SvgHourglassBottom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HourglassDisabled.jsx b/icons/jsx/HourglassDisabled.jsx index 3b77deda52..6010c542e3 100644 --- a/icons/jsx/HourglassDisabled.jsx +++ b/icons/jsx/HourglassDisabled.jsx @@ -7,9 +7,13 @@ function SvgHourglassDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HourglassEmpty.jsx b/icons/jsx/HourglassEmpty.jsx index 5af4885020..c7e5c655f6 100644 --- a/icons/jsx/HourglassEmpty.jsx +++ b/icons/jsx/HourglassEmpty.jsx @@ -7,9 +7,13 @@ function SvgHourglassEmpty(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HourglassFull.jsx b/icons/jsx/HourglassFull.jsx index e308aa5636..aeaa2a5e57 100644 --- a/icons/jsx/HourglassFull.jsx +++ b/icons/jsx/HourglassFull.jsx @@ -7,9 +7,13 @@ function SvgHourglassFull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HourglassTop.jsx b/icons/jsx/HourglassTop.jsx index 015bc55dbf..5697c91c06 100644 --- a/icons/jsx/HourglassTop.jsx +++ b/icons/jsx/HourglassTop.jsx @@ -7,9 +7,13 @@ function SvgHourglassTop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/House.jsx b/icons/jsx/House.jsx index c4d9e671e5..52d53d4b52 100644 --- a/icons/jsx/House.jsx +++ b/icons/jsx/House.jsx @@ -7,9 +7,13 @@ function SvgHouse(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HouseSiding.jsx b/icons/jsx/HouseSiding.jsx index 4a2dfdafed..7bb8d2c267 100644 --- a/icons/jsx/HouseSiding.jsx +++ b/icons/jsx/HouseSiding.jsx @@ -7,9 +7,13 @@ function SvgHouseSiding(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Houseboat.jsx b/icons/jsx/Houseboat.jsx index e9454cffa5..fdc81a9942 100644 --- a/icons/jsx/Houseboat.jsx +++ b/icons/jsx/Houseboat.jsx @@ -7,9 +7,13 @@ function SvgHouseboat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HowToReg.jsx b/icons/jsx/HowToReg.jsx index ad68bf6ebd..87f4eec7d0 100644 --- a/icons/jsx/HowToReg.jsx +++ b/icons/jsx/HowToReg.jsx @@ -7,9 +7,13 @@ function SvgHowToReg(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/HowToVote.jsx b/icons/jsx/HowToVote.jsx index 2ada929027..331567eee9 100644 --- a/icons/jsx/HowToVote.jsx +++ b/icons/jsx/HowToVote.jsx @@ -7,9 +7,13 @@ function SvgHowToVote(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Html.jsx b/icons/jsx/Html.jsx index a3c72f1115..0319d91f9b 100644 --- a/icons/jsx/Html.jsx +++ b/icons/jsx/Html.jsx @@ -7,9 +7,13 @@ function SvgHtml(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Http.jsx b/icons/jsx/Http.jsx index 6d953a12a7..8fddf9df40 100644 --- a/icons/jsx/Http.jsx +++ b/icons/jsx/Http.jsx @@ -7,9 +7,13 @@ function SvgHttp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Https.jsx b/icons/jsx/Https.jsx index 81428b591f..c542ce7dce 100644 --- a/icons/jsx/Https.jsx +++ b/icons/jsx/Https.jsx @@ -7,9 +7,13 @@ function SvgHttps(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hub.jsx b/icons/jsx/Hub.jsx index 04ef91707e..0406a44d9d 100644 --- a/icons/jsx/Hub.jsx +++ b/icons/jsx/Hub.jsx @@ -7,9 +7,13 @@ function SvgHub(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Hvac.jsx b/icons/jsx/Hvac.jsx index eb1b389ad4..505bf9acaa 100644 --- a/icons/jsx/Hvac.jsx +++ b/icons/jsx/Hvac.jsx @@ -7,10 +7,17 @@ function SvgHvac(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/IceSkating.jsx b/icons/jsx/IceSkating.jsx index 01f912c579..12a2088674 100644 --- a/icons/jsx/IceSkating.jsx +++ b/icons/jsx/IceSkating.jsx @@ -7,9 +7,13 @@ function SvgIceSkating(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Icecream.jsx b/icons/jsx/Icecream.jsx index 79a5cce5bb..a7688a4062 100644 --- a/icons/jsx/Icecream.jsx +++ b/icons/jsx/Icecream.jsx @@ -7,9 +7,13 @@ function SvgIcecream(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Image.jsx b/icons/jsx/Image.jsx index c140fe3512..8bde8602b4 100644 --- a/icons/jsx/Image.jsx +++ b/icons/jsx/Image.jsx @@ -7,9 +7,13 @@ function SvgImage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ImageAspectRatio.jsx b/icons/jsx/ImageAspectRatio.jsx index d9a743d145..95039a54ed 100644 --- a/icons/jsx/ImageAspectRatio.jsx +++ b/icons/jsx/ImageAspectRatio.jsx @@ -7,9 +7,13 @@ function SvgImageAspectRatio(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ImageNotSupported.jsx b/icons/jsx/ImageNotSupported.jsx index 47968da143..5453328c2e 100644 --- a/icons/jsx/ImageNotSupported.jsx +++ b/icons/jsx/ImageNotSupported.jsx @@ -7,9 +7,13 @@ function SvgImageNotSupported(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ImageSearch.jsx b/icons/jsx/ImageSearch.jsx index b5aaad46b0..99564d2087 100644 --- a/icons/jsx/ImageSearch.jsx +++ b/icons/jsx/ImageSearch.jsx @@ -7,9 +7,13 @@ function SvgImageSearch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ImagesearchRoller.jsx b/icons/jsx/ImagesearchRoller.jsx index 69b4cf5977..f9e28a01a3 100644 --- a/icons/jsx/ImagesearchRoller.jsx +++ b/icons/jsx/ImagesearchRoller.jsx @@ -7,9 +7,13 @@ function SvgImagesearchRoller(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ImportContacts.jsx b/icons/jsx/ImportContacts.jsx index a7637aaf5a..3136192d95 100644 --- a/icons/jsx/ImportContacts.jsx +++ b/icons/jsx/ImportContacts.jsx @@ -7,9 +7,13 @@ function SvgImportContacts(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ImportExport.jsx b/icons/jsx/ImportExport.jsx index 9095a17b19..dde2cb02ce 100644 --- a/icons/jsx/ImportExport.jsx +++ b/icons/jsx/ImportExport.jsx @@ -7,9 +7,13 @@ function SvgImportExport(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ImportantDevices.jsx b/icons/jsx/ImportantDevices.jsx index ca1fb81ed8..f19f7cc27b 100644 --- a/icons/jsx/ImportantDevices.jsx +++ b/icons/jsx/ImportantDevices.jsx @@ -7,9 +7,13 @@ function SvgImportantDevices(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Inbox.jsx b/icons/jsx/Inbox.jsx index 7b15c95ee4..a630ac4860 100644 --- a/icons/jsx/Inbox.jsx +++ b/icons/jsx/Inbox.jsx @@ -7,9 +7,13 @@ function SvgInbox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/IncompleteCircle.jsx b/icons/jsx/IncompleteCircle.jsx index bb2bddb598..cc9616c1a1 100644 --- a/icons/jsx/IncompleteCircle.jsx +++ b/icons/jsx/IncompleteCircle.jsx @@ -7,9 +7,13 @@ function SvgIncompleteCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Input.jsx b/icons/jsx/Input.jsx index f49d58c02c..f10cb0d095 100644 --- a/icons/jsx/Input.jsx +++ b/icons/jsx/Input.jsx @@ -7,9 +7,13 @@ function SvgInput(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertChart.jsx b/icons/jsx/InsertChart.jsx index 467cbe5b12..fb832fe282 100644 --- a/icons/jsx/InsertChart.jsx +++ b/icons/jsx/InsertChart.jsx @@ -7,9 +7,13 @@ function SvgInsertChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertChartOutlined.jsx b/icons/jsx/InsertChartOutlined.jsx index 380e157f69..885689d721 100644 --- a/icons/jsx/InsertChartOutlined.jsx +++ b/icons/jsx/InsertChartOutlined.jsx @@ -7,9 +7,13 @@ function SvgInsertChartOutlined(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertComment.jsx b/icons/jsx/InsertComment.jsx index 1a25d5ad48..3778682a01 100644 --- a/icons/jsx/InsertComment.jsx +++ b/icons/jsx/InsertComment.jsx @@ -7,9 +7,13 @@ function SvgInsertComment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertDriveFile.jsx b/icons/jsx/InsertDriveFile.jsx index 793ac70587..ab48f70bec 100644 --- a/icons/jsx/InsertDriveFile.jsx +++ b/icons/jsx/InsertDriveFile.jsx @@ -7,9 +7,13 @@ function SvgInsertDriveFile(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertEmoticon.jsx b/icons/jsx/InsertEmoticon.jsx index 114bee058f..6cf25adf16 100644 --- a/icons/jsx/InsertEmoticon.jsx +++ b/icons/jsx/InsertEmoticon.jsx @@ -7,9 +7,13 @@ function SvgInsertEmoticon(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertInvitation.jsx b/icons/jsx/InsertInvitation.jsx index fd8aafefdf..5834844453 100644 --- a/icons/jsx/InsertInvitation.jsx +++ b/icons/jsx/InsertInvitation.jsx @@ -7,9 +7,13 @@ function SvgInsertInvitation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertLink.jsx b/icons/jsx/InsertLink.jsx index d8e098e885..8469e654b0 100644 --- a/icons/jsx/InsertLink.jsx +++ b/icons/jsx/InsertLink.jsx @@ -7,9 +7,13 @@ function SvgInsertLink(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertPageBreak.jsx b/icons/jsx/InsertPageBreak.jsx index de93070b9c..8667c00d63 100644 --- a/icons/jsx/InsertPageBreak.jsx +++ b/icons/jsx/InsertPageBreak.jsx @@ -7,9 +7,13 @@ function SvgInsertPageBreak(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InsertPhoto.jsx b/icons/jsx/InsertPhoto.jsx index 20b7aa68c0..5b2318837c 100644 --- a/icons/jsx/InsertPhoto.jsx +++ b/icons/jsx/InsertPhoto.jsx @@ -7,9 +7,13 @@ function SvgInsertPhoto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Insights.jsx b/icons/jsx/Insights.jsx index 28caeeee22..43ad9ea9f4 100644 --- a/icons/jsx/Insights.jsx +++ b/icons/jsx/Insights.jsx @@ -7,10 +7,17 @@ function SvgInsights(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/InstallDesktop.jsx b/icons/jsx/InstallDesktop.jsx index 31060a2c84..e7332922c9 100644 --- a/icons/jsx/InstallDesktop.jsx +++ b/icons/jsx/InstallDesktop.jsx @@ -7,10 +7,14 @@ function SvgInstallDesktop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/InstallMobile.jsx b/icons/jsx/InstallMobile.jsx index e7d15266cc..6969752d27 100644 --- a/icons/jsx/InstallMobile.jsx +++ b/icons/jsx/InstallMobile.jsx @@ -7,10 +7,14 @@ function SvgInstallMobile(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/IntegrationInstructions.jsx b/icons/jsx/IntegrationInstructions.jsx index 7cc5089f8d..7eb325baca 100644 --- a/icons/jsx/IntegrationInstructions.jsx +++ b/icons/jsx/IntegrationInstructions.jsx @@ -7,9 +7,13 @@ function SvgIntegrationInstructions(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Interests.jsx b/icons/jsx/Interests.jsx index c94df34d79..9b7ae6d4ec 100644 --- a/icons/jsx/Interests.jsx +++ b/icons/jsx/Interests.jsx @@ -7,9 +7,13 @@ function SvgInterests(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InterpreterMode.jsx b/icons/jsx/InterpreterMode.jsx index 6ca90c22e3..f5f7ed6904 100644 --- a/icons/jsx/InterpreterMode.jsx +++ b/icons/jsx/InterpreterMode.jsx @@ -7,9 +7,13 @@ function SvgInterpreterMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Inventory.jsx b/icons/jsx/Inventory.jsx index fdd9419d0f..17e6e5abc4 100644 --- a/icons/jsx/Inventory.jsx +++ b/icons/jsx/Inventory.jsx @@ -7,10 +7,17 @@ function SvgInventory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Inventory2.jsx b/icons/jsx/Inventory2.jsx index 289ba86157..56201ddaa3 100644 --- a/icons/jsx/Inventory2.jsx +++ b/icons/jsx/Inventory2.jsx @@ -7,9 +7,13 @@ function SvgInventory2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InvertColors.jsx b/icons/jsx/InvertColors.jsx index 808fd33986..facd61ca30 100644 --- a/icons/jsx/InvertColors.jsx +++ b/icons/jsx/InvertColors.jsx @@ -7,9 +7,13 @@ function SvgInvertColors(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/InvertColorsOff.jsx b/icons/jsx/InvertColorsOff.jsx index 375cc0cbda..ee8dc74803 100644 --- a/icons/jsx/InvertColorsOff.jsx +++ b/icons/jsx/InvertColorsOff.jsx @@ -7,9 +7,13 @@ function SvgInvertColorsOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Iron.jsx b/icons/jsx/Iron.jsx index 59e3cc1124..31a3246bda 100644 --- a/icons/jsx/Iron.jsx +++ b/icons/jsx/Iron.jsx @@ -7,9 +7,13 @@ function SvgIron(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Iso.jsx b/icons/jsx/Iso.jsx index 6cde831475..cc0a013287 100644 --- a/icons/jsx/Iso.jsx +++ b/icons/jsx/Iso.jsx @@ -7,9 +7,13 @@ function SvgIso(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Issue.jsx b/icons/jsx/Issue.jsx index 1f5cbcb5da..8d358a4c67 100644 --- a/icons/jsx/Issue.jsx +++ b/icons/jsx/Issue.jsx @@ -14,11 +14,11 @@ function SvgIssue(props) { fillRule="evenodd" clipRule="evenodd" d="M22 12c0-5.52-4.48-10-10-10S2 6.48 2 12s4.48 10 10 10 10-4.48 10-10z" - fill="#F0CC00" + fill="currentColor" /> ); diff --git a/icons/jsx/Javascript.jsx b/icons/jsx/Javascript.jsx index 60656917b2..13cafd2702 100644 --- a/icons/jsx/Javascript.jsx +++ b/icons/jsx/Javascript.jsx @@ -7,9 +7,13 @@ function SvgJavascript(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/JoinFull.jsx b/icons/jsx/JoinFull.jsx index d328dfe331..bf529b5e33 100644 --- a/icons/jsx/JoinFull.jsx +++ b/icons/jsx/JoinFull.jsx @@ -7,10 +7,14 @@ function SvgJoinFull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/JoinInner.jsx b/icons/jsx/JoinInner.jsx index 1a7be60621..6dcbfa57d9 100644 --- a/icons/jsx/JoinInner.jsx +++ b/icons/jsx/JoinInner.jsx @@ -7,10 +7,14 @@ function SvgJoinInner(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/JoinLeft.jsx b/icons/jsx/JoinLeft.jsx index 3dcbcb77ee..9e7c5a92aa 100644 --- a/icons/jsx/JoinLeft.jsx +++ b/icons/jsx/JoinLeft.jsx @@ -7,10 +7,14 @@ function SvgJoinLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/JoinRight.jsx b/icons/jsx/JoinRight.jsx index 48431562a4..51b4d15f35 100644 --- a/icons/jsx/JoinRight.jsx +++ b/icons/jsx/JoinRight.jsx @@ -7,10 +7,14 @@ function SvgJoinRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Kayaking.jsx b/icons/jsx/Kayaking.jsx index 5fe45550c7..4c6cce4a6a 100644 --- a/icons/jsx/Kayaking.jsx +++ b/icons/jsx/Kayaking.jsx @@ -7,9 +7,13 @@ function SvgKayaking(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KebabDining.jsx b/icons/jsx/KebabDining.jsx index 834987fa26..cc6eb49c67 100644 --- a/icons/jsx/KebabDining.jsx +++ b/icons/jsx/KebabDining.jsx @@ -7,9 +7,13 @@ function SvgKebabDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Key.jsx b/icons/jsx/Key.jsx index 90be697afe..3d5ed646c6 100644 --- a/icons/jsx/Key.jsx +++ b/icons/jsx/Key.jsx @@ -7,9 +7,13 @@ function SvgKey(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyOff.jsx b/icons/jsx/KeyOff.jsx index 18002d15d1..40130e7c3e 100644 --- a/icons/jsx/KeyOff.jsx +++ b/icons/jsx/KeyOff.jsx @@ -7,9 +7,13 @@ function SvgKeyOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Keyboard.jsx b/icons/jsx/Keyboard.jsx index 211751b85a..97845ae2b3 100644 --- a/icons/jsx/Keyboard.jsx +++ b/icons/jsx/Keyboard.jsx @@ -7,9 +7,13 @@ function SvgKeyboard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardAlt.jsx b/icons/jsx/KeyboardAlt.jsx index 5a18d8b70f..a6d008815a 100644 --- a/icons/jsx/KeyboardAlt.jsx +++ b/icons/jsx/KeyboardAlt.jsx @@ -7,9 +7,13 @@ function SvgKeyboardAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardArrowDown.jsx b/icons/jsx/KeyboardArrowDown.jsx index 0317df2e11..0d13c8673b 100644 --- a/icons/jsx/KeyboardArrowDown.jsx +++ b/icons/jsx/KeyboardArrowDown.jsx @@ -7,9 +7,13 @@ function SvgKeyboardArrowDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardArrowLeft.jsx b/icons/jsx/KeyboardArrowLeft.jsx index 4ef2c12d59..0c8a01e55d 100644 --- a/icons/jsx/KeyboardArrowLeft.jsx +++ b/icons/jsx/KeyboardArrowLeft.jsx @@ -7,9 +7,13 @@ function SvgKeyboardArrowLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardArrowRight.jsx b/icons/jsx/KeyboardArrowRight.jsx index 8e5fe8cefa..b869f2bce3 100644 --- a/icons/jsx/KeyboardArrowRight.jsx +++ b/icons/jsx/KeyboardArrowRight.jsx @@ -7,9 +7,13 @@ function SvgKeyboardArrowRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardArrowUp.jsx b/icons/jsx/KeyboardArrowUp.jsx index adc3478c18..a4c302841d 100644 --- a/icons/jsx/KeyboardArrowUp.jsx +++ b/icons/jsx/KeyboardArrowUp.jsx @@ -7,9 +7,13 @@ function SvgKeyboardArrowUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardBackspace.jsx b/icons/jsx/KeyboardBackspace.jsx index 2eee8cabdd..8068f3c4ba 100644 --- a/icons/jsx/KeyboardBackspace.jsx +++ b/icons/jsx/KeyboardBackspace.jsx @@ -7,9 +7,13 @@ function SvgKeyboardBackspace(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardCapslock.jsx b/icons/jsx/KeyboardCapslock.jsx index 59116309dc..4a26a4d0d7 100644 --- a/icons/jsx/KeyboardCapslock.jsx +++ b/icons/jsx/KeyboardCapslock.jsx @@ -7,9 +7,13 @@ function SvgKeyboardCapslock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardCommandKey.jsx b/icons/jsx/KeyboardCommandKey.jsx index eb205a8f76..7ac919fcde 100644 --- a/icons/jsx/KeyboardCommandKey.jsx +++ b/icons/jsx/KeyboardCommandKey.jsx @@ -7,9 +7,13 @@ function SvgKeyboardCommandKey(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardControlKey.jsx b/icons/jsx/KeyboardControlKey.jsx index 7cbe623599..55f45f41b3 100644 --- a/icons/jsx/KeyboardControlKey.jsx +++ b/icons/jsx/KeyboardControlKey.jsx @@ -7,9 +7,13 @@ function SvgKeyboardControlKey(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardDoubleArrowDown.jsx b/icons/jsx/KeyboardDoubleArrowDown.jsx index 8c28b18425..eb56e05a9a 100644 --- a/icons/jsx/KeyboardDoubleArrowDown.jsx +++ b/icons/jsx/KeyboardDoubleArrowDown.jsx @@ -7,10 +7,17 @@ function SvgKeyboardDoubleArrowDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/KeyboardDoubleArrowLeft.jsx b/icons/jsx/KeyboardDoubleArrowLeft.jsx index 8e2e816068..9bf7b3cdba 100644 --- a/icons/jsx/KeyboardDoubleArrowLeft.jsx +++ b/icons/jsx/KeyboardDoubleArrowLeft.jsx @@ -7,10 +7,17 @@ function SvgKeyboardDoubleArrowLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/KeyboardDoubleArrowRight.jsx b/icons/jsx/KeyboardDoubleArrowRight.jsx index 00a99608e1..3f0f2e4417 100644 --- a/icons/jsx/KeyboardDoubleArrowRight.jsx +++ b/icons/jsx/KeyboardDoubleArrowRight.jsx @@ -7,10 +7,17 @@ function SvgKeyboardDoubleArrowRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/KeyboardDoubleArrowUp.jsx b/icons/jsx/KeyboardDoubleArrowUp.jsx index ae24e8d7b7..716ea74c50 100644 --- a/icons/jsx/KeyboardDoubleArrowUp.jsx +++ b/icons/jsx/KeyboardDoubleArrowUp.jsx @@ -7,10 +7,17 @@ function SvgKeyboardDoubleArrowUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/KeyboardHide.jsx b/icons/jsx/KeyboardHide.jsx index f57560b97f..18fdc796f9 100644 --- a/icons/jsx/KeyboardHide.jsx +++ b/icons/jsx/KeyboardHide.jsx @@ -7,9 +7,13 @@ function SvgKeyboardHide(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardOptionKey.jsx b/icons/jsx/KeyboardOptionKey.jsx index 46e58a407f..2713742d78 100644 --- a/icons/jsx/KeyboardOptionKey.jsx +++ b/icons/jsx/KeyboardOptionKey.jsx @@ -7,9 +7,13 @@ function SvgKeyboardOptionKey(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardReturn.jsx b/icons/jsx/KeyboardReturn.jsx index 95cfb17122..ad884871ed 100644 --- a/icons/jsx/KeyboardReturn.jsx +++ b/icons/jsx/KeyboardReturn.jsx @@ -7,9 +7,13 @@ function SvgKeyboardReturn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardTab.jsx b/icons/jsx/KeyboardTab.jsx index f5b69e8f8a..20b4ff2fd3 100644 --- a/icons/jsx/KeyboardTab.jsx +++ b/icons/jsx/KeyboardTab.jsx @@ -7,9 +7,13 @@ function SvgKeyboardTab(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KeyboardVoice.jsx b/icons/jsx/KeyboardVoice.jsx index ea93406a6f..9a68fd08f6 100644 --- a/icons/jsx/KeyboardVoice.jsx +++ b/icons/jsx/KeyboardVoice.jsx @@ -7,9 +7,13 @@ function SvgKeyboardVoice(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/KingBed.jsx b/icons/jsx/KingBed.jsx index a02aa955f0..c913eecc3b 100644 --- a/icons/jsx/KingBed.jsx +++ b/icons/jsx/KingBed.jsx @@ -7,9 +7,13 @@ function SvgKingBed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Kitchen.jsx b/icons/jsx/Kitchen.jsx index 89feef9c02..88f65e20d4 100644 --- a/icons/jsx/Kitchen.jsx +++ b/icons/jsx/Kitchen.jsx @@ -7,9 +7,13 @@ function SvgKitchen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Kitesurfing.jsx b/icons/jsx/Kitesurfing.jsx index c5ff4d9fa5..63dd282f96 100644 --- a/icons/jsx/Kitesurfing.jsx +++ b/icons/jsx/Kitesurfing.jsx @@ -7,9 +7,13 @@ function SvgKitesurfing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Label.jsx b/icons/jsx/Label.jsx index 201d5488f0..b07415b39e 100644 --- a/icons/jsx/Label.jsx +++ b/icons/jsx/Label.jsx @@ -7,9 +7,13 @@ function SvgLabel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LabelImportant.jsx b/icons/jsx/LabelImportant.jsx index 2191da873f..02b4600c3f 100644 --- a/icons/jsx/LabelImportant.jsx +++ b/icons/jsx/LabelImportant.jsx @@ -7,9 +7,13 @@ function SvgLabelImportant(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LabelOff.jsx b/icons/jsx/LabelOff.jsx index 5798d1c588..c0e733f9f1 100644 --- a/icons/jsx/LabelOff.jsx +++ b/icons/jsx/LabelOff.jsx @@ -7,9 +7,13 @@ function SvgLabelOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Lan.jsx b/icons/jsx/Lan.jsx index 64d1982cc0..cdcead7200 100644 --- a/icons/jsx/Lan.jsx +++ b/icons/jsx/Lan.jsx @@ -7,9 +7,13 @@ function SvgLan(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Landscape.jsx b/icons/jsx/Landscape.jsx index 87d2f86a10..077e1baaae 100644 --- a/icons/jsx/Landscape.jsx +++ b/icons/jsx/Landscape.jsx @@ -7,9 +7,13 @@ function SvgLandscape(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Landslide.jsx b/icons/jsx/Landslide.jsx index a366fe60c9..42aabe2e9e 100644 --- a/icons/jsx/Landslide.jsx +++ b/icons/jsx/Landslide.jsx @@ -7,9 +7,13 @@ function SvgLandslide(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LaptopChromebook.jsx b/icons/jsx/LaptopChromebook.jsx index 939fc4c50d..6b6ee4143d 100644 --- a/icons/jsx/LaptopChromebook.jsx +++ b/icons/jsx/LaptopChromebook.jsx @@ -7,9 +7,13 @@ function SvgLaptopChromebook(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LaptopMac.jsx b/icons/jsx/LaptopMac.jsx index 961459b4fc..272ac1f4e5 100644 --- a/icons/jsx/LaptopMac.jsx +++ b/icons/jsx/LaptopMac.jsx @@ -7,9 +7,13 @@ function SvgLaptopMac(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LaptopWindows.jsx b/icons/jsx/LaptopWindows.jsx index 3f384159f5..b9acf3e948 100644 --- a/icons/jsx/LaptopWindows.jsx +++ b/icons/jsx/LaptopWindows.jsx @@ -7,9 +7,13 @@ function SvgLaptopWindows(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LastPage.jsx b/icons/jsx/LastPage.jsx index f85a85205f..4ddb0c459d 100644 --- a/icons/jsx/LastPage.jsx +++ b/icons/jsx/LastPage.jsx @@ -7,9 +7,13 @@ function SvgLastPage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Layers.jsx b/icons/jsx/Layers.jsx index 9fc9a7634f..efba0de4b9 100644 --- a/icons/jsx/Layers.jsx +++ b/icons/jsx/Layers.jsx @@ -7,9 +7,13 @@ function SvgLayers(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LayersClear.jsx b/icons/jsx/LayersClear.jsx index 77aaa60ac4..0c2a94a8e2 100644 --- a/icons/jsx/LayersClear.jsx +++ b/icons/jsx/LayersClear.jsx @@ -7,9 +7,13 @@ function SvgLayersClear(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Leaderboard.jsx b/icons/jsx/Leaderboard.jsx index 9152c4ae0c..7136075596 100644 --- a/icons/jsx/Leaderboard.jsx +++ b/icons/jsx/Leaderboard.jsx @@ -7,9 +7,13 @@ function SvgLeaderboard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LeakAdd.jsx b/icons/jsx/LeakAdd.jsx index 8a64f15504..788069fa2f 100644 --- a/icons/jsx/LeakAdd.jsx +++ b/icons/jsx/LeakAdd.jsx @@ -7,9 +7,13 @@ function SvgLeakAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LeakRemove.jsx b/icons/jsx/LeakRemove.jsx index 9fa9136ae1..e7578e6bd2 100644 --- a/icons/jsx/LeakRemove.jsx +++ b/icons/jsx/LeakRemove.jsx @@ -7,9 +7,13 @@ function SvgLeakRemove(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LeaveBagsAtHome.jsx b/icons/jsx/LeaveBagsAtHome.jsx index 63f11d21a3..9ee2ccbb0c 100644 --- a/icons/jsx/LeaveBagsAtHome.jsx +++ b/icons/jsx/LeaveBagsAtHome.jsx @@ -7,9 +7,13 @@ function SvgLeaveBagsAtHome(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LegendToggle.jsx b/icons/jsx/LegendToggle.jsx index cc803bde29..42b32ba787 100644 --- a/icons/jsx/LegendToggle.jsx +++ b/icons/jsx/LegendToggle.jsx @@ -7,9 +7,13 @@ function SvgLegendToggle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Lens.jsx b/icons/jsx/Lens.jsx index 64e84e1cf2..5b491b643d 100644 --- a/icons/jsx/Lens.jsx +++ b/icons/jsx/Lens.jsx @@ -7,9 +7,13 @@ function SvgLens(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LensBlur.jsx b/icons/jsx/LensBlur.jsx index b44c18d423..0ccb96ed1b 100644 --- a/icons/jsx/LensBlur.jsx +++ b/icons/jsx/LensBlur.jsx @@ -7,9 +7,13 @@ function SvgLensBlur(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LessThan.jsx b/icons/jsx/LessThan.jsx index ab0a1a2da4..578f1c53ef 100644 --- a/icons/jsx/LessThan.jsx +++ b/icons/jsx/LessThan.jsx @@ -7,11 +7,13 @@ function SvgLessThan(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/LessThanEqual.jsx b/icons/jsx/LessThanEqual.jsx index e3c103c38e..b0957b6f21 100644 --- a/icons/jsx/LessThanEqual.jsx +++ b/icons/jsx/LessThanEqual.jsx @@ -7,13 +7,15 @@ function SvgLessThanEqual(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LibraryAdd.jsx b/icons/jsx/LibraryAdd.jsx index 93a595f3dc..63f1938581 100644 --- a/icons/jsx/LibraryAdd.jsx +++ b/icons/jsx/LibraryAdd.jsx @@ -7,9 +7,13 @@ function SvgLibraryAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LibraryAddCheck.jsx b/icons/jsx/LibraryAddCheck.jsx index 1be1638df7..88fe11a764 100644 --- a/icons/jsx/LibraryAddCheck.jsx +++ b/icons/jsx/LibraryAddCheck.jsx @@ -7,9 +7,13 @@ function SvgLibraryAddCheck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LibraryBooks.jsx b/icons/jsx/LibraryBooks.jsx index 05d74f71f0..6ac3500176 100644 --- a/icons/jsx/LibraryBooks.jsx +++ b/icons/jsx/LibraryBooks.jsx @@ -7,9 +7,13 @@ function SvgLibraryBooks(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LibraryMusic.jsx b/icons/jsx/LibraryMusic.jsx index 6c56837ecd..b138af8eae 100644 --- a/icons/jsx/LibraryMusic.jsx +++ b/icons/jsx/LibraryMusic.jsx @@ -7,9 +7,13 @@ function SvgLibraryMusic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Light.jsx b/icons/jsx/Light.jsx index ac2d58f1e0..2ad3e26b62 100644 --- a/icons/jsx/Light.jsx +++ b/icons/jsx/Light.jsx @@ -7,9 +7,13 @@ function SvgLight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LightMode.jsx b/icons/jsx/LightMode.jsx index d52868caa2..695e8adefe 100644 --- a/icons/jsx/LightMode.jsx +++ b/icons/jsx/LightMode.jsx @@ -7,9 +7,13 @@ function SvgLightMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LightbulbCircle.jsx b/icons/jsx/LightbulbCircle.jsx index 769ce4f2c2..92f5a66b88 100644 --- a/icons/jsx/LightbulbCircle.jsx +++ b/icons/jsx/LightbulbCircle.jsx @@ -7,9 +7,13 @@ function SvgLightbulbCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LineAxis.jsx b/icons/jsx/LineAxis.jsx index 96b431a7f1..c671152f9b 100644 --- a/icons/jsx/LineAxis.jsx +++ b/icons/jsx/LineAxis.jsx @@ -7,9 +7,13 @@ function SvgLineAxis(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LineStyle.jsx b/icons/jsx/LineStyle.jsx index a5a59989ac..00a35b1d50 100644 --- a/icons/jsx/LineStyle.jsx +++ b/icons/jsx/LineStyle.jsx @@ -7,9 +7,13 @@ function SvgLineStyle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LineWeight.jsx b/icons/jsx/LineWeight.jsx index a8e871d240..311a038ff8 100644 --- a/icons/jsx/LineWeight.jsx +++ b/icons/jsx/LineWeight.jsx @@ -7,9 +7,13 @@ function SvgLineWeight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LinearScale.jsx b/icons/jsx/LinearScale.jsx index 5694877ecf..492c9e1bea 100644 --- a/icons/jsx/LinearScale.jsx +++ b/icons/jsx/LinearScale.jsx @@ -7,9 +7,13 @@ function SvgLinearScale(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Link.jsx b/icons/jsx/Link.jsx index a94f75b19f..53bf028c43 100644 --- a/icons/jsx/Link.jsx +++ b/icons/jsx/Link.jsx @@ -7,9 +7,13 @@ function SvgLink(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LinkOff.jsx b/icons/jsx/LinkOff.jsx index fe83d6f8ef..0cedb2c3ee 100644 --- a/icons/jsx/LinkOff.jsx +++ b/icons/jsx/LinkOff.jsx @@ -7,9 +7,13 @@ function SvgLinkOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LinkedCamera.jsx b/icons/jsx/LinkedCamera.jsx index be116a2d1b..9e527277af 100644 --- a/icons/jsx/LinkedCamera.jsx +++ b/icons/jsx/LinkedCamera.jsx @@ -7,10 +7,14 @@ function SvgLinkedCamera(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Liquor.jsx b/icons/jsx/Liquor.jsx index fe2831ec62..222da0267c 100644 --- a/icons/jsx/Liquor.jsx +++ b/icons/jsx/Liquor.jsx @@ -7,9 +7,13 @@ function SvgLiquor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/List.jsx b/icons/jsx/List.jsx index 9fafe604c8..bd93cddc3c 100644 --- a/icons/jsx/List.jsx +++ b/icons/jsx/List.jsx @@ -7,9 +7,13 @@ function SvgList(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ListAlt.jsx b/icons/jsx/ListAlt.jsx index 624cba258c..ef4c1883c3 100644 --- a/icons/jsx/ListAlt.jsx +++ b/icons/jsx/ListAlt.jsx @@ -7,9 +7,13 @@ function SvgListAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LiveHelp.jsx b/icons/jsx/LiveHelp.jsx index a781010402..9d1c59c2b5 100644 --- a/icons/jsx/LiveHelp.jsx +++ b/icons/jsx/LiveHelp.jsx @@ -7,9 +7,13 @@ function SvgLiveHelp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LiveTv.jsx b/icons/jsx/LiveTv.jsx index 56f4aacf5e..46c7822069 100644 --- a/icons/jsx/LiveTv.jsx +++ b/icons/jsx/LiveTv.jsx @@ -7,9 +7,13 @@ function SvgLiveTv(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Living.jsx b/icons/jsx/Living.jsx index c1e286507c..a947cce538 100644 --- a/icons/jsx/Living.jsx +++ b/icons/jsx/Living.jsx @@ -7,11 +7,15 @@ function SvgLiving(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/LocalActivity.jsx b/icons/jsx/LocalActivity.jsx index 12fd23ef69..772d94bfad 100644 --- a/icons/jsx/LocalActivity.jsx +++ b/icons/jsx/LocalActivity.jsx @@ -7,9 +7,13 @@ function SvgLocalActivity(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalAirport.jsx b/icons/jsx/LocalAirport.jsx index db6b8d6abe..6499c85bd8 100644 --- a/icons/jsx/LocalAirport.jsx +++ b/icons/jsx/LocalAirport.jsx @@ -7,9 +7,13 @@ function SvgLocalAirport(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalAtm.jsx b/icons/jsx/LocalAtm.jsx index ea6c812a14..bab279d788 100644 --- a/icons/jsx/LocalAtm.jsx +++ b/icons/jsx/LocalAtm.jsx @@ -7,9 +7,13 @@ function SvgLocalAtm(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalBar.jsx b/icons/jsx/LocalBar.jsx index c3040e1012..865a478fd6 100644 --- a/icons/jsx/LocalBar.jsx +++ b/icons/jsx/LocalBar.jsx @@ -7,9 +7,13 @@ function SvgLocalBar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalCafe.jsx b/icons/jsx/LocalCafe.jsx index e86f64c082..a799b076c9 100644 --- a/icons/jsx/LocalCafe.jsx +++ b/icons/jsx/LocalCafe.jsx @@ -7,9 +7,13 @@ function SvgLocalCafe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalCarWash.jsx b/icons/jsx/LocalCarWash.jsx index f711d4b2e3..f911c2cc9b 100644 --- a/icons/jsx/LocalCarWash.jsx +++ b/icons/jsx/LocalCarWash.jsx @@ -7,9 +7,13 @@ function SvgLocalCarWash(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalConvenienceStore.jsx b/icons/jsx/LocalConvenienceStore.jsx index d309a4c5b5..47080944ff 100644 --- a/icons/jsx/LocalConvenienceStore.jsx +++ b/icons/jsx/LocalConvenienceStore.jsx @@ -7,9 +7,13 @@ function SvgLocalConvenienceStore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalDining.jsx b/icons/jsx/LocalDining.jsx index 9c011d7039..9ea2998b13 100644 --- a/icons/jsx/LocalDining.jsx +++ b/icons/jsx/LocalDining.jsx @@ -7,9 +7,13 @@ function SvgLocalDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalDrink.jsx b/icons/jsx/LocalDrink.jsx index da61d5251f..952a3a4127 100644 --- a/icons/jsx/LocalDrink.jsx +++ b/icons/jsx/LocalDrink.jsx @@ -7,9 +7,13 @@ function SvgLocalDrink(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalFireDepartment.jsx b/icons/jsx/LocalFireDepartment.jsx index f347b3a7b7..a4cd592dca 100644 --- a/icons/jsx/LocalFireDepartment.jsx +++ b/icons/jsx/LocalFireDepartment.jsx @@ -7,10 +7,17 @@ function SvgLocalFireDepartment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/LocalFlorist.jsx b/icons/jsx/LocalFlorist.jsx index 2882f3a846..ca93e80eca 100644 --- a/icons/jsx/LocalFlorist.jsx +++ b/icons/jsx/LocalFlorist.jsx @@ -7,9 +7,13 @@ function SvgLocalFlorist(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalGasStation.jsx b/icons/jsx/LocalGasStation.jsx index 23be36633b..718cc6226c 100644 --- a/icons/jsx/LocalGasStation.jsx +++ b/icons/jsx/LocalGasStation.jsx @@ -7,9 +7,13 @@ function SvgLocalGasStation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalGroceryStore.jsx b/icons/jsx/LocalGroceryStore.jsx index 13868f3077..de4ca8b865 100644 --- a/icons/jsx/LocalGroceryStore.jsx +++ b/icons/jsx/LocalGroceryStore.jsx @@ -7,9 +7,13 @@ function SvgLocalGroceryStore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalHospital.jsx b/icons/jsx/LocalHospital.jsx index e6e83e0600..9b0b78d442 100644 --- a/icons/jsx/LocalHospital.jsx +++ b/icons/jsx/LocalHospital.jsx @@ -7,9 +7,13 @@ function SvgLocalHospital(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalHotel.jsx b/icons/jsx/LocalHotel.jsx index e1cd4c0178..bbc18a5de0 100644 --- a/icons/jsx/LocalHotel.jsx +++ b/icons/jsx/LocalHotel.jsx @@ -7,9 +7,13 @@ function SvgLocalHotel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalLaundryService.jsx b/icons/jsx/LocalLaundryService.jsx index 0f22c73208..56df419652 100644 --- a/icons/jsx/LocalLaundryService.jsx +++ b/icons/jsx/LocalLaundryService.jsx @@ -7,9 +7,13 @@ function SvgLocalLaundryService(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalLibrary.jsx b/icons/jsx/LocalLibrary.jsx index ac7ae0f4d9..7fa59fe861 100644 --- a/icons/jsx/LocalLibrary.jsx +++ b/icons/jsx/LocalLibrary.jsx @@ -7,9 +7,13 @@ function SvgLocalLibrary(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalMall.jsx b/icons/jsx/LocalMall.jsx index 833f92c8ce..d47beb87ab 100644 --- a/icons/jsx/LocalMall.jsx +++ b/icons/jsx/LocalMall.jsx @@ -7,9 +7,13 @@ function SvgLocalMall(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalMovies.jsx b/icons/jsx/LocalMovies.jsx index d87e416db5..85fc57066c 100644 --- a/icons/jsx/LocalMovies.jsx +++ b/icons/jsx/LocalMovies.jsx @@ -7,9 +7,13 @@ function SvgLocalMovies(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalOffer.jsx b/icons/jsx/LocalOffer.jsx index 11327becf3..095485c980 100644 --- a/icons/jsx/LocalOffer.jsx +++ b/icons/jsx/LocalOffer.jsx @@ -7,9 +7,13 @@ function SvgLocalOffer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalParking.jsx b/icons/jsx/LocalParking.jsx index 26a1283cef..d1093a49a8 100644 --- a/icons/jsx/LocalParking.jsx +++ b/icons/jsx/LocalParking.jsx @@ -7,9 +7,13 @@ function SvgLocalParking(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalPharmacy.jsx b/icons/jsx/LocalPharmacy.jsx index 13a8a33b08..e0b497c317 100644 --- a/icons/jsx/LocalPharmacy.jsx +++ b/icons/jsx/LocalPharmacy.jsx @@ -7,9 +7,13 @@ function SvgLocalPharmacy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalPhone.jsx b/icons/jsx/LocalPhone.jsx index f1646e628a..f0a1e14efe 100644 --- a/icons/jsx/LocalPhone.jsx +++ b/icons/jsx/LocalPhone.jsx @@ -7,9 +7,13 @@ function SvgLocalPhone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalPizza.jsx b/icons/jsx/LocalPizza.jsx index fdb77e947d..628bc03eec 100644 --- a/icons/jsx/LocalPizza.jsx +++ b/icons/jsx/LocalPizza.jsx @@ -7,9 +7,13 @@ function SvgLocalPizza(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalPlay.jsx b/icons/jsx/LocalPlay.jsx index 23844d543c..d950925142 100644 --- a/icons/jsx/LocalPlay.jsx +++ b/icons/jsx/LocalPlay.jsx @@ -7,9 +7,13 @@ function SvgLocalPlay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalPolice.jsx b/icons/jsx/LocalPolice.jsx index bbfd72f0f0..9de696c045 100644 --- a/icons/jsx/LocalPolice.jsx +++ b/icons/jsx/LocalPolice.jsx @@ -7,9 +7,13 @@ function SvgLocalPolice(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalPostOffice.jsx b/icons/jsx/LocalPostOffice.jsx index 6a2a1363f0..bc4725bb27 100644 --- a/icons/jsx/LocalPostOffice.jsx +++ b/icons/jsx/LocalPostOffice.jsx @@ -7,9 +7,13 @@ function SvgLocalPostOffice(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalPrintshop.jsx b/icons/jsx/LocalPrintshop.jsx index 0d2cacad4e..c56390cd2e 100644 --- a/icons/jsx/LocalPrintshop.jsx +++ b/icons/jsx/LocalPrintshop.jsx @@ -7,9 +7,13 @@ function SvgLocalPrintshop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalSee.jsx b/icons/jsx/LocalSee.jsx index 753b8f7849..0a1dd0b063 100644 --- a/icons/jsx/LocalSee.jsx +++ b/icons/jsx/LocalSee.jsx @@ -7,10 +7,14 @@ function SvgLocalSee(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalShipping.jsx b/icons/jsx/LocalShipping.jsx index 3e3f952f0b..a08489ed11 100644 --- a/icons/jsx/LocalShipping.jsx +++ b/icons/jsx/LocalShipping.jsx @@ -7,9 +7,13 @@ function SvgLocalShipping(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocalTaxi.jsx b/icons/jsx/LocalTaxi.jsx index 4fca9a7f61..1be11a5ee6 100644 --- a/icons/jsx/LocalTaxi.jsx +++ b/icons/jsx/LocalTaxi.jsx @@ -7,9 +7,13 @@ function SvgLocalTaxi(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocationCity.jsx b/icons/jsx/LocationCity.jsx index d8696fffd9..67bfbf9997 100644 --- a/icons/jsx/LocationCity.jsx +++ b/icons/jsx/LocationCity.jsx @@ -7,9 +7,13 @@ function SvgLocationCity(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocationDisabled.jsx b/icons/jsx/LocationDisabled.jsx index 20809fb576..ee8bb7842e 100644 --- a/icons/jsx/LocationDisabled.jsx +++ b/icons/jsx/LocationDisabled.jsx @@ -7,9 +7,13 @@ function SvgLocationDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocationOff.jsx b/icons/jsx/LocationOff.jsx index 2076eb1c8d..e79250d463 100644 --- a/icons/jsx/LocationOff.jsx +++ b/icons/jsx/LocationOff.jsx @@ -7,9 +7,13 @@ function SvgLocationOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocationOn.jsx b/icons/jsx/LocationOn.jsx index 56bc515064..396df4ac6e 100644 --- a/icons/jsx/LocationOn.jsx +++ b/icons/jsx/LocationOn.jsx @@ -7,9 +7,13 @@ function SvgLocationOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LocationSearching.jsx b/icons/jsx/LocationSearching.jsx index 0922ab7e3e..b4be85a796 100644 --- a/icons/jsx/LocationSearching.jsx +++ b/icons/jsx/LocationSearching.jsx @@ -7,9 +7,13 @@ function SvgLocationSearching(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Lock.jsx b/icons/jsx/Lock.jsx index f37e767928..a134fb2266 100644 --- a/icons/jsx/Lock.jsx +++ b/icons/jsx/Lock.jsx @@ -7,9 +7,13 @@ function SvgLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LockClock.jsx b/icons/jsx/LockClock.jsx index 524251b8e6..9f610cd1fc 100644 --- a/icons/jsx/LockClock.jsx +++ b/icons/jsx/LockClock.jsx @@ -7,9 +7,13 @@ function SvgLockClock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LockOpen.jsx b/icons/jsx/LockOpen.jsx index fc5cb564ee..ca79210245 100644 --- a/icons/jsx/LockOpen.jsx +++ b/icons/jsx/LockOpen.jsx @@ -7,9 +7,13 @@ function SvgLockOpen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LockPerson.jsx b/icons/jsx/LockPerson.jsx index 481eddf0cd..0fe763a4ba 100644 --- a/icons/jsx/LockPerson.jsx +++ b/icons/jsx/LockPerson.jsx @@ -7,10 +7,17 @@ function SvgLockPerson(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/LockReset.jsx b/icons/jsx/LockReset.jsx index 6026a1e022..ac7a0eb5ea 100644 --- a/icons/jsx/LockReset.jsx +++ b/icons/jsx/LockReset.jsx @@ -7,9 +7,13 @@ function SvgLockReset(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Login.jsx b/icons/jsx/Login.jsx index 14dacb6431..94707caf4a 100644 --- a/icons/jsx/Login.jsx +++ b/icons/jsx/Login.jsx @@ -7,9 +7,13 @@ function SvgLogin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LogoDev.jsx b/icons/jsx/LogoDev.jsx index 42eddf2162..e9d175fc1e 100644 --- a/icons/jsx/LogoDev.jsx +++ b/icons/jsx/LogoDev.jsx @@ -7,10 +7,17 @@ function SvgLogoDev(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Logout.jsx b/icons/jsx/Logout.jsx index 2eccc92af0..34aee64455 100644 --- a/icons/jsx/Logout.jsx +++ b/icons/jsx/Logout.jsx @@ -7,10 +7,11 @@ function SvgLogout(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Looks.jsx b/icons/jsx/Looks.jsx index a47742838c..ef1f1d9c3f 100644 --- a/icons/jsx/Looks.jsx +++ b/icons/jsx/Looks.jsx @@ -7,9 +7,13 @@ function SvgLooks(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Looks3.jsx b/icons/jsx/Looks3.jsx index a93ae486ce..fdcb09777a 100644 --- a/icons/jsx/Looks3.jsx +++ b/icons/jsx/Looks3.jsx @@ -7,9 +7,13 @@ function SvgLooks3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Looks4.jsx b/icons/jsx/Looks4.jsx index 97076fed0f..4ade4c9642 100644 --- a/icons/jsx/Looks4.jsx +++ b/icons/jsx/Looks4.jsx @@ -7,9 +7,13 @@ function SvgLooks4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Looks5.jsx b/icons/jsx/Looks5.jsx index 9fa1b42528..2927547ac2 100644 --- a/icons/jsx/Looks5.jsx +++ b/icons/jsx/Looks5.jsx @@ -7,9 +7,13 @@ function SvgLooks5(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Looks6.jsx b/icons/jsx/Looks6.jsx index bd281da785..77f0316cbc 100644 --- a/icons/jsx/Looks6.jsx +++ b/icons/jsx/Looks6.jsx @@ -7,9 +7,13 @@ function SvgLooks6(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LooksOne.jsx b/icons/jsx/LooksOne.jsx index a793bbe037..ff27841d41 100644 --- a/icons/jsx/LooksOne.jsx +++ b/icons/jsx/LooksOne.jsx @@ -7,9 +7,10 @@ function SvgLooksOne(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LooksTwo.jsx b/icons/jsx/LooksTwo.jsx index da33b3e682..b817a0122a 100644 --- a/icons/jsx/LooksTwo.jsx +++ b/icons/jsx/LooksTwo.jsx @@ -7,9 +7,13 @@ function SvgLooksTwo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Loop.jsx b/icons/jsx/Loop.jsx index 3de2c9c42d..6ad7d00449 100644 --- a/icons/jsx/Loop.jsx +++ b/icons/jsx/Loop.jsx @@ -7,9 +7,13 @@ function SvgLoop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Loupe.jsx b/icons/jsx/Loupe.jsx index 1807a227f4..6b01360554 100644 --- a/icons/jsx/Loupe.jsx +++ b/icons/jsx/Loupe.jsx @@ -7,9 +7,13 @@ function SvgLoupe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LowPriority.jsx b/icons/jsx/LowPriority.jsx index 26bb017d09..40f85bff33 100644 --- a/icons/jsx/LowPriority.jsx +++ b/icons/jsx/LowPriority.jsx @@ -7,9 +7,13 @@ function SvgLowPriority(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Loyalty.jsx b/icons/jsx/Loyalty.jsx index a485708ee8..915d17833a 100644 --- a/icons/jsx/Loyalty.jsx +++ b/icons/jsx/Loyalty.jsx @@ -7,9 +7,13 @@ function SvgLoyalty(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LteMobiledata.jsx b/icons/jsx/LteMobiledata.jsx index e6b82a2576..d1c4230210 100644 --- a/icons/jsx/LteMobiledata.jsx +++ b/icons/jsx/LteMobiledata.jsx @@ -7,9 +7,13 @@ function SvgLteMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LtePlusMobiledata.jsx b/icons/jsx/LtePlusMobiledata.jsx index 59e45ab634..d2a425bea0 100644 --- a/icons/jsx/LtePlusMobiledata.jsx +++ b/icons/jsx/LtePlusMobiledata.jsx @@ -7,9 +7,13 @@ function SvgLtePlusMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Luggage.jsx b/icons/jsx/Luggage.jsx index affd5f36e7..ed1c046609 100644 --- a/icons/jsx/Luggage.jsx +++ b/icons/jsx/Luggage.jsx @@ -7,9 +7,13 @@ function SvgLuggage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/LunchDining.jsx b/icons/jsx/LunchDining.jsx index 77412c42cb..ada7d8bc50 100644 --- a/icons/jsx/LunchDining.jsx +++ b/icons/jsx/LunchDining.jsx @@ -7,9 +7,13 @@ function SvgLunchDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Lyrics.jsx b/icons/jsx/Lyrics.jsx index 27e014a733..92b2f73361 100644 --- a/icons/jsx/Lyrics.jsx +++ b/icons/jsx/Lyrics.jsx @@ -7,10 +7,17 @@ function SvgLyrics(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MacroOff.jsx b/icons/jsx/MacroOff.jsx index 89ded026d3..28b3106869 100644 --- a/icons/jsx/MacroOff.jsx +++ b/icons/jsx/MacroOff.jsx @@ -7,10 +7,17 @@ function SvgMacroOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Mail.jsx b/icons/jsx/Mail.jsx index d1ae15e8e9..3f2256f00f 100644 --- a/icons/jsx/Mail.jsx +++ b/icons/jsx/Mail.jsx @@ -7,9 +7,13 @@ function SvgMail(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MailLock.jsx b/icons/jsx/MailLock.jsx index ec5133a4b0..5077cd2f85 100644 --- a/icons/jsx/MailLock.jsx +++ b/icons/jsx/MailLock.jsx @@ -7,10 +7,17 @@ function SvgMailLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MailOutline.jsx b/icons/jsx/MailOutline.jsx index 1801f00f6b..c9c473492f 100644 --- a/icons/jsx/MailOutline.jsx +++ b/icons/jsx/MailOutline.jsx @@ -7,9 +7,13 @@ function SvgMailOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Male.jsx b/icons/jsx/Male.jsx index 87820b7c26..c2ac52985d 100644 --- a/icons/jsx/Male.jsx +++ b/icons/jsx/Male.jsx @@ -7,9 +7,13 @@ function SvgMale(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Man.jsx b/icons/jsx/Man.jsx index 434ba98533..e553aa0970 100644 --- a/icons/jsx/Man.jsx +++ b/icons/jsx/Man.jsx @@ -7,9 +7,10 @@ function SvgMan(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/Man2.jsx b/icons/jsx/Man2.jsx index 036079c278..7c874f376c 100644 --- a/icons/jsx/Man2.jsx +++ b/icons/jsx/Man2.jsx @@ -7,9 +7,10 @@ function SvgMan2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/Man3.jsx b/icons/jsx/Man3.jsx index 0da78fa25d..4993a75604 100644 --- a/icons/jsx/Man3.jsx +++ b/icons/jsx/Man3.jsx @@ -7,9 +7,13 @@ function SvgMan3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Man4.jsx b/icons/jsx/Man4.jsx index bdebda89f3..85413c5019 100644 --- a/icons/jsx/Man4.jsx +++ b/icons/jsx/Man4.jsx @@ -7,9 +7,10 @@ function SvgMan4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/ManageAccounts.jsx b/icons/jsx/ManageAccounts.jsx index 165913566d..754f058242 100644 --- a/icons/jsx/ManageAccounts.jsx +++ b/icons/jsx/ManageAccounts.jsx @@ -7,11 +7,18 @@ function SvgManageAccounts(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/ManageHistory.jsx b/icons/jsx/ManageHistory.jsx index bd3b88db28..e339f6e0b8 100644 --- a/icons/jsx/ManageHistory.jsx +++ b/icons/jsx/ManageHistory.jsx @@ -7,9 +7,13 @@ function SvgManageHistory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ManageSearch.jsx b/icons/jsx/ManageSearch.jsx index ab188b5ece..c600814f1f 100644 --- a/icons/jsx/ManageSearch.jsx +++ b/icons/jsx/ManageSearch.jsx @@ -7,9 +7,13 @@ function SvgManageSearch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Map.jsx b/icons/jsx/Map.jsx index 44c1448d2a..bd026f823c 100644 --- a/icons/jsx/Map.jsx +++ b/icons/jsx/Map.jsx @@ -7,9 +7,13 @@ function SvgMap(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MapsHomeWork.jsx b/icons/jsx/MapsHomeWork.jsx index 05d8b9efa4..8b8339b399 100644 --- a/icons/jsx/MapsHomeWork.jsx +++ b/icons/jsx/MapsHomeWork.jsx @@ -7,10 +7,14 @@ function SvgMapsHomeWork(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MapsUgc.jsx b/icons/jsx/MapsUgc.jsx index 73091915b5..be4d3a4c41 100644 --- a/icons/jsx/MapsUgc.jsx +++ b/icons/jsx/MapsUgc.jsx @@ -7,10 +7,18 @@ function SvgMapsUgc(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Margin.jsx b/icons/jsx/Margin.jsx index ade99afaa1..cbadc0ecad 100644 --- a/icons/jsx/Margin.jsx +++ b/icons/jsx/Margin.jsx @@ -7,9 +7,13 @@ function SvgMargin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MarkAsUnread.jsx b/icons/jsx/MarkAsUnread.jsx index 2a70c86717..6e32aa7ae4 100644 --- a/icons/jsx/MarkAsUnread.jsx +++ b/icons/jsx/MarkAsUnread.jsx @@ -7,10 +7,17 @@ function SvgMarkAsUnread(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MarkChatRead.jsx b/icons/jsx/MarkChatRead.jsx index a982f663a2..b7481b1e50 100644 --- a/icons/jsx/MarkChatRead.jsx +++ b/icons/jsx/MarkChatRead.jsx @@ -7,9 +7,13 @@ function SvgMarkChatRead(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MarkChatUnread.jsx b/icons/jsx/MarkChatUnread.jsx index 5186aaea48..73baf73a89 100644 --- a/icons/jsx/MarkChatUnread.jsx +++ b/icons/jsx/MarkChatUnread.jsx @@ -7,9 +7,13 @@ function SvgMarkChatUnread(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MarkEmailRead.jsx b/icons/jsx/MarkEmailRead.jsx index 9b3d225068..aef2d19df0 100644 --- a/icons/jsx/MarkEmailRead.jsx +++ b/icons/jsx/MarkEmailRead.jsx @@ -7,9 +7,13 @@ function SvgMarkEmailRead(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MarkEmailUnread.jsx b/icons/jsx/MarkEmailUnread.jsx index c25397ed41..9d8ab59a13 100644 --- a/icons/jsx/MarkEmailUnread.jsx +++ b/icons/jsx/MarkEmailUnread.jsx @@ -7,9 +7,13 @@ function SvgMarkEmailUnread(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MarkUnreadChatAlt.jsx b/icons/jsx/MarkUnreadChatAlt.jsx index 15473bee6d..636cb31d3d 100644 --- a/icons/jsx/MarkUnreadChatAlt.jsx +++ b/icons/jsx/MarkUnreadChatAlt.jsx @@ -7,10 +7,14 @@ function SvgMarkUnreadChatAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Markunread.jsx b/icons/jsx/Markunread.jsx index eebd9885e5..edb00e99a9 100644 --- a/icons/jsx/Markunread.jsx +++ b/icons/jsx/Markunread.jsx @@ -7,9 +7,13 @@ function SvgMarkunread(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MarkunreadMailbox.jsx b/icons/jsx/MarkunreadMailbox.jsx index 4a065beab1..3090276e86 100644 --- a/icons/jsx/MarkunreadMailbox.jsx +++ b/icons/jsx/MarkunreadMailbox.jsx @@ -7,9 +7,10 @@ function SvgMarkunreadMailbox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Masks.jsx b/icons/jsx/Masks.jsx index e9b4a08ea9..246f167cb4 100644 --- a/icons/jsx/Masks.jsx +++ b/icons/jsx/Masks.jsx @@ -7,9 +7,13 @@ function SvgMasks(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Maximize.jsx b/icons/jsx/Maximize.jsx index b5643b549a..a16f92579a 100644 --- a/icons/jsx/Maximize.jsx +++ b/icons/jsx/Maximize.jsx @@ -7,9 +7,10 @@ function SvgMaximize(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MediaBluetoothOff.jsx b/icons/jsx/MediaBluetoothOff.jsx index 770482cc53..4ffa50096f 100644 --- a/icons/jsx/MediaBluetoothOff.jsx +++ b/icons/jsx/MediaBluetoothOff.jsx @@ -7,9 +7,13 @@ function SvgMediaBluetoothOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MediaBluetoothOn.jsx b/icons/jsx/MediaBluetoothOn.jsx index 9a3d9f000f..06ac6b240c 100644 --- a/icons/jsx/MediaBluetoothOn.jsx +++ b/icons/jsx/MediaBluetoothOn.jsx @@ -7,9 +7,13 @@ function SvgMediaBluetoothOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Mediation.jsx b/icons/jsx/Mediation.jsx index 3e1cb60d97..0d8e56ebc4 100644 --- a/icons/jsx/Mediation.jsx +++ b/icons/jsx/Mediation.jsx @@ -7,9 +7,13 @@ function SvgMediation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MedicalInformation.jsx b/icons/jsx/MedicalInformation.jsx index 34a0492ecb..f7883a2cc2 100644 --- a/icons/jsx/MedicalInformation.jsx +++ b/icons/jsx/MedicalInformation.jsx @@ -7,9 +7,13 @@ function SvgMedicalInformation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MedicalServices.jsx b/icons/jsx/MedicalServices.jsx index 00d121f468..8698249565 100644 --- a/icons/jsx/MedicalServices.jsx +++ b/icons/jsx/MedicalServices.jsx @@ -7,9 +7,13 @@ function SvgMedicalServices(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Medication.jsx b/icons/jsx/Medication.jsx index 23ec1ba0db..cf3a7ec256 100644 --- a/icons/jsx/Medication.jsx +++ b/icons/jsx/Medication.jsx @@ -7,9 +7,13 @@ function SvgMedication(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MedicationLiquid.jsx b/icons/jsx/MedicationLiquid.jsx index 37a9eee36d..5e64e06208 100644 --- a/icons/jsx/MedicationLiquid.jsx +++ b/icons/jsx/MedicationLiquid.jsx @@ -7,10 +7,17 @@ function SvgMedicationLiquid(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MeetingRoom.jsx b/icons/jsx/MeetingRoom.jsx index 993213c0a8..3ab8c01392 100644 --- a/icons/jsx/MeetingRoom.jsx +++ b/icons/jsx/MeetingRoom.jsx @@ -7,9 +7,13 @@ function SvgMeetingRoom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Memory.jsx b/icons/jsx/Memory.jsx index 551e6378e7..c083d5755a 100644 --- a/icons/jsx/Memory.jsx +++ b/icons/jsx/Memory.jsx @@ -7,9 +7,13 @@ function SvgMemory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MenuBook.jsx b/icons/jsx/MenuBook.jsx index 9e81a78279..014f1ae350 100644 --- a/icons/jsx/MenuBook.jsx +++ b/icons/jsx/MenuBook.jsx @@ -7,10 +7,17 @@ function SvgMenuBook(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MenuOpen.jsx b/icons/jsx/MenuOpen.jsx index 9f3e07a743..89c80b9209 100644 --- a/icons/jsx/MenuOpen.jsx +++ b/icons/jsx/MenuOpen.jsx @@ -7,9 +7,13 @@ function SvgMenuOpen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Merge.jsx b/icons/jsx/Merge.jsx index e634175123..374b11fe78 100644 --- a/icons/jsx/Merge.jsx +++ b/icons/jsx/Merge.jsx @@ -7,9 +7,13 @@ function SvgMerge(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MergeType.jsx b/icons/jsx/MergeType.jsx index 4bfa5a5213..2740c71d32 100644 --- a/icons/jsx/MergeType.jsx +++ b/icons/jsx/MergeType.jsx @@ -7,9 +7,13 @@ function SvgMergeType(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Message.jsx b/icons/jsx/Message.jsx index f91e31acb9..5a160b7909 100644 --- a/icons/jsx/Message.jsx +++ b/icons/jsx/Message.jsx @@ -7,9 +7,13 @@ function SvgMessage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Mic.jsx b/icons/jsx/Mic.jsx index bb0e19872e..af8aa3509e 100644 --- a/icons/jsx/Mic.jsx +++ b/icons/jsx/Mic.jsx @@ -7,10 +7,17 @@ function SvgMic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MicExternalOff.jsx b/icons/jsx/MicExternalOff.jsx index b980c9bf44..e32e705f22 100644 --- a/icons/jsx/MicExternalOff.jsx +++ b/icons/jsx/MicExternalOff.jsx @@ -7,9 +7,13 @@ function SvgMicExternalOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MicExternalOn.jsx b/icons/jsx/MicExternalOn.jsx index a5b883a78b..c272012f5e 100644 --- a/icons/jsx/MicExternalOn.jsx +++ b/icons/jsx/MicExternalOn.jsx @@ -7,9 +7,13 @@ function SvgMicExternalOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MicNone.jsx b/icons/jsx/MicNone.jsx index 402cdb4851..b2d2949a50 100644 --- a/icons/jsx/MicNone.jsx +++ b/icons/jsx/MicNone.jsx @@ -7,9 +7,13 @@ function SvgMicNone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MicOff.jsx b/icons/jsx/MicOff.jsx index 5bec7ea0d2..6572ad21e6 100644 --- a/icons/jsx/MicOff.jsx +++ b/icons/jsx/MicOff.jsx @@ -7,9 +7,13 @@ function SvgMicOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MicrosoftTeams.jsx b/icons/jsx/MicrosoftTeams.jsx index 5f9792fcc2..963afe38b1 100644 --- a/icons/jsx/MicrosoftTeams.jsx +++ b/icons/jsx/MicrosoftTeams.jsx @@ -11,10 +11,7 @@ function SvgMicrosoftTeams(props) { xmlnsXlink="http://www.w3.org/1999/xlink" {...props} > - + - + ); } diff --git a/icons/jsx/MilitaryTech.jsx b/icons/jsx/MilitaryTech.jsx index 73633dee2c..8a932fcdb9 100644 --- a/icons/jsx/MilitaryTech.jsx +++ b/icons/jsx/MilitaryTech.jsx @@ -7,9 +7,13 @@ function SvgMilitaryTech(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Minimize.jsx b/icons/jsx/Minimize.jsx index c14b60c4b2..7fc9215b4f 100644 --- a/icons/jsx/Minimize.jsx +++ b/icons/jsx/Minimize.jsx @@ -7,9 +7,10 @@ function SvgMinimize(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MinorCrash.jsx b/icons/jsx/MinorCrash.jsx index 72e7b01797..5bc6ddb729 100644 --- a/icons/jsx/MinorCrash.jsx +++ b/icons/jsx/MinorCrash.jsx @@ -7,9 +7,13 @@ function SvgMinorCrash(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Minus.jsx b/icons/jsx/Minus.jsx index 820475c475..9dc2683c96 100644 --- a/icons/jsx/Minus.jsx +++ b/icons/jsx/Minus.jsx @@ -7,9 +7,10 @@ function SvgMinus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MiscellaneousServices.jsx b/icons/jsx/MiscellaneousServices.jsx index bca037665f..8a915afb06 100644 --- a/icons/jsx/MiscellaneousServices.jsx +++ b/icons/jsx/MiscellaneousServices.jsx @@ -7,9 +7,13 @@ function SvgMiscellaneousServices(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MissedVideoCall.jsx b/icons/jsx/MissedVideoCall.jsx index e767a8e9e6..5384fa959e 100644 --- a/icons/jsx/MissedVideoCall.jsx +++ b/icons/jsx/MissedVideoCall.jsx @@ -7,9 +7,13 @@ function SvgMissedVideoCall(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Mms.jsx b/icons/jsx/Mms.jsx index 58ddfc709b..500f6cba31 100644 --- a/icons/jsx/Mms.jsx +++ b/icons/jsx/Mms.jsx @@ -7,9 +7,13 @@ function SvgMms(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MobileFriendly.jsx b/icons/jsx/MobileFriendly.jsx index c377db03bc..60e32d0793 100644 --- a/icons/jsx/MobileFriendly.jsx +++ b/icons/jsx/MobileFriendly.jsx @@ -7,9 +7,13 @@ function SvgMobileFriendly(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MobileOff.jsx b/icons/jsx/MobileOff.jsx index 20601d0b14..f0ec18943a 100644 --- a/icons/jsx/MobileOff.jsx +++ b/icons/jsx/MobileOff.jsx @@ -7,9 +7,13 @@ function SvgMobileOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MobileScreenShare.jsx b/icons/jsx/MobileScreenShare.jsx index fbf5d94db5..506654d3cb 100644 --- a/icons/jsx/MobileScreenShare.jsx +++ b/icons/jsx/MobileScreenShare.jsx @@ -7,9 +7,13 @@ function SvgMobileScreenShare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MobiledataOff.jsx b/icons/jsx/MobiledataOff.jsx index 3d7a61bab3..811f91d4f4 100644 --- a/icons/jsx/MobiledataOff.jsx +++ b/icons/jsx/MobiledataOff.jsx @@ -7,9 +7,13 @@ function SvgMobiledataOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Mode.jsx b/icons/jsx/Mode.jsx index 0387da0b2b..7d72be4e11 100644 --- a/icons/jsx/Mode.jsx +++ b/icons/jsx/Mode.jsx @@ -7,9 +7,13 @@ function SvgMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ModeComment.jsx b/icons/jsx/ModeComment.jsx index 110552517e..167c78445f 100644 --- a/icons/jsx/ModeComment.jsx +++ b/icons/jsx/ModeComment.jsx @@ -7,9 +7,10 @@ function SvgModeComment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ModeEdit.jsx b/icons/jsx/ModeEdit.jsx index 2f95588e27..87aad8e893 100644 --- a/icons/jsx/ModeEdit.jsx +++ b/icons/jsx/ModeEdit.jsx @@ -7,9 +7,13 @@ function SvgModeEdit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ModeEditOutline.jsx b/icons/jsx/ModeEditOutline.jsx index 7c1120ed8c..ca89df6f77 100644 --- a/icons/jsx/ModeEditOutline.jsx +++ b/icons/jsx/ModeEditOutline.jsx @@ -7,9 +7,13 @@ function SvgModeEditOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ModeFanOff.jsx b/icons/jsx/ModeFanOff.jsx index 5756302639..f6e47dfd80 100644 --- a/icons/jsx/ModeFanOff.jsx +++ b/icons/jsx/ModeFanOff.jsx @@ -7,9 +7,13 @@ function SvgModeFanOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ModeNight.jsx b/icons/jsx/ModeNight.jsx index 83554a4d3b..891ee36b98 100644 --- a/icons/jsx/ModeNight.jsx +++ b/icons/jsx/ModeNight.jsx @@ -7,9 +7,13 @@ function SvgModeNight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ModeOfTravel.jsx b/icons/jsx/ModeOfTravel.jsx index d9f54126c2..3a29025f54 100644 --- a/icons/jsx/ModeOfTravel.jsx +++ b/icons/jsx/ModeOfTravel.jsx @@ -7,9 +7,13 @@ function SvgModeOfTravel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ModeStandby.jsx b/icons/jsx/ModeStandby.jsx index c2c6724056..3fbf3321d0 100644 --- a/icons/jsx/ModeStandby.jsx +++ b/icons/jsx/ModeStandby.jsx @@ -7,9 +7,13 @@ function SvgModeStandby(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ModelTraining.jsx b/icons/jsx/ModelTraining.jsx index 893a760a1d..51f8eb3dab 100644 --- a/icons/jsx/ModelTraining.jsx +++ b/icons/jsx/ModelTraining.jsx @@ -7,9 +7,13 @@ function SvgModelTraining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MonetizationOn.jsx b/icons/jsx/MonetizationOn.jsx index 21008cd08a..20fecd5ffc 100644 --- a/icons/jsx/MonetizationOn.jsx +++ b/icons/jsx/MonetizationOn.jsx @@ -7,9 +7,13 @@ function SvgMonetizationOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MoneyOff.jsx b/icons/jsx/MoneyOff.jsx index ba4f15fceb..01b413c4ea 100644 --- a/icons/jsx/MoneyOff.jsx +++ b/icons/jsx/MoneyOff.jsx @@ -7,9 +7,13 @@ function SvgMoneyOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MoneyOffCsred.jsx b/icons/jsx/MoneyOffCsred.jsx index 6f6f77ab31..1d4b7600b8 100644 --- a/icons/jsx/MoneyOffCsred.jsx +++ b/icons/jsx/MoneyOffCsred.jsx @@ -7,9 +7,13 @@ function SvgMoneyOffCsred(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Monitor.jsx b/icons/jsx/Monitor.jsx index eaf5f859ce..5cdb2fb743 100644 --- a/icons/jsx/Monitor.jsx +++ b/icons/jsx/Monitor.jsx @@ -7,9 +7,13 @@ function SvgMonitor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MonitorHeart.jsx b/icons/jsx/MonitorHeart.jsx index 3fa38ca23f..26e933025e 100644 --- a/icons/jsx/MonitorHeart.jsx +++ b/icons/jsx/MonitorHeart.jsx @@ -7,10 +7,17 @@ function SvgMonitorHeart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MonitorWeight.jsx b/icons/jsx/MonitorWeight.jsx index 29e1d4b8e0..6de729422a 100644 --- a/icons/jsx/MonitorWeight.jsx +++ b/icons/jsx/MonitorWeight.jsx @@ -7,10 +7,17 @@ function SvgMonitorWeight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MonochromePhotos.jsx b/icons/jsx/MonochromePhotos.jsx index c389d28ac6..1fbb899db7 100644 --- a/icons/jsx/MonochromePhotos.jsx +++ b/icons/jsx/MonochromePhotos.jsx @@ -7,9 +7,13 @@ function SvgMonochromePhotos(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Mood.jsx b/icons/jsx/Mood.jsx index aa464106b4..08310410e0 100644 --- a/icons/jsx/Mood.jsx +++ b/icons/jsx/Mood.jsx @@ -7,9 +7,13 @@ function SvgMood(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MoodBad.jsx b/icons/jsx/MoodBad.jsx index b37b953b04..12ab5ed5d4 100644 --- a/icons/jsx/MoodBad.jsx +++ b/icons/jsx/MoodBad.jsx @@ -7,9 +7,13 @@ function SvgMoodBad(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Moped.jsx b/icons/jsx/Moped.jsx index cf474ad49d..412d23b006 100644 --- a/icons/jsx/Moped.jsx +++ b/icons/jsx/Moped.jsx @@ -7,10 +7,17 @@ function SvgMoped(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/More.jsx b/icons/jsx/More.jsx index 4f99c80681..454ef09dcb 100644 --- a/icons/jsx/More.jsx +++ b/icons/jsx/More.jsx @@ -7,9 +7,13 @@ function SvgMore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MoreTime.jsx b/icons/jsx/MoreTime.jsx index da8b7aeb48..ccd5436bcf 100644 --- a/icons/jsx/MoreTime.jsx +++ b/icons/jsx/MoreTime.jsx @@ -7,11 +7,15 @@ function SvgMoreTime(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/Mosque.jsx b/icons/jsx/Mosque.jsx index 94494242b7..c058816ba8 100644 --- a/icons/jsx/Mosque.jsx +++ b/icons/jsx/Mosque.jsx @@ -7,10 +7,17 @@ function SvgMosque(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MotionPhotosAuto.jsx b/icons/jsx/MotionPhotosAuto.jsx index 6aaa7cf576..62210a8ef9 100644 --- a/icons/jsx/MotionPhotosAuto.jsx +++ b/icons/jsx/MotionPhotosAuto.jsx @@ -7,9 +7,13 @@ function SvgMotionPhotosAuto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MotionPhotosOff.jsx b/icons/jsx/MotionPhotosOff.jsx index 8372034258..81939f4c4b 100644 --- a/icons/jsx/MotionPhotosOff.jsx +++ b/icons/jsx/MotionPhotosOff.jsx @@ -7,10 +7,17 @@ function SvgMotionPhotosOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/MotionPhotosOn.jsx b/icons/jsx/MotionPhotosOn.jsx index 7dc0612974..6c78e63208 100644 --- a/icons/jsx/MotionPhotosOn.jsx +++ b/icons/jsx/MotionPhotosOn.jsx @@ -7,9 +7,13 @@ function SvgMotionPhotosOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MotionPhotosPause.jsx b/icons/jsx/MotionPhotosPause.jsx index f937eb01ac..96a24b6e46 100644 --- a/icons/jsx/MotionPhotosPause.jsx +++ b/icons/jsx/MotionPhotosPause.jsx @@ -7,9 +7,13 @@ function SvgMotionPhotosPause(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MotionPhotosPaused.jsx b/icons/jsx/MotionPhotosPaused.jsx index 2c93df906f..5681b4b5a8 100644 --- a/icons/jsx/MotionPhotosPaused.jsx +++ b/icons/jsx/MotionPhotosPaused.jsx @@ -7,9 +7,13 @@ function SvgMotionPhotosPaused(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Motorcycle.jsx b/icons/jsx/Motorcycle.jsx index 1eaca82725..5622ab4b43 100644 --- a/icons/jsx/Motorcycle.jsx +++ b/icons/jsx/Motorcycle.jsx @@ -7,9 +7,13 @@ function SvgMotorcycle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Mouse.jsx b/icons/jsx/Mouse.jsx index d40805a652..48bf4a683d 100644 --- a/icons/jsx/Mouse.jsx +++ b/icons/jsx/Mouse.jsx @@ -7,9 +7,13 @@ function SvgMouse(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MoveDown.jsx b/icons/jsx/MoveDown.jsx index 0b7c498687..9cacab9302 100644 --- a/icons/jsx/MoveDown.jsx +++ b/icons/jsx/MoveDown.jsx @@ -7,9 +7,13 @@ function SvgMoveDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MoveToInbox.jsx b/icons/jsx/MoveToInbox.jsx index e38a639ffc..e558a4c772 100644 --- a/icons/jsx/MoveToInbox.jsx +++ b/icons/jsx/MoveToInbox.jsx @@ -7,9 +7,13 @@ function SvgMoveToInbox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MoveUp.jsx b/icons/jsx/MoveUp.jsx index c23c316f8c..bf6d1a824b 100644 --- a/icons/jsx/MoveUp.jsx +++ b/icons/jsx/MoveUp.jsx @@ -7,9 +7,13 @@ function SvgMoveUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Movie.jsx b/icons/jsx/Movie.jsx index 380a1f7ddd..88d070d541 100644 --- a/icons/jsx/Movie.jsx +++ b/icons/jsx/Movie.jsx @@ -7,9 +7,13 @@ function SvgMovie(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MovieCreation.jsx b/icons/jsx/MovieCreation.jsx index 018cb530b7..ee0e93c14b 100644 --- a/icons/jsx/MovieCreation.jsx +++ b/icons/jsx/MovieCreation.jsx @@ -7,9 +7,13 @@ function SvgMovieCreation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MovieFilter.jsx b/icons/jsx/MovieFilter.jsx index c415611b15..7a9deab273 100644 --- a/icons/jsx/MovieFilter.jsx +++ b/icons/jsx/MovieFilter.jsx @@ -7,9 +7,13 @@ function SvgMovieFilter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Moving.jsx b/icons/jsx/Moving.jsx index 1a5de7e23d..12695aa663 100644 --- a/icons/jsx/Moving.jsx +++ b/icons/jsx/Moving.jsx @@ -7,9 +7,13 @@ function SvgMoving(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Mp.jsx b/icons/jsx/Mp.jsx index 91170484f9..3a131ad553 100644 --- a/icons/jsx/Mp.jsx +++ b/icons/jsx/Mp.jsx @@ -7,9 +7,13 @@ function SvgMp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MultilineChart.jsx b/icons/jsx/MultilineChart.jsx index 6bc5c60325..1c29cbd25d 100644 --- a/icons/jsx/MultilineChart.jsx +++ b/icons/jsx/MultilineChart.jsx @@ -7,9 +7,13 @@ function SvgMultilineChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MultipleStop.jsx b/icons/jsx/MultipleStop.jsx index a01cec68c3..d0f15aaf82 100644 --- a/icons/jsx/MultipleStop.jsx +++ b/icons/jsx/MultipleStop.jsx @@ -7,9 +7,13 @@ function SvgMultipleStop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Museum.jsx b/icons/jsx/Museum.jsx index 0f42acf339..1be49f9046 100644 --- a/icons/jsx/Museum.jsx +++ b/icons/jsx/Museum.jsx @@ -7,9 +7,13 @@ function SvgMuseum(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MusicNote.jsx b/icons/jsx/MusicNote.jsx index ffe35a0c96..0ab0f0f2c5 100644 --- a/icons/jsx/MusicNote.jsx +++ b/icons/jsx/MusicNote.jsx @@ -7,9 +7,13 @@ function SvgMusicNote(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MusicOff.jsx b/icons/jsx/MusicOff.jsx index af6f8c04b8..cd2a945189 100644 --- a/icons/jsx/MusicOff.jsx +++ b/icons/jsx/MusicOff.jsx @@ -7,9 +7,13 @@ function SvgMusicOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MusicVideo.jsx b/icons/jsx/MusicVideo.jsx index 21e182dead..5fbc0f183e 100644 --- a/icons/jsx/MusicVideo.jsx +++ b/icons/jsx/MusicVideo.jsx @@ -7,9 +7,13 @@ function SvgMusicVideo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/MyLocation.jsx b/icons/jsx/MyLocation.jsx index 5dea3a1f02..2401206be4 100644 --- a/icons/jsx/MyLocation.jsx +++ b/icons/jsx/MyLocation.jsx @@ -7,9 +7,13 @@ function SvgMyLocation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Nat.jsx b/icons/jsx/Nat.jsx index 748f336479..a8314104d4 100644 --- a/icons/jsx/Nat.jsx +++ b/icons/jsx/Nat.jsx @@ -7,10 +7,17 @@ function SvgNat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Nature.jsx b/icons/jsx/Nature.jsx index 52048a77b4..438a007faf 100644 --- a/icons/jsx/Nature.jsx +++ b/icons/jsx/Nature.jsx @@ -7,9 +7,13 @@ function SvgNature(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NaturePeople.jsx b/icons/jsx/NaturePeople.jsx index 247d65fac2..8db23eb227 100644 --- a/icons/jsx/NaturePeople.jsx +++ b/icons/jsx/NaturePeople.jsx @@ -7,9 +7,13 @@ function SvgNaturePeople(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NavigateBefore.jsx b/icons/jsx/NavigateBefore.jsx index 12979538e9..4402f9e6d7 100644 --- a/icons/jsx/NavigateBefore.jsx +++ b/icons/jsx/NavigateBefore.jsx @@ -7,9 +7,13 @@ function SvgNavigateBefore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NavigateNext.jsx b/icons/jsx/NavigateNext.jsx index 8fec3de8ff..9370f99477 100644 --- a/icons/jsx/NavigateNext.jsx +++ b/icons/jsx/NavigateNext.jsx @@ -7,9 +7,13 @@ function SvgNavigateNext(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Navigation.jsx b/icons/jsx/Navigation.jsx index f6f8da25ea..a4e916dc18 100644 --- a/icons/jsx/Navigation.jsx +++ b/icons/jsx/Navigation.jsx @@ -7,9 +7,13 @@ function SvgNavigation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NearMe.jsx b/icons/jsx/NearMe.jsx index bb5b5967a3..9679831f5b 100644 --- a/icons/jsx/NearMe.jsx +++ b/icons/jsx/NearMe.jsx @@ -7,9 +7,13 @@ function SvgNearMe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NearMeDisabled.jsx b/icons/jsx/NearMeDisabled.jsx index 9d46e2ee25..9c87cb5e60 100644 --- a/icons/jsx/NearMeDisabled.jsx +++ b/icons/jsx/NearMeDisabled.jsx @@ -7,9 +7,13 @@ function SvgNearMeDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NearbyError.jsx b/icons/jsx/NearbyError.jsx index 14d6833e60..56b8a956eb 100644 --- a/icons/jsx/NearbyError.jsx +++ b/icons/jsx/NearbyError.jsx @@ -7,9 +7,13 @@ function SvgNearbyError(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NearbyOff.jsx b/icons/jsx/NearbyOff.jsx index 6eda1f528c..0c1061ddc6 100644 --- a/icons/jsx/NearbyOff.jsx +++ b/icons/jsx/NearbyOff.jsx @@ -7,9 +7,13 @@ function SvgNearbyOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NestCamWiredStand.jsx b/icons/jsx/NestCamWiredStand.jsx index 488f26a705..c802cc4de5 100644 --- a/icons/jsx/NestCamWiredStand.jsx +++ b/icons/jsx/NestCamWiredStand.jsx @@ -7,9 +7,13 @@ function SvgNestCamWiredStand(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NetworkCell.jsx b/icons/jsx/NetworkCell.jsx index e5b385dc13..ee2ff5dd4f 100644 --- a/icons/jsx/NetworkCell.jsx +++ b/icons/jsx/NetworkCell.jsx @@ -7,9 +7,10 @@ function SvgNetworkCell(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NetworkCheck.jsx b/icons/jsx/NetworkCheck.jsx index 92869caef4..137eac2133 100644 --- a/icons/jsx/NetworkCheck.jsx +++ b/icons/jsx/NetworkCheck.jsx @@ -7,9 +7,13 @@ function SvgNetworkCheck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NetworkLocked.jsx b/icons/jsx/NetworkLocked.jsx index d2d4411cf3..891799f743 100644 --- a/icons/jsx/NetworkLocked.jsx +++ b/icons/jsx/NetworkLocked.jsx @@ -7,9 +7,13 @@ function SvgNetworkLocked(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NetworkPing.jsx b/icons/jsx/NetworkPing.jsx index 785e807e2f..9b863c9ba9 100644 --- a/icons/jsx/NetworkPing.jsx +++ b/icons/jsx/NetworkPing.jsx @@ -7,9 +7,13 @@ function SvgNetworkPing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NetworkWifi.jsx b/icons/jsx/NetworkWifi.jsx index d229839bb5..6ceda73f07 100644 --- a/icons/jsx/NetworkWifi.jsx +++ b/icons/jsx/NetworkWifi.jsx @@ -7,9 +7,13 @@ function SvgNetworkWifi(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NetworkWifi1Bar.jsx b/icons/jsx/NetworkWifi1Bar.jsx index 9184fa6bde..01a8c64118 100644 --- a/icons/jsx/NetworkWifi1Bar.jsx +++ b/icons/jsx/NetworkWifi1Bar.jsx @@ -7,9 +7,13 @@ function SvgNetworkWifi1Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NetworkWifi2Bar.jsx b/icons/jsx/NetworkWifi2Bar.jsx index 541be10ee7..f89abd04ea 100644 --- a/icons/jsx/NetworkWifi2Bar.jsx +++ b/icons/jsx/NetworkWifi2Bar.jsx @@ -7,9 +7,13 @@ function SvgNetworkWifi2Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NetworkWifi3Bar.jsx b/icons/jsx/NetworkWifi3Bar.jsx index 24284bad93..82098e0f2c 100644 --- a/icons/jsx/NetworkWifi3Bar.jsx +++ b/icons/jsx/NetworkWifi3Bar.jsx @@ -7,9 +7,13 @@ function SvgNetworkWifi3Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NewLabel.jsx b/icons/jsx/NewLabel.jsx index 131dfb59df..1e0e9514d6 100644 --- a/icons/jsx/NewLabel.jsx +++ b/icons/jsx/NewLabel.jsx @@ -7,9 +7,13 @@ function SvgNewLabel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NewReleases.jsx b/icons/jsx/NewReleases.jsx index 60f27c1d01..34c2346d71 100644 --- a/icons/jsx/NewReleases.jsx +++ b/icons/jsx/NewReleases.jsx @@ -7,9 +7,13 @@ function SvgNewReleases(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Newspaper.jsx b/icons/jsx/Newspaper.jsx index 66f5b76910..4e634dbfd4 100644 --- a/icons/jsx/Newspaper.jsx +++ b/icons/jsx/Newspaper.jsx @@ -7,9 +7,13 @@ function SvgNewspaper(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NextPlan.jsx b/icons/jsx/NextPlan.jsx index e18d834bd2..0698e755ef 100644 --- a/icons/jsx/NextPlan.jsx +++ b/icons/jsx/NextPlan.jsx @@ -7,9 +7,13 @@ function SvgNextPlan(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NextWeek.jsx b/icons/jsx/NextWeek.jsx index e87be39182..bcbe23d62b 100644 --- a/icons/jsx/NextWeek.jsx +++ b/icons/jsx/NextWeek.jsx @@ -7,9 +7,13 @@ function SvgNextWeek(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Nfc.jsx b/icons/jsx/Nfc.jsx index e1c0c91c6b..0643663984 100644 --- a/icons/jsx/Nfc.jsx +++ b/icons/jsx/Nfc.jsx @@ -7,9 +7,13 @@ function SvgNfc(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NightShelter.jsx b/icons/jsx/NightShelter.jsx index ccdc477171..01f8de5621 100644 --- a/icons/jsx/NightShelter.jsx +++ b/icons/jsx/NightShelter.jsx @@ -7,9 +7,13 @@ function SvgNightShelter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Nightlife.jsx b/icons/jsx/Nightlife.jsx index da384732d4..10250a4234 100644 --- a/icons/jsx/Nightlife.jsx +++ b/icons/jsx/Nightlife.jsx @@ -7,9 +7,13 @@ function SvgNightlife(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Nightlight.jsx b/icons/jsx/Nightlight.jsx index 85d53e81de..980b8b692a 100644 --- a/icons/jsx/Nightlight.jsx +++ b/icons/jsx/Nightlight.jsx @@ -7,9 +7,13 @@ function SvgNightlight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NightlightRound.jsx b/icons/jsx/NightlightRound.jsx index ae674580b0..822b574b77 100644 --- a/icons/jsx/NightlightRound.jsx +++ b/icons/jsx/NightlightRound.jsx @@ -7,9 +7,13 @@ function SvgNightlightRound(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NightsStay.jsx b/icons/jsx/NightsStay.jsx index fbd0ec1089..531aa2ed6a 100644 --- a/icons/jsx/NightsStay.jsx +++ b/icons/jsx/NightsStay.jsx @@ -7,10 +7,17 @@ function SvgNightsStay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/NoAccounts.jsx b/icons/jsx/NoAccounts.jsx index d101ac7290..863626cd09 100644 --- a/icons/jsx/NoAccounts.jsx +++ b/icons/jsx/NoAccounts.jsx @@ -7,10 +7,17 @@ function SvgNoAccounts(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/NoAdultContent.jsx b/icons/jsx/NoAdultContent.jsx index 098823ef5a..370731d4d7 100644 --- a/icons/jsx/NoAdultContent.jsx +++ b/icons/jsx/NoAdultContent.jsx @@ -7,10 +7,17 @@ function SvgNoAdultContent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/NoBackpack.jsx b/icons/jsx/NoBackpack.jsx index 38321a71bc..39f5cc0826 100644 --- a/icons/jsx/NoBackpack.jsx +++ b/icons/jsx/NoBackpack.jsx @@ -7,9 +7,13 @@ function SvgNoBackpack(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoCell.jsx b/icons/jsx/NoCell.jsx index ffa29944de..911e8f210b 100644 --- a/icons/jsx/NoCell.jsx +++ b/icons/jsx/NoCell.jsx @@ -7,9 +7,13 @@ function SvgNoCell(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoCrash.jsx b/icons/jsx/NoCrash.jsx index 74b7f84701..14a6a4b2ea 100644 --- a/icons/jsx/NoCrash.jsx +++ b/icons/jsx/NoCrash.jsx @@ -7,9 +7,13 @@ function SvgNoCrash(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoDrinks.jsx b/icons/jsx/NoDrinks.jsx index 77ead4406f..1f81e31254 100644 --- a/icons/jsx/NoDrinks.jsx +++ b/icons/jsx/NoDrinks.jsx @@ -7,9 +7,13 @@ function SvgNoDrinks(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoEncryption.jsx b/icons/jsx/NoEncryption.jsx index 49805311f9..44f7f3b09f 100644 --- a/icons/jsx/NoEncryption.jsx +++ b/icons/jsx/NoEncryption.jsx @@ -7,9 +7,13 @@ function SvgNoEncryption(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoEncryptionGmailerrorred.jsx b/icons/jsx/NoEncryptionGmailerrorred.jsx index 2e48e4910e..293efad92d 100644 --- a/icons/jsx/NoEncryptionGmailerrorred.jsx +++ b/icons/jsx/NoEncryptionGmailerrorred.jsx @@ -7,9 +7,13 @@ function SvgNoEncryptionGmailerrorred(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoFlash.jsx b/icons/jsx/NoFlash.jsx index 2c69984124..a081d60dd0 100644 --- a/icons/jsx/NoFlash.jsx +++ b/icons/jsx/NoFlash.jsx @@ -7,9 +7,13 @@ function SvgNoFlash(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoFood.jsx b/icons/jsx/NoFood.jsx index 821d91b609..9b3cf83ee5 100644 --- a/icons/jsx/NoFood.jsx +++ b/icons/jsx/NoFood.jsx @@ -7,9 +7,13 @@ function SvgNoFood(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoLuggage.jsx b/icons/jsx/NoLuggage.jsx index 0d1de89a90..648ba4c962 100644 --- a/icons/jsx/NoLuggage.jsx +++ b/icons/jsx/NoLuggage.jsx @@ -7,9 +7,13 @@ function SvgNoLuggage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoMeals.jsx b/icons/jsx/NoMeals.jsx index 07ed236eab..9686ca8e3f 100644 --- a/icons/jsx/NoMeals.jsx +++ b/icons/jsx/NoMeals.jsx @@ -7,9 +7,13 @@ function SvgNoMeals(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoMeetingRoom.jsx b/icons/jsx/NoMeetingRoom.jsx index 02a6bcdfa4..a4869142f7 100644 --- a/icons/jsx/NoMeetingRoom.jsx +++ b/icons/jsx/NoMeetingRoom.jsx @@ -7,9 +7,13 @@ function SvgNoMeetingRoom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoPhotography.jsx b/icons/jsx/NoPhotography.jsx index 5b3b98eeb4..658e58cbcd 100644 --- a/icons/jsx/NoPhotography.jsx +++ b/icons/jsx/NoPhotography.jsx @@ -7,9 +7,13 @@ function SvgNoPhotography(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoSim.jsx b/icons/jsx/NoSim.jsx index 180a42575b..fe4c8e3387 100644 --- a/icons/jsx/NoSim.jsx +++ b/icons/jsx/NoSim.jsx @@ -7,9 +7,13 @@ function SvgNoSim(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoStroller.jsx b/icons/jsx/NoStroller.jsx index ddda9a7c61..717e9cd124 100644 --- a/icons/jsx/NoStroller.jsx +++ b/icons/jsx/NoStroller.jsx @@ -7,9 +7,13 @@ function SvgNoStroller(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoTransfer.jsx b/icons/jsx/NoTransfer.jsx index 1f0f00782b..30bc6ae0ce 100644 --- a/icons/jsx/NoTransfer.jsx +++ b/icons/jsx/NoTransfer.jsx @@ -7,9 +7,13 @@ function SvgNoTransfer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoiseAware.jsx b/icons/jsx/NoiseAware.jsx index d2e39c75e4..3f1b68b387 100644 --- a/icons/jsx/NoiseAware.jsx +++ b/icons/jsx/NoiseAware.jsx @@ -7,9 +7,13 @@ function SvgNoiseAware(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/NoiseControlOff.jsx b/icons/jsx/NoiseControlOff.jsx index ddb6d98f33..45eb070abb 100644 --- a/icons/jsx/NoiseControlOff.jsx +++ b/icons/jsx/NoiseControlOff.jsx @@ -7,6 +7,7 @@ function SvgNoiseControlOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > diff --git a/icons/jsx/NordicWalking.jsx b/icons/jsx/NordicWalking.jsx index 1f0046dca6..50b4d8f3cc 100644 --- a/icons/jsx/NordicWalking.jsx +++ b/icons/jsx/NordicWalking.jsx @@ -7,9 +7,13 @@ function SvgNordicWalking(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/North.jsx b/icons/jsx/North.jsx index b084b75b37..4632dd6097 100644 --- a/icons/jsx/North.jsx +++ b/icons/jsx/North.jsx @@ -7,9 +7,13 @@ function SvgNorth(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NorthEast.jsx b/icons/jsx/NorthEast.jsx index c4986b9e7c..e6511ad542 100644 --- a/icons/jsx/NorthEast.jsx +++ b/icons/jsx/NorthEast.jsx @@ -7,9 +7,13 @@ function SvgNorthEast(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NorthWest.jsx b/icons/jsx/NorthWest.jsx index a594945184..eb0de825be 100644 --- a/icons/jsx/NorthWest.jsx +++ b/icons/jsx/NorthWest.jsx @@ -7,9 +7,13 @@ function SvgNorthWest(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotAccessible.jsx b/icons/jsx/NotAccessible.jsx index c85a54c921..7eb8aeada8 100644 --- a/icons/jsx/NotAccessible.jsx +++ b/icons/jsx/NotAccessible.jsx @@ -7,9 +7,13 @@ function SvgNotAccessible(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotEqual.jsx b/icons/jsx/NotEqual.jsx index 78acc56fcc..65b05edd17 100644 --- a/icons/jsx/NotEqual.jsx +++ b/icons/jsx/NotEqual.jsx @@ -7,10 +7,11 @@ function SvgNotEqual(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/NotInterested.jsx b/icons/jsx/NotInterested.jsx index 01af22bfbb..1f99c7bf1e 100644 --- a/icons/jsx/NotInterested.jsx +++ b/icons/jsx/NotInterested.jsx @@ -7,9 +7,13 @@ function SvgNotInterested(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotListedLocation.jsx b/icons/jsx/NotListedLocation.jsx index f556eeda76..01974dce13 100644 --- a/icons/jsx/NotListedLocation.jsx +++ b/icons/jsx/NotListedLocation.jsx @@ -7,9 +7,13 @@ function SvgNotListedLocation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotStarted.jsx b/icons/jsx/NotStarted.jsx index 7317b9d2cf..8da465ac17 100644 --- a/icons/jsx/NotStarted.jsx +++ b/icons/jsx/NotStarted.jsx @@ -7,9 +7,13 @@ function SvgNotStarted(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Note.jsx b/icons/jsx/Note.jsx index 02d5d6cc9a..5c29f083d8 100644 --- a/icons/jsx/Note.jsx +++ b/icons/jsx/Note.jsx @@ -7,9 +7,13 @@ function SvgNote(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoteAdd.jsx b/icons/jsx/NoteAdd.jsx index dbccf73a02..72815f30db 100644 --- a/icons/jsx/NoteAdd.jsx +++ b/icons/jsx/NoteAdd.jsx @@ -7,9 +7,13 @@ function SvgNoteAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NoteAlt.jsx b/icons/jsx/NoteAlt.jsx index c63ca97805..e6347ac958 100644 --- a/icons/jsx/NoteAlt.jsx +++ b/icons/jsx/NoteAlt.jsx @@ -7,9 +7,13 @@ function SvgNoteAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Notes.jsx b/icons/jsx/Notes.jsx index 04aee4e459..dc7773dd5c 100644 --- a/icons/jsx/Notes.jsx +++ b/icons/jsx/Notes.jsx @@ -7,9 +7,13 @@ function SvgNotes(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotificationAdd.jsx b/icons/jsx/NotificationAdd.jsx index 8cd20327ab..3fa88a2469 100644 --- a/icons/jsx/NotificationAdd.jsx +++ b/icons/jsx/NotificationAdd.jsx @@ -7,9 +7,13 @@ function SvgNotificationAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotificationImportant.jsx b/icons/jsx/NotificationImportant.jsx index 15a3bfc837..b5a2005981 100644 --- a/icons/jsx/NotificationImportant.jsx +++ b/icons/jsx/NotificationImportant.jsx @@ -7,9 +7,13 @@ function SvgNotificationImportant(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Notifications.jsx b/icons/jsx/Notifications.jsx index 870622344a..715f74da3f 100644 --- a/icons/jsx/Notifications.jsx +++ b/icons/jsx/Notifications.jsx @@ -7,9 +7,13 @@ function SvgNotifications(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotificationsActive.jsx b/icons/jsx/NotificationsActive.jsx index 3101d5a002..5d81b05aa7 100644 --- a/icons/jsx/NotificationsActive.jsx +++ b/icons/jsx/NotificationsActive.jsx @@ -7,9 +7,13 @@ function SvgNotificationsActive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotificationsNone.jsx b/icons/jsx/NotificationsNone.jsx index 75187a9aa4..5f607190dd 100644 --- a/icons/jsx/NotificationsNone.jsx +++ b/icons/jsx/NotificationsNone.jsx @@ -7,9 +7,13 @@ function SvgNotificationsNone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotificationsOff.jsx b/icons/jsx/NotificationsOff.jsx index 253c0fe904..d41ff665ce 100644 --- a/icons/jsx/NotificationsOff.jsx +++ b/icons/jsx/NotificationsOff.jsx @@ -7,9 +7,13 @@ function SvgNotificationsOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/NotificationsPaused.jsx b/icons/jsx/NotificationsPaused.jsx index 116630c4ee..aa28e2b5be 100644 --- a/icons/jsx/NotificationsPaused.jsx +++ b/icons/jsx/NotificationsPaused.jsx @@ -7,9 +7,13 @@ function SvgNotificationsPaused(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Numbers.jsx b/icons/jsx/Numbers.jsx index 7925ae3f5f..edac72c065 100644 --- a/icons/jsx/Numbers.jsx +++ b/icons/jsx/Numbers.jsx @@ -7,9 +7,13 @@ function SvgNumbers(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OfflineBolt.jsx b/icons/jsx/OfflineBolt.jsx index 6dbd711b81..3702258984 100644 --- a/icons/jsx/OfflineBolt.jsx +++ b/icons/jsx/OfflineBolt.jsx @@ -7,9 +7,13 @@ function SvgOfflineBolt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OfflinePin.jsx b/icons/jsx/OfflinePin.jsx index 27d3e34595..e129df3fce 100644 --- a/icons/jsx/OfflinePin.jsx +++ b/icons/jsx/OfflinePin.jsx @@ -7,9 +7,13 @@ function SvgOfflinePin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OfflineShare.jsx b/icons/jsx/OfflineShare.jsx index 638afb8f91..c77f7f0f9c 100644 --- a/icons/jsx/OfflineShare.jsx +++ b/icons/jsx/OfflineShare.jsx @@ -7,11 +7,15 @@ function SvgOfflineShare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/OilBarrel.jsx b/icons/jsx/OilBarrel.jsx index 65fdb65233..9348e4f155 100644 --- a/icons/jsx/OilBarrel.jsx +++ b/icons/jsx/OilBarrel.jsx @@ -7,9 +7,13 @@ function SvgOilBarrel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OnDeviceTraining.jsx b/icons/jsx/OnDeviceTraining.jsx index bb339f385e..e02472acd9 100644 --- a/icons/jsx/OnDeviceTraining.jsx +++ b/icons/jsx/OnDeviceTraining.jsx @@ -7,11 +7,18 @@ function SvgOnDeviceTraining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/OndemandVideo.jsx b/icons/jsx/OndemandVideo.jsx index 58a76c5de2..6618522111 100644 --- a/icons/jsx/OndemandVideo.jsx +++ b/icons/jsx/OndemandVideo.jsx @@ -7,9 +7,13 @@ function SvgOndemandVideo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OnlinePrediction.jsx b/icons/jsx/OnlinePrediction.jsx index 1d576be4dd..b42f4be929 100644 --- a/icons/jsx/OnlinePrediction.jsx +++ b/icons/jsx/OnlinePrediction.jsx @@ -7,9 +7,13 @@ function SvgOnlinePrediction(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Opacity.jsx b/icons/jsx/Opacity.jsx index 456ae9e020..d296f1b463 100644 --- a/icons/jsx/Opacity.jsx +++ b/icons/jsx/Opacity.jsx @@ -7,9 +7,13 @@ function SvgOpacity(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OpenInBrowser.jsx b/icons/jsx/OpenInBrowser.jsx index b3b24121b6..a591d3eae1 100644 --- a/icons/jsx/OpenInBrowser.jsx +++ b/icons/jsx/OpenInBrowser.jsx @@ -7,9 +7,13 @@ function SvgOpenInBrowser(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OpenInFull.jsx b/icons/jsx/OpenInFull.jsx index c5a5292e4d..c53398e200 100644 --- a/icons/jsx/OpenInFull.jsx +++ b/icons/jsx/OpenInFull.jsx @@ -7,9 +7,13 @@ function SvgOpenInFull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OpenInNew.jsx b/icons/jsx/OpenInNew.jsx index ce612c59c4..2fb19f40ea 100644 --- a/icons/jsx/OpenInNew.jsx +++ b/icons/jsx/OpenInNew.jsx @@ -7,9 +7,13 @@ function SvgOpenInNew(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OpenInNewOff.jsx b/icons/jsx/OpenInNewOff.jsx index a0abf85902..592e816793 100644 --- a/icons/jsx/OpenInNewOff.jsx +++ b/icons/jsx/OpenInNewOff.jsx @@ -7,9 +7,13 @@ function SvgOpenInNewOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OpenWith.jsx b/icons/jsx/OpenWith.jsx index ac27f73492..c28d132e81 100644 --- a/icons/jsx/OpenWith.jsx +++ b/icons/jsx/OpenWith.jsx @@ -7,9 +7,13 @@ function SvgOpenWith(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OtherHouses.jsx b/icons/jsx/OtherHouses.jsx index b4dd2add42..46dd37eb75 100644 --- a/icons/jsx/OtherHouses.jsx +++ b/icons/jsx/OtherHouses.jsx @@ -7,9 +7,13 @@ function SvgOtherHouses(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Outbond.jsx b/icons/jsx/Outbond.jsx index 2a3967618b..638575d216 100644 --- a/icons/jsx/Outbond.jsx +++ b/icons/jsx/Outbond.jsx @@ -7,9 +7,13 @@ function SvgOutbond(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Outbound.jsx b/icons/jsx/Outbound.jsx index 5dc8424b85..8f48b4f00b 100644 --- a/icons/jsx/Outbound.jsx +++ b/icons/jsx/Outbound.jsx @@ -7,9 +7,13 @@ function SvgOutbound(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Outbox.jsx b/icons/jsx/Outbox.jsx index 92b10ba491..e169d0b714 100644 --- a/icons/jsx/Outbox.jsx +++ b/icons/jsx/Outbox.jsx @@ -7,10 +7,14 @@ function SvgOutbox(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/OutdoorGrill.jsx b/icons/jsx/OutdoorGrill.jsx index e658872680..3ef7282ca1 100644 --- a/icons/jsx/OutdoorGrill.jsx +++ b/icons/jsx/OutdoorGrill.jsx @@ -7,9 +7,13 @@ function SvgOutdoorGrill(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Outlet.jsx b/icons/jsx/Outlet.jsx index 0569dd75a9..988de58968 100644 --- a/icons/jsx/Outlet.jsx +++ b/icons/jsx/Outlet.jsx @@ -7,9 +7,13 @@ function SvgOutlet(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/OutlinedFlag.jsx b/icons/jsx/OutlinedFlag.jsx index 3eb248ead7..ade200450e 100644 --- a/icons/jsx/OutlinedFlag.jsx +++ b/icons/jsx/OutlinedFlag.jsx @@ -7,9 +7,13 @@ function SvgOutlinedFlag(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Output.jsx b/icons/jsx/Output.jsx index bc91075e55..eb0fbc7102 100644 --- a/icons/jsx/Output.jsx +++ b/icons/jsx/Output.jsx @@ -7,10 +7,14 @@ function SvgOutput(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Padding.jsx b/icons/jsx/Padding.jsx index 10c4351440..a53aa283d1 100644 --- a/icons/jsx/Padding.jsx +++ b/icons/jsx/Padding.jsx @@ -7,9 +7,13 @@ function SvgPadding(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pages.jsx b/icons/jsx/Pages.jsx index e68ef0f263..62c8b1faf6 100644 --- a/icons/jsx/Pages.jsx +++ b/icons/jsx/Pages.jsx @@ -7,9 +7,13 @@ function SvgPages(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pageview.jsx b/icons/jsx/Pageview.jsx index 590b011b76..45d00c4b48 100644 --- a/icons/jsx/Pageview.jsx +++ b/icons/jsx/Pageview.jsx @@ -7,9 +7,13 @@ function SvgPageview(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Paid.jsx b/icons/jsx/Paid.jsx index fae86f3929..8a59fb58c6 100644 --- a/icons/jsx/Paid.jsx +++ b/icons/jsx/Paid.jsx @@ -7,9 +7,13 @@ function SvgPaid(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Palette.jsx b/icons/jsx/Palette.jsx index 6de474f73e..35a1e36318 100644 --- a/icons/jsx/Palette.jsx +++ b/icons/jsx/Palette.jsx @@ -7,9 +7,13 @@ function SvgPalette(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanTool.jsx b/icons/jsx/PanTool.jsx index 515d895c78..ff76a4279b 100644 --- a/icons/jsx/PanTool.jsx +++ b/icons/jsx/PanTool.jsx @@ -7,9 +7,13 @@ function SvgPanTool(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanToolAlt.jsx b/icons/jsx/PanToolAlt.jsx index 8cc3722b3a..8c56212e94 100644 --- a/icons/jsx/PanToolAlt.jsx +++ b/icons/jsx/PanToolAlt.jsx @@ -7,9 +7,13 @@ function SvgPanToolAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Panorama.jsx b/icons/jsx/Panorama.jsx index 0eb4111b35..52034577a3 100644 --- a/icons/jsx/Panorama.jsx +++ b/icons/jsx/Panorama.jsx @@ -7,9 +7,13 @@ function SvgPanorama(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaFishEye.jsx b/icons/jsx/PanoramaFishEye.jsx index f58a635adc..0a2325ce29 100644 --- a/icons/jsx/PanoramaFishEye.jsx +++ b/icons/jsx/PanoramaFishEye.jsx @@ -7,9 +7,13 @@ function SvgPanoramaFishEye(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaHorizontal.jsx b/icons/jsx/PanoramaHorizontal.jsx index d8fd6b78b9..5925054455 100644 --- a/icons/jsx/PanoramaHorizontal.jsx +++ b/icons/jsx/PanoramaHorizontal.jsx @@ -7,9 +7,13 @@ function SvgPanoramaHorizontal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaHorizontalSelect.jsx b/icons/jsx/PanoramaHorizontalSelect.jsx index ea4674e63e..6ccc462428 100644 --- a/icons/jsx/PanoramaHorizontalSelect.jsx +++ b/icons/jsx/PanoramaHorizontalSelect.jsx @@ -7,9 +7,13 @@ function SvgPanoramaHorizontalSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaPhotosphere.jsx b/icons/jsx/PanoramaPhotosphere.jsx index 81dc61743f..889f4a0d8d 100644 --- a/icons/jsx/PanoramaPhotosphere.jsx +++ b/icons/jsx/PanoramaPhotosphere.jsx @@ -7,9 +7,13 @@ function SvgPanoramaPhotosphere(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaPhotosphereSelect.jsx b/icons/jsx/PanoramaPhotosphereSelect.jsx index b35b0ebfb9..e599fb701f 100644 --- a/icons/jsx/PanoramaPhotosphereSelect.jsx +++ b/icons/jsx/PanoramaPhotosphereSelect.jsx @@ -7,9 +7,13 @@ function SvgPanoramaPhotosphereSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaVertical.jsx b/icons/jsx/PanoramaVertical.jsx index 4e26cb613a..c166bd3371 100644 --- a/icons/jsx/PanoramaVertical.jsx +++ b/icons/jsx/PanoramaVertical.jsx @@ -7,9 +7,13 @@ function SvgPanoramaVertical(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaVerticalSelect.jsx b/icons/jsx/PanoramaVerticalSelect.jsx index 6d6f2025a4..ea760d53be 100644 --- a/icons/jsx/PanoramaVerticalSelect.jsx +++ b/icons/jsx/PanoramaVerticalSelect.jsx @@ -7,9 +7,13 @@ function SvgPanoramaVerticalSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaWideAngle.jsx b/icons/jsx/PanoramaWideAngle.jsx index c1069cbce8..55b75d664b 100644 --- a/icons/jsx/PanoramaWideAngle.jsx +++ b/icons/jsx/PanoramaWideAngle.jsx @@ -7,9 +7,13 @@ function SvgPanoramaWideAngle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PanoramaWideAngleSelect.jsx b/icons/jsx/PanoramaWideAngleSelect.jsx index b921d275b5..0dc3db779f 100644 --- a/icons/jsx/PanoramaWideAngleSelect.jsx +++ b/icons/jsx/PanoramaWideAngleSelect.jsx @@ -7,9 +7,13 @@ function SvgPanoramaWideAngleSelect(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Paragliding.jsx b/icons/jsx/Paragliding.jsx index 2d776c82f9..cfe4939295 100644 --- a/icons/jsx/Paragliding.jsx +++ b/icons/jsx/Paragliding.jsx @@ -7,9 +7,13 @@ function SvgParagliding(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Park.jsx b/icons/jsx/Park.jsx index 41d2d82945..94079ffd65 100644 --- a/icons/jsx/Park.jsx +++ b/icons/jsx/Park.jsx @@ -7,9 +7,13 @@ function SvgPark(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PartyMode.jsx b/icons/jsx/PartyMode.jsx index 51d0c85ed3..edde15e94a 100644 --- a/icons/jsx/PartyMode.jsx +++ b/icons/jsx/PartyMode.jsx @@ -7,9 +7,13 @@ function SvgPartyMode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Password.jsx b/icons/jsx/Password.jsx index a63651da0a..4a084fe9c4 100644 --- a/icons/jsx/Password.jsx +++ b/icons/jsx/Password.jsx @@ -7,9 +7,13 @@ function SvgPassword(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pattern.jsx b/icons/jsx/Pattern.jsx index ab65f688d5..4bceb8bf04 100644 --- a/icons/jsx/Pattern.jsx +++ b/icons/jsx/Pattern.jsx @@ -7,9 +7,13 @@ function SvgPattern(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pause.jsx b/icons/jsx/Pause.jsx index f8ea2ffc08..906c1b81a9 100644 --- a/icons/jsx/Pause.jsx +++ b/icons/jsx/Pause.jsx @@ -7,9 +7,10 @@ function SvgPause(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PauseCircle.jsx b/icons/jsx/PauseCircle.jsx index 3a9a49179f..5994573753 100644 --- a/icons/jsx/PauseCircle.jsx +++ b/icons/jsx/PauseCircle.jsx @@ -7,9 +7,13 @@ function SvgPauseCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PauseCircleFilled.jsx b/icons/jsx/PauseCircleFilled.jsx index f14f0da00d..edad86fefb 100644 --- a/icons/jsx/PauseCircleFilled.jsx +++ b/icons/jsx/PauseCircleFilled.jsx @@ -7,9 +7,13 @@ function SvgPauseCircleFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PauseCircleOutline.jsx b/icons/jsx/PauseCircleOutline.jsx index c3b5c0c0b1..b5c3fdaa22 100644 --- a/icons/jsx/PauseCircleOutline.jsx +++ b/icons/jsx/PauseCircleOutline.jsx @@ -7,9 +7,13 @@ function SvgPauseCircleOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PausePresentation.jsx b/icons/jsx/PausePresentation.jsx index f6aa4cad47..885bcc960e 100644 --- a/icons/jsx/PausePresentation.jsx +++ b/icons/jsx/PausePresentation.jsx @@ -7,9 +7,13 @@ function SvgPausePresentation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Payment.jsx b/icons/jsx/Payment.jsx index 64a208c719..c5c344f30e 100644 --- a/icons/jsx/Payment.jsx +++ b/icons/jsx/Payment.jsx @@ -7,9 +7,13 @@ function SvgPayment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Payments.jsx b/icons/jsx/Payments.jsx index 86fa607307..1253dcd404 100644 --- a/icons/jsx/Payments.jsx +++ b/icons/jsx/Payments.jsx @@ -7,9 +7,13 @@ function SvgPayments(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Paypal.jsx b/icons/jsx/Paypal.jsx index 517c5da1b4..ba8e0e5852 100644 --- a/icons/jsx/Paypal.jsx +++ b/icons/jsx/Paypal.jsx @@ -7,10 +7,17 @@ function SvgPaypal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/PedalBike.jsx b/icons/jsx/PedalBike.jsx index 50563eef46..677445b0d3 100644 --- a/icons/jsx/PedalBike.jsx +++ b/icons/jsx/PedalBike.jsx @@ -7,9 +7,13 @@ function SvgPedalBike(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pending.jsx b/icons/jsx/Pending.jsx index 11910fe1e1..0ddd8e0aab 100644 --- a/icons/jsx/Pending.jsx +++ b/icons/jsx/Pending.jsx @@ -7,9 +7,13 @@ function SvgPending(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PendingActions.jsx b/icons/jsx/PendingActions.jsx index f521340f3d..ca3f8cbbdc 100644 --- a/icons/jsx/PendingActions.jsx +++ b/icons/jsx/PendingActions.jsx @@ -7,9 +7,13 @@ function SvgPendingActions(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pentagon.jsx b/icons/jsx/Pentagon.jsx index 9f940b44ab..468e0d2a4c 100644 --- a/icons/jsx/Pentagon.jsx +++ b/icons/jsx/Pentagon.jsx @@ -7,9 +7,10 @@ function SvgPentagon(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PeopleAlt.jsx b/icons/jsx/PeopleAlt.jsx index 094f25e203..24b48d6b56 100644 --- a/icons/jsx/PeopleAlt.jsx +++ b/icons/jsx/PeopleAlt.jsx @@ -7,16 +7,19 @@ function SvgPeopleAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/PeopleOutline.jsx b/icons/jsx/PeopleOutline.jsx index 2ac19545a9..9f78530897 100644 --- a/icons/jsx/PeopleOutline.jsx +++ b/icons/jsx/PeopleOutline.jsx @@ -7,9 +7,13 @@ function SvgPeopleOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Percent.jsx b/icons/jsx/Percent.jsx index 11238a670e..f6320b6cf6 100644 --- a/icons/jsx/Percent.jsx +++ b/icons/jsx/Percent.jsx @@ -7,9 +7,13 @@ function SvgPercent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Percentage.jsx b/icons/jsx/Percentage.jsx index 1f4da0d9b0..5e61995aac 100644 --- a/icons/jsx/Percentage.jsx +++ b/icons/jsx/Percentage.jsx @@ -7,9 +7,13 @@ function SvgPercentage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PermCameraMic.jsx b/icons/jsx/PermCameraMic.jsx index 5b5270dcc0..ff08c1cf5f 100644 --- a/icons/jsx/PermCameraMic.jsx +++ b/icons/jsx/PermCameraMic.jsx @@ -7,9 +7,13 @@ function SvgPermCameraMic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PermContactCalendar.jsx b/icons/jsx/PermContactCalendar.jsx index ff54abf09b..5a6328a0d2 100644 --- a/icons/jsx/PermContactCalendar.jsx +++ b/icons/jsx/PermContactCalendar.jsx @@ -7,9 +7,13 @@ function SvgPermContactCalendar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PermDataSetting.jsx b/icons/jsx/PermDataSetting.jsx index e813a8c4fd..a96494b926 100644 --- a/icons/jsx/PermDataSetting.jsx +++ b/icons/jsx/PermDataSetting.jsx @@ -7,9 +7,13 @@ function SvgPermDataSetting(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PermDeviceInformation.jsx b/icons/jsx/PermDeviceInformation.jsx index b97e7118f2..0e6274621d 100644 --- a/icons/jsx/PermDeviceInformation.jsx +++ b/icons/jsx/PermDeviceInformation.jsx @@ -7,9 +7,13 @@ function SvgPermDeviceInformation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PermIdentity.jsx b/icons/jsx/PermIdentity.jsx index fa0d58e784..76054f62ed 100644 --- a/icons/jsx/PermIdentity.jsx +++ b/icons/jsx/PermIdentity.jsx @@ -7,9 +7,13 @@ function SvgPermIdentity(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PermMedia.jsx b/icons/jsx/PermMedia.jsx index b7c5f8b7d4..075c4754f0 100644 --- a/icons/jsx/PermMedia.jsx +++ b/icons/jsx/PermMedia.jsx @@ -7,9 +7,13 @@ function SvgPermMedia(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PermPhoneMsg.jsx b/icons/jsx/PermPhoneMsg.jsx index b7a210e4e4..8cf0b6ecad 100644 --- a/icons/jsx/PermPhoneMsg.jsx +++ b/icons/jsx/PermPhoneMsg.jsx @@ -7,9 +7,13 @@ function SvgPermPhoneMsg(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PermScanWifi.jsx b/icons/jsx/PermScanWifi.jsx index f7cbb7cc1c..e94b262aea 100644 --- a/icons/jsx/PermScanWifi.jsx +++ b/icons/jsx/PermScanWifi.jsx @@ -7,9 +7,13 @@ function SvgPermScanWifi(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Person2.jsx b/icons/jsx/Person2.jsx index d08bb61c44..f98889b886 100644 --- a/icons/jsx/Person2.jsx +++ b/icons/jsx/Person2.jsx @@ -7,9 +7,13 @@ function SvgPerson2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Person3.jsx b/icons/jsx/Person3.jsx index dc8bde1cc3..9ce3f706eb 100644 --- a/icons/jsx/Person3.jsx +++ b/icons/jsx/Person3.jsx @@ -7,9 +7,13 @@ function SvgPerson3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Person4.jsx b/icons/jsx/Person4.jsx index 43db3771df..a3311dcae1 100644 --- a/icons/jsx/Person4.jsx +++ b/icons/jsx/Person4.jsx @@ -7,9 +7,13 @@ function SvgPerson4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonAdd.jsx b/icons/jsx/PersonAdd.jsx index 60f6c34699..26cf68bfab 100644 --- a/icons/jsx/PersonAdd.jsx +++ b/icons/jsx/PersonAdd.jsx @@ -7,9 +7,13 @@ function SvgPersonAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonAddAlt.jsx b/icons/jsx/PersonAddAlt.jsx index 0093cf3658..f5f0c9fc0a 100644 --- a/icons/jsx/PersonAddAlt.jsx +++ b/icons/jsx/PersonAddAlt.jsx @@ -7,9 +7,13 @@ function SvgPersonAddAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonAddAlt1.jsx b/icons/jsx/PersonAddAlt1.jsx index 0f2f2a27c2..2183e1304c 100644 --- a/icons/jsx/PersonAddAlt1.jsx +++ b/icons/jsx/PersonAddAlt1.jsx @@ -7,9 +7,13 @@ function SvgPersonAddAlt1(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonAddDisabled.jsx b/icons/jsx/PersonAddDisabled.jsx index e6ca5b64a6..cc62ee2689 100644 --- a/icons/jsx/PersonAddDisabled.jsx +++ b/icons/jsx/PersonAddDisabled.jsx @@ -7,9 +7,13 @@ function SvgPersonAddDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonOff.jsx b/icons/jsx/PersonOff.jsx index f9131a4c07..adb6f9c609 100644 --- a/icons/jsx/PersonOff.jsx +++ b/icons/jsx/PersonOff.jsx @@ -7,9 +7,13 @@ function SvgPersonOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonOutline.jsx b/icons/jsx/PersonOutline.jsx index 5da96a5efb..3aaa934bd5 100644 --- a/icons/jsx/PersonOutline.jsx +++ b/icons/jsx/PersonOutline.jsx @@ -7,9 +7,13 @@ function SvgPersonOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonPin.jsx b/icons/jsx/PersonPin.jsx index d761ae4c75..133a5af64f 100644 --- a/icons/jsx/PersonPin.jsx +++ b/icons/jsx/PersonPin.jsx @@ -7,9 +7,13 @@ function SvgPersonPin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonPinCircle.jsx b/icons/jsx/PersonPinCircle.jsx index a1e46cdbbe..ac0c44df2d 100644 --- a/icons/jsx/PersonPinCircle.jsx +++ b/icons/jsx/PersonPinCircle.jsx @@ -7,9 +7,13 @@ function SvgPersonPinCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonRemove.jsx b/icons/jsx/PersonRemove.jsx index 94f0ab6182..f6022114e4 100644 --- a/icons/jsx/PersonRemove.jsx +++ b/icons/jsx/PersonRemove.jsx @@ -7,9 +7,13 @@ function SvgPersonRemove(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonRemoveAlt1.jsx b/icons/jsx/PersonRemoveAlt1.jsx index 7f77bb967c..fd603dd5c5 100644 --- a/icons/jsx/PersonRemoveAlt1.jsx +++ b/icons/jsx/PersonRemoveAlt1.jsx @@ -7,9 +7,13 @@ function SvgPersonRemoveAlt1(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonSearch.jsx b/icons/jsx/PersonSearch.jsx index 797c5446ea..19a4e60206 100644 --- a/icons/jsx/PersonSearch.jsx +++ b/icons/jsx/PersonSearch.jsx @@ -7,10 +7,14 @@ function SvgPersonSearch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonalInjury.jsx b/icons/jsx/PersonalInjury.jsx index cc7579cb7f..65ae57e471 100644 --- a/icons/jsx/PersonalInjury.jsx +++ b/icons/jsx/PersonalInjury.jsx @@ -7,9 +7,13 @@ function SvgPersonalInjury(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PersonalVideo.jsx b/icons/jsx/PersonalVideo.jsx index 7d21355348..2e4659523d 100644 --- a/icons/jsx/PersonalVideo.jsx +++ b/icons/jsx/PersonalVideo.jsx @@ -7,9 +7,13 @@ function SvgPersonalVideo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PestControl.jsx b/icons/jsx/PestControl.jsx index f49049007f..4ca4c909c9 100644 --- a/icons/jsx/PestControl.jsx +++ b/icons/jsx/PestControl.jsx @@ -7,9 +7,13 @@ function SvgPestControl(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PestControlRodent.jsx b/icons/jsx/PestControlRodent.jsx index 62116ceb52..6ff25ad126 100644 --- a/icons/jsx/PestControlRodent.jsx +++ b/icons/jsx/PestControlRodent.jsx @@ -7,9 +7,13 @@ function SvgPestControlRodent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pets.jsx b/icons/jsx/Pets.jsx index 5b106b8cc5..fc5296496c 100644 --- a/icons/jsx/Pets.jsx +++ b/icons/jsx/Pets.jsx @@ -7,13 +7,17 @@ function SvgPets(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Phishing.jsx b/icons/jsx/Phishing.jsx index 3459f4b6b0..a80d6874ed 100644 --- a/icons/jsx/Phishing.jsx +++ b/icons/jsx/Phishing.jsx @@ -7,9 +7,13 @@ function SvgPhishing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Phone.jsx b/icons/jsx/Phone.jsx index b2118569b4..bfa728fc9f 100644 --- a/icons/jsx/Phone.jsx +++ b/icons/jsx/Phone.jsx @@ -7,9 +7,13 @@ function SvgPhone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhoneAndroid.jsx b/icons/jsx/PhoneAndroid.jsx index 384889f8a1..f01da6e94d 100644 --- a/icons/jsx/PhoneAndroid.jsx +++ b/icons/jsx/PhoneAndroid.jsx @@ -7,9 +7,13 @@ function SvgPhoneAndroid(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhoneBluetoothSpeaker.jsx b/icons/jsx/PhoneBluetoothSpeaker.jsx index 6ec504a6e0..fa5e0be698 100644 --- a/icons/jsx/PhoneBluetoothSpeaker.jsx +++ b/icons/jsx/PhoneBluetoothSpeaker.jsx @@ -7,9 +7,13 @@ function SvgPhoneBluetoothSpeaker(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhoneCallback.jsx b/icons/jsx/PhoneCallback.jsx index 351331db8f..ebf6840f6f 100644 --- a/icons/jsx/PhoneCallback.jsx +++ b/icons/jsx/PhoneCallback.jsx @@ -7,9 +7,13 @@ function SvgPhoneCallback(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhoneDisabled.jsx b/icons/jsx/PhoneDisabled.jsx index 780c9c8831..0146fc7582 100644 --- a/icons/jsx/PhoneDisabled.jsx +++ b/icons/jsx/PhoneDisabled.jsx @@ -7,9 +7,13 @@ function SvgPhoneDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhoneEnabled.jsx b/icons/jsx/PhoneEnabled.jsx index 8281a8cd02..442de92a95 100644 --- a/icons/jsx/PhoneEnabled.jsx +++ b/icons/jsx/PhoneEnabled.jsx @@ -7,9 +7,13 @@ function SvgPhoneEnabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhoneForwarded.jsx b/icons/jsx/PhoneForwarded.jsx index 85ee9c625b..d428d75eda 100644 --- a/icons/jsx/PhoneForwarded.jsx +++ b/icons/jsx/PhoneForwarded.jsx @@ -7,9 +7,13 @@ function SvgPhoneForwarded(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhoneInTalk.jsx b/icons/jsx/PhoneInTalk.jsx index b7596b2d5b..654de08459 100644 --- a/icons/jsx/PhoneInTalk.jsx +++ b/icons/jsx/PhoneInTalk.jsx @@ -7,9 +7,13 @@ function SvgPhoneInTalk(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhoneLocked.jsx b/icons/jsx/PhoneLocked.jsx index fb517edd89..987557fd00 100644 --- a/icons/jsx/PhoneLocked.jsx +++ b/icons/jsx/PhoneLocked.jsx @@ -7,10 +7,17 @@ function SvgPhoneLocked(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/PhoneMissed.jsx b/icons/jsx/PhoneMissed.jsx index 1ef7b5e01c..03592b1c26 100644 --- a/icons/jsx/PhoneMissed.jsx +++ b/icons/jsx/PhoneMissed.jsx @@ -7,9 +7,13 @@ function SvgPhoneMissed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhonePaused.jsx b/icons/jsx/PhonePaused.jsx index 1588ce0331..a885ea2e17 100644 --- a/icons/jsx/PhonePaused.jsx +++ b/icons/jsx/PhonePaused.jsx @@ -7,9 +7,13 @@ function SvgPhonePaused(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Phonelink.jsx b/icons/jsx/Phonelink.jsx index 75ab3e7d14..2941a93d22 100644 --- a/icons/jsx/Phonelink.jsx +++ b/icons/jsx/Phonelink.jsx @@ -7,9 +7,13 @@ function SvgPhonelink(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhonelinkErase.jsx b/icons/jsx/PhonelinkErase.jsx index adbabc309c..ad763dab4d 100644 --- a/icons/jsx/PhonelinkErase.jsx +++ b/icons/jsx/PhonelinkErase.jsx @@ -7,9 +7,13 @@ function SvgPhonelinkErase(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhonelinkLock.jsx b/icons/jsx/PhonelinkLock.jsx index 4a47f63b43..c1d9c5788a 100644 --- a/icons/jsx/PhonelinkLock.jsx +++ b/icons/jsx/PhonelinkLock.jsx @@ -7,9 +7,13 @@ function SvgPhonelinkLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhonelinkOff.jsx b/icons/jsx/PhonelinkOff.jsx index 76350c26aa..c98945e3d7 100644 --- a/icons/jsx/PhonelinkOff.jsx +++ b/icons/jsx/PhonelinkOff.jsx @@ -7,9 +7,13 @@ function SvgPhonelinkOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhonelinkRing.jsx b/icons/jsx/PhonelinkRing.jsx index 227d2e62df..a81c776f81 100644 --- a/icons/jsx/PhonelinkRing.jsx +++ b/icons/jsx/PhonelinkRing.jsx @@ -7,9 +7,13 @@ function SvgPhonelinkRing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhonelinkSetup.jsx b/icons/jsx/PhonelinkSetup.jsx index f7f01efeca..e87bed6d96 100644 --- a/icons/jsx/PhonelinkSetup.jsx +++ b/icons/jsx/PhonelinkSetup.jsx @@ -7,9 +7,13 @@ function SvgPhonelinkSetup(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Photo.jsx b/icons/jsx/Photo.jsx index a2103f1132..4d40a0a869 100644 --- a/icons/jsx/Photo.jsx +++ b/icons/jsx/Photo.jsx @@ -7,9 +7,13 @@ function SvgPhoto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhotoAlbum.jsx b/icons/jsx/PhotoAlbum.jsx index 076a7e77aa..5562da72e1 100644 --- a/icons/jsx/PhotoAlbum.jsx +++ b/icons/jsx/PhotoAlbum.jsx @@ -7,9 +7,13 @@ function SvgPhotoAlbum(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhotoCameraBack.jsx b/icons/jsx/PhotoCameraBack.jsx index 1483b9c97a..ee8906ea41 100644 --- a/icons/jsx/PhotoCameraBack.jsx +++ b/icons/jsx/PhotoCameraBack.jsx @@ -7,9 +7,13 @@ function SvgPhotoCameraBack(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhotoCameraFront.jsx b/icons/jsx/PhotoCameraFront.jsx index 9622771dc0..3a6f13da7f 100644 --- a/icons/jsx/PhotoCameraFront.jsx +++ b/icons/jsx/PhotoCameraFront.jsx @@ -7,9 +7,13 @@ function SvgPhotoCameraFront(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhotoFilter.jsx b/icons/jsx/PhotoFilter.jsx index 83babe54c3..d05e910d82 100644 --- a/icons/jsx/PhotoFilter.jsx +++ b/icons/jsx/PhotoFilter.jsx @@ -7,9 +7,13 @@ function SvgPhotoFilter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhotoLibrary.jsx b/icons/jsx/PhotoLibrary.jsx index dfd8786066..833e88cf86 100644 --- a/icons/jsx/PhotoLibrary.jsx +++ b/icons/jsx/PhotoLibrary.jsx @@ -7,9 +7,13 @@ function SvgPhotoLibrary(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhotoSizeSelectActual.jsx b/icons/jsx/PhotoSizeSelectActual.jsx index 2a5a8e7e76..7728ea60f9 100644 --- a/icons/jsx/PhotoSizeSelectActual.jsx +++ b/icons/jsx/PhotoSizeSelectActual.jsx @@ -7,9 +7,13 @@ function SvgPhotoSizeSelectActual(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhotoSizeSelectLarge.jsx b/icons/jsx/PhotoSizeSelectLarge.jsx index abb68451e9..dd0dc8c3ea 100644 --- a/icons/jsx/PhotoSizeSelectLarge.jsx +++ b/icons/jsx/PhotoSizeSelectLarge.jsx @@ -7,9 +7,13 @@ function SvgPhotoSizeSelectLarge(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PhotoSizeSelectSmall.jsx b/icons/jsx/PhotoSizeSelectSmall.jsx index 5b3b7e0b19..569e5bad8f 100644 --- a/icons/jsx/PhotoSizeSelectSmall.jsx +++ b/icons/jsx/PhotoSizeSelectSmall.jsx @@ -7,9 +7,13 @@ function SvgPhotoSizeSelectSmall(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Php.jsx b/icons/jsx/Php.jsx index 67c7bd07cd..a5a0691be1 100644 --- a/icons/jsx/Php.jsx +++ b/icons/jsx/Php.jsx @@ -7,9 +7,13 @@ function SvgPhp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Piano.jsx b/icons/jsx/Piano.jsx index 387b60a80c..b24dc144d0 100644 --- a/icons/jsx/Piano.jsx +++ b/icons/jsx/Piano.jsx @@ -7,9 +7,13 @@ function SvgPiano(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PianoOff.jsx b/icons/jsx/PianoOff.jsx index 5d6b580029..30187a9d2b 100644 --- a/icons/jsx/PianoOff.jsx +++ b/icons/jsx/PianoOff.jsx @@ -7,9 +7,13 @@ function SvgPianoOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PictureAsPdf.jsx b/icons/jsx/PictureAsPdf.jsx index 0136f40bda..c765d084b5 100644 --- a/icons/jsx/PictureAsPdf.jsx +++ b/icons/jsx/PictureAsPdf.jsx @@ -7,9 +7,13 @@ function SvgPictureAsPdf(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PictureInPicture.jsx b/icons/jsx/PictureInPicture.jsx index 9d3003548b..54bc81e6fa 100644 --- a/icons/jsx/PictureInPicture.jsx +++ b/icons/jsx/PictureInPicture.jsx @@ -7,9 +7,13 @@ function SvgPictureInPicture(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PictureInPictureAlt.jsx b/icons/jsx/PictureInPictureAlt.jsx index 67e077e433..991cbe72c3 100644 --- a/icons/jsx/PictureInPictureAlt.jsx +++ b/icons/jsx/PictureInPictureAlt.jsx @@ -7,9 +7,13 @@ function SvgPictureInPictureAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PieChart.jsx b/icons/jsx/PieChart.jsx index dcc6a11637..6b50bba482 100644 --- a/icons/jsx/PieChart.jsx +++ b/icons/jsx/PieChart.jsx @@ -7,9 +7,13 @@ function SvgPieChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PieChartOutline.jsx b/icons/jsx/PieChartOutline.jsx index 1412b8d64d..2786e652d0 100644 --- a/icons/jsx/PieChartOutline.jsx +++ b/icons/jsx/PieChartOutline.jsx @@ -7,9 +7,13 @@ function SvgPieChartOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PinDrop.jsx b/icons/jsx/PinDrop.jsx index 6683ac51e7..6c7fe844ab 100644 --- a/icons/jsx/PinDrop.jsx +++ b/icons/jsx/PinDrop.jsx @@ -7,11 +7,13 @@ function SvgPinDrop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/PinEnd.jsx b/icons/jsx/PinEnd.jsx index aff7830238..b5b6b16b69 100644 --- a/icons/jsx/PinEnd.jsx +++ b/icons/jsx/PinEnd.jsx @@ -7,9 +7,13 @@ function SvgPinEnd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PinInvoke.jsx b/icons/jsx/PinInvoke.jsx index 1ee5655fed..0282771155 100644 --- a/icons/jsx/PinInvoke.jsx +++ b/icons/jsx/PinInvoke.jsx @@ -7,9 +7,13 @@ function SvgPinInvoke(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PinOff.jsx b/icons/jsx/PinOff.jsx index 813d5902bf..22e1eb4ab6 100644 --- a/icons/jsx/PinOff.jsx +++ b/icons/jsx/PinOff.jsx @@ -7,10 +7,17 @@ function SvgPinOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Pinch.jsx b/icons/jsx/Pinch.jsx index 9749872ec4..186ef756bb 100644 --- a/icons/jsx/Pinch.jsx +++ b/icons/jsx/Pinch.jsx @@ -7,9 +7,13 @@ function SvgPinch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PivotTableChart.jsx b/icons/jsx/PivotTableChart.jsx index abf4966cc5..e411dda39f 100644 --- a/icons/jsx/PivotTableChart.jsx +++ b/icons/jsx/PivotTableChart.jsx @@ -7,9 +7,13 @@ function SvgPivotTableChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pix.jsx b/icons/jsx/Pix.jsx index e1bace6c39..7bc088564d 100644 --- a/icons/jsx/Pix.jsx +++ b/icons/jsx/Pix.jsx @@ -7,10 +7,17 @@ function SvgPix(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Place.jsx b/icons/jsx/Place.jsx index 6b340c7810..4e1a01a3fa 100644 --- a/icons/jsx/Place.jsx +++ b/icons/jsx/Place.jsx @@ -7,9 +7,13 @@ function SvgPlace(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Plagiarism.jsx b/icons/jsx/Plagiarism.jsx index 4b4f0687a3..88d3b80a90 100644 --- a/icons/jsx/Plagiarism.jsx +++ b/icons/jsx/Plagiarism.jsx @@ -7,10 +7,14 @@ function SvgPlagiarism(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlayCircle.jsx b/icons/jsx/PlayCircle.jsx index acde49a922..243d705e8f 100644 --- a/icons/jsx/PlayCircle.jsx +++ b/icons/jsx/PlayCircle.jsx @@ -7,9 +7,13 @@ function SvgPlayCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlayCircleFilledWhite.jsx b/icons/jsx/PlayCircleFilledWhite.jsx index 142067f4af..90501e1680 100644 --- a/icons/jsx/PlayCircleFilledWhite.jsx +++ b/icons/jsx/PlayCircleFilledWhite.jsx @@ -7,9 +7,13 @@ function SvgPlayCircleFilledWhite(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlayDisabled.jsx b/icons/jsx/PlayDisabled.jsx index 18d1461943..c4c686c883 100644 --- a/icons/jsx/PlayDisabled.jsx +++ b/icons/jsx/PlayDisabled.jsx @@ -7,9 +7,13 @@ function SvgPlayDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlayForWork.jsx b/icons/jsx/PlayForWork.jsx index 8bac45c63b..cbc59d2245 100644 --- a/icons/jsx/PlayForWork.jsx +++ b/icons/jsx/PlayForWork.jsx @@ -7,9 +7,13 @@ function SvgPlayForWork(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlayLesson.jsx b/icons/jsx/PlayLesson.jsx index 30f08bd665..e91604b6ee 100644 --- a/icons/jsx/PlayLesson.jsx +++ b/icons/jsx/PlayLesson.jsx @@ -7,10 +7,17 @@ function SvgPlayLesson(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/PlaylistAdd.jsx b/icons/jsx/PlaylistAdd.jsx index 11e5cd1454..a2db6b0e46 100644 --- a/icons/jsx/PlaylistAdd.jsx +++ b/icons/jsx/PlaylistAdd.jsx @@ -7,9 +7,13 @@ function SvgPlaylistAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlaylistAddCheck.jsx b/icons/jsx/PlaylistAddCheck.jsx index 4bec1da343..0f3e7538b1 100644 --- a/icons/jsx/PlaylistAddCheck.jsx +++ b/icons/jsx/PlaylistAddCheck.jsx @@ -7,9 +7,13 @@ function SvgPlaylistAddCheck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlaylistAddCheckCircle.jsx b/icons/jsx/PlaylistAddCheckCircle.jsx index 6657d5f5f6..8f00c9a726 100644 --- a/icons/jsx/PlaylistAddCheckCircle.jsx +++ b/icons/jsx/PlaylistAddCheckCircle.jsx @@ -7,9 +7,13 @@ function SvgPlaylistAddCheckCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlaylistAddCircle.jsx b/icons/jsx/PlaylistAddCircle.jsx index 0c79991879..9279737d9d 100644 --- a/icons/jsx/PlaylistAddCircle.jsx +++ b/icons/jsx/PlaylistAddCircle.jsx @@ -7,9 +7,13 @@ function SvgPlaylistAddCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlaylistPlay.jsx b/icons/jsx/PlaylistPlay.jsx index 2de32ca985..428d365267 100644 --- a/icons/jsx/PlaylistPlay.jsx +++ b/icons/jsx/PlaylistPlay.jsx @@ -7,9 +7,13 @@ function SvgPlaylistPlay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlaylistRemove.jsx b/icons/jsx/PlaylistRemove.jsx index e737c2f2c6..07ecea5bc1 100644 --- a/icons/jsx/PlaylistRemove.jsx +++ b/icons/jsx/PlaylistRemove.jsx @@ -7,9 +7,13 @@ function SvgPlaylistRemove(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Plumbing.jsx b/icons/jsx/Plumbing.jsx index 344b35869c..2955aea048 100644 --- a/icons/jsx/Plumbing.jsx +++ b/icons/jsx/Plumbing.jsx @@ -7,10 +7,17 @@ function SvgPlumbing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Plus.jsx b/icons/jsx/Plus.jsx index 4f425259cd..b767c20232 100644 --- a/icons/jsx/Plus.jsx +++ b/icons/jsx/Plus.jsx @@ -7,9 +7,10 @@ function SvgPlus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlusMinus.jsx b/icons/jsx/PlusMinus.jsx index d0f813fd7b..075e943569 100644 --- a/icons/jsx/PlusMinus.jsx +++ b/icons/jsx/PlusMinus.jsx @@ -7,9 +7,13 @@ function SvgPlusMinus(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlusMinusAlt.jsx b/icons/jsx/PlusMinusAlt.jsx index 32fcd0d280..622290d122 100644 --- a/icons/jsx/PlusMinusAlt.jsx +++ b/icons/jsx/PlusMinusAlt.jsx @@ -7,9 +7,13 @@ function SvgPlusMinusAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PlusOne.jsx b/icons/jsx/PlusOne.jsx index 33ce80b4da..4bda5ac0fa 100644 --- a/icons/jsx/PlusOne.jsx +++ b/icons/jsx/PlusOne.jsx @@ -7,9 +7,13 @@ function SvgPlusOne(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Podcasts.jsx b/icons/jsx/Podcasts.jsx index b719d7412f..fe47c0f461 100644 --- a/icons/jsx/Podcasts.jsx +++ b/icons/jsx/Podcasts.jsx @@ -7,9 +7,13 @@ function SvgPodcasts(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PointOfSale.jsx b/icons/jsx/PointOfSale.jsx index 4a3f000ff0..3b9c17d428 100644 --- a/icons/jsx/PointOfSale.jsx +++ b/icons/jsx/PointOfSale.jsx @@ -7,9 +7,13 @@ function SvgPointOfSale(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Policy.jsx b/icons/jsx/Policy.jsx index 03ad6dd56f..cf622c042c 100644 --- a/icons/jsx/Policy.jsx +++ b/icons/jsx/Policy.jsx @@ -7,9 +7,13 @@ function SvgPolicy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/Poll.jsx b/icons/jsx/Poll.jsx index 4f5891f45c..09e5dc7757 100644 --- a/icons/jsx/Poll.jsx +++ b/icons/jsx/Poll.jsx @@ -7,9 +7,13 @@ function SvgPoll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Polyline.jsx b/icons/jsx/Polyline.jsx index 16cc007653..fa4c80fe3d 100644 --- a/icons/jsx/Polyline.jsx +++ b/icons/jsx/Polyline.jsx @@ -7,9 +7,13 @@ function SvgPolyline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Polymer.jsx b/icons/jsx/Polymer.jsx index ca9932caa4..de09ab031d 100644 --- a/icons/jsx/Polymer.jsx +++ b/icons/jsx/Polymer.jsx @@ -7,9 +7,13 @@ function SvgPolymer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Pool.jsx b/icons/jsx/Pool.jsx index e3d29c8b1c..c28dbbd037 100644 --- a/icons/jsx/Pool.jsx +++ b/icons/jsx/Pool.jsx @@ -7,9 +7,13 @@ function SvgPool(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/PortableWifiOff.jsx b/icons/jsx/PortableWifiOff.jsx index 4edf9f2cb8..bc69d578dd 100644 --- a/icons/jsx/PortableWifiOff.jsx +++ b/icons/jsx/PortableWifiOff.jsx @@ -7,9 +7,13 @@ function SvgPortableWifiOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Portrait.jsx b/icons/jsx/Portrait.jsx index ec92127796..7ae80f2c20 100644 --- a/icons/jsx/Portrait.jsx +++ b/icons/jsx/Portrait.jsx @@ -7,9 +7,13 @@ function SvgPortrait(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PostAdd.jsx b/icons/jsx/PostAdd.jsx index ad917e6bd4..58d006c535 100644 --- a/icons/jsx/PostAdd.jsx +++ b/icons/jsx/PostAdd.jsx @@ -7,10 +7,14 @@ function SvgPostAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Power.jsx b/icons/jsx/Power.jsx index 2aa1e570be..a25fbe36d0 100644 --- a/icons/jsx/Power.jsx +++ b/icons/jsx/Power.jsx @@ -7,9 +7,13 @@ function SvgPower(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PowerInput.jsx b/icons/jsx/PowerInput.jsx index 582b3c5bf7..52be9c053b 100644 --- a/icons/jsx/PowerInput.jsx +++ b/icons/jsx/PowerInput.jsx @@ -7,9 +7,13 @@ function SvgPowerInput(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PowerOff.jsx b/icons/jsx/PowerOff.jsx index 4357487f1a..8a0da1cb80 100644 --- a/icons/jsx/PowerOff.jsx +++ b/icons/jsx/PowerOff.jsx @@ -7,9 +7,13 @@ function SvgPowerOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PowerSettingsNew.jsx b/icons/jsx/PowerSettingsNew.jsx index bdda7b4120..0d0969bd0d 100644 --- a/icons/jsx/PowerSettingsNew.jsx +++ b/icons/jsx/PowerSettingsNew.jsx @@ -7,9 +7,13 @@ function SvgPowerSettingsNew(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PrecisionManufacturing.jsx b/icons/jsx/PrecisionManufacturing.jsx index 4c29be6bcf..f568996905 100644 --- a/icons/jsx/PrecisionManufacturing.jsx +++ b/icons/jsx/PrecisionManufacturing.jsx @@ -7,9 +7,13 @@ function SvgPrecisionManufacturing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PregnantWoman.jsx b/icons/jsx/PregnantWoman.jsx index 4197f697ba..eb4f8efabf 100644 --- a/icons/jsx/PregnantWoman.jsx +++ b/icons/jsx/PregnantWoman.jsx @@ -7,9 +7,13 @@ function SvgPregnantWoman(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PresentToAll.jsx b/icons/jsx/PresentToAll.jsx index 7de2826928..de8c56a018 100644 --- a/icons/jsx/PresentToAll.jsx +++ b/icons/jsx/PresentToAll.jsx @@ -7,9 +7,13 @@ function SvgPresentToAll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Preview.jsx b/icons/jsx/Preview.jsx index 8b1c23d85f..ddf21b45a8 100644 --- a/icons/jsx/Preview.jsx +++ b/icons/jsx/Preview.jsx @@ -7,9 +7,13 @@ function SvgPreview(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PriceChange.jsx b/icons/jsx/PriceChange.jsx index c495fac43c..66757febe8 100644 --- a/icons/jsx/PriceChange.jsx +++ b/icons/jsx/PriceChange.jsx @@ -7,9 +7,13 @@ function SvgPriceChange(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PriceCheck.jsx b/icons/jsx/PriceCheck.jsx index 909a9a1ab1..c09a226f80 100644 --- a/icons/jsx/PriceCheck.jsx +++ b/icons/jsx/PriceCheck.jsx @@ -7,9 +7,13 @@ function SvgPriceCheck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Print.jsx b/icons/jsx/Print.jsx index e89eb35ac4..306687a30b 100644 --- a/icons/jsx/Print.jsx +++ b/icons/jsx/Print.jsx @@ -7,9 +7,13 @@ function SvgPrint(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PrintDisabled.jsx b/icons/jsx/PrintDisabled.jsx index 8dac51c199..a64975f643 100644 --- a/icons/jsx/PrintDisabled.jsx +++ b/icons/jsx/PrintDisabled.jsx @@ -7,9 +7,13 @@ function SvgPrintDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PriorityHigh.jsx b/icons/jsx/PriorityHigh.jsx index 057a0919f8..357f94a53c 100644 --- a/icons/jsx/PriorityHigh.jsx +++ b/icons/jsx/PriorityHigh.jsx @@ -7,10 +7,11 @@ function SvgPriorityHigh(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PrivacyTip.jsx b/icons/jsx/PrivacyTip.jsx index c68ce73e60..c63542ae5a 100644 --- a/icons/jsx/PrivacyTip.jsx +++ b/icons/jsx/PrivacyTip.jsx @@ -7,9 +7,13 @@ function SvgPrivacyTip(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PrivateConnectivity.jsx b/icons/jsx/PrivateConnectivity.jsx index 00d8751120..e24c217609 100644 --- a/icons/jsx/PrivateConnectivity.jsx +++ b/icons/jsx/PrivateConnectivity.jsx @@ -7,9 +7,13 @@ function SvgPrivateConnectivity(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ProductionQuantityLimits.jsx b/icons/jsx/ProductionQuantityLimits.jsx index 43e3d80ecc..fde43da703 100644 --- a/icons/jsx/ProductionQuantityLimits.jsx +++ b/icons/jsx/ProductionQuantityLimits.jsx @@ -7,9 +7,13 @@ function SvgProductionQuantityLimits(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Propane.jsx b/icons/jsx/Propane.jsx index 849135416d..494e88e97b 100644 --- a/icons/jsx/Propane.jsx +++ b/icons/jsx/Propane.jsx @@ -7,9 +7,13 @@ function SvgPropane(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PropaneTank.jsx b/icons/jsx/PropaneTank.jsx index 58b15b3793..d89392d61d 100644 --- a/icons/jsx/PropaneTank.jsx +++ b/icons/jsx/PropaneTank.jsx @@ -7,9 +7,13 @@ function SvgPropaneTank(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Psychology.jsx b/icons/jsx/Psychology.jsx index 19933b6c78..9f83e4a421 100644 --- a/icons/jsx/Psychology.jsx +++ b/icons/jsx/Psychology.jsx @@ -7,10 +7,17 @@ function SvgPsychology(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/PsychologyAlt.jsx b/icons/jsx/PsychologyAlt.jsx index ec756e4bd0..1b8fc7b73d 100644 --- a/icons/jsx/PsychologyAlt.jsx +++ b/icons/jsx/PsychologyAlt.jsx @@ -7,9 +7,13 @@ function SvgPsychologyAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Public.jsx b/icons/jsx/Public.jsx index 729e1d600e..3e600de4be 100644 --- a/icons/jsx/Public.jsx +++ b/icons/jsx/Public.jsx @@ -7,9 +7,13 @@ function SvgPublic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PublicOff.jsx b/icons/jsx/PublicOff.jsx index 982921c171..89c0f4ae97 100644 --- a/icons/jsx/PublicOff.jsx +++ b/icons/jsx/PublicOff.jsx @@ -7,9 +7,13 @@ function SvgPublicOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Publish.jsx b/icons/jsx/Publish.jsx index 44688b5ce5..050edead45 100644 --- a/icons/jsx/Publish.jsx +++ b/icons/jsx/Publish.jsx @@ -7,9 +7,10 @@ function SvgPublish(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PublishedWithChanges.jsx b/icons/jsx/PublishedWithChanges.jsx index eb77e40d2d..f987e0b0dc 100644 --- a/icons/jsx/PublishedWithChanges.jsx +++ b/icons/jsx/PublishedWithChanges.jsx @@ -7,9 +7,13 @@ function SvgPublishedWithChanges(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/PunchClock.jsx b/icons/jsx/PunchClock.jsx index a3e99ce1e7..28befc92d6 100644 --- a/icons/jsx/PunchClock.jsx +++ b/icons/jsx/PunchClock.jsx @@ -7,10 +7,17 @@ function SvgPunchClock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/PushPin.jsx b/icons/jsx/PushPin.jsx index 3ed919e0f8..34ad29a3d3 100644 --- a/icons/jsx/PushPin.jsx +++ b/icons/jsx/PushPin.jsx @@ -7,11 +7,13 @@ function SvgPushPin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > ); diff --git a/icons/jsx/QrCode2.jsx b/icons/jsx/QrCode2.jsx index 8b245608cd..612047754b 100644 --- a/icons/jsx/QrCode2.jsx +++ b/icons/jsx/QrCode2.jsx @@ -7,9 +7,13 @@ function SvgQrCode2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/QrCodeScanner.jsx b/icons/jsx/QrCodeScanner.jsx index 3185a646a7..f2de27181b 100644 --- a/icons/jsx/QrCodeScanner.jsx +++ b/icons/jsx/QrCodeScanner.jsx @@ -7,9 +7,13 @@ function SvgQrCodeScanner(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Qrcode.jsx b/icons/jsx/Qrcode.jsx index 873be4b838..59a9f13f0e 100644 --- a/icons/jsx/Qrcode.jsx +++ b/icons/jsx/Qrcode.jsx @@ -7,9 +7,13 @@ function SvgQrcode(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/QueryBuilder.jsx b/icons/jsx/QueryBuilder.jsx index a70f58113a..74eb58bc22 100644 --- a/icons/jsx/QueryBuilder.jsx +++ b/icons/jsx/QueryBuilder.jsx @@ -7,9 +7,13 @@ function SvgQueryBuilder(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/QueryStats.jsx b/icons/jsx/QueryStats.jsx index 9e7489c4c0..c93115c41e 100644 --- a/icons/jsx/QueryStats.jsx +++ b/icons/jsx/QueryStats.jsx @@ -7,9 +7,13 @@ function SvgQueryStats(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Question.jsx b/icons/jsx/Question.jsx index 57247de57b..91c988918d 100644 --- a/icons/jsx/Question.jsx +++ b/icons/jsx/Question.jsx @@ -12,11 +12,11 @@ function SvgQuestion(props) { > ); diff --git a/icons/jsx/QuestionMark.jsx b/icons/jsx/QuestionMark.jsx index c6b74fd4b5..4d2d6dd188 100644 --- a/icons/jsx/QuestionMark.jsx +++ b/icons/jsx/QuestionMark.jsx @@ -7,9 +7,13 @@ function SvgQuestionMark(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Queue.jsx b/icons/jsx/Queue.jsx index 6d2f58987c..ddb374a65c 100644 --- a/icons/jsx/Queue.jsx +++ b/icons/jsx/Queue.jsx @@ -7,9 +7,13 @@ function SvgQueue(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/QueueMusic.jsx b/icons/jsx/QueueMusic.jsx index f51ebbede0..b74937d5b8 100644 --- a/icons/jsx/QueueMusic.jsx +++ b/icons/jsx/QueueMusic.jsx @@ -7,9 +7,13 @@ function SvgQueueMusic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/QueuePlayNext.jsx b/icons/jsx/QueuePlayNext.jsx index c0d715b38b..c1ed6d96b0 100644 --- a/icons/jsx/QueuePlayNext.jsx +++ b/icons/jsx/QueuePlayNext.jsx @@ -7,9 +7,13 @@ function SvgQueuePlayNext(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Quickreply.jsx b/icons/jsx/Quickreply.jsx index 6d41a25ca3..aebf0796e3 100644 --- a/icons/jsx/Quickreply.jsx +++ b/icons/jsx/Quickreply.jsx @@ -7,10 +7,11 @@ function SvgQuickreply(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Quiz.jsx b/icons/jsx/Quiz.jsx index c339b733e7..f7b7f596d6 100644 --- a/icons/jsx/Quiz.jsx +++ b/icons/jsx/Quiz.jsx @@ -7,10 +7,14 @@ function SvgQuiz(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Quora.jsx b/icons/jsx/Quora.jsx index e47e287948..bcebdb10df 100644 --- a/icons/jsx/Quora.jsx +++ b/icons/jsx/Quora.jsx @@ -7,9 +7,13 @@ function SvgQuora(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RMobiledata.jsx b/icons/jsx/RMobiledata.jsx index 62f9ac71cd..383969e485 100644 --- a/icons/jsx/RMobiledata.jsx +++ b/icons/jsx/RMobiledata.jsx @@ -7,9 +7,13 @@ function SvgRMobiledata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Radar.jsx b/icons/jsx/Radar.jsx index c3af034bba..6fb629f8f8 100644 --- a/icons/jsx/Radar.jsx +++ b/icons/jsx/Radar.jsx @@ -7,9 +7,13 @@ function SvgRadar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Radio.jsx b/icons/jsx/Radio.jsx index 79ae33eb43..957ead3c52 100644 --- a/icons/jsx/Radio.jsx +++ b/icons/jsx/Radio.jsx @@ -7,9 +7,13 @@ function SvgRadio(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RailwayAlert.jsx b/icons/jsx/RailwayAlert.jsx index d7ae2bf715..f510d3da6b 100644 --- a/icons/jsx/RailwayAlert.jsx +++ b/icons/jsx/RailwayAlert.jsx @@ -7,10 +7,17 @@ function SvgRailwayAlert(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/RamenDining.jsx b/icons/jsx/RamenDining.jsx index 01eff6d03e..914a807743 100644 --- a/icons/jsx/RamenDining.jsx +++ b/icons/jsx/RamenDining.jsx @@ -7,9 +7,13 @@ function SvgRamenDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RampLeft.jsx b/icons/jsx/RampLeft.jsx index d62f58bcd1..41b54ecc73 100644 --- a/icons/jsx/RampLeft.jsx +++ b/icons/jsx/RampLeft.jsx @@ -7,9 +7,13 @@ function SvgRampLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RampRight.jsx b/icons/jsx/RampRight.jsx index 9540ee6148..30ca118a0e 100644 --- a/icons/jsx/RampRight.jsx +++ b/icons/jsx/RampRight.jsx @@ -7,9 +7,13 @@ function SvgRampRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RateReview.jsx b/icons/jsx/RateReview.jsx index bc8b47b26a..aee02fb5b0 100644 --- a/icons/jsx/RateReview.jsx +++ b/icons/jsx/RateReview.jsx @@ -7,9 +7,13 @@ function SvgRateReview(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RawOff.jsx b/icons/jsx/RawOff.jsx index 9a2892ffd4..1d65837e0b 100644 --- a/icons/jsx/RawOff.jsx +++ b/icons/jsx/RawOff.jsx @@ -7,9 +7,13 @@ function SvgRawOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RawOn.jsx b/icons/jsx/RawOn.jsx index 4dff971310..2bd23d42b1 100644 --- a/icons/jsx/RawOn.jsx +++ b/icons/jsx/RawOn.jsx @@ -7,9 +7,13 @@ function SvgRawOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ReadMore.jsx b/icons/jsx/ReadMore.jsx index 17c54db0ff..94756dde6f 100644 --- a/icons/jsx/ReadMore.jsx +++ b/icons/jsx/ReadMore.jsx @@ -7,9 +7,13 @@ function SvgReadMore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RealEstateAgent.jsx b/icons/jsx/RealEstateAgent.jsx index dac7056a37..c2945eacac 100644 --- a/icons/jsx/RealEstateAgent.jsx +++ b/icons/jsx/RealEstateAgent.jsx @@ -7,9 +7,13 @@ function SvgRealEstateAgent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Receipt.jsx b/icons/jsx/Receipt.jsx index 8cde215e30..4b02bc5be4 100644 --- a/icons/jsx/Receipt.jsx +++ b/icons/jsx/Receipt.jsx @@ -7,9 +7,13 @@ function SvgReceipt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ReceiptLong.jsx b/icons/jsx/ReceiptLong.jsx index 76623097f6..cc5c3e2027 100644 --- a/icons/jsx/ReceiptLong.jsx +++ b/icons/jsx/ReceiptLong.jsx @@ -7,10 +7,17 @@ function SvgReceiptLong(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/RecentActors.jsx b/icons/jsx/RecentActors.jsx index 15c8cc4955..ed45437abe 100644 --- a/icons/jsx/RecentActors.jsx +++ b/icons/jsx/RecentActors.jsx @@ -7,9 +7,13 @@ function SvgRecentActors(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Recommend.jsx b/icons/jsx/Recommend.jsx index 8f47b9d7ae..41337f21e6 100644 --- a/icons/jsx/Recommend.jsx +++ b/icons/jsx/Recommend.jsx @@ -7,9 +7,13 @@ function SvgRecommend(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RecordVoiceOver.jsx b/icons/jsx/RecordVoiceOver.jsx index 2c604b1873..7a7f8672d2 100644 --- a/icons/jsx/RecordVoiceOver.jsx +++ b/icons/jsx/RecordVoiceOver.jsx @@ -7,10 +7,14 @@ function SvgRecordVoiceOver(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Rectangle.jsx b/icons/jsx/Rectangle.jsx index 184121e60c..95e2d25a7e 100644 --- a/icons/jsx/Rectangle.jsx +++ b/icons/jsx/Rectangle.jsx @@ -7,9 +7,10 @@ function SvgRectangle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Recycling.jsx b/icons/jsx/Recycling.jsx index e4c7ebc959..0f55321e7e 100644 --- a/icons/jsx/Recycling.jsx +++ b/icons/jsx/Recycling.jsx @@ -7,9 +7,13 @@ function SvgRecycling(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Reddit.jsx b/icons/jsx/Reddit.jsx index 2c45a19cdb..eddc2380c9 100644 --- a/icons/jsx/Reddit.jsx +++ b/icons/jsx/Reddit.jsx @@ -7,10 +7,17 @@ function SvgReddit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Redeem.jsx b/icons/jsx/Redeem.jsx index 4b3d052123..7766ea1605 100644 --- a/icons/jsx/Redeem.jsx +++ b/icons/jsx/Redeem.jsx @@ -7,9 +7,13 @@ function SvgRedeem(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ReduceCapacity.jsx b/icons/jsx/ReduceCapacity.jsx index eb3000944c..8bec0e91ce 100644 --- a/icons/jsx/ReduceCapacity.jsx +++ b/icons/jsx/ReduceCapacity.jsx @@ -7,9 +7,13 @@ function SvgReduceCapacity(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Refresh.jsx b/icons/jsx/Refresh.jsx index d3c27ef51d..47bd49cd7f 100644 --- a/icons/jsx/Refresh.jsx +++ b/icons/jsx/Refresh.jsx @@ -7,9 +7,13 @@ function SvgRefresh(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RememberMe.jsx b/icons/jsx/RememberMe.jsx index 3a69e824ce..35e756f99e 100644 --- a/icons/jsx/RememberMe.jsx +++ b/icons/jsx/RememberMe.jsx @@ -7,9 +7,13 @@ function SvgRememberMe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/RemoveCircleOutline.jsx b/icons/jsx/RemoveCircleOutline.jsx index 522d8573a7..632609ffe4 100644 --- a/icons/jsx/RemoveCircleOutline.jsx +++ b/icons/jsx/RemoveCircleOutline.jsx @@ -7,9 +7,13 @@ function SvgRemoveCircleOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RemoveDone.jsx b/icons/jsx/RemoveDone.jsx index 59575cb0a9..739ec22f98 100644 --- a/icons/jsx/RemoveDone.jsx +++ b/icons/jsx/RemoveDone.jsx @@ -7,9 +7,13 @@ function SvgRemoveDone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RemoveFromQueue.jsx b/icons/jsx/RemoveFromQueue.jsx index 67d0d1c30e..bc6eed8abc 100644 --- a/icons/jsx/RemoveFromQueue.jsx +++ b/icons/jsx/RemoveFromQueue.jsx @@ -7,9 +7,13 @@ function SvgRemoveFromQueue(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RemoveModerator.jsx b/icons/jsx/RemoveModerator.jsx index 970d148d8d..874c9f1ef1 100644 --- a/icons/jsx/RemoveModerator.jsx +++ b/icons/jsx/RemoveModerator.jsx @@ -7,9 +7,13 @@ function SvgRemoveModerator(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RemoveRedEye.jsx b/icons/jsx/RemoveRedEye.jsx index f7e4995f04..5ca2a60c87 100644 --- a/icons/jsx/RemoveRedEye.jsx +++ b/icons/jsx/RemoveRedEye.jsx @@ -7,9 +7,13 @@ function SvgRemoveRedEye(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RemoveRoad.jsx b/icons/jsx/RemoveRoad.jsx index 80cb321cb4..c2056c8bf4 100644 --- a/icons/jsx/RemoveRoad.jsx +++ b/icons/jsx/RemoveRoad.jsx @@ -7,9 +7,13 @@ function SvgRemoveRoad(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RemoveShoppingCart.jsx b/icons/jsx/RemoveShoppingCart.jsx index 6f9c6735b7..1801ce2ba2 100644 --- a/icons/jsx/RemoveShoppingCart.jsx +++ b/icons/jsx/RemoveShoppingCart.jsx @@ -7,9 +7,13 @@ function SvgRemoveShoppingCart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Reorder.jsx b/icons/jsx/Reorder.jsx index bb74c2e22a..a0ab9e2244 100644 --- a/icons/jsx/Reorder.jsx +++ b/icons/jsx/Reorder.jsx @@ -7,9 +7,13 @@ function SvgReorder(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Repartition.jsx b/icons/jsx/Repartition.jsx index 88e3dd46c6..b50a2f9ac0 100644 --- a/icons/jsx/Repartition.jsx +++ b/icons/jsx/Repartition.jsx @@ -7,9 +7,13 @@ function SvgRepartition(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Repeat.jsx b/icons/jsx/Repeat.jsx index 947a202f88..78068b93ac 100644 --- a/icons/jsx/Repeat.jsx +++ b/icons/jsx/Repeat.jsx @@ -7,9 +7,13 @@ function SvgRepeat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RepeatOn.jsx b/icons/jsx/RepeatOn.jsx index 9957ab4fb5..96fe94c2ab 100644 --- a/icons/jsx/RepeatOn.jsx +++ b/icons/jsx/RepeatOn.jsx @@ -7,9 +7,13 @@ function SvgRepeatOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RepeatOne.jsx b/icons/jsx/RepeatOne.jsx index 61ea6a660b..d709add4f5 100644 --- a/icons/jsx/RepeatOne.jsx +++ b/icons/jsx/RepeatOne.jsx @@ -7,9 +7,13 @@ function SvgRepeatOne(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RepeatOneOn.jsx b/icons/jsx/RepeatOneOn.jsx index b0dbd0dbc8..9e93af467b 100644 --- a/icons/jsx/RepeatOneOn.jsx +++ b/icons/jsx/RepeatOneOn.jsx @@ -7,9 +7,13 @@ function SvgRepeatOneOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Replay.jsx b/icons/jsx/Replay.jsx index 9200088211..1406c71115 100644 --- a/icons/jsx/Replay.jsx +++ b/icons/jsx/Replay.jsx @@ -7,9 +7,13 @@ function SvgReplay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Replay10.jsx b/icons/jsx/Replay10.jsx index b40b1555c0..dba7554a06 100644 --- a/icons/jsx/Replay10.jsx +++ b/icons/jsx/Replay10.jsx @@ -7,9 +7,13 @@ function SvgReplay10(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Replay30.jsx b/icons/jsx/Replay30.jsx index eb46235071..562d29723d 100644 --- a/icons/jsx/Replay30.jsx +++ b/icons/jsx/Replay30.jsx @@ -7,9 +7,13 @@ function SvgReplay30(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Replay5.jsx b/icons/jsx/Replay5.jsx index 9aac8e8a43..791ee9ae96 100644 --- a/icons/jsx/Replay5.jsx +++ b/icons/jsx/Replay5.jsx @@ -7,9 +7,13 @@ function SvgReplay5(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ReplayCircleFilled.jsx b/icons/jsx/ReplayCircleFilled.jsx index 455a577725..a034d96671 100644 --- a/icons/jsx/ReplayCircleFilled.jsx +++ b/icons/jsx/ReplayCircleFilled.jsx @@ -7,9 +7,13 @@ function SvgReplayCircleFilled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Reply.jsx b/icons/jsx/Reply.jsx index d005e4d323..5bb83eaf41 100644 --- a/icons/jsx/Reply.jsx +++ b/icons/jsx/Reply.jsx @@ -7,9 +7,13 @@ function SvgReply(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ReplyAll.jsx b/icons/jsx/ReplyAll.jsx index 96dbfb0af6..5fde3e58a4 100644 --- a/icons/jsx/ReplyAll.jsx +++ b/icons/jsx/ReplyAll.jsx @@ -7,9 +7,13 @@ function SvgReplyAll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ReportGmailerrorred.jsx b/icons/jsx/ReportGmailerrorred.jsx index c9d20ec8de..5099d9f442 100644 --- a/icons/jsx/ReportGmailerrorred.jsx +++ b/icons/jsx/ReportGmailerrorred.jsx @@ -7,11 +7,15 @@ function SvgReportGmailerrorred(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/ReportOff.jsx b/icons/jsx/ReportOff.jsx index 12dcbc4a30..9d9203c8a2 100644 --- a/icons/jsx/ReportOff.jsx +++ b/icons/jsx/ReportOff.jsx @@ -7,9 +7,13 @@ function SvgReportOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ReportProblem.jsx b/icons/jsx/ReportProblem.jsx index a2c7becbf2..98adf67105 100644 --- a/icons/jsx/ReportProblem.jsx +++ b/icons/jsx/ReportProblem.jsx @@ -7,9 +7,13 @@ function SvgReportProblem(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RequestPage.jsx b/icons/jsx/RequestPage.jsx index 609b882847..a0719c3d5d 100644 --- a/icons/jsx/RequestPage.jsx +++ b/icons/jsx/RequestPage.jsx @@ -7,9 +7,13 @@ function SvgRequestPage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RequestQuote.jsx b/icons/jsx/RequestQuote.jsx index 8aaabd004a..fc6ba93eb4 100644 --- a/icons/jsx/RequestQuote.jsx +++ b/icons/jsx/RequestQuote.jsx @@ -7,9 +7,13 @@ function SvgRequestQuote(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ResetTv.jsx b/icons/jsx/ResetTv.jsx index a28f0bbdb4..9dd4fb2838 100644 --- a/icons/jsx/ResetTv.jsx +++ b/icons/jsx/ResetTv.jsx @@ -7,9 +7,13 @@ function SvgResetTv(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RestartAlt.jsx b/icons/jsx/RestartAlt.jsx index 6a3fe26fd7..53f9f9df9b 100644 --- a/icons/jsx/RestartAlt.jsx +++ b/icons/jsx/RestartAlt.jsx @@ -7,9 +7,13 @@ function SvgRestartAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Restaurant.jsx b/icons/jsx/Restaurant.jsx index e332e46d6b..dbc371219c 100644 --- a/icons/jsx/Restaurant.jsx +++ b/icons/jsx/Restaurant.jsx @@ -7,9 +7,13 @@ function SvgRestaurant(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RestaurantMenu.jsx b/icons/jsx/RestaurantMenu.jsx index 849b399aed..6246d9fa95 100644 --- a/icons/jsx/RestaurantMenu.jsx +++ b/icons/jsx/RestaurantMenu.jsx @@ -7,9 +7,13 @@ function SvgRestaurantMenu(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Restore.jsx b/icons/jsx/Restore.jsx index bcbcd3044c..73d070b24a 100644 --- a/icons/jsx/Restore.jsx +++ b/icons/jsx/Restore.jsx @@ -7,9 +7,13 @@ function SvgRestore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RestoreFromTrash.jsx b/icons/jsx/RestoreFromTrash.jsx index cb4b39d495..18a9c578a1 100644 --- a/icons/jsx/RestoreFromTrash.jsx +++ b/icons/jsx/RestoreFromTrash.jsx @@ -7,9 +7,13 @@ function SvgRestoreFromTrash(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RestorePage.jsx b/icons/jsx/RestorePage.jsx index 8f7615f767..86df52cf8e 100644 --- a/icons/jsx/RestorePage.jsx +++ b/icons/jsx/RestorePage.jsx @@ -7,9 +7,13 @@ function SvgRestorePage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Reviews.jsx b/icons/jsx/Reviews.jsx index 6477ad9ba8..b2cf3229a6 100644 --- a/icons/jsx/Reviews.jsx +++ b/icons/jsx/Reviews.jsx @@ -7,9 +7,13 @@ function SvgReviews(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RiceBowl.jsx b/icons/jsx/RiceBowl.jsx index 53527b0b95..a7cdfd784e 100644 --- a/icons/jsx/RiceBowl.jsx +++ b/icons/jsx/RiceBowl.jsx @@ -7,9 +7,13 @@ function SvgRiceBowl(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RingVolume.jsx b/icons/jsx/RingVolume.jsx index df98fea15d..8f108903fb 100644 --- a/icons/jsx/RingVolume.jsx +++ b/icons/jsx/RingVolume.jsx @@ -7,9 +7,13 @@ function SvgRingVolume(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Rocket.jsx b/icons/jsx/Rocket.jsx index 3b54988b8d..27c86ba49b 100644 --- a/icons/jsx/Rocket.jsx +++ b/icons/jsx/Rocket.jsx @@ -7,9 +7,13 @@ function SvgRocket(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RocketLaunch.jsx b/icons/jsx/RocketLaunch.jsx index b96940e379..0dbbd9630d 100644 --- a/icons/jsx/RocketLaunch.jsx +++ b/icons/jsx/RocketLaunch.jsx @@ -7,9 +7,13 @@ function SvgRocketLaunch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RollerShades.jsx b/icons/jsx/RollerShades.jsx index 088096c74b..49d2e74f9e 100644 --- a/icons/jsx/RollerShades.jsx +++ b/icons/jsx/RollerShades.jsx @@ -7,9 +7,13 @@ function SvgRollerShades(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RollerShadesClosed.jsx b/icons/jsx/RollerShadesClosed.jsx index b59cb877b4..890cc70a25 100644 --- a/icons/jsx/RollerShadesClosed.jsx +++ b/icons/jsx/RollerShadesClosed.jsx @@ -7,9 +7,13 @@ function SvgRollerShadesClosed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RollerSkating.jsx b/icons/jsx/RollerSkating.jsx index e06f018f60..3dc8c10e0d 100644 --- a/icons/jsx/RollerSkating.jsx +++ b/icons/jsx/RollerSkating.jsx @@ -7,9 +7,13 @@ function SvgRollerSkating(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Roofing.jsx b/icons/jsx/Roofing.jsx index 359aeccf75..dd28c2566e 100644 --- a/icons/jsx/Roofing.jsx +++ b/icons/jsx/Roofing.jsx @@ -7,9 +7,13 @@ function SvgRoofing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Room.jsx b/icons/jsx/Room.jsx index 1f5e82d122..9b6c5cb3c9 100644 --- a/icons/jsx/Room.jsx +++ b/icons/jsx/Room.jsx @@ -7,9 +7,13 @@ function SvgRoom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RoomPreferences.jsx b/icons/jsx/RoomPreferences.jsx index 8dedf57964..eb6d13ca22 100644 --- a/icons/jsx/RoomPreferences.jsx +++ b/icons/jsx/RoomPreferences.jsx @@ -7,9 +7,13 @@ function SvgRoomPreferences(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RoomService.jsx b/icons/jsx/RoomService.jsx index 50979232be..9f93a7dba5 100644 --- a/icons/jsx/RoomService.jsx +++ b/icons/jsx/RoomService.jsx @@ -7,9 +7,13 @@ function SvgRoomService(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Rotate90DegreesCcw.jsx b/icons/jsx/Rotate90DegreesCcw.jsx index 23b64c7ebd..5e1de30755 100644 --- a/icons/jsx/Rotate90DegreesCcw.jsx +++ b/icons/jsx/Rotate90DegreesCcw.jsx @@ -7,9 +7,13 @@ function SvgRotate90DegreesCcw(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Rotate90DegreesCw.jsx b/icons/jsx/Rotate90DegreesCw.jsx index 56b9bbc258..afc65f82a4 100644 --- a/icons/jsx/Rotate90DegreesCw.jsx +++ b/icons/jsx/Rotate90DegreesCw.jsx @@ -7,10 +7,14 @@ function SvgRotate90DegreesCw(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/RotateLeft.jsx b/icons/jsx/RotateLeft.jsx index 219a7a6936..c5670d18d2 100644 --- a/icons/jsx/RotateLeft.jsx +++ b/icons/jsx/RotateLeft.jsx @@ -7,9 +7,13 @@ function SvgRotateLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RotateRight.jsx b/icons/jsx/RotateRight.jsx index 383bfb3e0e..9972438873 100644 --- a/icons/jsx/RotateRight.jsx +++ b/icons/jsx/RotateRight.jsx @@ -7,9 +7,13 @@ function SvgRotateRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RoundaboutLeft.jsx b/icons/jsx/RoundaboutLeft.jsx index d429a2daa9..51e09006b9 100644 --- a/icons/jsx/RoundaboutLeft.jsx +++ b/icons/jsx/RoundaboutLeft.jsx @@ -7,9 +7,13 @@ function SvgRoundaboutLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RoundaboutRight.jsx b/icons/jsx/RoundaboutRight.jsx index 1ec0beb378..1aa87db762 100644 --- a/icons/jsx/RoundaboutRight.jsx +++ b/icons/jsx/RoundaboutRight.jsx @@ -7,9 +7,13 @@ function SvgRoundaboutRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RoundedCorner.jsx b/icons/jsx/RoundedCorner.jsx index db2716a770..7b9087a1ea 100644 --- a/icons/jsx/RoundedCorner.jsx +++ b/icons/jsx/RoundedCorner.jsx @@ -7,9 +7,13 @@ function SvgRoundedCorner(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Route.jsx b/icons/jsx/Route.jsx index 7ee7e61f3a..0554914a39 100644 --- a/icons/jsx/Route.jsx +++ b/icons/jsx/Route.jsx @@ -7,9 +7,13 @@ function SvgRoute(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Router.jsx b/icons/jsx/Router.jsx index 20cddd652c..db4270cefb 100644 --- a/icons/jsx/Router.jsx +++ b/icons/jsx/Router.jsx @@ -7,9 +7,13 @@ function SvgRouter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Rowing.jsx b/icons/jsx/Rowing.jsx index b935c5e696..47ce413a23 100644 --- a/icons/jsx/Rowing.jsx +++ b/icons/jsx/Rowing.jsx @@ -7,9 +7,13 @@ function SvgRowing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RssFeed.jsx b/icons/jsx/RssFeed.jsx index 77f1463228..07d2fa03a7 100644 --- a/icons/jsx/RssFeed.jsx +++ b/icons/jsx/RssFeed.jsx @@ -7,10 +7,14 @@ function SvgRssFeed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Rsvp.jsx b/icons/jsx/Rsvp.jsx index c8a3592bb0..6aa743bbc9 100644 --- a/icons/jsx/Rsvp.jsx +++ b/icons/jsx/Rsvp.jsx @@ -7,9 +7,13 @@ function SvgRsvp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Rtt.jsx b/icons/jsx/Rtt.jsx index 0443b0ba04..b26cd2c309 100644 --- a/icons/jsx/Rtt.jsx +++ b/icons/jsx/Rtt.jsx @@ -7,9 +7,13 @@ function SvgRtt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Rule.jsx b/icons/jsx/Rule.jsx index 725d560342..8adb29a497 100644 --- a/icons/jsx/Rule.jsx +++ b/icons/jsx/Rule.jsx @@ -7,9 +7,13 @@ function SvgRule(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RuleFolder.jsx b/icons/jsx/RuleFolder.jsx index 0d99b2019d..ab054a443e 100644 --- a/icons/jsx/RuleFolder.jsx +++ b/icons/jsx/RuleFolder.jsx @@ -7,9 +7,13 @@ function SvgRuleFolder(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RunCircle.jsx b/icons/jsx/RunCircle.jsx index 49cb0245ea..dda0c1340d 100644 --- a/icons/jsx/RunCircle.jsx +++ b/icons/jsx/RunCircle.jsx @@ -7,9 +7,13 @@ function SvgRunCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RunningWithErrors.jsx b/icons/jsx/RunningWithErrors.jsx index a03aa8c0e0..1958a012b0 100644 --- a/icons/jsx/RunningWithErrors.jsx +++ b/icons/jsx/RunningWithErrors.jsx @@ -7,9 +7,13 @@ function SvgRunningWithErrors(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/RvHookup.jsx b/icons/jsx/RvHookup.jsx index 4cf7859f71..4638a47aab 100644 --- a/icons/jsx/RvHookup.jsx +++ b/icons/jsx/RvHookup.jsx @@ -7,9 +7,13 @@ function SvgRvHookup(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SafetyCheck.jsx b/icons/jsx/SafetyCheck.jsx index 535e4720c4..09a7fc1c3d 100644 --- a/icons/jsx/SafetyCheck.jsx +++ b/icons/jsx/SafetyCheck.jsx @@ -7,9 +7,13 @@ function SvgSafetyCheck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SafetyDivider.jsx b/icons/jsx/SafetyDivider.jsx index 1a950ae015..2a45cb0148 100644 --- a/icons/jsx/SafetyDivider.jsx +++ b/icons/jsx/SafetyDivider.jsx @@ -7,9 +7,13 @@ function SvgSafetyDivider(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sailing.jsx b/icons/jsx/Sailing.jsx index ddebd7b141..56ab61617d 100644 --- a/icons/jsx/Sailing.jsx +++ b/icons/jsx/Sailing.jsx @@ -7,9 +7,13 @@ function SvgSailing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sanitizer.jsx b/icons/jsx/Sanitizer.jsx index cf9a6dd8a7..b23dfaaf91 100644 --- a/icons/jsx/Sanitizer.jsx +++ b/icons/jsx/Sanitizer.jsx @@ -7,9 +7,13 @@ function SvgSanitizer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Satellite.jsx b/icons/jsx/Satellite.jsx index 5eab1491ea..cba6000de9 100644 --- a/icons/jsx/Satellite.jsx +++ b/icons/jsx/Satellite.jsx @@ -7,9 +7,13 @@ function SvgSatellite(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SatelliteAlt.jsx b/icons/jsx/SatelliteAlt.jsx index 61bfd69939..be11eac15a 100644 --- a/icons/jsx/SatelliteAlt.jsx +++ b/icons/jsx/SatelliteAlt.jsx @@ -7,9 +7,13 @@ function SvgSatelliteAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Save.jsx b/icons/jsx/Save.jsx index afccd39ae1..64f1c1b417 100644 --- a/icons/jsx/Save.jsx +++ b/icons/jsx/Save.jsx @@ -7,9 +7,13 @@ function SvgSave(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SaveAll.jsx b/icons/jsx/SaveAll.jsx index c895ad174d..05b03ea847 100644 --- a/icons/jsx/SaveAll.jsx +++ b/icons/jsx/SaveAll.jsx @@ -7,14 +7,16 @@ function SvgSaveAll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SaveAlt.jsx b/icons/jsx/SaveAlt.jsx index fa2b1b79c6..85b7256dea 100644 --- a/icons/jsx/SaveAlt.jsx +++ b/icons/jsx/SaveAlt.jsx @@ -7,9 +7,13 @@ function SvgSaveAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SaveAs.jsx b/icons/jsx/SaveAs.jsx index 8c4f9974ab..b5c8744589 100644 --- a/icons/jsx/SaveAs.jsx +++ b/icons/jsx/SaveAs.jsx @@ -7,9 +7,13 @@ function SvgSaveAs(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SavedSearch.jsx b/icons/jsx/SavedSearch.jsx index 0c7cbb23fd..34b90bccdd 100644 --- a/icons/jsx/SavedSearch.jsx +++ b/icons/jsx/SavedSearch.jsx @@ -7,10 +7,17 @@ function SvgSavedSearch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Savings.jsx b/icons/jsx/Savings.jsx index 89be37c0f3..ff24d45e58 100644 --- a/icons/jsx/Savings.jsx +++ b/icons/jsx/Savings.jsx @@ -7,9 +7,13 @@ function SvgSavings(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Scale.jsx b/icons/jsx/Scale.jsx index e6de4538c2..f7e6c95e75 100644 --- a/icons/jsx/Scale.jsx +++ b/icons/jsx/Scale.jsx @@ -7,9 +7,13 @@ function SvgScale(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Scanner.jsx b/icons/jsx/Scanner.jsx index e137af3d72..0b2977dd06 100644 --- a/icons/jsx/Scanner.jsx +++ b/icons/jsx/Scanner.jsx @@ -7,9 +7,13 @@ function SvgScanner(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScatterPlot.jsx b/icons/jsx/ScatterPlot.jsx index 36f8c78046..7fbf300080 100644 --- a/icons/jsx/ScatterPlot.jsx +++ b/icons/jsx/ScatterPlot.jsx @@ -7,6 +7,7 @@ function SvgScatterPlot(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > diff --git a/icons/jsx/Schedule.jsx b/icons/jsx/Schedule.jsx index 3665c1e90f..42b038703e 100644 --- a/icons/jsx/Schedule.jsx +++ b/icons/jsx/Schedule.jsx @@ -7,9 +7,13 @@ function SvgSchedule(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScheduleSend.jsx b/icons/jsx/ScheduleSend.jsx index cbf2334980..ec03222431 100644 --- a/icons/jsx/ScheduleSend.jsx +++ b/icons/jsx/ScheduleSend.jsx @@ -7,10 +7,17 @@ function SvgScheduleSend(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Schema.jsx b/icons/jsx/Schema.jsx index 3de0b64a3a..f30231141f 100644 --- a/icons/jsx/Schema.jsx +++ b/icons/jsx/Schema.jsx @@ -7,9 +7,13 @@ function SvgSchema(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Science.jsx b/icons/jsx/Science.jsx index caebf200fb..dd530b2d72 100644 --- a/icons/jsx/Science.jsx +++ b/icons/jsx/Science.jsx @@ -7,9 +7,13 @@ function SvgScience(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Score.jsx b/icons/jsx/Score.jsx index b185d66671..0aa03fa64f 100644 --- a/icons/jsx/Score.jsx +++ b/icons/jsx/Score.jsx @@ -7,9 +7,13 @@ function SvgScore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Scoreboard.jsx b/icons/jsx/Scoreboard.jsx index 745917b078..307bd9816f 100644 --- a/icons/jsx/Scoreboard.jsx +++ b/icons/jsx/Scoreboard.jsx @@ -7,9 +7,13 @@ function SvgScoreboard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScreenLockLandscape.jsx b/icons/jsx/ScreenLockLandscape.jsx index 635e75b0c0..d88449b991 100644 --- a/icons/jsx/ScreenLockLandscape.jsx +++ b/icons/jsx/ScreenLockLandscape.jsx @@ -7,9 +7,13 @@ function SvgScreenLockLandscape(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScreenLockPortrait.jsx b/icons/jsx/ScreenLockPortrait.jsx index 664e740f0f..5216706d5f 100644 --- a/icons/jsx/ScreenLockPortrait.jsx +++ b/icons/jsx/ScreenLockPortrait.jsx @@ -7,9 +7,13 @@ function SvgScreenLockPortrait(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScreenLockRotation.jsx b/icons/jsx/ScreenLockRotation.jsx index fb425dbef3..3ab8ea1272 100644 --- a/icons/jsx/ScreenLockRotation.jsx +++ b/icons/jsx/ScreenLockRotation.jsx @@ -7,9 +7,13 @@ function SvgScreenLockRotation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScreenRotation.jsx b/icons/jsx/ScreenRotation.jsx index e606c95f04..045578d624 100644 --- a/icons/jsx/ScreenRotation.jsx +++ b/icons/jsx/ScreenRotation.jsx @@ -7,9 +7,13 @@ function SvgScreenRotation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScreenRotationAlt.jsx b/icons/jsx/ScreenRotationAlt.jsx index c23fab1d44..6c0912e71f 100644 --- a/icons/jsx/ScreenRotationAlt.jsx +++ b/icons/jsx/ScreenRotationAlt.jsx @@ -7,9 +7,13 @@ function SvgScreenRotationAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScreenSearchDesktop.jsx b/icons/jsx/ScreenSearchDesktop.jsx index 593aff5125..45dc3a3722 100644 --- a/icons/jsx/ScreenSearchDesktop.jsx +++ b/icons/jsx/ScreenSearchDesktop.jsx @@ -7,9 +7,13 @@ function SvgScreenSearchDesktop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/ScreenShare.jsx b/icons/jsx/ScreenShare.jsx index c6db7d903e..cb0e724827 100644 --- a/icons/jsx/ScreenShare.jsx +++ b/icons/jsx/ScreenShare.jsx @@ -7,9 +7,13 @@ function SvgScreenShare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Screenshot.jsx b/icons/jsx/Screenshot.jsx index 6c22f036b9..9af3f17c02 100644 --- a/icons/jsx/Screenshot.jsx +++ b/icons/jsx/Screenshot.jsx @@ -7,9 +7,13 @@ function SvgScreenshot(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ScreenshotMonitor.jsx b/icons/jsx/ScreenshotMonitor.jsx index 2b4cae2140..3ee53865a5 100644 --- a/icons/jsx/ScreenshotMonitor.jsx +++ b/icons/jsx/ScreenshotMonitor.jsx @@ -7,10 +7,14 @@ function SvgScreenshotMonitor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/ScubaDiving.jsx b/icons/jsx/ScubaDiving.jsx index fd8515043c..9396e5e156 100644 --- a/icons/jsx/ScubaDiving.jsx +++ b/icons/jsx/ScubaDiving.jsx @@ -7,9 +7,13 @@ function SvgScubaDiving(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sd.jsx b/icons/jsx/Sd.jsx index 9288fd8b42..379235692f 100644 --- a/icons/jsx/Sd.jsx +++ b/icons/jsx/Sd.jsx @@ -7,9 +7,13 @@ function SvgSd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SdCard.jsx b/icons/jsx/SdCard.jsx index ab94b18285..de68523495 100644 --- a/icons/jsx/SdCard.jsx +++ b/icons/jsx/SdCard.jsx @@ -7,9 +7,13 @@ function SvgSdCard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SdCardAlert.jsx b/icons/jsx/SdCardAlert.jsx index b4367ab342..58874fded8 100644 --- a/icons/jsx/SdCardAlert.jsx +++ b/icons/jsx/SdCardAlert.jsx @@ -7,9 +7,13 @@ function SvgSdCardAlert(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SdStorage.jsx b/icons/jsx/SdStorage.jsx index 0b0b5c5b67..61b94e8a82 100644 --- a/icons/jsx/SdStorage.jsx +++ b/icons/jsx/SdStorage.jsx @@ -7,9 +7,13 @@ function SvgSdStorage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SearchOff.jsx b/icons/jsx/SearchOff.jsx index 0caa7147ce..a9f58503a8 100644 --- a/icons/jsx/SearchOff.jsx +++ b/icons/jsx/SearchOff.jsx @@ -7,10 +7,17 @@ function SvgSearchOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Security.jsx b/icons/jsx/Security.jsx index c6ea8ba907..6b3aa89c4c 100644 --- a/icons/jsx/Security.jsx +++ b/icons/jsx/Security.jsx @@ -7,9 +7,13 @@ function SvgSecurity(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SecurityUpdate.jsx b/icons/jsx/SecurityUpdate.jsx index 471849d5f9..49002eec2c 100644 --- a/icons/jsx/SecurityUpdate.jsx +++ b/icons/jsx/SecurityUpdate.jsx @@ -7,9 +7,13 @@ function SvgSecurityUpdate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SecurityUpdateGood.jsx b/icons/jsx/SecurityUpdateGood.jsx index a9a6d8ab5c..220a7f6194 100644 --- a/icons/jsx/SecurityUpdateGood.jsx +++ b/icons/jsx/SecurityUpdateGood.jsx @@ -7,9 +7,13 @@ function SvgSecurityUpdateGood(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SecurityUpdateWarning.jsx b/icons/jsx/SecurityUpdateWarning.jsx index b866229bf3..35f0084320 100644 --- a/icons/jsx/SecurityUpdateWarning.jsx +++ b/icons/jsx/SecurityUpdateWarning.jsx @@ -7,10 +7,11 @@ function SvgSecurityUpdateWarning(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Segment.jsx b/icons/jsx/Segment.jsx index 7ae6d6c564..565e2a3560 100644 --- a/icons/jsx/Segment.jsx +++ b/icons/jsx/Segment.jsx @@ -7,9 +7,13 @@ function SvgSegment(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SelectAll.jsx b/icons/jsx/SelectAll.jsx index fbe49cd2e5..6c2dc849d8 100644 --- a/icons/jsx/SelectAll.jsx +++ b/icons/jsx/SelectAll.jsx @@ -7,9 +7,13 @@ function SvgSelectAll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SelfImprovement.jsx b/icons/jsx/SelfImprovement.jsx index 4a11316ee9..9f634a2ad2 100644 --- a/icons/jsx/SelfImprovement.jsx +++ b/icons/jsx/SelfImprovement.jsx @@ -7,10 +7,14 @@ function SvgSelfImprovement(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sell.jsx b/icons/jsx/Sell.jsx index 9fd169bb23..fada73530d 100644 --- a/icons/jsx/Sell.jsx +++ b/icons/jsx/Sell.jsx @@ -7,9 +7,13 @@ function SvgSell(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SendAndArchive.jsx b/icons/jsx/SendAndArchive.jsx index acbddf5b33..9a583c781c 100644 --- a/icons/jsx/SendAndArchive.jsx +++ b/icons/jsx/SendAndArchive.jsx @@ -7,10 +7,17 @@ function SvgSendAndArchive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SendTimeExtension.jsx b/icons/jsx/SendTimeExtension.jsx index 1076d389a0..441ab543d8 100644 --- a/icons/jsx/SendTimeExtension.jsx +++ b/icons/jsx/SendTimeExtension.jsx @@ -7,10 +7,14 @@ function SvgSendTimeExtension(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SendToMobile.jsx b/icons/jsx/SendToMobile.jsx index 7edc7960e6..a8ce6af648 100644 --- a/icons/jsx/SendToMobile.jsx +++ b/icons/jsx/SendToMobile.jsx @@ -7,10 +7,11 @@ function SvgSendToMobile(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SensorDoor.jsx b/icons/jsx/SensorDoor.jsx index af2f30d945..aa656e7a4e 100644 --- a/icons/jsx/SensorDoor.jsx +++ b/icons/jsx/SensorDoor.jsx @@ -7,9 +7,13 @@ function SvgSensorDoor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SensorOccupied.jsx b/icons/jsx/SensorOccupied.jsx index 08b609488f..de82494420 100644 --- a/icons/jsx/SensorOccupied.jsx +++ b/icons/jsx/SensorOccupied.jsx @@ -7,9 +7,13 @@ function SvgSensorOccupied(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SensorWindow.jsx b/icons/jsx/SensorWindow.jsx index dee150c17c..1659f55421 100644 --- a/icons/jsx/SensorWindow.jsx +++ b/icons/jsx/SensorWindow.jsx @@ -7,9 +7,13 @@ function SvgSensorWindow(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sensors.jsx b/icons/jsx/Sensors.jsx index 9f4eed034c..e602aee2b2 100644 --- a/icons/jsx/Sensors.jsx +++ b/icons/jsx/Sensors.jsx @@ -7,9 +7,13 @@ function SvgSensors(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SensorsOff.jsx b/icons/jsx/SensorsOff.jsx index 861154fc7c..5ed34a05ef 100644 --- a/icons/jsx/SensorsOff.jsx +++ b/icons/jsx/SensorsOff.jsx @@ -7,9 +7,13 @@ function SvgSensorsOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SentimentDissatisfied.jsx b/icons/jsx/SentimentDissatisfied.jsx index d3718a12bf..64627f1f04 100644 --- a/icons/jsx/SentimentDissatisfied.jsx +++ b/icons/jsx/SentimentDissatisfied.jsx @@ -7,11 +7,15 @@ function SvgSentimentDissatisfied(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SentimentNeutral.jsx b/icons/jsx/SentimentNeutral.jsx index 93c86b8297..7aa0c0440a 100644 --- a/icons/jsx/SentimentNeutral.jsx +++ b/icons/jsx/SentimentNeutral.jsx @@ -7,9 +7,13 @@ function SvgSentimentNeutral(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SentimentSatisfied.jsx b/icons/jsx/SentimentSatisfied.jsx index d879050f5c..ddb437f3df 100644 --- a/icons/jsx/SentimentSatisfied.jsx +++ b/icons/jsx/SentimentSatisfied.jsx @@ -7,11 +7,15 @@ function SvgSentimentSatisfied(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SentimentSatisfiedAlt.jsx b/icons/jsx/SentimentSatisfiedAlt.jsx index a0873b4619..070b20b9da 100644 --- a/icons/jsx/SentimentSatisfiedAlt.jsx +++ b/icons/jsx/SentimentSatisfiedAlt.jsx @@ -7,11 +7,15 @@ function SvgSentimentSatisfiedAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SentimentSlightlyDissatisfied.jsx b/icons/jsx/SentimentSlightlyDissatisfied.jsx index c565931d08..389abc96c7 100644 --- a/icons/jsx/SentimentSlightlyDissatisfied.jsx +++ b/icons/jsx/SentimentSlightlyDissatisfied.jsx @@ -7,11 +7,15 @@ function SvgSentimentSlightlyDissatisfied(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SentimentVeryDissatisfied.jsx b/icons/jsx/SentimentVeryDissatisfied.jsx index 9cc649c1aa..13b7f679e8 100644 --- a/icons/jsx/SentimentVeryDissatisfied.jsx +++ b/icons/jsx/SentimentVeryDissatisfied.jsx @@ -7,9 +7,13 @@ function SvgSentimentVeryDissatisfied(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SentimentVerySatisfied.jsx b/icons/jsx/SentimentVerySatisfied.jsx index c5ac9227e4..e3eae94fa1 100644 --- a/icons/jsx/SentimentVerySatisfied.jsx +++ b/icons/jsx/SentimentVerySatisfied.jsx @@ -7,9 +7,13 @@ function SvgSentimentVerySatisfied(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SetMeal.jsx b/icons/jsx/SetMeal.jsx index 75e25c85b7..c0d71425ac 100644 --- a/icons/jsx/SetMeal.jsx +++ b/icons/jsx/SetMeal.jsx @@ -7,9 +7,13 @@ function SvgSetMeal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsAccessibility.jsx b/icons/jsx/SettingsAccessibility.jsx index 88eac83674..96810c2d23 100644 --- a/icons/jsx/SettingsAccessibility.jsx +++ b/icons/jsx/SettingsAccessibility.jsx @@ -7,9 +7,13 @@ function SvgSettingsAccessibility(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsApplications.jsx b/icons/jsx/SettingsApplications.jsx index 4c345dbee0..1cf85999ec 100644 --- a/icons/jsx/SettingsApplications.jsx +++ b/icons/jsx/SettingsApplications.jsx @@ -7,9 +7,13 @@ function SvgSettingsApplications(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/SettingsBackupRestore.jsx b/icons/jsx/SettingsBackupRestore.jsx index 825e7d299d..4261e8da01 100644 --- a/icons/jsx/SettingsBackupRestore.jsx +++ b/icons/jsx/SettingsBackupRestore.jsx @@ -7,9 +7,13 @@ function SvgSettingsBackupRestore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsBluetooth.jsx b/icons/jsx/SettingsBluetooth.jsx index f3dc2bc783..8fb738be09 100644 --- a/icons/jsx/SettingsBluetooth.jsx +++ b/icons/jsx/SettingsBluetooth.jsx @@ -7,9 +7,13 @@ function SvgSettingsBluetooth(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsBrightness.jsx b/icons/jsx/SettingsBrightness.jsx index abea587bec..fdcfa6caa8 100644 --- a/icons/jsx/SettingsBrightness.jsx +++ b/icons/jsx/SettingsBrightness.jsx @@ -7,9 +7,13 @@ function SvgSettingsBrightness(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsCell.jsx b/icons/jsx/SettingsCell.jsx index d80f93e55b..d2da045503 100644 --- a/icons/jsx/SettingsCell.jsx +++ b/icons/jsx/SettingsCell.jsx @@ -7,9 +7,13 @@ function SvgSettingsCell(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsEthernet.jsx b/icons/jsx/SettingsEthernet.jsx index 579a3ce513..d76c571dfa 100644 --- a/icons/jsx/SettingsEthernet.jsx +++ b/icons/jsx/SettingsEthernet.jsx @@ -7,9 +7,13 @@ function SvgSettingsEthernet(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsInputAntenna.jsx b/icons/jsx/SettingsInputAntenna.jsx index 09c7812858..0e8747d78d 100644 --- a/icons/jsx/SettingsInputAntenna.jsx +++ b/icons/jsx/SettingsInputAntenna.jsx @@ -7,9 +7,13 @@ function SvgSettingsInputAntenna(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsInputComponent.jsx b/icons/jsx/SettingsInputComponent.jsx index dfca44966f..a236e1fb64 100644 --- a/icons/jsx/SettingsInputComponent.jsx +++ b/icons/jsx/SettingsInputComponent.jsx @@ -7,9 +7,13 @@ function SvgSettingsInputComponent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsInputComposite.jsx b/icons/jsx/SettingsInputComposite.jsx index 0d013073cc..9c6f710d97 100644 --- a/icons/jsx/SettingsInputComposite.jsx +++ b/icons/jsx/SettingsInputComposite.jsx @@ -7,9 +7,13 @@ function SvgSettingsInputComposite(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsInputHdmi.jsx b/icons/jsx/SettingsInputHdmi.jsx index 311713cd3a..f541ed2774 100644 --- a/icons/jsx/SettingsInputHdmi.jsx +++ b/icons/jsx/SettingsInputHdmi.jsx @@ -7,9 +7,13 @@ function SvgSettingsInputHdmi(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsInputSvideo.jsx b/icons/jsx/SettingsInputSvideo.jsx index dde9a8ec29..ec393afc58 100644 --- a/icons/jsx/SettingsInputSvideo.jsx +++ b/icons/jsx/SettingsInputSvideo.jsx @@ -7,9 +7,13 @@ function SvgSettingsInputSvideo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsOverscan.jsx b/icons/jsx/SettingsOverscan.jsx index 16a1f7e076..d6190e9ec2 100644 --- a/icons/jsx/SettingsOverscan.jsx +++ b/icons/jsx/SettingsOverscan.jsx @@ -7,9 +7,13 @@ function SvgSettingsOverscan(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsPhone.jsx b/icons/jsx/SettingsPhone.jsx index 5718bb7d75..9d5961d3a6 100644 --- a/icons/jsx/SettingsPhone.jsx +++ b/icons/jsx/SettingsPhone.jsx @@ -7,9 +7,13 @@ function SvgSettingsPhone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsPower.jsx b/icons/jsx/SettingsPower.jsx index 260829e7d2..0a7ec3d41d 100644 --- a/icons/jsx/SettingsPower.jsx +++ b/icons/jsx/SettingsPower.jsx @@ -7,9 +7,13 @@ function SvgSettingsPower(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsRemote.jsx b/icons/jsx/SettingsRemote.jsx index 916127fa64..d41bfa24fd 100644 --- a/icons/jsx/SettingsRemote.jsx +++ b/icons/jsx/SettingsRemote.jsx @@ -7,9 +7,13 @@ function SvgSettingsRemote(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsSuggest.jsx b/icons/jsx/SettingsSuggest.jsx index ae6d8ed438..3c86ad1b18 100644 --- a/icons/jsx/SettingsSuggest.jsx +++ b/icons/jsx/SettingsSuggest.jsx @@ -7,9 +7,13 @@ function SvgSettingsSuggest(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsSystemDaydream.jsx b/icons/jsx/SettingsSystemDaydream.jsx index 43209af732..9fee0271be 100644 --- a/icons/jsx/SettingsSystemDaydream.jsx +++ b/icons/jsx/SettingsSystemDaydream.jsx @@ -7,9 +7,13 @@ function SvgSettingsSystemDaydream(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SettingsVoice.jsx b/icons/jsx/SettingsVoice.jsx index 499621b8ef..70ef46e119 100644 --- a/icons/jsx/SettingsVoice.jsx +++ b/icons/jsx/SettingsVoice.jsx @@ -7,9 +7,13 @@ function SvgSettingsVoice(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SevereCold.jsx b/icons/jsx/SevereCold.jsx index 1644c2682b..32114fc644 100644 --- a/icons/jsx/SevereCold.jsx +++ b/icons/jsx/SevereCold.jsx @@ -7,9 +7,13 @@ function SvgSevereCold(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShapeLine.jsx b/icons/jsx/ShapeLine.jsx index 2454dc825f..3e2b1655d4 100644 --- a/icons/jsx/ShapeLine.jsx +++ b/icons/jsx/ShapeLine.jsx @@ -7,10 +7,17 @@ function SvgShapeLine(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/ShareArrivalTime.jsx b/icons/jsx/ShareArrivalTime.jsx index 97b209d9a1..c6a3481276 100644 --- a/icons/jsx/ShareArrivalTime.jsx +++ b/icons/jsx/ShareArrivalTime.jsx @@ -7,9 +7,13 @@ function SvgShareArrivalTime(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShareLocation.jsx b/icons/jsx/ShareLocation.jsx index 675f3a1166..7d5a9d144f 100644 --- a/icons/jsx/ShareLocation.jsx +++ b/icons/jsx/ShareLocation.jsx @@ -7,10 +7,17 @@ function SvgShareLocation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Shield.jsx b/icons/jsx/Shield.jsx index 82d03ed304..559de6f929 100644 --- a/icons/jsx/Shield.jsx +++ b/icons/jsx/Shield.jsx @@ -7,9 +7,13 @@ function SvgShield(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShieldMoon.jsx b/icons/jsx/ShieldMoon.jsx index af50d3a262..a49fd4f0c4 100644 --- a/icons/jsx/ShieldMoon.jsx +++ b/icons/jsx/ShieldMoon.jsx @@ -7,9 +7,13 @@ function SvgShieldMoon(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Shop.jsx b/icons/jsx/Shop.jsx index 0060eaf8c2..b818a4dade 100644 --- a/icons/jsx/Shop.jsx +++ b/icons/jsx/Shop.jsx @@ -7,9 +7,13 @@ function SvgShop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Shop2.jsx b/icons/jsx/Shop2.jsx index 49ebecd405..c80602d083 100644 --- a/icons/jsx/Shop2.jsx +++ b/icons/jsx/Shop2.jsx @@ -7,10 +7,14 @@ function SvgShop2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/ShopTwo.jsx b/icons/jsx/ShopTwo.jsx index e34a51c961..d9327aa3aa 100644 --- a/icons/jsx/ShopTwo.jsx +++ b/icons/jsx/ShopTwo.jsx @@ -7,9 +7,13 @@ function SvgShopTwo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Shopify.jsx b/icons/jsx/Shopify.jsx index ecfbab72c2..167a0f36b7 100644 --- a/icons/jsx/Shopify.jsx +++ b/icons/jsx/Shopify.jsx @@ -7,9 +7,13 @@ function SvgShopify(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShoppingBag.jsx b/icons/jsx/ShoppingBag.jsx index 4f40093407..def7e60152 100644 --- a/icons/jsx/ShoppingBag.jsx +++ b/icons/jsx/ShoppingBag.jsx @@ -7,9 +7,13 @@ function SvgShoppingBag(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShoppingBasket.jsx b/icons/jsx/ShoppingBasket.jsx index 20d6615ba5..d343681b74 100644 --- a/icons/jsx/ShoppingBasket.jsx +++ b/icons/jsx/ShoppingBasket.jsx @@ -7,9 +7,13 @@ function SvgShoppingBasket(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShoppingCart.jsx b/icons/jsx/ShoppingCart.jsx index d25b374c56..4b5e5e3397 100644 --- a/icons/jsx/ShoppingCart.jsx +++ b/icons/jsx/ShoppingCart.jsx @@ -7,9 +7,13 @@ function SvgShoppingCart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShoppingCartCheckout.jsx b/icons/jsx/ShoppingCartCheckout.jsx index f6ff1af348..1606a0bcbe 100644 --- a/icons/jsx/ShoppingCartCheckout.jsx +++ b/icons/jsx/ShoppingCartCheckout.jsx @@ -7,9 +7,13 @@ function SvgShoppingCartCheckout(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShortText.jsx b/icons/jsx/ShortText.jsx index 9b1dfd8587..05c0fd68a0 100644 --- a/icons/jsx/ShortText.jsx +++ b/icons/jsx/ShortText.jsx @@ -7,9 +7,10 @@ function SvgShortText(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Shortcut.jsx b/icons/jsx/Shortcut.jsx index 08c8fb88e3..4f46a0069c 100644 --- a/icons/jsx/Shortcut.jsx +++ b/icons/jsx/Shortcut.jsx @@ -7,9 +7,13 @@ function SvgShortcut(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShowChart.jsx b/icons/jsx/ShowChart.jsx index f74852fb3e..4db81c0bb8 100644 --- a/icons/jsx/ShowChart.jsx +++ b/icons/jsx/ShowChart.jsx @@ -7,9 +7,13 @@ function SvgShowChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Shower.jsx b/icons/jsx/Shower.jsx index af90b621c6..819a5d286f 100644 --- a/icons/jsx/Shower.jsx +++ b/icons/jsx/Shower.jsx @@ -7,12 +7,16 @@ function SvgShower(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + diff --git a/icons/jsx/Shuffle.jsx b/icons/jsx/Shuffle.jsx index 56be2e38bf..a2d784dbbc 100644 --- a/icons/jsx/Shuffle.jsx +++ b/icons/jsx/Shuffle.jsx @@ -7,9 +7,13 @@ function SvgShuffle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShuffleOn.jsx b/icons/jsx/ShuffleOn.jsx index c3cef525c9..7e26429177 100644 --- a/icons/jsx/ShuffleOn.jsx +++ b/icons/jsx/ShuffleOn.jsx @@ -7,9 +7,13 @@ function SvgShuffleOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ShutterSpeed.jsx b/icons/jsx/ShutterSpeed.jsx index b62c1e1ff5..a3a8d93a97 100644 --- a/icons/jsx/ShutterSpeed.jsx +++ b/icons/jsx/ShutterSpeed.jsx @@ -7,9 +7,13 @@ function SvgShutterSpeed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sick.jsx b/icons/jsx/Sick.jsx index 6f221859fd..85d78135df 100644 --- a/icons/jsx/Sick.jsx +++ b/icons/jsx/Sick.jsx @@ -7,9 +7,13 @@ function SvgSick(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignLanguage.jsx b/icons/jsx/SignLanguage.jsx index 4ecb522468..404545b6d2 100644 --- a/icons/jsx/SignLanguage.jsx +++ b/icons/jsx/SignLanguage.jsx @@ -7,9 +7,13 @@ function SvgSignLanguage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellular0Bar.jsx b/icons/jsx/SignalCellular0Bar.jsx index d5fb5ac3bc..d856539706 100644 --- a/icons/jsx/SignalCellular0Bar.jsx +++ b/icons/jsx/SignalCellular0Bar.jsx @@ -7,9 +7,10 @@ function SvgSignalCellular0Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellular1Bar.jsx b/icons/jsx/SignalCellular1Bar.jsx index 2c06ac77c9..c11a49081b 100644 --- a/icons/jsx/SignalCellular1Bar.jsx +++ b/icons/jsx/SignalCellular1Bar.jsx @@ -7,10 +7,11 @@ function SvgSignalCellular1Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SignalCellular2Bar.jsx b/icons/jsx/SignalCellular2Bar.jsx index 3da2d63df6..d3b74b7e5f 100644 --- a/icons/jsx/SignalCellular2Bar.jsx +++ b/icons/jsx/SignalCellular2Bar.jsx @@ -7,10 +7,11 @@ function SvgSignalCellular2Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SignalCellular3Bar.jsx b/icons/jsx/SignalCellular3Bar.jsx index b97b2c9a61..1e1e932faf 100644 --- a/icons/jsx/SignalCellular3Bar.jsx +++ b/icons/jsx/SignalCellular3Bar.jsx @@ -7,10 +7,11 @@ function SvgSignalCellular3Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SignalCellular4Bar.jsx b/icons/jsx/SignalCellular4Bar.jsx index a90c397510..0f2cb378d8 100644 --- a/icons/jsx/SignalCellular4Bar.jsx +++ b/icons/jsx/SignalCellular4Bar.jsx @@ -7,9 +7,10 @@ function SvgSignalCellular4Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularAlt.jsx b/icons/jsx/SignalCellularAlt.jsx index 4dbf7ccd2f..afc0df4cd2 100644 --- a/icons/jsx/SignalCellularAlt.jsx +++ b/icons/jsx/SignalCellularAlt.jsx @@ -7,9 +7,13 @@ function SvgSignalCellularAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularAlt1Bar.jsx b/icons/jsx/SignalCellularAlt1Bar.jsx index 7094f786e7..45c3fe2c09 100644 --- a/icons/jsx/SignalCellularAlt1Bar.jsx +++ b/icons/jsx/SignalCellularAlt1Bar.jsx @@ -7,9 +7,10 @@ function SvgSignalCellularAlt1Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularAlt2Bar.jsx b/icons/jsx/SignalCellularAlt2Bar.jsx index 765b9fb878..22651957e6 100644 --- a/icons/jsx/SignalCellularAlt2Bar.jsx +++ b/icons/jsx/SignalCellularAlt2Bar.jsx @@ -7,9 +7,10 @@ function SvgSignalCellularAlt2Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularConnectedNoInternet0Bar.jsx b/icons/jsx/SignalCellularConnectedNoInternet0Bar.jsx index a9d0fd259d..272a77ecec 100644 --- a/icons/jsx/SignalCellularConnectedNoInternet0Bar.jsx +++ b/icons/jsx/SignalCellularConnectedNoInternet0Bar.jsx @@ -7,9 +7,13 @@ function SvgSignalCellularConnectedNoInternet0Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularConnectedNoInternet1Bar.jsx b/icons/jsx/SignalCellularConnectedNoInternet1Bar.jsx index 18dd686575..2bde0e728d 100644 --- a/icons/jsx/SignalCellularConnectedNoInternet1Bar.jsx +++ b/icons/jsx/SignalCellularConnectedNoInternet1Bar.jsx @@ -7,10 +7,14 @@ function SvgSignalCellularConnectedNoInternet1Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SignalCellularConnectedNoInternet2Bar.jsx b/icons/jsx/SignalCellularConnectedNoInternet2Bar.jsx index 24898ed3e6..9d25528cbd 100644 --- a/icons/jsx/SignalCellularConnectedNoInternet2Bar.jsx +++ b/icons/jsx/SignalCellularConnectedNoInternet2Bar.jsx @@ -7,10 +7,14 @@ function SvgSignalCellularConnectedNoInternet2Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SignalCellularConnectedNoInternet3Bar.jsx b/icons/jsx/SignalCellularConnectedNoInternet3Bar.jsx index d3efcce127..b84ef40f7f 100644 --- a/icons/jsx/SignalCellularConnectedNoInternet3Bar.jsx +++ b/icons/jsx/SignalCellularConnectedNoInternet3Bar.jsx @@ -7,10 +7,14 @@ function SvgSignalCellularConnectedNoInternet3Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SignalCellularConnectedNoInternet4Bar.jsx b/icons/jsx/SignalCellularConnectedNoInternet4Bar.jsx index 2b0a23d024..fbf98be2d0 100644 --- a/icons/jsx/SignalCellularConnectedNoInternet4Bar.jsx +++ b/icons/jsx/SignalCellularConnectedNoInternet4Bar.jsx @@ -7,9 +7,13 @@ function SvgSignalCellularConnectedNoInternet4Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularNoSim.jsx b/icons/jsx/SignalCellularNoSim.jsx index 6fecd4c6a6..7c114799d8 100644 --- a/icons/jsx/SignalCellularNoSim.jsx +++ b/icons/jsx/SignalCellularNoSim.jsx @@ -7,9 +7,13 @@ function SvgSignalCellularNoSim(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularNodata.jsx b/icons/jsx/SignalCellularNodata.jsx index 0d79477a32..8780a8bed0 100644 --- a/icons/jsx/SignalCellularNodata.jsx +++ b/icons/jsx/SignalCellularNodata.jsx @@ -7,9 +7,13 @@ function SvgSignalCellularNodata(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularNull.jsx b/icons/jsx/SignalCellularNull.jsx index d7f865f42a..9f63d3479d 100644 --- a/icons/jsx/SignalCellularNull.jsx +++ b/icons/jsx/SignalCellularNull.jsx @@ -7,9 +7,10 @@ function SvgSignalCellularNull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalCellularOff.jsx b/icons/jsx/SignalCellularOff.jsx index 7e098d7513..9fcf4bf390 100644 --- a/icons/jsx/SignalCellularOff.jsx +++ b/icons/jsx/SignalCellularOff.jsx @@ -7,9 +7,13 @@ function SvgSignalCellularOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalWifi0Bar.jsx b/icons/jsx/SignalWifi0Bar.jsx index d002333595..cffd64292c 100644 --- a/icons/jsx/SignalWifi0Bar.jsx +++ b/icons/jsx/SignalWifi0Bar.jsx @@ -7,9 +7,13 @@ function SvgSignalWifi0Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalWifi1Bar.jsx b/icons/jsx/SignalWifi1Bar.jsx index 3642bb256c..56d7750208 100644 --- a/icons/jsx/SignalWifi1Bar.jsx +++ b/icons/jsx/SignalWifi1Bar.jsx @@ -7,13 +7,18 @@ function SvgSignalWifi1Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > + - ); } diff --git a/icons/jsx/SignalWifi1BarLock.jsx b/icons/jsx/SignalWifi1BarLock.jsx index 14931ca319..4026a896a2 100644 --- a/icons/jsx/SignalWifi1BarLock.jsx +++ b/icons/jsx/SignalWifi1BarLock.jsx @@ -7,14 +7,22 @@ function SvgSignalWifi1BarLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + + - ); } diff --git a/icons/jsx/SignalWifi2Bar.jsx b/icons/jsx/SignalWifi2Bar.jsx index 8288b4f08f..1538a7100d 100644 --- a/icons/jsx/SignalWifi2Bar.jsx +++ b/icons/jsx/SignalWifi2Bar.jsx @@ -7,13 +7,18 @@ function SvgSignalWifi2Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > + - ); } diff --git a/icons/jsx/SignalWifi2BarLock.jsx b/icons/jsx/SignalWifi2BarLock.jsx index d14bc85ca1..4de12ff751 100644 --- a/icons/jsx/SignalWifi2BarLock.jsx +++ b/icons/jsx/SignalWifi2BarLock.jsx @@ -7,14 +7,22 @@ function SvgSignalWifi2BarLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + + - ); } diff --git a/icons/jsx/SignalWifi3Bar.jsx b/icons/jsx/SignalWifi3Bar.jsx index d5dbfb5a39..93a5021fb2 100644 --- a/icons/jsx/SignalWifi3Bar.jsx +++ b/icons/jsx/SignalWifi3Bar.jsx @@ -7,13 +7,18 @@ function SvgSignalWifi3Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > + - ); } diff --git a/icons/jsx/SignalWifi3BarLock.jsx b/icons/jsx/SignalWifi3BarLock.jsx index 9f9efa2ec5..24e6cd1f2f 100644 --- a/icons/jsx/SignalWifi3BarLock.jsx +++ b/icons/jsx/SignalWifi3BarLock.jsx @@ -7,13 +7,18 @@ function SvgSignalWifi3BarLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > + - ); } diff --git a/icons/jsx/SignalWifi4Bar.jsx b/icons/jsx/SignalWifi4Bar.jsx index a21982a164..cc9f8412ad 100644 --- a/icons/jsx/SignalWifi4Bar.jsx +++ b/icons/jsx/SignalWifi4Bar.jsx @@ -7,9 +7,13 @@ function SvgSignalWifi4Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalWifi4BarLock.jsx b/icons/jsx/SignalWifi4BarLock.jsx index c3525c43cb..51875ab2c2 100644 --- a/icons/jsx/SignalWifi4BarLock.jsx +++ b/icons/jsx/SignalWifi4BarLock.jsx @@ -7,10 +7,17 @@ function SvgSignalWifi4BarLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SignalWifiBad.jsx b/icons/jsx/SignalWifiBad.jsx index 633c2fc3ef..834cd625c3 100644 --- a/icons/jsx/SignalWifiBad.jsx +++ b/icons/jsx/SignalWifiBad.jsx @@ -7,9 +7,13 @@ function SvgSignalWifiBad(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalWifiConnectedNoInternet4.jsx b/icons/jsx/SignalWifiConnectedNoInternet4.jsx index abb9985449..1f5d116e65 100644 --- a/icons/jsx/SignalWifiConnectedNoInternet4.jsx +++ b/icons/jsx/SignalWifiConnectedNoInternet4.jsx @@ -7,9 +7,13 @@ function SvgSignalWifiConnectedNoInternet4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalWifiOff.jsx b/icons/jsx/SignalWifiOff.jsx index 4c1f276f52..ae27c93f74 100644 --- a/icons/jsx/SignalWifiOff.jsx +++ b/icons/jsx/SignalWifiOff.jsx @@ -7,9 +7,13 @@ function SvgSignalWifiOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalWifiStatusbar4Bar.jsx b/icons/jsx/SignalWifiStatusbar4Bar.jsx index 29dd1cb6d3..4d7c059c65 100644 --- a/icons/jsx/SignalWifiStatusbar4Bar.jsx +++ b/icons/jsx/SignalWifiStatusbar4Bar.jsx @@ -7,9 +7,13 @@ function SvgSignalWifiStatusbar4Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SignalWifiStatusbarConnectedNoInternet4.jsx b/icons/jsx/SignalWifiStatusbarConnectedNoInternet4.jsx index e79b678dc6..b0850add9e 100644 --- a/icons/jsx/SignalWifiStatusbarConnectedNoInternet4.jsx +++ b/icons/jsx/SignalWifiStatusbarConnectedNoInternet4.jsx @@ -7,10 +7,14 @@ function SvgSignalWifiStatusbarConnectedNoInternet4(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SignalWifiStatusbarNull.jsx b/icons/jsx/SignalWifiStatusbarNull.jsx index ff4fa1c03e..e158ae3d34 100644 --- a/icons/jsx/SignalWifiStatusbarNull.jsx +++ b/icons/jsx/SignalWifiStatusbarNull.jsx @@ -7,9 +7,13 @@ function SvgSignalWifiStatusbarNull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Signpost.jsx b/icons/jsx/Signpost.jsx index c97cc0ed5f..4ba7a7f41b 100644 --- a/icons/jsx/Signpost.jsx +++ b/icons/jsx/Signpost.jsx @@ -7,9 +7,13 @@ function SvgSignpost(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SimCard.jsx b/icons/jsx/SimCard.jsx index 0a6dbb82d6..fa9a288fc7 100644 --- a/icons/jsx/SimCard.jsx +++ b/icons/jsx/SimCard.jsx @@ -7,9 +7,13 @@ function SvgSimCard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SimCardAlert.jsx b/icons/jsx/SimCardAlert.jsx index d92f180482..1d9976bcc9 100644 --- a/icons/jsx/SimCardAlert.jsx +++ b/icons/jsx/SimCardAlert.jsx @@ -7,9 +7,13 @@ function SvgSimCardAlert(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SimCardDownload.jsx b/icons/jsx/SimCardDownload.jsx index 1773936090..899f3a91ab 100644 --- a/icons/jsx/SimCardDownload.jsx +++ b/icons/jsx/SimCardDownload.jsx @@ -7,9 +7,13 @@ function SvgSimCardDownload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SingleBed.jsx b/icons/jsx/SingleBed.jsx index 964cacba22..e392e5190a 100644 --- a/icons/jsx/SingleBed.jsx +++ b/icons/jsx/SingleBed.jsx @@ -7,9 +7,13 @@ function SvgSingleBed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sip.jsx b/icons/jsx/Sip.jsx index c3ad6788c3..2a1b09d224 100644 --- a/icons/jsx/Sip.jsx +++ b/icons/jsx/Sip.jsx @@ -7,10 +7,14 @@ function SvgSip(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Skateboarding.jsx b/icons/jsx/Skateboarding.jsx index 397679d82a..90b271a597 100644 --- a/icons/jsx/Skateboarding.jsx +++ b/icons/jsx/Skateboarding.jsx @@ -7,9 +7,13 @@ function SvgSkateboarding(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SkipNext.jsx b/icons/jsx/SkipNext.jsx index 542691a208..9083e7ba0b 100644 --- a/icons/jsx/SkipNext.jsx +++ b/icons/jsx/SkipNext.jsx @@ -7,9 +7,10 @@ function SvgSkipNext(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SkipPrevious.jsx b/icons/jsx/SkipPrevious.jsx index 1511ac8e6c..fff1a77bae 100644 --- a/icons/jsx/SkipPrevious.jsx +++ b/icons/jsx/SkipPrevious.jsx @@ -7,9 +7,10 @@ function SvgSkipPrevious(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sledding.jsx b/icons/jsx/Sledding.jsx index aff938efe5..f128c6d55b 100644 --- a/icons/jsx/Sledding.jsx +++ b/icons/jsx/Sledding.jsx @@ -7,9 +7,13 @@ function SvgSledding(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Slideshow.jsx b/icons/jsx/Slideshow.jsx index 86c9942674..00578c905b 100644 --- a/icons/jsx/Slideshow.jsx +++ b/icons/jsx/Slideshow.jsx @@ -7,9 +7,13 @@ function SvgSlideshow(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SlowMotionVideo.jsx b/icons/jsx/SlowMotionVideo.jsx index 156b47763a..519086758b 100644 --- a/icons/jsx/SlowMotionVideo.jsx +++ b/icons/jsx/SlowMotionVideo.jsx @@ -7,9 +7,13 @@ function SvgSlowMotionVideo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SmartButton.jsx b/icons/jsx/SmartButton.jsx index ec967d7d1b..a4dafd2b76 100644 --- a/icons/jsx/SmartButton.jsx +++ b/icons/jsx/SmartButton.jsx @@ -7,9 +7,13 @@ function SvgSmartButton(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SmartDisplay.jsx b/icons/jsx/SmartDisplay.jsx index c134d1038e..362ef0b7cd 100644 --- a/icons/jsx/SmartDisplay.jsx +++ b/icons/jsx/SmartDisplay.jsx @@ -7,9 +7,10 @@ function SvgSmartDisplay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SmartScreen.jsx b/icons/jsx/SmartScreen.jsx index 931513a25f..5ef79c8e82 100644 --- a/icons/jsx/SmartScreen.jsx +++ b/icons/jsx/SmartScreen.jsx @@ -7,10 +7,14 @@ function SvgSmartScreen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SmartToy.jsx b/icons/jsx/SmartToy.jsx index 4e9c36d0f3..6c5b53e351 100644 --- a/icons/jsx/SmartToy.jsx +++ b/icons/jsx/SmartToy.jsx @@ -7,9 +7,13 @@ function SvgSmartToy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Smartphone.jsx b/icons/jsx/Smartphone.jsx index 9d36d33332..544344d657 100644 --- a/icons/jsx/Smartphone.jsx +++ b/icons/jsx/Smartphone.jsx @@ -7,9 +7,10 @@ function SvgSmartphone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SmokeFree.jsx b/icons/jsx/SmokeFree.jsx index d3dd01b128..dfef771343 100644 --- a/icons/jsx/SmokeFree.jsx +++ b/icons/jsx/SmokeFree.jsx @@ -7,9 +7,13 @@ function SvgSmokeFree(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SmokingRooms.jsx b/icons/jsx/SmokingRooms.jsx index 32011e6ec3..a62f06de80 100644 --- a/icons/jsx/SmokingRooms.jsx +++ b/icons/jsx/SmokingRooms.jsx @@ -7,9 +7,13 @@ function SvgSmokingRooms(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sms.jsx b/icons/jsx/Sms.jsx index 1f6d1001f3..48a1c3c201 100644 --- a/icons/jsx/Sms.jsx +++ b/icons/jsx/Sms.jsx @@ -7,9 +7,13 @@ function SvgSms(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SmsFailed.jsx b/icons/jsx/SmsFailed.jsx index cd541f8e36..3ce22a5886 100644 --- a/icons/jsx/SmsFailed.jsx +++ b/icons/jsx/SmsFailed.jsx @@ -7,9 +7,13 @@ function SvgSmsFailed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Snapchat.jsx b/icons/jsx/Snapchat.jsx index e5f2ca22e4..80553012ee 100644 --- a/icons/jsx/Snapchat.jsx +++ b/icons/jsx/Snapchat.jsx @@ -7,9 +7,13 @@ function SvgSnapchat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SnippetFolder.jsx b/icons/jsx/SnippetFolder.jsx index b9e0c9534f..caf5bffd5c 100644 --- a/icons/jsx/SnippetFolder.jsx +++ b/icons/jsx/SnippetFolder.jsx @@ -7,9 +7,13 @@ function SvgSnippetFolder(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Snooze.jsx b/icons/jsx/Snooze.jsx index e9550f0255..d1727d1279 100644 --- a/icons/jsx/Snooze.jsx +++ b/icons/jsx/Snooze.jsx @@ -7,9 +7,13 @@ function SvgSnooze(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Snowboarding.jsx b/icons/jsx/Snowboarding.jsx index c81b803b37..947d0267e3 100644 --- a/icons/jsx/Snowboarding.jsx +++ b/icons/jsx/Snowboarding.jsx @@ -7,9 +7,13 @@ function SvgSnowboarding(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Snowmobile.jsx b/icons/jsx/Snowmobile.jsx index 7a6698d742..d74446a117 100644 --- a/icons/jsx/Snowmobile.jsx +++ b/icons/jsx/Snowmobile.jsx @@ -7,9 +7,13 @@ function SvgSnowmobile(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Snowshoeing.jsx b/icons/jsx/Snowshoeing.jsx index b20952ef7b..9df5da9522 100644 --- a/icons/jsx/Snowshoeing.jsx +++ b/icons/jsx/Snowshoeing.jsx @@ -7,9 +7,13 @@ function SvgSnowshoeing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Soap.jsx b/icons/jsx/Soap.jsx index 5ac002bbcd..fdb562ecb5 100644 --- a/icons/jsx/Soap.jsx +++ b/icons/jsx/Soap.jsx @@ -7,9 +7,13 @@ function SvgSoap(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SocialDistance.jsx b/icons/jsx/SocialDistance.jsx index 5f0e48ad01..df3e0016a2 100644 --- a/icons/jsx/SocialDistance.jsx +++ b/icons/jsx/SocialDistance.jsx @@ -7,9 +7,13 @@ function SvgSocialDistance(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SolarPower.jsx b/icons/jsx/SolarPower.jsx index 876ab7be2e..99ba9ce12d 100644 --- a/icons/jsx/SolarPower.jsx +++ b/icons/jsx/SolarPower.jsx @@ -7,9 +7,13 @@ function SvgSolarPower(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SortByAlpha.jsx b/icons/jsx/SortByAlpha.jsx index 95b35243e7..cbe89323a0 100644 --- a/icons/jsx/SortByAlpha.jsx +++ b/icons/jsx/SortByAlpha.jsx @@ -7,9 +7,13 @@ function SvgSortByAlpha(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sos.jsx b/icons/jsx/Sos.jsx index a518aa48ce..739dfa8b07 100644 --- a/icons/jsx/Sos.jsx +++ b/icons/jsx/Sos.jsx @@ -7,9 +7,13 @@ function SvgSos(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SoupKitchen.jsx b/icons/jsx/SoupKitchen.jsx index 76fc65e52c..d86d1d498b 100644 --- a/icons/jsx/SoupKitchen.jsx +++ b/icons/jsx/SoupKitchen.jsx @@ -7,9 +7,13 @@ function SvgSoupKitchen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Source.jsx b/icons/jsx/Source.jsx index 6ee331fe9e..98d8b89af6 100644 --- a/icons/jsx/Source.jsx +++ b/icons/jsx/Source.jsx @@ -7,9 +7,13 @@ function SvgSource(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/South.jsx b/icons/jsx/South.jsx index b62cfbb3b6..ab39cb5161 100644 --- a/icons/jsx/South.jsx +++ b/icons/jsx/South.jsx @@ -7,9 +7,13 @@ function SvgSouth(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SouthAmerica.jsx b/icons/jsx/SouthAmerica.jsx index d565fef139..b8f762ae40 100644 --- a/icons/jsx/SouthAmerica.jsx +++ b/icons/jsx/SouthAmerica.jsx @@ -7,9 +7,13 @@ function SvgSouthAmerica(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SouthEast.jsx b/icons/jsx/SouthEast.jsx index 9d8192a02d..0c0296519a 100644 --- a/icons/jsx/SouthEast.jsx +++ b/icons/jsx/SouthEast.jsx @@ -7,9 +7,13 @@ function SvgSouthEast(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SouthWest.jsx b/icons/jsx/SouthWest.jsx index b30cf22e71..9dde1a9b51 100644 --- a/icons/jsx/SouthWest.jsx +++ b/icons/jsx/SouthWest.jsx @@ -7,9 +7,13 @@ function SvgSouthWest(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Spa.jsx b/icons/jsx/Spa.jsx index 8db76b5238..eabaad897a 100644 --- a/icons/jsx/Spa.jsx +++ b/icons/jsx/Spa.jsx @@ -7,9 +7,13 @@ function SvgSpa(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SpaceBar.jsx b/icons/jsx/SpaceBar.jsx index 61f7d8fa18..a57da51eb9 100644 --- a/icons/jsx/SpaceBar.jsx +++ b/icons/jsx/SpaceBar.jsx @@ -7,9 +7,10 @@ function SvgSpaceBar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SpaceDashboard.jsx b/icons/jsx/SpaceDashboard.jsx index ae617f827a..5476d6c370 100644 --- a/icons/jsx/SpaceDashboard.jsx +++ b/icons/jsx/SpaceDashboard.jsx @@ -7,9 +7,13 @@ function SvgSpaceDashboard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SpatialAudio.jsx b/icons/jsx/SpatialAudio.jsx index 40633f6b3c..89abd7d102 100644 --- a/icons/jsx/SpatialAudio.jsx +++ b/icons/jsx/SpatialAudio.jsx @@ -7,11 +7,18 @@ function SvgSpatialAudio(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SpatialAudioOff.jsx b/icons/jsx/SpatialAudioOff.jsx index 6c541ca509..dd65911771 100644 --- a/icons/jsx/SpatialAudioOff.jsx +++ b/icons/jsx/SpatialAudioOff.jsx @@ -7,11 +7,18 @@ function SvgSpatialAudioOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SpatialTracking.jsx b/icons/jsx/SpatialTracking.jsx index c2bbddf757..0e7355dd36 100644 --- a/icons/jsx/SpatialTracking.jsx +++ b/icons/jsx/SpatialTracking.jsx @@ -7,11 +7,18 @@ function SvgSpatialTracking(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Speaker.jsx b/icons/jsx/Speaker.jsx index 7a015a6601..73c4815182 100644 --- a/icons/jsx/Speaker.jsx +++ b/icons/jsx/Speaker.jsx @@ -7,9 +7,13 @@ function SvgSpeaker(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SpeakerGroup.jsx b/icons/jsx/SpeakerGroup.jsx index 36da06e514..01515e254f 100644 --- a/icons/jsx/SpeakerGroup.jsx +++ b/icons/jsx/SpeakerGroup.jsx @@ -7,11 +7,15 @@ function SvgSpeakerGroup(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/SpeakerNotes.jsx b/icons/jsx/SpeakerNotes.jsx index 49db6f8ec9..a971c44898 100644 --- a/icons/jsx/SpeakerNotes.jsx +++ b/icons/jsx/SpeakerNotes.jsx @@ -7,9 +7,13 @@ function SvgSpeakerNotes(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SpeakerNotesOff.jsx b/icons/jsx/SpeakerNotesOff.jsx index a32c783dcc..620d19c984 100644 --- a/icons/jsx/SpeakerNotesOff.jsx +++ b/icons/jsx/SpeakerNotesOff.jsx @@ -7,9 +7,13 @@ function SvgSpeakerNotesOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SpeakerPhone.jsx b/icons/jsx/SpeakerPhone.jsx index f0dddf73ee..20f3d63600 100644 --- a/icons/jsx/SpeakerPhone.jsx +++ b/icons/jsx/SpeakerPhone.jsx @@ -7,9 +7,13 @@ function SvgSpeakerPhone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Spellcheck.jsx b/icons/jsx/Spellcheck.jsx index 35769a0d93..96d7af2fbd 100644 --- a/icons/jsx/Spellcheck.jsx +++ b/icons/jsx/Spellcheck.jsx @@ -7,9 +7,13 @@ function SvgSpellcheck(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Splitscreen.jsx b/icons/jsx/Splitscreen.jsx index 5a8934b6fb..c143d8a6a3 100644 --- a/icons/jsx/Splitscreen.jsx +++ b/icons/jsx/Splitscreen.jsx @@ -7,9 +7,13 @@ function SvgSplitscreen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Spoke.jsx b/icons/jsx/Spoke.jsx index f3f9f6bd16..9e890ec74a 100644 --- a/icons/jsx/Spoke.jsx +++ b/icons/jsx/Spoke.jsx @@ -7,9 +7,13 @@ function SvgSpoke(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sports.jsx b/icons/jsx/Sports.jsx index d36ea01732..a0fef8a68b 100644 --- a/icons/jsx/Sports.jsx +++ b/icons/jsx/Sports.jsx @@ -7,9 +7,13 @@ function SvgSports(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/SportsBar.jsx b/icons/jsx/SportsBar.jsx index 246c070734..4e07fefe6c 100644 --- a/icons/jsx/SportsBar.jsx +++ b/icons/jsx/SportsBar.jsx @@ -7,9 +7,13 @@ function SvgSportsBar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsBaseball.jsx b/icons/jsx/SportsBaseball.jsx index 2ec624e158..b8b3aa1425 100644 --- a/icons/jsx/SportsBaseball.jsx +++ b/icons/jsx/SportsBaseball.jsx @@ -7,10 +7,17 @@ function SvgSportsBaseball(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SportsBasketball.jsx b/icons/jsx/SportsBasketball.jsx index 00ee6591a2..47bdc9cd3b 100644 --- a/icons/jsx/SportsBasketball.jsx +++ b/icons/jsx/SportsBasketball.jsx @@ -7,9 +7,13 @@ function SvgSportsBasketball(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsCricket.jsx b/icons/jsx/SportsCricket.jsx index 0a9c733dc7..2a03033e13 100644 --- a/icons/jsx/SportsCricket.jsx +++ b/icons/jsx/SportsCricket.jsx @@ -7,9 +7,13 @@ function SvgSportsCricket(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/SportsEsports.jsx b/icons/jsx/SportsEsports.jsx index 7af29cbaba..1e33ce9eb3 100644 --- a/icons/jsx/SportsEsports.jsx +++ b/icons/jsx/SportsEsports.jsx @@ -7,9 +7,13 @@ function SvgSportsEsports(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsFootball.jsx b/icons/jsx/SportsFootball.jsx index 358085920c..668027dad8 100644 --- a/icons/jsx/SportsFootball.jsx +++ b/icons/jsx/SportsFootball.jsx @@ -7,9 +7,13 @@ function SvgSportsFootball(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsGolf.jsx b/icons/jsx/SportsGolf.jsx index 8e922ee9dd..fb7cdbb6a2 100644 --- a/icons/jsx/SportsGolf.jsx +++ b/icons/jsx/SportsGolf.jsx @@ -7,13 +7,20 @@ function SvgSportsGolf(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/SportsGymnastics.jsx b/icons/jsx/SportsGymnastics.jsx index d657252970..1a4592cb76 100644 --- a/icons/jsx/SportsGymnastics.jsx +++ b/icons/jsx/SportsGymnastics.jsx @@ -7,9 +7,13 @@ function SvgSportsGymnastics(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsHandball.jsx b/icons/jsx/SportsHandball.jsx index a8a92fa8e9..56bd4d12a9 100644 --- a/icons/jsx/SportsHandball.jsx +++ b/icons/jsx/SportsHandball.jsx @@ -7,10 +7,17 @@ function SvgSportsHandball(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SportsHockey.jsx b/icons/jsx/SportsHockey.jsx index d620891cf9..c3a43639eb 100644 --- a/icons/jsx/SportsHockey.jsx +++ b/icons/jsx/SportsHockey.jsx @@ -7,9 +7,13 @@ function SvgSportsHockey(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsKabaddi.jsx b/icons/jsx/SportsKabaddi.jsx index 7125be6e05..955a9ad4a5 100644 --- a/icons/jsx/SportsKabaddi.jsx +++ b/icons/jsx/SportsKabaddi.jsx @@ -7,11 +7,18 @@ function SvgSportsKabaddi(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SportsMartialArts.jsx b/icons/jsx/SportsMartialArts.jsx index c66762468a..a746dc9d5a 100644 --- a/icons/jsx/SportsMartialArts.jsx +++ b/icons/jsx/SportsMartialArts.jsx @@ -7,9 +7,13 @@ function SvgSportsMartialArts(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/SportsMma.jsx b/icons/jsx/SportsMma.jsx index 980fff0450..5a34f6f3c5 100644 --- a/icons/jsx/SportsMma.jsx +++ b/icons/jsx/SportsMma.jsx @@ -7,9 +7,13 @@ function SvgSportsMma(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsMotorsports.jsx b/icons/jsx/SportsMotorsports.jsx index d7b501e154..f9cceaccef 100644 --- a/icons/jsx/SportsMotorsports.jsx +++ b/icons/jsx/SportsMotorsports.jsx @@ -7,10 +7,17 @@ function SvgSportsMotorsports(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SportsRugby.jsx b/icons/jsx/SportsRugby.jsx index f4d5e1c672..38439631bd 100644 --- a/icons/jsx/SportsRugby.jsx +++ b/icons/jsx/SportsRugby.jsx @@ -7,9 +7,13 @@ function SvgSportsRugby(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsScore.jsx b/icons/jsx/SportsScore.jsx index cd6b3e8793..dddf1c6f78 100644 --- a/icons/jsx/SportsScore.jsx +++ b/icons/jsx/SportsScore.jsx @@ -7,9 +7,13 @@ function SvgSportsScore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsSoccer.jsx b/icons/jsx/SportsSoccer.jsx index a578f34cd7..e68c54830d 100644 --- a/icons/jsx/SportsSoccer.jsx +++ b/icons/jsx/SportsSoccer.jsx @@ -7,9 +7,13 @@ function SvgSportsSoccer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsTennis.jsx b/icons/jsx/SportsTennis.jsx index 846e2d41d3..b004ce6f7b 100644 --- a/icons/jsx/SportsTennis.jsx +++ b/icons/jsx/SportsTennis.jsx @@ -7,9 +7,13 @@ function SvgSportsTennis(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SportsVolleyball.jsx b/icons/jsx/SportsVolleyball.jsx index 8726d0503b..e574148374 100644 --- a/icons/jsx/SportsVolleyball.jsx +++ b/icons/jsx/SportsVolleyball.jsx @@ -7,9 +7,13 @@ function SvgSportsVolleyball(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Square.jsx b/icons/jsx/Square.jsx index c06ba9d990..72655dd766 100644 --- a/icons/jsx/Square.jsx +++ b/icons/jsx/Square.jsx @@ -7,9 +7,10 @@ function SvgSquare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SquareFoot.jsx b/icons/jsx/SquareFoot.jsx index a3bd7c516f..1567270367 100644 --- a/icons/jsx/SquareFoot.jsx +++ b/icons/jsx/SquareFoot.jsx @@ -7,9 +7,13 @@ function SvgSquareFoot(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SsidChart.jsx b/icons/jsx/SsidChart.jsx index 524c08bbbc..19739d889b 100644 --- a/icons/jsx/SsidChart.jsx +++ b/icons/jsx/SsidChart.jsx @@ -7,9 +7,13 @@ function SvgSsidChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StackedBarChart.jsx b/icons/jsx/StackedBarChart.jsx index f4b702cea2..93eb7e2477 100644 --- a/icons/jsx/StackedBarChart.jsx +++ b/icons/jsx/StackedBarChart.jsx @@ -7,9 +7,13 @@ function SvgStackedBarChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StackedLineChart.jsx b/icons/jsx/StackedLineChart.jsx index f74bbd2222..e3c9cf82b0 100644 --- a/icons/jsx/StackedLineChart.jsx +++ b/icons/jsx/StackedLineChart.jsx @@ -7,9 +7,13 @@ function SvgStackedLineChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Stadium.jsx b/icons/jsx/Stadium.jsx index c20a70ce6b..871e6f15b0 100644 --- a/icons/jsx/Stadium.jsx +++ b/icons/jsx/Stadium.jsx @@ -7,9 +7,13 @@ function SvgStadium(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Stairs.jsx b/icons/jsx/Stairs.jsx index 20e2d76928..3b5fdf2fdf 100644 --- a/icons/jsx/Stairs.jsx +++ b/icons/jsx/Stairs.jsx @@ -7,9 +7,13 @@ function SvgStairs(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Star.jsx b/icons/jsx/Star.jsx index 863f453dff..07e0954d2a 100644 --- a/icons/jsx/Star.jsx +++ b/icons/jsx/Star.jsx @@ -7,9 +7,13 @@ function SvgStar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StarBorder.jsx b/icons/jsx/StarBorder.jsx index 781a249aa7..0b7cddc799 100644 --- a/icons/jsx/StarBorder.jsx +++ b/icons/jsx/StarBorder.jsx @@ -7,9 +7,13 @@ function SvgStarBorder(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StarBorderPurple500.jsx b/icons/jsx/StarBorderPurple500.jsx index dcb32dd523..c9370768d8 100644 --- a/icons/jsx/StarBorderPurple500.jsx +++ b/icons/jsx/StarBorderPurple500.jsx @@ -7,9 +7,13 @@ function SvgStarBorderPurple500(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StarHalf.jsx b/icons/jsx/StarHalf.jsx index 4153157282..299fb1c19e 100644 --- a/icons/jsx/StarHalf.jsx +++ b/icons/jsx/StarHalf.jsx @@ -7,9 +7,13 @@ function SvgStarHalf(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StarPurple500.jsx b/icons/jsx/StarPurple500.jsx index ca17401f04..9df51cd4da 100644 --- a/icons/jsx/StarPurple500.jsx +++ b/icons/jsx/StarPurple500.jsx @@ -7,9 +7,13 @@ function SvgStarPurple500(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StarRate.jsx b/icons/jsx/StarRate.jsx index ebc6c7bc44..f716b4f288 100644 --- a/icons/jsx/StarRate.jsx +++ b/icons/jsx/StarRate.jsx @@ -7,9 +7,13 @@ function SvgStarRate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Stars.jsx b/icons/jsx/Stars.jsx index e4e3b05d63..93f77ef7ca 100644 --- a/icons/jsx/Stars.jsx +++ b/icons/jsx/Stars.jsx @@ -7,9 +7,13 @@ function SvgStars(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Start.jsx b/icons/jsx/Start.jsx index 3c85b79e06..be7b3a8102 100644 --- a/icons/jsx/Start.jsx +++ b/icons/jsx/Start.jsx @@ -7,9 +7,13 @@ function SvgStart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StayCurrentLandscape.jsx b/icons/jsx/StayCurrentLandscape.jsx index 5b9b8000b5..ec8e35274f 100644 --- a/icons/jsx/StayCurrentLandscape.jsx +++ b/icons/jsx/StayCurrentLandscape.jsx @@ -7,9 +7,10 @@ function SvgStayCurrentLandscape(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StayCurrentPortrait.jsx b/icons/jsx/StayCurrentPortrait.jsx index 58c7cbe2c6..cd1ea6624b 100644 --- a/icons/jsx/StayCurrentPortrait.jsx +++ b/icons/jsx/StayCurrentPortrait.jsx @@ -7,9 +7,13 @@ function SvgStayCurrentPortrait(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StayPrimaryLandscape.jsx b/icons/jsx/StayPrimaryLandscape.jsx index 9d2710092f..7fefc28413 100644 --- a/icons/jsx/StayPrimaryLandscape.jsx +++ b/icons/jsx/StayPrimaryLandscape.jsx @@ -7,9 +7,10 @@ function SvgStayPrimaryLandscape(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StayPrimaryPortrait.jsx b/icons/jsx/StayPrimaryPortrait.jsx index d4e57bd816..1f6a766fe1 100644 --- a/icons/jsx/StayPrimaryPortrait.jsx +++ b/icons/jsx/StayPrimaryPortrait.jsx @@ -7,9 +7,10 @@ function SvgStayPrimaryPortrait(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StickyNote2.jsx b/icons/jsx/StickyNote2.jsx index 3db357de3c..8a63b71606 100644 --- a/icons/jsx/StickyNote2.jsx +++ b/icons/jsx/StickyNote2.jsx @@ -7,9 +7,13 @@ function SvgStickyNote2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Stop.jsx b/icons/jsx/Stop.jsx index e030ea77bc..f54229c3a0 100644 --- a/icons/jsx/Stop.jsx +++ b/icons/jsx/Stop.jsx @@ -7,9 +7,10 @@ function SvgStop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StopCircle.jsx b/icons/jsx/StopCircle.jsx index b33f244465..d42e6034d5 100644 --- a/icons/jsx/StopCircle.jsx +++ b/icons/jsx/StopCircle.jsx @@ -7,9 +7,13 @@ function SvgStopCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StopScreenShare.jsx b/icons/jsx/StopScreenShare.jsx index 9997aa3537..9a048576d9 100644 --- a/icons/jsx/StopScreenShare.jsx +++ b/icons/jsx/StopScreenShare.jsx @@ -7,9 +7,13 @@ function SvgStopScreenShare(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Storage.jsx b/icons/jsx/Storage.jsx index 2c0ce2fbd1..bf200078f8 100644 --- a/icons/jsx/Storage.jsx +++ b/icons/jsx/Storage.jsx @@ -7,9 +7,13 @@ function SvgStorage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Store.jsx b/icons/jsx/Store.jsx index 7b63180a56..f5f4628260 100644 --- a/icons/jsx/Store.jsx +++ b/icons/jsx/Store.jsx @@ -7,9 +7,13 @@ function SvgStore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/StoreMallDirectory.jsx b/icons/jsx/StoreMallDirectory.jsx index 523d01ee63..8981ae37f9 100644 --- a/icons/jsx/StoreMallDirectory.jsx +++ b/icons/jsx/StoreMallDirectory.jsx @@ -7,9 +7,13 @@ function SvgStoreMallDirectory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Storefront.jsx b/icons/jsx/Storefront.jsx index 1b72a3a3e1..4d1b9ca52c 100644 --- a/icons/jsx/Storefront.jsx +++ b/icons/jsx/Storefront.jsx @@ -7,9 +7,13 @@ function SvgStorefront(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Storm.jsx b/icons/jsx/Storm.jsx index affd1f41f7..4232de8734 100644 --- a/icons/jsx/Storm.jsx +++ b/icons/jsx/Storm.jsx @@ -7,9 +7,13 @@ function SvgStorm(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Straight.jsx b/icons/jsx/Straight.jsx index 1679a08ed0..2731c7399f 100644 --- a/icons/jsx/Straight.jsx +++ b/icons/jsx/Straight.jsx @@ -7,9 +7,13 @@ function SvgStraight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Straighten.jsx b/icons/jsx/Straighten.jsx index 5640d4a46a..24dbcdb038 100644 --- a/icons/jsx/Straighten.jsx +++ b/icons/jsx/Straighten.jsx @@ -7,9 +7,13 @@ function SvgStraighten(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Stream.jsx b/icons/jsx/Stream.jsx index 4022ebc211..f6ffca6ca8 100644 --- a/icons/jsx/Stream.jsx +++ b/icons/jsx/Stream.jsx @@ -7,12 +7,16 @@ function SvgStream(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/Streetview.jsx b/icons/jsx/Streetview.jsx index 8e21e36b88..464f8cf7ce 100644 --- a/icons/jsx/Streetview.jsx +++ b/icons/jsx/Streetview.jsx @@ -7,11 +7,18 @@ function SvgStreetview(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + - + ); } diff --git a/icons/jsx/StrikethroughS.jsx b/icons/jsx/StrikethroughS.jsx index 45f57e67af..e4738af479 100644 --- a/icons/jsx/StrikethroughS.jsx +++ b/icons/jsx/StrikethroughS.jsx @@ -7,9 +7,13 @@ function SvgStrikethroughS(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Stroller.jsx b/icons/jsx/Stroller.jsx index 721463a43b..23227e3a27 100644 --- a/icons/jsx/Stroller.jsx +++ b/icons/jsx/Stroller.jsx @@ -7,9 +7,13 @@ function SvgStroller(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Style.jsx b/icons/jsx/Style.jsx index bee08dc60d..b8abcd94c4 100644 --- a/icons/jsx/Style.jsx +++ b/icons/jsx/Style.jsx @@ -7,9 +7,13 @@ function SvgStyle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SubdirectoryArrowLeft.jsx b/icons/jsx/SubdirectoryArrowLeft.jsx index b75b2d4737..6cdc116fc8 100644 --- a/icons/jsx/SubdirectoryArrowLeft.jsx +++ b/icons/jsx/SubdirectoryArrowLeft.jsx @@ -7,9 +7,13 @@ function SvgSubdirectoryArrowLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SubdirectoryArrowRight.jsx b/icons/jsx/SubdirectoryArrowRight.jsx index 5728bb876f..6bd314cf56 100644 --- a/icons/jsx/SubdirectoryArrowRight.jsx +++ b/icons/jsx/SubdirectoryArrowRight.jsx @@ -7,9 +7,13 @@ function SvgSubdirectoryArrowRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Subject.jsx b/icons/jsx/Subject.jsx index 8328a1e2f6..50d96340a9 100644 --- a/icons/jsx/Subject.jsx +++ b/icons/jsx/Subject.jsx @@ -7,9 +7,13 @@ function SvgSubject(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Subscript.jsx b/icons/jsx/Subscript.jsx index 3ca083ef8d..4eb1934e9a 100644 --- a/icons/jsx/Subscript.jsx +++ b/icons/jsx/Subscript.jsx @@ -7,9 +7,13 @@ function SvgSubscript(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Subscriptions.jsx b/icons/jsx/Subscriptions.jsx index ba46edcc64..f20e3084b3 100644 --- a/icons/jsx/Subscriptions.jsx +++ b/icons/jsx/Subscriptions.jsx @@ -7,9 +7,13 @@ function SvgSubscriptions(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Subtitles.jsx b/icons/jsx/Subtitles.jsx index 1cd000b72b..2fcddf1246 100644 --- a/icons/jsx/Subtitles.jsx +++ b/icons/jsx/Subtitles.jsx @@ -7,9 +7,13 @@ function SvgSubtitles(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SubtitlesOff.jsx b/icons/jsx/SubtitlesOff.jsx index 85157f86c8..c16cc964a5 100644 --- a/icons/jsx/SubtitlesOff.jsx +++ b/icons/jsx/SubtitlesOff.jsx @@ -7,9 +7,13 @@ function SvgSubtitlesOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Subway.jsx b/icons/jsx/Subway.jsx index 360376021c..77e17ddc4d 100644 --- a/icons/jsx/Subway.jsx +++ b/icons/jsx/Subway.jsx @@ -7,11 +7,15 @@ function SvgSubway(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Summarize.jsx b/icons/jsx/Summarize.jsx index 651b92662f..828e17f13c 100644 --- a/icons/jsx/Summarize.jsx +++ b/icons/jsx/Summarize.jsx @@ -7,9 +7,13 @@ function SvgSummarize(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Superscript.jsx b/icons/jsx/Superscript.jsx index 4422d3d0fa..7344f975cc 100644 --- a/icons/jsx/Superscript.jsx +++ b/icons/jsx/Superscript.jsx @@ -7,9 +7,13 @@ function SvgSuperscript(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SupervisedUserCircle.jsx b/icons/jsx/SupervisedUserCircle.jsx index a506a9c2c8..9646b524de 100644 --- a/icons/jsx/SupervisedUserCircle.jsx +++ b/icons/jsx/SupervisedUserCircle.jsx @@ -7,9 +7,13 @@ function SvgSupervisedUserCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SupervisorAccount.jsx b/icons/jsx/SupervisorAccount.jsx index 3d9136b226..c3a4c4c437 100644 --- a/icons/jsx/SupervisorAccount.jsx +++ b/icons/jsx/SupervisorAccount.jsx @@ -7,9 +7,13 @@ function SvgSupervisorAccount(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Support.jsx b/icons/jsx/Support.jsx index f414de946c..403e33b1bb 100644 --- a/icons/jsx/Support.jsx +++ b/icons/jsx/Support.jsx @@ -7,9 +7,13 @@ function SvgSupport(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SupportAgent.jsx b/icons/jsx/SupportAgent.jsx index aac187b8a6..e52741cd07 100644 --- a/icons/jsx/SupportAgent.jsx +++ b/icons/jsx/SupportAgent.jsx @@ -7,12 +7,19 @@ function SvgSupportAgent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Surfing.jsx b/icons/jsx/Surfing.jsx index 3a2573c5b2..13e658301b 100644 --- a/icons/jsx/Surfing.jsx +++ b/icons/jsx/Surfing.jsx @@ -7,9 +7,13 @@ function SvgSurfing(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SurroundSound.jsx b/icons/jsx/SurroundSound.jsx index 2cc284b200..a59e373d31 100644 --- a/icons/jsx/SurroundSound.jsx +++ b/icons/jsx/SurroundSound.jsx @@ -7,9 +7,13 @@ function SvgSurroundSound(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwapCalls.jsx b/icons/jsx/SwapCalls.jsx index b3f0028e3b..1e3cd04670 100644 --- a/icons/jsx/SwapCalls.jsx +++ b/icons/jsx/SwapCalls.jsx @@ -7,9 +7,13 @@ function SvgSwapCalls(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwapHoriz.jsx b/icons/jsx/SwapHoriz.jsx index c194f3d529..140a9d8b9b 100644 --- a/icons/jsx/SwapHoriz.jsx +++ b/icons/jsx/SwapHoriz.jsx @@ -7,9 +7,13 @@ function SvgSwapHoriz(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwapHorizontalCircle.jsx b/icons/jsx/SwapHorizontalCircle.jsx index e97c2c742a..8435605863 100644 --- a/icons/jsx/SwapHorizontalCircle.jsx +++ b/icons/jsx/SwapHorizontalCircle.jsx @@ -7,9 +7,13 @@ function SvgSwapHorizontalCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwapVert.jsx b/icons/jsx/SwapVert.jsx index 1fd03625cc..0780e4e5f9 100644 --- a/icons/jsx/SwapVert.jsx +++ b/icons/jsx/SwapVert.jsx @@ -7,9 +7,13 @@ function SvgSwapVert(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwapVerticalCircle.jsx b/icons/jsx/SwapVerticalCircle.jsx index 8ada82b71c..6b9f8cc822 100644 --- a/icons/jsx/SwapVerticalCircle.jsx +++ b/icons/jsx/SwapVerticalCircle.jsx @@ -7,9 +7,13 @@ function SvgSwapVerticalCircle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Swipe.jsx b/icons/jsx/Swipe.jsx index d61f6b45d2..1ec91c6456 100644 --- a/icons/jsx/Swipe.jsx +++ b/icons/jsx/Swipe.jsx @@ -7,10 +7,17 @@ function SvgSwipe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SwipeDown.jsx b/icons/jsx/SwipeDown.jsx index 3509cb3529..d78eeedb75 100644 --- a/icons/jsx/SwipeDown.jsx +++ b/icons/jsx/SwipeDown.jsx @@ -7,9 +7,13 @@ function SvgSwipeDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwipeDownAlt.jsx b/icons/jsx/SwipeDownAlt.jsx index f1dc5850df..c1d6eda7c8 100644 --- a/icons/jsx/SwipeDownAlt.jsx +++ b/icons/jsx/SwipeDownAlt.jsx @@ -7,9 +7,13 @@ function SvgSwipeDownAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwipeLeft.jsx b/icons/jsx/SwipeLeft.jsx index 908163e7b4..2853ef2061 100644 --- a/icons/jsx/SwipeLeft.jsx +++ b/icons/jsx/SwipeLeft.jsx @@ -7,9 +7,13 @@ function SvgSwipeLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwipeLeftAlt.jsx b/icons/jsx/SwipeLeftAlt.jsx index 19079cddd4..b052ae79a1 100644 --- a/icons/jsx/SwipeLeftAlt.jsx +++ b/icons/jsx/SwipeLeftAlt.jsx @@ -7,9 +7,13 @@ function SvgSwipeLeftAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwipeRight.jsx b/icons/jsx/SwipeRight.jsx index ae4a7149ea..291cf0f693 100644 --- a/icons/jsx/SwipeRight.jsx +++ b/icons/jsx/SwipeRight.jsx @@ -7,9 +7,13 @@ function SvgSwipeRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwipeRightAlt.jsx b/icons/jsx/SwipeRightAlt.jsx index 0efe7c8edd..6b8b45ef85 100644 --- a/icons/jsx/SwipeRightAlt.jsx +++ b/icons/jsx/SwipeRightAlt.jsx @@ -7,9 +7,13 @@ function SvgSwipeRightAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwipeUp.jsx b/icons/jsx/SwipeUp.jsx index a8b235358e..32825d4a30 100644 --- a/icons/jsx/SwipeUp.jsx +++ b/icons/jsx/SwipeUp.jsx @@ -7,9 +7,13 @@ function SvgSwipeUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwipeUpAlt.jsx b/icons/jsx/SwipeUpAlt.jsx index e2f892c8c7..2635b86750 100644 --- a/icons/jsx/SwipeUpAlt.jsx +++ b/icons/jsx/SwipeUpAlt.jsx @@ -7,9 +7,13 @@ function SvgSwipeUpAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwipeVertical.jsx b/icons/jsx/SwipeVertical.jsx index 11adbd0c50..99c679d32a 100644 --- a/icons/jsx/SwipeVertical.jsx +++ b/icons/jsx/SwipeVertical.jsx @@ -7,9 +7,13 @@ function SvgSwipeVertical(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwitchAccessShortcut.jsx b/icons/jsx/SwitchAccessShortcut.jsx index a3b447eadb..db1dbdb153 100644 --- a/icons/jsx/SwitchAccessShortcut.jsx +++ b/icons/jsx/SwitchAccessShortcut.jsx @@ -7,9 +7,13 @@ function SvgSwitchAccessShortcut(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwitchAccessShortcutAdd.jsx b/icons/jsx/SwitchAccessShortcutAdd.jsx index 1aa9510aee..e4fa2fba63 100644 --- a/icons/jsx/SwitchAccessShortcutAdd.jsx +++ b/icons/jsx/SwitchAccessShortcutAdd.jsx @@ -7,9 +7,13 @@ function SvgSwitchAccessShortcutAdd(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwitchAccount.jsx b/icons/jsx/SwitchAccount.jsx index 361b5babea..1b164839df 100644 --- a/icons/jsx/SwitchAccount.jsx +++ b/icons/jsx/SwitchAccount.jsx @@ -7,9 +7,13 @@ function SvgSwitchAccount(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwitchCamera.jsx b/icons/jsx/SwitchCamera.jsx index e046d4191d..598a80c8f2 100644 --- a/icons/jsx/SwitchCamera.jsx +++ b/icons/jsx/SwitchCamera.jsx @@ -7,9 +7,13 @@ function SvgSwitchCamera(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwitchLeft.jsx b/icons/jsx/SwitchLeft.jsx index 992d75d22f..a41401708b 100644 --- a/icons/jsx/SwitchLeft.jsx +++ b/icons/jsx/SwitchLeft.jsx @@ -7,9 +7,13 @@ function SvgSwitchLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwitchRight.jsx b/icons/jsx/SwitchRight.jsx index 24927e0bc6..ed4382af1e 100644 --- a/icons/jsx/SwitchRight.jsx +++ b/icons/jsx/SwitchRight.jsx @@ -7,9 +7,13 @@ function SvgSwitchRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SwitchVideo.jsx b/icons/jsx/SwitchVideo.jsx index b78f318bb5..8100832512 100644 --- a/icons/jsx/SwitchVideo.jsx +++ b/icons/jsx/SwitchVideo.jsx @@ -7,9 +7,13 @@ function SvgSwitchVideo(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Synagogue.jsx b/icons/jsx/Synagogue.jsx index f455d3ffa2..93359ab583 100644 --- a/icons/jsx/Synagogue.jsx +++ b/icons/jsx/Synagogue.jsx @@ -7,9 +7,13 @@ function SvgSynagogue(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Sync.jsx b/icons/jsx/Sync.jsx index 2cff2b37c5..47563b7692 100644 --- a/icons/jsx/Sync.jsx +++ b/icons/jsx/Sync.jsx @@ -7,9 +7,13 @@ function SvgSync(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SyncAlt.jsx b/icons/jsx/SyncAlt.jsx index b27d75cfe0..64732b5a02 100644 --- a/icons/jsx/SyncAlt.jsx +++ b/icons/jsx/SyncAlt.jsx @@ -7,9 +7,13 @@ function SvgSyncAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SyncDisabled.jsx b/icons/jsx/SyncDisabled.jsx index 6e7309ef9b..caf9858a24 100644 --- a/icons/jsx/SyncDisabled.jsx +++ b/icons/jsx/SyncDisabled.jsx @@ -7,9 +7,13 @@ function SvgSyncDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SyncLock.jsx b/icons/jsx/SyncLock.jsx index e43f28a09e..13f68c13f8 100644 --- a/icons/jsx/SyncLock.jsx +++ b/icons/jsx/SyncLock.jsx @@ -7,9 +7,13 @@ function SvgSyncLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SyncProblem.jsx b/icons/jsx/SyncProblem.jsx index fecea91225..213f9ca853 100644 --- a/icons/jsx/SyncProblem.jsx +++ b/icons/jsx/SyncProblem.jsx @@ -7,9 +7,13 @@ function SvgSyncProblem(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SystemSecurityUpdate.jsx b/icons/jsx/SystemSecurityUpdate.jsx index 209eb6a74a..279ad95612 100644 --- a/icons/jsx/SystemSecurityUpdate.jsx +++ b/icons/jsx/SystemSecurityUpdate.jsx @@ -7,9 +7,13 @@ function SvgSystemSecurityUpdate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SystemSecurityUpdateGood.jsx b/icons/jsx/SystemSecurityUpdateGood.jsx index 74410f826d..c716ecbcbd 100644 --- a/icons/jsx/SystemSecurityUpdateGood.jsx +++ b/icons/jsx/SystemSecurityUpdateGood.jsx @@ -7,9 +7,13 @@ function SvgSystemSecurityUpdateGood(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SystemSecurityUpdateWarning.jsx b/icons/jsx/SystemSecurityUpdateWarning.jsx index 46261fabff..9b267187a5 100644 --- a/icons/jsx/SystemSecurityUpdateWarning.jsx +++ b/icons/jsx/SystemSecurityUpdateWarning.jsx @@ -7,10 +7,11 @@ function SvgSystemSecurityUpdateWarning(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/SystemUpdate.jsx b/icons/jsx/SystemUpdate.jsx index 02c31b307e..c910eeb538 100644 --- a/icons/jsx/SystemUpdate.jsx +++ b/icons/jsx/SystemUpdate.jsx @@ -7,9 +7,13 @@ function SvgSystemUpdate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/SystemUpdateAlt.jsx b/icons/jsx/SystemUpdateAlt.jsx index fef80c7309..40d217a2ea 100644 --- a/icons/jsx/SystemUpdateAlt.jsx +++ b/icons/jsx/SystemUpdateAlt.jsx @@ -7,9 +7,13 @@ function SvgSystemUpdateAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tab.jsx b/icons/jsx/Tab.jsx index f1afcf04d8..3a9abc6d32 100644 --- a/icons/jsx/Tab.jsx +++ b/icons/jsx/Tab.jsx @@ -7,9 +7,13 @@ function SvgTab(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TabUnselected.jsx b/icons/jsx/TabUnselected.jsx index 13393218a4..66f0f27090 100644 --- a/icons/jsx/TabUnselected.jsx +++ b/icons/jsx/TabUnselected.jsx @@ -7,9 +7,13 @@ function SvgTabUnselected(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TableBar.jsx b/icons/jsx/TableBar.jsx index f1e635a511..acd34bc40f 100644 --- a/icons/jsx/TableBar.jsx +++ b/icons/jsx/TableBar.jsx @@ -7,9 +7,13 @@ function SvgTableBar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TableChart.jsx b/icons/jsx/TableChart.jsx index 789136b135..fdc793b46f 100644 --- a/icons/jsx/TableChart.jsx +++ b/icons/jsx/TableChart.jsx @@ -7,9 +7,13 @@ function SvgTableChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TableRestaurant.jsx b/icons/jsx/TableRestaurant.jsx index 695f19c0ae..64119a7786 100644 --- a/icons/jsx/TableRestaurant.jsx +++ b/icons/jsx/TableRestaurant.jsx @@ -7,9 +7,13 @@ function SvgTableRestaurant(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TableRows.jsx b/icons/jsx/TableRows.jsx index d1664075ed..03bd377655 100644 --- a/icons/jsx/TableRows.jsx +++ b/icons/jsx/TableRows.jsx @@ -7,9 +7,13 @@ function SvgTableRows(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TableView.jsx b/icons/jsx/TableView.jsx index 0a1e93ee1c..896d92dead 100644 --- a/icons/jsx/TableView.jsx +++ b/icons/jsx/TableView.jsx @@ -7,9 +7,13 @@ function SvgTableView(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tablet.jsx b/icons/jsx/Tablet.jsx index 348f23c379..d285b19d17 100644 --- a/icons/jsx/Tablet.jsx +++ b/icons/jsx/Tablet.jsx @@ -7,9 +7,10 @@ function SvgTablet(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TabletAndroid.jsx b/icons/jsx/TabletAndroid.jsx index f50a53aafa..9c517135b2 100644 --- a/icons/jsx/TabletAndroid.jsx +++ b/icons/jsx/TabletAndroid.jsx @@ -7,9 +7,13 @@ function SvgTabletAndroid(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TabletMac.jsx b/icons/jsx/TabletMac.jsx index f62f2dc84e..b234d326b6 100644 --- a/icons/jsx/TabletMac.jsx +++ b/icons/jsx/TabletMac.jsx @@ -7,9 +7,13 @@ function SvgTabletMac(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TagFaces.jsx b/icons/jsx/TagFaces.jsx index 3afc6e781e..9e044ce285 100644 --- a/icons/jsx/TagFaces.jsx +++ b/icons/jsx/TagFaces.jsx @@ -7,9 +7,13 @@ function SvgTagFaces(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TakeoutDining.jsx b/icons/jsx/TakeoutDining.jsx index 02ef272f08..63b4648a7a 100644 --- a/icons/jsx/TakeoutDining.jsx +++ b/icons/jsx/TakeoutDining.jsx @@ -7,9 +7,13 @@ function SvgTakeoutDining(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TapAndPlay.jsx b/icons/jsx/TapAndPlay.jsx index b8d3fa09dd..0e39fa1b9c 100644 --- a/icons/jsx/TapAndPlay.jsx +++ b/icons/jsx/TapAndPlay.jsx @@ -7,9 +7,13 @@ function SvgTapAndPlay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tapas.jsx b/icons/jsx/Tapas.jsx index 2e507f23ca..66343d0528 100644 --- a/icons/jsx/Tapas.jsx +++ b/icons/jsx/Tapas.jsx @@ -7,9 +7,13 @@ function SvgTapas(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Task.jsx b/icons/jsx/Task.jsx index 6e8e6cf4c2..b20c9ef440 100644 --- a/icons/jsx/Task.jsx +++ b/icons/jsx/Task.jsx @@ -7,9 +7,13 @@ function SvgTask(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TaskAlt.jsx b/icons/jsx/TaskAlt.jsx index 8b4cfb1f24..d7524c0c3b 100644 --- a/icons/jsx/TaskAlt.jsx +++ b/icons/jsx/TaskAlt.jsx @@ -7,9 +7,13 @@ function SvgTaskAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TaxiAlert.jsx b/icons/jsx/TaxiAlert.jsx index b1fd86cad2..af5ccee083 100644 --- a/icons/jsx/TaxiAlert.jsx +++ b/icons/jsx/TaxiAlert.jsx @@ -7,10 +7,17 @@ function SvgTaxiAlert(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Telegram.jsx b/icons/jsx/Telegram.jsx index b7c316f70f..1179b54e9d 100644 --- a/icons/jsx/Telegram.jsx +++ b/icons/jsx/Telegram.jsx @@ -7,9 +7,13 @@ function SvgTelegram(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TempleBuddhist.jsx b/icons/jsx/TempleBuddhist.jsx index a353bf08ce..bc95aeb708 100644 --- a/icons/jsx/TempleBuddhist.jsx +++ b/icons/jsx/TempleBuddhist.jsx @@ -7,11 +7,18 @@ function SvgTempleBuddhist(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/TempleHindu.jsx b/icons/jsx/TempleHindu.jsx index fccd7742fb..6de6b45017 100644 --- a/icons/jsx/TempleHindu.jsx +++ b/icons/jsx/TempleHindu.jsx @@ -7,9 +7,13 @@ function SvgTempleHindu(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Terminal.jsx b/icons/jsx/Terminal.jsx index de9730e16c..8f1353bbce 100644 --- a/icons/jsx/Terminal.jsx +++ b/icons/jsx/Terminal.jsx @@ -7,9 +7,13 @@ function SvgTerminal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Terrain.jsx b/icons/jsx/Terrain.jsx index d18fd13a4f..01708b2411 100644 --- a/icons/jsx/Terrain.jsx +++ b/icons/jsx/Terrain.jsx @@ -7,9 +7,13 @@ function SvgTerrain(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextDecrease.jsx b/icons/jsx/TextDecrease.jsx index ad55021d45..fde04a8cc8 100644 --- a/icons/jsx/TextDecrease.jsx +++ b/icons/jsx/TextDecrease.jsx @@ -7,9 +7,13 @@ function SvgTextDecrease(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextFields.jsx b/icons/jsx/TextFields.jsx index 618a3f0fa4..00ae42e938 100644 --- a/icons/jsx/TextFields.jsx +++ b/icons/jsx/TextFields.jsx @@ -7,9 +7,13 @@ function SvgTextFields(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextFormat.jsx b/icons/jsx/TextFormat.jsx index 6ce0902c0c..5bbb03e144 100644 --- a/icons/jsx/TextFormat.jsx +++ b/icons/jsx/TextFormat.jsx @@ -7,9 +7,13 @@ function SvgTextFormat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextIncrease.jsx b/icons/jsx/TextIncrease.jsx index 26ce04315d..501f72f5bf 100644 --- a/icons/jsx/TextIncrease.jsx +++ b/icons/jsx/TextIncrease.jsx @@ -7,9 +7,13 @@ function SvgTextIncrease(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextRotateUp.jsx b/icons/jsx/TextRotateUp.jsx index 8cba4f3866..c425e169f6 100644 --- a/icons/jsx/TextRotateUp.jsx +++ b/icons/jsx/TextRotateUp.jsx @@ -7,9 +7,13 @@ function SvgTextRotateUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextRotateVertical.jsx b/icons/jsx/TextRotateVertical.jsx index c4fbcdeb16..3ad68dff33 100644 --- a/icons/jsx/TextRotateVertical.jsx +++ b/icons/jsx/TextRotateVertical.jsx @@ -7,9 +7,13 @@ function SvgTextRotateVertical(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextRotationAngledown.jsx b/icons/jsx/TextRotationAngledown.jsx index f2af098462..a86b087741 100644 --- a/icons/jsx/TextRotationAngledown.jsx +++ b/icons/jsx/TextRotationAngledown.jsx @@ -7,9 +7,13 @@ function SvgTextRotationAngledown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextRotationAngleup.jsx b/icons/jsx/TextRotationAngleup.jsx index 770bf4ec5d..355f8d6b9a 100644 --- a/icons/jsx/TextRotationAngleup.jsx +++ b/icons/jsx/TextRotationAngleup.jsx @@ -7,9 +7,13 @@ function SvgTextRotationAngleup(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextRotationDown.jsx b/icons/jsx/TextRotationDown.jsx index 7395da7605..05f7395e6f 100644 --- a/icons/jsx/TextRotationDown.jsx +++ b/icons/jsx/TextRotationDown.jsx @@ -7,9 +7,13 @@ function SvgTextRotationDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextRotationNone.jsx b/icons/jsx/TextRotationNone.jsx index cb1a16c7e1..7a92c59ae0 100644 --- a/icons/jsx/TextRotationNone.jsx +++ b/icons/jsx/TextRotationNone.jsx @@ -7,9 +7,13 @@ function SvgTextRotationNone(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextSnippet.jsx b/icons/jsx/TextSnippet.jsx index 76920f533f..fc2e27ce49 100644 --- a/icons/jsx/TextSnippet.jsx +++ b/icons/jsx/TextSnippet.jsx @@ -7,9 +7,13 @@ function SvgTextSnippet(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TextToSpeech.jsx b/icons/jsx/TextToSpeech.jsx new file mode 100644 index 0000000000..85de154a41 --- /dev/null +++ b/icons/jsx/TextToSpeech.jsx @@ -0,0 +1,19 @@ +import * as React from "react"; +function SvgTextToSpeech(props) { + return ( + + + + ); +} +export default SvgTextToSpeech; diff --git a/icons/jsx/Textsms.jsx b/icons/jsx/Textsms.jsx index ba5afbaa4e..a906c1b472 100644 --- a/icons/jsx/Textsms.jsx +++ b/icons/jsx/Textsms.jsx @@ -7,9 +7,13 @@ function SvgTextsms(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Texture.jsx b/icons/jsx/Texture.jsx index dd7a83f4c1..fe0df6cde9 100644 --- a/icons/jsx/Texture.jsx +++ b/icons/jsx/Texture.jsx @@ -7,9 +7,13 @@ function SvgTexture(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TheaterComedy.jsx b/icons/jsx/TheaterComedy.jsx index ff817a665c..493d23f4f9 100644 --- a/icons/jsx/TheaterComedy.jsx +++ b/icons/jsx/TheaterComedy.jsx @@ -7,10 +7,17 @@ function SvgTheaterComedy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Theaters.jsx b/icons/jsx/Theaters.jsx index 99daf77106..6022b58ae7 100644 --- a/icons/jsx/Theaters.jsx +++ b/icons/jsx/Theaters.jsx @@ -7,9 +7,13 @@ function SvgTheaters(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Thermostat.jsx b/icons/jsx/Thermostat.jsx index 041d72e796..6cb6fc56d9 100644 --- a/icons/jsx/Thermostat.jsx +++ b/icons/jsx/Thermostat.jsx @@ -7,9 +7,13 @@ function SvgThermostat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ThermostatAuto.jsx b/icons/jsx/ThermostatAuto.jsx index 0282d8051c..c3723f8d28 100644 --- a/icons/jsx/ThermostatAuto.jsx +++ b/icons/jsx/ThermostatAuto.jsx @@ -7,9 +7,13 @@ function SvgThermostatAuto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ThumbDown.jsx b/icons/jsx/ThumbDown.jsx index 28d565f5b8..a08519edd2 100644 --- a/icons/jsx/ThumbDown.jsx +++ b/icons/jsx/ThumbDown.jsx @@ -7,9 +7,13 @@ function SvgThumbDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ThumbDownAlt.jsx b/icons/jsx/ThumbDownAlt.jsx index 27287116ec..0aa2ec67af 100644 --- a/icons/jsx/ThumbDownAlt.jsx +++ b/icons/jsx/ThumbDownAlt.jsx @@ -7,9 +7,13 @@ function SvgThumbDownAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ThumbDownOffAlt.jsx b/icons/jsx/ThumbDownOffAlt.jsx index 94f4009ae2..62c0cb4484 100644 --- a/icons/jsx/ThumbDownOffAlt.jsx +++ b/icons/jsx/ThumbDownOffAlt.jsx @@ -7,9 +7,13 @@ function SvgThumbDownOffAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ThumbUp.jsx b/icons/jsx/ThumbUp.jsx index 8882c82bea..d77069fc39 100644 --- a/icons/jsx/ThumbUp.jsx +++ b/icons/jsx/ThumbUp.jsx @@ -7,9 +7,13 @@ function SvgThumbUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ThumbUpAlt.jsx b/icons/jsx/ThumbUpAlt.jsx index ebd6fda152..78f565157f 100644 --- a/icons/jsx/ThumbUpAlt.jsx +++ b/icons/jsx/ThumbUpAlt.jsx @@ -7,9 +7,13 @@ function SvgThumbUpAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ThumbUpOffAlt.jsx b/icons/jsx/ThumbUpOffAlt.jsx index d47d38ea18..b563165517 100644 --- a/icons/jsx/ThumbUpOffAlt.jsx +++ b/icons/jsx/ThumbUpOffAlt.jsx @@ -7,9 +7,13 @@ function SvgThumbUpOffAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ThumbsUpDown.jsx b/icons/jsx/ThumbsUpDown.jsx index d60b180564..f0a93f9bae 100644 --- a/icons/jsx/ThumbsUpDown.jsx +++ b/icons/jsx/ThumbsUpDown.jsx @@ -7,9 +7,13 @@ function SvgThumbsUpDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Thunderstorm.jsx b/icons/jsx/Thunderstorm.jsx index e7670d2e55..bf92144fc5 100644 --- a/icons/jsx/Thunderstorm.jsx +++ b/icons/jsx/Thunderstorm.jsx @@ -7,9 +7,13 @@ function SvgThunderstorm(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tiktok.jsx b/icons/jsx/Tiktok.jsx index 5d961992b2..d5beae7640 100644 --- a/icons/jsx/Tiktok.jsx +++ b/icons/jsx/Tiktok.jsx @@ -7,9 +7,13 @@ function SvgTiktok(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TimeToLeave.jsx b/icons/jsx/TimeToLeave.jsx index 178d5438ea..b28be2cf73 100644 --- a/icons/jsx/TimeToLeave.jsx +++ b/icons/jsx/TimeToLeave.jsx @@ -7,9 +7,13 @@ function SvgTimeToLeave(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Timeline.jsx b/icons/jsx/Timeline.jsx index f24a8d9fce..b9b42be397 100644 --- a/icons/jsx/Timeline.jsx +++ b/icons/jsx/Timeline.jsx @@ -7,9 +7,13 @@ function SvgTimeline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Timer.jsx b/icons/jsx/Timer.jsx index f720951b9c..1a517ae11c 100644 --- a/icons/jsx/Timer.jsx +++ b/icons/jsx/Timer.jsx @@ -7,9 +7,13 @@ function SvgTimer(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Timer10.jsx b/icons/jsx/Timer10.jsx index 849d77146b..0af14e1c38 100644 --- a/icons/jsx/Timer10.jsx +++ b/icons/jsx/Timer10.jsx @@ -7,9 +7,13 @@ function SvgTimer10(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Timer10Select.jsx b/icons/jsx/Timer10Select.jsx index 9161f747ac..2c525b8de8 100644 --- a/icons/jsx/Timer10Select.jsx +++ b/icons/jsx/Timer10Select.jsx @@ -7,9 +7,13 @@ function SvgTimer10Select(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Timer3.jsx b/icons/jsx/Timer3.jsx index 3fc153c648..0d64248074 100644 --- a/icons/jsx/Timer3.jsx +++ b/icons/jsx/Timer3.jsx @@ -7,9 +7,13 @@ function SvgTimer3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Timer3Select.jsx b/icons/jsx/Timer3Select.jsx index aeff68b549..7e24fe366c 100644 --- a/icons/jsx/Timer3Select.jsx +++ b/icons/jsx/Timer3Select.jsx @@ -7,9 +7,13 @@ function SvgTimer3Select(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TimerOff.jsx b/icons/jsx/TimerOff.jsx index 5bf146fa0d..7a978cd774 100644 --- a/icons/jsx/TimerOff.jsx +++ b/icons/jsx/TimerOff.jsx @@ -7,9 +7,13 @@ function SvgTimerOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TipsAndUpdates.jsx b/icons/jsx/TipsAndUpdates.jsx index 963c9bee78..f7f0a8beed 100644 --- a/icons/jsx/TipsAndUpdates.jsx +++ b/icons/jsx/TipsAndUpdates.jsx @@ -7,9 +7,13 @@ function SvgTipsAndUpdates(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TireRepair.jsx b/icons/jsx/TireRepair.jsx index 675d85a623..0cb522a8a0 100644 --- a/icons/jsx/TireRepair.jsx +++ b/icons/jsx/TireRepair.jsx @@ -7,10 +7,17 @@ function SvgTireRepair(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Title.jsx b/icons/jsx/Title.jsx index 2b1fcb474f..4a1d28e048 100644 --- a/icons/jsx/Title.jsx +++ b/icons/jsx/Title.jsx @@ -7,9 +7,10 @@ function SvgTitle(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Toc.jsx b/icons/jsx/Toc.jsx index 8cc963419a..2da665ce4e 100644 --- a/icons/jsx/Toc.jsx +++ b/icons/jsx/Toc.jsx @@ -7,9 +7,13 @@ function SvgToc(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Today.jsx b/icons/jsx/Today.jsx index 4aeaf67e2c..ce64bddc2c 100644 --- a/icons/jsx/Today.jsx +++ b/icons/jsx/Today.jsx @@ -7,9 +7,13 @@ function SvgToday(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ToggleOff.jsx b/icons/jsx/ToggleOff.jsx index 48b25b25df..73ea491947 100644 --- a/icons/jsx/ToggleOff.jsx +++ b/icons/jsx/ToggleOff.jsx @@ -7,9 +7,13 @@ function SvgToggleOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ToggleOn.jsx b/icons/jsx/ToggleOn.jsx index e9474d9c9e..4f2791c560 100644 --- a/icons/jsx/ToggleOn.jsx +++ b/icons/jsx/ToggleOn.jsx @@ -7,9 +7,13 @@ function SvgToggleOn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Token.jsx b/icons/jsx/Token.jsx index 4d0f6a991d..968d8aec55 100644 --- a/icons/jsx/Token.jsx +++ b/icons/jsx/Token.jsx @@ -7,9 +7,13 @@ function SvgToken(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Toll.jsx b/icons/jsx/Toll.jsx index f2c0985a3b..4a11c0dc7f 100644 --- a/icons/jsx/Toll.jsx +++ b/icons/jsx/Toll.jsx @@ -7,9 +7,13 @@ function SvgToll(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tonality.jsx b/icons/jsx/Tonality.jsx index b0bdf9eec7..79e0283088 100644 --- a/icons/jsx/Tonality.jsx +++ b/icons/jsx/Tonality.jsx @@ -7,9 +7,13 @@ function SvgTonality(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Topic.jsx b/icons/jsx/Topic.jsx index f0b03a2582..82cbeb2686 100644 --- a/icons/jsx/Topic.jsx +++ b/icons/jsx/Topic.jsx @@ -7,9 +7,13 @@ function SvgTopic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tornado.jsx b/icons/jsx/Tornado.jsx index fdc3e19e56..b72060b82e 100644 --- a/icons/jsx/Tornado.jsx +++ b/icons/jsx/Tornado.jsx @@ -7,9 +7,13 @@ function SvgTornado(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TouchApp.jsx b/icons/jsx/TouchApp.jsx index 7741796a6e..5c0eb100d1 100644 --- a/icons/jsx/TouchApp.jsx +++ b/icons/jsx/TouchApp.jsx @@ -7,9 +7,13 @@ function SvgTouchApp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tour.jsx b/icons/jsx/Tour.jsx index d2e543f0be..5463fdf806 100644 --- a/icons/jsx/Tour.jsx +++ b/icons/jsx/Tour.jsx @@ -7,9 +7,13 @@ function SvgTour(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Toys.jsx b/icons/jsx/Toys.jsx index c87e6e610f..6d33062503 100644 --- a/icons/jsx/Toys.jsx +++ b/icons/jsx/Toys.jsx @@ -7,9 +7,13 @@ function SvgToys(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TrackChanges.jsx b/icons/jsx/TrackChanges.jsx index a9c091ef54..6f60bb9c57 100644 --- a/icons/jsx/TrackChanges.jsx +++ b/icons/jsx/TrackChanges.jsx @@ -7,9 +7,13 @@ function SvgTrackChanges(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Traffic.jsx b/icons/jsx/Traffic.jsx index c2fa1e6b2c..c769dc3852 100644 --- a/icons/jsx/Traffic.jsx +++ b/icons/jsx/Traffic.jsx @@ -7,9 +7,13 @@ function SvgTraffic(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Train.jsx b/icons/jsx/Train.jsx index 380f798e92..2d06b912ad 100644 --- a/icons/jsx/Train.jsx +++ b/icons/jsx/Train.jsx @@ -7,9 +7,13 @@ function SvgTrain(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tram.jsx b/icons/jsx/Tram.jsx index 6d43f6fed8..13b8a3eec8 100644 --- a/icons/jsx/Tram.jsx +++ b/icons/jsx/Tram.jsx @@ -7,9 +7,13 @@ function SvgTram(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Transcribe.jsx b/icons/jsx/Transcribe.jsx index 921e238203..d122edbd55 100644 --- a/icons/jsx/Transcribe.jsx +++ b/icons/jsx/Transcribe.jsx @@ -7,9 +7,13 @@ function SvgTranscribe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TransferWithinAStation.jsx b/icons/jsx/TransferWithinAStation.jsx index 10d1d6a606..2782174299 100644 --- a/icons/jsx/TransferWithinAStation.jsx +++ b/icons/jsx/TransferWithinAStation.jsx @@ -7,9 +7,13 @@ function SvgTransferWithinAStation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Transform.jsx b/icons/jsx/Transform.jsx index ff960cf6dc..19bda8c003 100644 --- a/icons/jsx/Transform.jsx +++ b/icons/jsx/Transform.jsx @@ -7,9 +7,13 @@ function SvgTransform(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Transgender.jsx b/icons/jsx/Transgender.jsx index a7d13b0426..e111974ad5 100644 --- a/icons/jsx/Transgender.jsx +++ b/icons/jsx/Transgender.jsx @@ -7,9 +7,13 @@ function SvgTransgender(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TransitEnterexit.jsx b/icons/jsx/TransitEnterexit.jsx index d300a1ee29..8a4a2aeb19 100644 --- a/icons/jsx/TransitEnterexit.jsx +++ b/icons/jsx/TransitEnterexit.jsx @@ -7,9 +7,13 @@ function SvgTransitEnterexit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TravelExplore.jsx b/icons/jsx/TravelExplore.jsx index bbae0f3f56..1b018394a6 100644 --- a/icons/jsx/TravelExplore.jsx +++ b/icons/jsx/TravelExplore.jsx @@ -7,9 +7,13 @@ function SvgTravelExplore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TrendingDown.jsx b/icons/jsx/TrendingDown.jsx index bb664313ab..824ab546fa 100644 --- a/icons/jsx/TrendingDown.jsx +++ b/icons/jsx/TrendingDown.jsx @@ -7,9 +7,13 @@ function SvgTrendingDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TrendingFlat.jsx b/icons/jsx/TrendingFlat.jsx index d7f35fcc60..fd4ad3e2e7 100644 --- a/icons/jsx/TrendingFlat.jsx +++ b/icons/jsx/TrendingFlat.jsx @@ -7,9 +7,10 @@ function SvgTrendingFlat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TrendingUp.jsx b/icons/jsx/TrendingUp.jsx index be88cb3f3a..580e25751e 100644 --- a/icons/jsx/TrendingUp.jsx +++ b/icons/jsx/TrendingUp.jsx @@ -7,9 +7,13 @@ function SvgTrendingUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TripOrigin.jsx b/icons/jsx/TripOrigin.jsx index dfad11d6f9..af5d9d3da0 100644 --- a/icons/jsx/TripOrigin.jsx +++ b/icons/jsx/TripOrigin.jsx @@ -7,9 +7,13 @@ function SvgTripOrigin(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Troubleshoot.jsx b/icons/jsx/Troubleshoot.jsx index e0400a346e..5920923853 100644 --- a/icons/jsx/Troubleshoot.jsx +++ b/icons/jsx/Troubleshoot.jsx @@ -7,10 +7,17 @@ function SvgTroubleshoot(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Try.jsx b/icons/jsx/Try.jsx index 1d73398431..038800b93e 100644 --- a/icons/jsx/Try.jsx +++ b/icons/jsx/Try.jsx @@ -7,9 +7,13 @@ function SvgTry(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tsunami.jsx b/icons/jsx/Tsunami.jsx index a9c5a87956..1b73a37cab 100644 --- a/icons/jsx/Tsunami.jsx +++ b/icons/jsx/Tsunami.jsx @@ -7,9 +7,13 @@ function SvgTsunami(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tty.jsx b/icons/jsx/Tty.jsx index 74e70c80b3..08070772df 100644 --- a/icons/jsx/Tty.jsx +++ b/icons/jsx/Tty.jsx @@ -7,9 +7,13 @@ function SvgTty(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tungsten.jsx b/icons/jsx/Tungsten.jsx index 8811d60cb1..31a37c203a 100644 --- a/icons/jsx/Tungsten.jsx +++ b/icons/jsx/Tungsten.jsx @@ -7,9 +7,13 @@ function SvgTungsten(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TurnLeft.jsx b/icons/jsx/TurnLeft.jsx index b5dd55ca6e..cbde095a62 100644 --- a/icons/jsx/TurnLeft.jsx +++ b/icons/jsx/TurnLeft.jsx @@ -7,9 +7,13 @@ function SvgTurnLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TurnRight.jsx b/icons/jsx/TurnRight.jsx index bbb207cd79..72700890ef 100644 --- a/icons/jsx/TurnRight.jsx +++ b/icons/jsx/TurnRight.jsx @@ -7,9 +7,13 @@ function SvgTurnRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TurnSharpLeft.jsx b/icons/jsx/TurnSharpLeft.jsx index fb6cfce75b..ae9990afde 100644 --- a/icons/jsx/TurnSharpLeft.jsx +++ b/icons/jsx/TurnSharpLeft.jsx @@ -7,9 +7,13 @@ function SvgTurnSharpLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TurnSharpRight.jsx b/icons/jsx/TurnSharpRight.jsx index 5097b08740..7c90d29bc2 100644 --- a/icons/jsx/TurnSharpRight.jsx +++ b/icons/jsx/TurnSharpRight.jsx @@ -7,9 +7,13 @@ function SvgTurnSharpRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TurnSlightLeft.jsx b/icons/jsx/TurnSlightLeft.jsx index 87a8fb9118..ce39c3424c 100644 --- a/icons/jsx/TurnSlightLeft.jsx +++ b/icons/jsx/TurnSlightLeft.jsx @@ -7,9 +7,13 @@ function SvgTurnSlightLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TurnSlightRight.jsx b/icons/jsx/TurnSlightRight.jsx index 9033090867..56865fa44e 100644 --- a/icons/jsx/TurnSlightRight.jsx +++ b/icons/jsx/TurnSlightRight.jsx @@ -7,9 +7,13 @@ function SvgTurnSlightRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TurnedIn.jsx b/icons/jsx/TurnedIn.jsx index d51a472c27..b58408ee78 100644 --- a/icons/jsx/TurnedIn.jsx +++ b/icons/jsx/TurnedIn.jsx @@ -7,9 +7,10 @@ function SvgTurnedIn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TurnedInNot.jsx b/icons/jsx/TurnedInNot.jsx index 57a9196cba..344d62dd66 100644 --- a/icons/jsx/TurnedInNot.jsx +++ b/icons/jsx/TurnedInNot.jsx @@ -7,9 +7,13 @@ function SvgTurnedInNot(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Tv.jsx b/icons/jsx/Tv.jsx index 389bf7daae..75092f9658 100644 --- a/icons/jsx/Tv.jsx +++ b/icons/jsx/Tv.jsx @@ -7,9 +7,13 @@ function SvgTv(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TvOff.jsx b/icons/jsx/TvOff.jsx index 5f471f09ef..2028d2b85b 100644 --- a/icons/jsx/TvOff.jsx +++ b/icons/jsx/TvOff.jsx @@ -7,9 +7,13 @@ function SvgTvOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TwoWheeler.jsx b/icons/jsx/TwoWheeler.jsx index 7510d71072..bcbe93c1b0 100644 --- a/icons/jsx/TwoWheeler.jsx +++ b/icons/jsx/TwoWheeler.jsx @@ -7,9 +7,13 @@ function SvgTwoWheeler(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/TypeSpecimen.jsx b/icons/jsx/TypeSpecimen.jsx index 73cc0a67d9..f9d082d754 100644 --- a/icons/jsx/TypeSpecimen.jsx +++ b/icons/jsx/TypeSpecimen.jsx @@ -7,11 +7,15 @@ function SvgTypeSpecimen(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/UTurnLeft.jsx b/icons/jsx/UTurnLeft.jsx index 076f36eba1..98ac3b1ee1 100644 --- a/icons/jsx/UTurnLeft.jsx +++ b/icons/jsx/UTurnLeft.jsx @@ -7,9 +7,13 @@ function SvgUTurnLeft(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/UTurnRight.jsx b/icons/jsx/UTurnRight.jsx index c34027ed30..e156758da0 100644 --- a/icons/jsx/UTurnRight.jsx +++ b/icons/jsx/UTurnRight.jsx @@ -7,9 +7,13 @@ function SvgUTurnRight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Umbrella.jsx b/icons/jsx/Umbrella.jsx index 2286b28461..4cd1aa0a0e 100644 --- a/icons/jsx/Umbrella.jsx +++ b/icons/jsx/Umbrella.jsx @@ -7,9 +7,13 @@ function SvgUmbrella(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Unarchive.jsx b/icons/jsx/Unarchive.jsx index d5ddf690e3..6400c92bb5 100644 --- a/icons/jsx/Unarchive.jsx +++ b/icons/jsx/Unarchive.jsx @@ -7,9 +7,13 @@ function SvgUnarchive(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/UnfoldLess.jsx b/icons/jsx/UnfoldLess.jsx index fec108c99e..532d7118f2 100644 --- a/icons/jsx/UnfoldLess.jsx +++ b/icons/jsx/UnfoldLess.jsx @@ -7,9 +7,13 @@ function SvgUnfoldLess(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/UnfoldLessDouble.jsx b/icons/jsx/UnfoldLessDouble.jsx index 188afdffdb..f7784ed9a0 100644 --- a/icons/jsx/UnfoldLessDouble.jsx +++ b/icons/jsx/UnfoldLessDouble.jsx @@ -7,11 +7,21 @@ function SvgUnfoldLessDouble(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/UnfoldMore.jsx b/icons/jsx/UnfoldMore.jsx index acf7fa8ced..ad524cc1d5 100644 --- a/icons/jsx/UnfoldMore.jsx +++ b/icons/jsx/UnfoldMore.jsx @@ -7,9 +7,13 @@ function SvgUnfoldMore(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/UnfoldMoreDouble.jsx b/icons/jsx/UnfoldMoreDouble.jsx index 57d5e23440..764681bfa5 100644 --- a/icons/jsx/UnfoldMoreDouble.jsx +++ b/icons/jsx/UnfoldMoreDouble.jsx @@ -7,9 +7,13 @@ function SvgUnfoldMoreDouble(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Unpublished.jsx b/icons/jsx/Unpublished.jsx index c83ec63d55..4c4d46f465 100644 --- a/icons/jsx/Unpublished.jsx +++ b/icons/jsx/Unpublished.jsx @@ -7,9 +7,13 @@ function SvgUnpublished(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Unsubscribe.jsx b/icons/jsx/Unsubscribe.jsx index f70bcb9934..d235d9a8d8 100644 --- a/icons/jsx/Unsubscribe.jsx +++ b/icons/jsx/Unsubscribe.jsx @@ -7,9 +7,13 @@ function SvgUnsubscribe(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Upcoming.jsx b/icons/jsx/Upcoming.jsx index 54cb0da955..1551cc1723 100644 --- a/icons/jsx/Upcoming.jsx +++ b/icons/jsx/Upcoming.jsx @@ -7,9 +7,13 @@ function SvgUpcoming(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Update.jsx b/icons/jsx/Update.jsx index 6d08c2da0e..3ff4f22c43 100644 --- a/icons/jsx/Update.jsx +++ b/icons/jsx/Update.jsx @@ -7,9 +7,13 @@ function SvgUpdate(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/UpdateDisabled.jsx b/icons/jsx/UpdateDisabled.jsx index 8180323edb..01bfb029ef 100644 --- a/icons/jsx/UpdateDisabled.jsx +++ b/icons/jsx/UpdateDisabled.jsx @@ -7,9 +7,13 @@ function SvgUpdateDisabled(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Upgrade.jsx b/icons/jsx/Upgrade.jsx index 45d7aeebe4..83bf03e61f 100644 --- a/icons/jsx/Upgrade.jsx +++ b/icons/jsx/Upgrade.jsx @@ -7,9 +7,13 @@ function SvgUpgrade(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Upload.jsx b/icons/jsx/Upload.jsx index cd7d02581c..e3082a3d95 100644 --- a/icons/jsx/Upload.jsx +++ b/icons/jsx/Upload.jsx @@ -7,9 +7,13 @@ function SvgUpload(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/UploadFile.jsx b/icons/jsx/UploadFile.jsx index aa3f3f9a2c..0ff735e955 100644 --- a/icons/jsx/UploadFile.jsx +++ b/icons/jsx/UploadFile.jsx @@ -7,9 +7,13 @@ function SvgUploadFile(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Usb.jsx b/icons/jsx/Usb.jsx index ef467daf58..969cfa7b4a 100644 --- a/icons/jsx/Usb.jsx +++ b/icons/jsx/Usb.jsx @@ -7,9 +7,13 @@ function SvgUsb(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/UsbOff.jsx b/icons/jsx/UsbOff.jsx index 4248b5b41b..b408fec398 100644 --- a/icons/jsx/UsbOff.jsx +++ b/icons/jsx/UsbOff.jsx @@ -7,9 +7,13 @@ function SvgUsbOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Vaccines.jsx b/icons/jsx/Vaccines.jsx index 4b5b5d2f16..859ad38754 100644 --- a/icons/jsx/Vaccines.jsx +++ b/icons/jsx/Vaccines.jsx @@ -7,9 +7,13 @@ function SvgVaccines(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VapeFree.jsx b/icons/jsx/VapeFree.jsx index 9cb51d5d2d..698a473d69 100644 --- a/icons/jsx/VapeFree.jsx +++ b/icons/jsx/VapeFree.jsx @@ -7,9 +7,13 @@ function SvgVapeFree(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VapingRooms.jsx b/icons/jsx/VapingRooms.jsx index 6352ee3b6c..b1c61e4021 100644 --- a/icons/jsx/VapingRooms.jsx +++ b/icons/jsx/VapingRooms.jsx @@ -7,9 +7,13 @@ function SvgVapingRooms(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VerifiedUser.jsx b/icons/jsx/VerifiedUser.jsx index dc8717f48a..25e98abfd3 100644 --- a/icons/jsx/VerifiedUser.jsx +++ b/icons/jsx/VerifiedUser.jsx @@ -7,9 +7,13 @@ function SvgVerifiedUser(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VerticalAlignBottom.jsx b/icons/jsx/VerticalAlignBottom.jsx index ed95ccb66c..7572dc2fb8 100644 --- a/icons/jsx/VerticalAlignBottom.jsx +++ b/icons/jsx/VerticalAlignBottom.jsx @@ -7,9 +7,13 @@ function SvgVerticalAlignBottom(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VerticalAlignCenter.jsx b/icons/jsx/VerticalAlignCenter.jsx index c85c1b5c14..dcf86b048b 100644 --- a/icons/jsx/VerticalAlignCenter.jsx +++ b/icons/jsx/VerticalAlignCenter.jsx @@ -7,9 +7,13 @@ function SvgVerticalAlignCenter(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VerticalAlignTop.jsx b/icons/jsx/VerticalAlignTop.jsx index 43a1d931eb..266c8eade9 100644 --- a/icons/jsx/VerticalAlignTop.jsx +++ b/icons/jsx/VerticalAlignTop.jsx @@ -7,9 +7,10 @@ function SvgVerticalAlignTop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VerticalDistribute.jsx b/icons/jsx/VerticalDistribute.jsx index 64ebb03bdf..026ccaa4c8 100644 --- a/icons/jsx/VerticalDistribute.jsx +++ b/icons/jsx/VerticalDistribute.jsx @@ -7,9 +7,13 @@ function SvgVerticalDistribute(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VerticalShades.jsx b/icons/jsx/VerticalShades.jsx index c77a15629b..52f7a9098e 100644 --- a/icons/jsx/VerticalShades.jsx +++ b/icons/jsx/VerticalShades.jsx @@ -7,9 +7,13 @@ function SvgVerticalShades(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VerticalShadesClosed.jsx b/icons/jsx/VerticalShadesClosed.jsx index d19d26758e..02c11e8772 100644 --- a/icons/jsx/VerticalShadesClosed.jsx +++ b/icons/jsx/VerticalShadesClosed.jsx @@ -7,9 +7,13 @@ function SvgVerticalShadesClosed(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VerticalSplit.jsx b/icons/jsx/VerticalSplit.jsx index edf5eac6ef..5d5203e4b5 100644 --- a/icons/jsx/VerticalSplit.jsx +++ b/icons/jsx/VerticalSplit.jsx @@ -7,9 +7,13 @@ function SvgVerticalSplit(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Vibration.jsx b/icons/jsx/Vibration.jsx index 494e2bee97..1241ffa6be 100644 --- a/icons/jsx/Vibration.jsx +++ b/icons/jsx/Vibration.jsx @@ -7,9 +7,13 @@ function SvgVibration(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideoCall.jsx b/icons/jsx/VideoCall.jsx index 86cd6ee6cc..2c9a31a464 100644 --- a/icons/jsx/VideoCall.jsx +++ b/icons/jsx/VideoCall.jsx @@ -7,9 +7,13 @@ function SvgVideoCall(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideoCameraBack.jsx b/icons/jsx/VideoCameraBack.jsx index e08ee6a2d0..f364f2b4fa 100644 --- a/icons/jsx/VideoCameraBack.jsx +++ b/icons/jsx/VideoCameraBack.jsx @@ -7,9 +7,13 @@ function SvgVideoCameraBack(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideoCameraFront.jsx b/icons/jsx/VideoCameraFront.jsx index 9f29009ba5..1bef4633f1 100644 --- a/icons/jsx/VideoCameraFront.jsx +++ b/icons/jsx/VideoCameraFront.jsx @@ -7,9 +7,13 @@ function SvgVideoCameraFront(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideoChat.jsx b/icons/jsx/VideoChat.jsx index 86ad2a131c..654f86c0bb 100644 --- a/icons/jsx/VideoChat.jsx +++ b/icons/jsx/VideoChat.jsx @@ -7,9 +7,13 @@ function SvgVideoChat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideoFile.jsx b/icons/jsx/VideoFile.jsx index f0d59fa9d0..05ef2accaa 100644 --- a/icons/jsx/VideoFile.jsx +++ b/icons/jsx/VideoFile.jsx @@ -7,9 +7,13 @@ function SvgVideoFile(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideoLabel.jsx b/icons/jsx/VideoLabel.jsx index 8697448772..14b55c52ff 100644 --- a/icons/jsx/VideoLabel.jsx +++ b/icons/jsx/VideoLabel.jsx @@ -7,9 +7,10 @@ function SvgVideoLabel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideoLibrary.jsx b/icons/jsx/VideoLibrary.jsx index ec3f5dd28b..a061d8dff7 100644 --- a/icons/jsx/VideoLibrary.jsx +++ b/icons/jsx/VideoLibrary.jsx @@ -7,9 +7,13 @@ function SvgVideoLibrary(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideoSettings.jsx b/icons/jsx/VideoSettings.jsx index fec4f2b84f..66b06655bc 100644 --- a/icons/jsx/VideoSettings.jsx +++ b/icons/jsx/VideoSettings.jsx @@ -7,10 +7,14 @@ function SvgVideoSettings(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/VideoStable.jsx b/icons/jsx/VideoStable.jsx index efd7f19e63..fbe7cdc178 100644 --- a/icons/jsx/VideoStable.jsx +++ b/icons/jsx/VideoStable.jsx @@ -7,9 +7,13 @@ function SvgVideoStable(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Videocam.jsx b/icons/jsx/Videocam.jsx index 9b29e95460..de2b2ec0a6 100644 --- a/icons/jsx/Videocam.jsx +++ b/icons/jsx/Videocam.jsx @@ -7,9 +7,10 @@ function SvgVideocam(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideocamOff.jsx b/icons/jsx/VideocamOff.jsx index d553cccd77..b3708a9331 100644 --- a/icons/jsx/VideocamOff.jsx +++ b/icons/jsx/VideocamOff.jsx @@ -7,9 +7,13 @@ function SvgVideocamOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideogameAsset.jsx b/icons/jsx/VideogameAsset.jsx index 96a0c74910..06198f9c24 100644 --- a/icons/jsx/VideogameAsset.jsx +++ b/icons/jsx/VideogameAsset.jsx @@ -7,9 +7,13 @@ function SvgVideogameAsset(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VideogameAssetOff.jsx b/icons/jsx/VideogameAssetOff.jsx index 1f89a0fc43..4dbf1e6a7f 100644 --- a/icons/jsx/VideogameAssetOff.jsx +++ b/icons/jsx/VideogameAssetOff.jsx @@ -7,9 +7,13 @@ function SvgVideogameAssetOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewAgenda.jsx b/icons/jsx/ViewAgenda.jsx index 59a43c04f1..9046ed2e96 100644 --- a/icons/jsx/ViewAgenda.jsx +++ b/icons/jsx/ViewAgenda.jsx @@ -7,9 +7,10 @@ function SvgViewAgenda(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewArray.jsx b/icons/jsx/ViewArray.jsx index 8027bec3a8..3e0e8adf6b 100644 --- a/icons/jsx/ViewArray.jsx +++ b/icons/jsx/ViewArray.jsx @@ -7,9 +7,13 @@ function SvgViewArray(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewCarousel.jsx b/icons/jsx/ViewCarousel.jsx index 375c255eea..51b5bb4a3b 100644 --- a/icons/jsx/ViewCarousel.jsx +++ b/icons/jsx/ViewCarousel.jsx @@ -7,9 +7,13 @@ function SvgViewCarousel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewColumn.jsx b/icons/jsx/ViewColumn.jsx index 696b7fbe3a..c841379f8d 100644 --- a/icons/jsx/ViewColumn.jsx +++ b/icons/jsx/ViewColumn.jsx @@ -7,9 +7,13 @@ function SvgViewColumn(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewComfy.jsx b/icons/jsx/ViewComfy.jsx index 4c025e48ee..7872bdfefd 100644 --- a/icons/jsx/ViewComfy.jsx +++ b/icons/jsx/ViewComfy.jsx @@ -7,9 +7,13 @@ function SvgViewComfy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewComfyAlt.jsx b/icons/jsx/ViewComfyAlt.jsx index 3390753e25..2ec3f8e513 100644 --- a/icons/jsx/ViewComfyAlt.jsx +++ b/icons/jsx/ViewComfyAlt.jsx @@ -7,9 +7,13 @@ function SvgViewComfyAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewCompact.jsx b/icons/jsx/ViewCompact.jsx index c1ed30add4..061cc8fdf3 100644 --- a/icons/jsx/ViewCompact.jsx +++ b/icons/jsx/ViewCompact.jsx @@ -7,9 +7,13 @@ function SvgViewCompact(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewCompactAlt.jsx b/icons/jsx/ViewCompactAlt.jsx index 3028394a5b..f91b675938 100644 --- a/icons/jsx/ViewCompactAlt.jsx +++ b/icons/jsx/ViewCompactAlt.jsx @@ -7,9 +7,13 @@ function SvgViewCompactAlt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewCozy.jsx b/icons/jsx/ViewCozy.jsx index eaecc02f07..e62c15baa3 100644 --- a/icons/jsx/ViewCozy.jsx +++ b/icons/jsx/ViewCozy.jsx @@ -7,9 +7,13 @@ function SvgViewCozy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewDay.jsx b/icons/jsx/ViewDay.jsx index 5711693f9f..3b99f44c33 100644 --- a/icons/jsx/ViewDay.jsx +++ b/icons/jsx/ViewDay.jsx @@ -7,9 +7,13 @@ function SvgViewDay(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewHeadline.jsx b/icons/jsx/ViewHeadline.jsx index c2cf5e0076..fe9e63185e 100644 --- a/icons/jsx/ViewHeadline.jsx +++ b/icons/jsx/ViewHeadline.jsx @@ -7,9 +7,13 @@ function SvgViewHeadline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewInAr.jsx b/icons/jsx/ViewInAr.jsx index 59bfdf9a22..98621dd2db 100644 --- a/icons/jsx/ViewInAr.jsx +++ b/icons/jsx/ViewInAr.jsx @@ -7,9 +7,13 @@ function SvgViewInAr(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewKanban.jsx b/icons/jsx/ViewKanban.jsx index 7a64ed85ed..76e8121746 100644 --- a/icons/jsx/ViewKanban.jsx +++ b/icons/jsx/ViewKanban.jsx @@ -7,9 +7,13 @@ function SvgViewKanban(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewList.jsx b/icons/jsx/ViewList.jsx index 90debfb626..28b2e3743f 100644 --- a/icons/jsx/ViewList.jsx +++ b/icons/jsx/ViewList.jsx @@ -7,9 +7,13 @@ function SvgViewList(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewModule.jsx b/icons/jsx/ViewModule.jsx index fa2d53d7e7..eb48b01c33 100644 --- a/icons/jsx/ViewModule.jsx +++ b/icons/jsx/ViewModule.jsx @@ -7,9 +7,13 @@ function SvgViewModule(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewQuilt.jsx b/icons/jsx/ViewQuilt.jsx index 1895b1c1b5..9a2ac7020f 100644 --- a/icons/jsx/ViewQuilt.jsx +++ b/icons/jsx/ViewQuilt.jsx @@ -7,9 +7,13 @@ function SvgViewQuilt(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewSidebar.jsx b/icons/jsx/ViewSidebar.jsx index 5145b6d841..6ef04ba7b7 100644 --- a/icons/jsx/ViewSidebar.jsx +++ b/icons/jsx/ViewSidebar.jsx @@ -7,9 +7,13 @@ function SvgViewSidebar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewStream.jsx b/icons/jsx/ViewStream.jsx index 52c109b313..cc0dc9b6e6 100644 --- a/icons/jsx/ViewStream.jsx +++ b/icons/jsx/ViewStream.jsx @@ -7,9 +7,10 @@ function SvgViewStream(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewTimeline.jsx b/icons/jsx/ViewTimeline.jsx index ea184b1fec..440ec18d54 100644 --- a/icons/jsx/ViewTimeline.jsx +++ b/icons/jsx/ViewTimeline.jsx @@ -7,9 +7,13 @@ function SvgViewTimeline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ViewWeek.jsx b/icons/jsx/ViewWeek.jsx index 4820318cac..f0cb4ffd95 100644 --- a/icons/jsx/ViewWeek.jsx +++ b/icons/jsx/ViewWeek.jsx @@ -7,9 +7,13 @@ function SvgViewWeek(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Vignette.jsx b/icons/jsx/Vignette.jsx index 9f672403cc..7bc5637770 100644 --- a/icons/jsx/Vignette.jsx +++ b/icons/jsx/Vignette.jsx @@ -7,9 +7,13 @@ function SvgVignette(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Villa.jsx b/icons/jsx/Villa.jsx index 55adc3a135..777d9d69bf 100644 --- a/icons/jsx/Villa.jsx +++ b/icons/jsx/Villa.jsx @@ -7,9 +7,13 @@ function SvgVilla(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VoiceOverOff.jsx b/icons/jsx/VoiceOverOff.jsx index 3a69278773..e02c79a930 100644 --- a/icons/jsx/VoiceOverOff.jsx +++ b/icons/jsx/VoiceOverOff.jsx @@ -7,9 +7,13 @@ function SvgVoiceOverOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Voicemail.jsx b/icons/jsx/Voicemail.jsx index 3a32f79fca..2a62a71621 100644 --- a/icons/jsx/Voicemail.jsx +++ b/icons/jsx/Voicemail.jsx @@ -7,9 +7,13 @@ function SvgVoicemail(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Volcano.jsx b/icons/jsx/Volcano.jsx index 428d3a727c..6dfd701f8c 100644 --- a/icons/jsx/Volcano.jsx +++ b/icons/jsx/Volcano.jsx @@ -7,9 +7,13 @@ function SvgVolcano(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VolumeDown.jsx b/icons/jsx/VolumeDown.jsx index 0fe85721bb..ea3545adf2 100644 --- a/icons/jsx/VolumeDown.jsx +++ b/icons/jsx/VolumeDown.jsx @@ -7,9 +7,13 @@ function SvgVolumeDown(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VolumeMute.jsx b/icons/jsx/VolumeMute.jsx index 5574d362bb..46ffb49936 100644 --- a/icons/jsx/VolumeMute.jsx +++ b/icons/jsx/VolumeMute.jsx @@ -7,9 +7,10 @@ function SvgVolumeMute(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VolumeOff.jsx b/icons/jsx/VolumeOff.jsx index b6fd5a7e09..ed043ff5e0 100644 --- a/icons/jsx/VolumeOff.jsx +++ b/icons/jsx/VolumeOff.jsx @@ -7,9 +7,13 @@ function SvgVolumeOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VolumeUp.jsx b/icons/jsx/VolumeUp.jsx index 16bd777a82..2ecbefcdea 100644 --- a/icons/jsx/VolumeUp.jsx +++ b/icons/jsx/VolumeUp.jsx @@ -7,9 +7,13 @@ function SvgVolumeUp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VolunteerActivism.jsx b/icons/jsx/VolunteerActivism.jsx index ce8f90705c..c8786cafcf 100644 --- a/icons/jsx/VolunteerActivism.jsx +++ b/icons/jsx/VolunteerActivism.jsx @@ -7,9 +7,13 @@ function SvgVolunteerActivism(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VpnKey.jsx b/icons/jsx/VpnKey.jsx index 0de3bff2f6..f627ce62e6 100644 --- a/icons/jsx/VpnKey.jsx +++ b/icons/jsx/VpnKey.jsx @@ -7,9 +7,13 @@ function SvgVpnKey(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VpnKeyOff.jsx b/icons/jsx/VpnKeyOff.jsx index 771820d1fa..7b0a611e5c 100644 --- a/icons/jsx/VpnKeyOff.jsx +++ b/icons/jsx/VpnKeyOff.jsx @@ -7,9 +7,13 @@ function SvgVpnKeyOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/VpnLock.jsx b/icons/jsx/VpnLock.jsx index df5ae854df..0e7ce83717 100644 --- a/icons/jsx/VpnLock.jsx +++ b/icons/jsx/VpnLock.jsx @@ -7,9 +7,13 @@ function SvgVpnLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Vrpano.jsx b/icons/jsx/Vrpano.jsx index 8a53b319ca..8ce41fb399 100644 --- a/icons/jsx/Vrpano.jsx +++ b/icons/jsx/Vrpano.jsx @@ -7,9 +7,13 @@ function SvgVrpano(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Wallet.jsx b/icons/jsx/Wallet.jsx index 16df08d4f7..ec0095a8a0 100644 --- a/icons/jsx/Wallet.jsx +++ b/icons/jsx/Wallet.jsx @@ -7,9 +7,13 @@ function SvgWallet(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Wallpaper.jsx b/icons/jsx/Wallpaper.jsx index 05d9d02745..e6bf30a176 100644 --- a/icons/jsx/Wallpaper.jsx +++ b/icons/jsx/Wallpaper.jsx @@ -7,9 +7,13 @@ function SvgWallpaper(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Warehouse.jsx b/icons/jsx/Warehouse.jsx index c10a521c69..612af9f94e 100644 --- a/icons/jsx/Warehouse.jsx +++ b/icons/jsx/Warehouse.jsx @@ -7,9 +7,13 @@ function SvgWarehouse(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WarningAmber.jsx b/icons/jsx/WarningAmber.jsx index 661d905e94..17de6b2949 100644 --- a/icons/jsx/WarningAmber.jsx +++ b/icons/jsx/WarningAmber.jsx @@ -7,9 +7,13 @@ function SvgWarningAmber(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WarningFilled.jsx b/icons/jsx/WarningFilled.jsx index cee6464075..0ad198c325 100644 --- a/icons/jsx/WarningFilled.jsx +++ b/icons/jsx/WarningFilled.jsx @@ -10,8 +10,8 @@ function SvgWarningFilled(props) { xmlns="http://www.w3.org/2000/svg" {...props} > - - + + ); } diff --git a/icons/jsx/Wash.jsx b/icons/jsx/Wash.jsx index dced90d641..56bc698afe 100644 --- a/icons/jsx/Wash.jsx +++ b/icons/jsx/Wash.jsx @@ -7,9 +7,13 @@ function SvgWash(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Watch.jsx b/icons/jsx/Watch.jsx index b8eb2a015b..a4eb73c3d8 100644 --- a/icons/jsx/Watch.jsx +++ b/icons/jsx/Watch.jsx @@ -7,9 +7,13 @@ function SvgWatch(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WatchLater.jsx b/icons/jsx/WatchLater.jsx index 40b45dff9c..28a96bd1e1 100644 --- a/icons/jsx/WatchLater.jsx +++ b/icons/jsx/WatchLater.jsx @@ -7,9 +7,13 @@ function SvgWatchLater(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WatchOff.jsx b/icons/jsx/WatchOff.jsx index 1701b77154..83fbc31cc0 100644 --- a/icons/jsx/WatchOff.jsx +++ b/icons/jsx/WatchOff.jsx @@ -7,9 +7,13 @@ function SvgWatchOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Water.jsx b/icons/jsx/Water.jsx index 1738d30281..4ecf9a45c8 100644 --- a/icons/jsx/Water.jsx +++ b/icons/jsx/Water.jsx @@ -7,9 +7,13 @@ function SvgWater(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WaterDamage.jsx b/icons/jsx/WaterDamage.jsx index 30994e9904..01b25d90ba 100644 --- a/icons/jsx/WaterDamage.jsx +++ b/icons/jsx/WaterDamage.jsx @@ -7,9 +7,13 @@ function SvgWaterDamage(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WaterDrop.jsx b/icons/jsx/WaterDrop.jsx index dc7bfa14bf..d198439a93 100644 --- a/icons/jsx/WaterDrop.jsx +++ b/icons/jsx/WaterDrop.jsx @@ -7,9 +7,13 @@ function SvgWaterDrop(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WaterfallChart.jsx b/icons/jsx/WaterfallChart.jsx index c8b6787111..3b28e4754b 100644 --- a/icons/jsx/WaterfallChart.jsx +++ b/icons/jsx/WaterfallChart.jsx @@ -7,9 +7,13 @@ function SvgWaterfallChart(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Waves.jsx b/icons/jsx/Waves.jsx index 4d0aeaf619..beb3dd6632 100644 --- a/icons/jsx/Waves.jsx +++ b/icons/jsx/Waves.jsx @@ -7,9 +7,13 @@ function SvgWaves(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WavingHand.jsx b/icons/jsx/WavingHand.jsx index bd32f03906..0215a7814a 100644 --- a/icons/jsx/WavingHand.jsx +++ b/icons/jsx/WavingHand.jsx @@ -7,9 +7,13 @@ function SvgWavingHand(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WbAuto.jsx b/icons/jsx/WbAuto.jsx index 3b7a5d0c6a..2199e9776e 100644 --- a/icons/jsx/WbAuto.jsx +++ b/icons/jsx/WbAuto.jsx @@ -7,9 +7,13 @@ function SvgWbAuto(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WbCloudy.jsx b/icons/jsx/WbCloudy.jsx index b2b5da1164..bf16b4f08a 100644 --- a/icons/jsx/WbCloudy.jsx +++ b/icons/jsx/WbCloudy.jsx @@ -7,9 +7,13 @@ function SvgWbCloudy(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WbIncandescent.jsx b/icons/jsx/WbIncandescent.jsx index 06a487fb16..6b8caac4cb 100644 --- a/icons/jsx/WbIncandescent.jsx +++ b/icons/jsx/WbIncandescent.jsx @@ -7,9 +7,13 @@ function SvgWbIncandescent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WbIridescent.jsx b/icons/jsx/WbIridescent.jsx index 8761ec8253..b1030fb05b 100644 --- a/icons/jsx/WbIridescent.jsx +++ b/icons/jsx/WbIridescent.jsx @@ -7,9 +7,13 @@ function SvgWbIridescent(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WbShade.jsx b/icons/jsx/WbShade.jsx index 42a658add8..00e16c8b76 100644 --- a/icons/jsx/WbShade.jsx +++ b/icons/jsx/WbShade.jsx @@ -7,9 +7,13 @@ function SvgWbShade(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WbSunny.jsx b/icons/jsx/WbSunny.jsx index 0c404ffb50..616b9c5d3b 100644 --- a/icons/jsx/WbSunny.jsx +++ b/icons/jsx/WbSunny.jsx @@ -7,9 +7,13 @@ function SvgWbSunny(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WbTwilight.jsx b/icons/jsx/WbTwilight.jsx index 0092d5dcc0..a2e1a7a0d4 100644 --- a/icons/jsx/WbTwilight.jsx +++ b/icons/jsx/WbTwilight.jsx @@ -7,9 +7,13 @@ function SvgWbTwilight(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Wc.jsx b/icons/jsx/Wc.jsx index 94e9843b22..ee1e07e0bc 100644 --- a/icons/jsx/Wc.jsx +++ b/icons/jsx/Wc.jsx @@ -7,9 +7,13 @@ function SvgWc(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Web.jsx b/icons/jsx/Web.jsx index 09062461fe..6a3745889d 100644 --- a/icons/jsx/Web.jsx +++ b/icons/jsx/Web.jsx @@ -7,9 +7,13 @@ function SvgWeb(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WebAsset.jsx b/icons/jsx/WebAsset.jsx index 6e6f048150..92c217e418 100644 --- a/icons/jsx/WebAsset.jsx +++ b/icons/jsx/WebAsset.jsx @@ -7,9 +7,10 @@ function SvgWebAsset(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WebAssetOff.jsx b/icons/jsx/WebAssetOff.jsx index aedfa0b47e..46826e7345 100644 --- a/icons/jsx/WebAssetOff.jsx +++ b/icons/jsx/WebAssetOff.jsx @@ -7,9 +7,13 @@ function SvgWebAssetOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WebStories.jsx b/icons/jsx/WebStories.jsx index 53490ce56a..96bacd490d 100644 --- a/icons/jsx/WebStories.jsx +++ b/icons/jsx/WebStories.jsx @@ -7,9 +7,13 @@ function SvgWebStories(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Webhook.jsx b/icons/jsx/Webhook.jsx index 7cf20baba3..2c462ed2c0 100644 --- a/icons/jsx/Webhook.jsx +++ b/icons/jsx/Webhook.jsx @@ -7,9 +7,13 @@ function SvgWebhook(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Wechat.jsx b/icons/jsx/Wechat.jsx index f5d7570f14..2cf409846d 100644 --- a/icons/jsx/Wechat.jsx +++ b/icons/jsx/Wechat.jsx @@ -7,10 +7,17 @@ function SvgWechat(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Weekend.jsx b/icons/jsx/Weekend.jsx index ee8dd394ac..4f1a34ab32 100644 --- a/icons/jsx/Weekend.jsx +++ b/icons/jsx/Weekend.jsx @@ -7,9 +7,13 @@ function SvgWeekend(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/West.jsx b/icons/jsx/West.jsx index 480eb59955..200cab8443 100644 --- a/icons/jsx/West.jsx +++ b/icons/jsx/West.jsx @@ -7,9 +7,13 @@ function SvgWest(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Whatsapp.jsx b/icons/jsx/Whatsapp.jsx index 1028da9cca..6006d544e5 100644 --- a/icons/jsx/Whatsapp.jsx +++ b/icons/jsx/Whatsapp.jsx @@ -7,9 +7,13 @@ function SvgWhatsapp(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Whatshot.jsx b/icons/jsx/Whatshot.jsx index cb14fb1123..3d5b9fb3ba 100644 --- a/icons/jsx/Whatshot.jsx +++ b/icons/jsx/Whatshot.jsx @@ -7,9 +7,13 @@ function SvgWhatshot(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WheelchairPickup.jsx b/icons/jsx/WheelchairPickup.jsx index a1260e7186..80f903b451 100644 --- a/icons/jsx/WheelchairPickup.jsx +++ b/icons/jsx/WheelchairPickup.jsx @@ -7,9 +7,13 @@ function SvgWheelchairPickup(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WhereToVote.jsx b/icons/jsx/WhereToVote.jsx index f6e96bebdf..4fd62d2306 100644 --- a/icons/jsx/WhereToVote.jsx +++ b/icons/jsx/WhereToVote.jsx @@ -7,9 +7,13 @@ function SvgWhereToVote(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Widgets.jsx b/icons/jsx/Widgets.jsx index 53d494ffd7..48121e91b1 100644 --- a/icons/jsx/Widgets.jsx +++ b/icons/jsx/Widgets.jsx @@ -7,9 +7,13 @@ function SvgWidgets(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WidthFull.jsx b/icons/jsx/WidthFull.jsx index a38cd678ea..4aed1b86c7 100644 --- a/icons/jsx/WidthFull.jsx +++ b/icons/jsx/WidthFull.jsx @@ -7,9 +7,13 @@ function SvgWidthFull(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WidthNormal.jsx b/icons/jsx/WidthNormal.jsx index 0c31b5a40e..78df0ace09 100644 --- a/icons/jsx/WidthNormal.jsx +++ b/icons/jsx/WidthNormal.jsx @@ -7,9 +7,13 @@ function SvgWidthNormal(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WidthWide.jsx b/icons/jsx/WidthWide.jsx index e487ae21d5..f460d08b60 100644 --- a/icons/jsx/WidthWide.jsx +++ b/icons/jsx/WidthWide.jsx @@ -7,9 +7,13 @@ function SvgWidthWide(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Wifi.jsx b/icons/jsx/Wifi.jsx index b19ea0c1d2..3b87e3e228 100644 --- a/icons/jsx/Wifi.jsx +++ b/icons/jsx/Wifi.jsx @@ -7,9 +7,13 @@ function SvgWifi(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Wifi1Bar.jsx b/icons/jsx/Wifi1Bar.jsx index a0631cbd8e..c69eab3cc2 100644 --- a/icons/jsx/Wifi1Bar.jsx +++ b/icons/jsx/Wifi1Bar.jsx @@ -7,9 +7,13 @@ function SvgWifi1Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Wifi2Bar.jsx b/icons/jsx/Wifi2Bar.jsx index 0f0ef09c0c..4321fc014e 100644 --- a/icons/jsx/Wifi2Bar.jsx +++ b/icons/jsx/Wifi2Bar.jsx @@ -7,9 +7,13 @@ function SvgWifi2Bar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WifiCalling.jsx b/icons/jsx/WifiCalling.jsx index 76487a0ea6..a94feae820 100644 --- a/icons/jsx/WifiCalling.jsx +++ b/icons/jsx/WifiCalling.jsx @@ -7,10 +7,17 @@ function SvgWifiCalling(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/WifiCalling3.jsx b/icons/jsx/WifiCalling3.jsx index 56d4f54d2b..ec61576739 100644 --- a/icons/jsx/WifiCalling3.jsx +++ b/icons/jsx/WifiCalling3.jsx @@ -7,11 +7,21 @@ function SvgWifiCalling3(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - - + + + ); } diff --git a/icons/jsx/WifiChannel.jsx b/icons/jsx/WifiChannel.jsx index 75eaa7002e..42934f0eda 100644 --- a/icons/jsx/WifiChannel.jsx +++ b/icons/jsx/WifiChannel.jsx @@ -7,9 +7,13 @@ function SvgWifiChannel(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WifiFind.jsx b/icons/jsx/WifiFind.jsx index b7cb411642..d4add2a66e 100644 --- a/icons/jsx/WifiFind.jsx +++ b/icons/jsx/WifiFind.jsx @@ -7,10 +7,17 @@ function SvgWifiFind(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/WifiLock.jsx b/icons/jsx/WifiLock.jsx index 1b8a77f25b..5d2871eb66 100644 --- a/icons/jsx/WifiLock.jsx +++ b/icons/jsx/WifiLock.jsx @@ -7,10 +7,17 @@ function SvgWifiLock(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/WifiOff.jsx b/icons/jsx/WifiOff.jsx index 382482ac7d..fb2adb94ec 100644 --- a/icons/jsx/WifiOff.jsx +++ b/icons/jsx/WifiOff.jsx @@ -7,9 +7,13 @@ function SvgWifiOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WifiPassword.jsx b/icons/jsx/WifiPassword.jsx index 3ddf43482b..73e82b7545 100644 --- a/icons/jsx/WifiPassword.jsx +++ b/icons/jsx/WifiPassword.jsx @@ -7,9 +7,13 @@ function SvgWifiPassword(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WifiProtectedSetup.jsx b/icons/jsx/WifiProtectedSetup.jsx index 3389d6f588..8b7bdd10ce 100644 --- a/icons/jsx/WifiProtectedSetup.jsx +++ b/icons/jsx/WifiProtectedSetup.jsx @@ -7,10 +7,17 @@ function SvgWifiProtectedSetup(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/WifiTethering.jsx b/icons/jsx/WifiTethering.jsx index 5e229efacd..5f4410f54d 100644 --- a/icons/jsx/WifiTethering.jsx +++ b/icons/jsx/WifiTethering.jsx @@ -7,9 +7,13 @@ function SvgWifiTethering(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WifiTetheringError.jsx b/icons/jsx/WifiTetheringError.jsx index 02e9f23f44..274d4f29f0 100644 --- a/icons/jsx/WifiTetheringError.jsx +++ b/icons/jsx/WifiTetheringError.jsx @@ -7,9 +7,13 @@ function SvgWifiTetheringError(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WifiTetheringErrorRounded.jsx b/icons/jsx/WifiTetheringErrorRounded.jsx index 14fb2a1618..d79dde879d 100644 --- a/icons/jsx/WifiTetheringErrorRounded.jsx +++ b/icons/jsx/WifiTetheringErrorRounded.jsx @@ -7,9 +7,13 @@ function SvgWifiTetheringErrorRounded(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WifiTetheringOff.jsx b/icons/jsx/WifiTetheringOff.jsx index 481542167f..ec6f90a562 100644 --- a/icons/jsx/WifiTetheringOff.jsx +++ b/icons/jsx/WifiTetheringOff.jsx @@ -7,9 +7,13 @@ function SvgWifiTetheringOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WindPower.jsx b/icons/jsx/WindPower.jsx index 4418c3bb2c..19594377a7 100644 --- a/icons/jsx/WindPower.jsx +++ b/icons/jsx/WindPower.jsx @@ -7,9 +7,13 @@ function SvgWindPower(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/Window.jsx b/icons/jsx/Window.jsx index d47877d78a..bae658eaa0 100644 --- a/icons/jsx/Window.jsx +++ b/icons/jsx/Window.jsx @@ -7,9 +7,13 @@ function SvgWindow(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WineBar.jsx b/icons/jsx/WineBar.jsx index 3775370fd3..9977a5bff7 100644 --- a/icons/jsx/WineBar.jsx +++ b/icons/jsx/WineBar.jsx @@ -7,9 +7,13 @@ function SvgWineBar(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Woman.jsx b/icons/jsx/Woman.jsx index b8a60f9a88..41d765d038 100644 --- a/icons/jsx/Woman.jsx +++ b/icons/jsx/Woman.jsx @@ -7,9 +7,10 @@ function SvgWoman(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/Woman2.jsx b/icons/jsx/Woman2.jsx index 2e95358b90..e0226834ec 100644 --- a/icons/jsx/Woman2.jsx +++ b/icons/jsx/Woman2.jsx @@ -7,9 +7,10 @@ function SvgWoman2(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/WooCommerce.jsx b/icons/jsx/WooCommerce.jsx index 3e448ebb89..42e448026e 100644 --- a/icons/jsx/WooCommerce.jsx +++ b/icons/jsx/WooCommerce.jsx @@ -7,9 +7,13 @@ function SvgWooCommerce(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Wordpress.jsx b/icons/jsx/Wordpress.jsx index 7a867ec856..b2035dd9ed 100644 --- a/icons/jsx/Wordpress.jsx +++ b/icons/jsx/Wordpress.jsx @@ -7,9 +7,13 @@ function SvgWordpress(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Work.jsx b/icons/jsx/Work.jsx index b512c14757..c14d20e1c0 100644 --- a/icons/jsx/Work.jsx +++ b/icons/jsx/Work.jsx @@ -7,9 +7,13 @@ function SvgWork(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WorkHistory.jsx b/icons/jsx/WorkHistory.jsx index 3225eb923d..14c9471ddb 100644 --- a/icons/jsx/WorkHistory.jsx +++ b/icons/jsx/WorkHistory.jsx @@ -7,10 +7,17 @@ function SvgWorkHistory(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/WorkOff.jsx b/icons/jsx/WorkOff.jsx index 86d1a9c8ef..66505cf5ed 100644 --- a/icons/jsx/WorkOff.jsx +++ b/icons/jsx/WorkOff.jsx @@ -7,9 +7,13 @@ function SvgWorkOff(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WorkOutline.jsx b/icons/jsx/WorkOutline.jsx index e8b83eec23..0bf956942f 100644 --- a/icons/jsx/WorkOutline.jsx +++ b/icons/jsx/WorkOutline.jsx @@ -7,9 +7,13 @@ function SvgWorkOutline(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WorkspacePremium.jsx b/icons/jsx/WorkspacePremium.jsx index c8532ac884..104a457f3b 100644 --- a/icons/jsx/WorkspacePremium.jsx +++ b/icons/jsx/WorkspacePremium.jsx @@ -7,9 +7,13 @@ function SvgWorkspacePremium(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Workspaces.jsx b/icons/jsx/Workspaces.jsx index 6d97eee809..9188f24952 100644 --- a/icons/jsx/Workspaces.jsx +++ b/icons/jsx/Workspaces.jsx @@ -7,9 +7,13 @@ function SvgWorkspaces(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WrapText.jsx b/icons/jsx/WrapText.jsx index 384b05474a..d4b70d103e 100644 --- a/icons/jsx/WrapText.jsx +++ b/icons/jsx/WrapText.jsx @@ -7,9 +7,13 @@ function SvgWrapText(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/WrongLocation.jsx b/icons/jsx/WrongLocation.jsx index 2069807e39..c2acb88a2c 100644 --- a/icons/jsx/WrongLocation.jsx +++ b/icons/jsx/WrongLocation.jsx @@ -7,10 +7,17 @@ function SvgWrongLocation(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - - + + ); } diff --git a/icons/jsx/Wysiwyg.jsx b/icons/jsx/Wysiwyg.jsx index cac1870caf..ce0d7c6c64 100644 --- a/icons/jsx/Wysiwyg.jsx +++ b/icons/jsx/Wysiwyg.jsx @@ -7,9 +7,13 @@ function SvgWysiwyg(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Yard.jsx b/icons/jsx/Yard.jsx index 9c89e766f3..50f54dbeea 100644 --- a/icons/jsx/Yard.jsx +++ b/icons/jsx/Yard.jsx @@ -7,9 +7,13 @@ function SvgYard(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); diff --git a/icons/jsx/YoutubeSearchedFor.jsx b/icons/jsx/YoutubeSearchedFor.jsx index 2249e40801..887b2f28b8 100644 --- a/icons/jsx/YoutubeSearchedFor.jsx +++ b/icons/jsx/YoutubeSearchedFor.jsx @@ -7,9 +7,13 @@ function SvgYoutubeSearchedFor(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/Zoom.jsx b/icons/jsx/Zoom.jsx index 7723c9db8a..c492a47608 100644 --- a/icons/jsx/Zoom.jsx +++ b/icons/jsx/Zoom.jsx @@ -11,7 +11,7 @@ function SvgZoom(props) { xmlnsXlink="http://www.w3.org/1999/xlink" {...props} > - + - + ); } diff --git a/icons/jsx/ZoomInMap.jsx b/icons/jsx/ZoomInMap.jsx index 57e5763236..502550ff21 100644 --- a/icons/jsx/ZoomInMap.jsx +++ b/icons/jsx/ZoomInMap.jsx @@ -7,9 +7,13 @@ function SvgZoomInMap(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ZoomOut.jsx b/icons/jsx/ZoomOut.jsx index f2a5a47e8c..817c610ed5 100644 --- a/icons/jsx/ZoomOut.jsx +++ b/icons/jsx/ZoomOut.jsx @@ -7,9 +7,13 @@ function SvgZoomOut(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/ZoomOutMap.jsx b/icons/jsx/ZoomOutMap.jsx index bea743ef0e..3c2c14e785 100644 --- a/icons/jsx/ZoomOutMap.jsx +++ b/icons/jsx/ZoomOutMap.jsx @@ -7,9 +7,13 @@ function SvgZoomOutMap(props) { width={24} height={24} viewBox="0 0 24 24" + fill="none" {...props} > - + ); } diff --git a/icons/jsx/index.jsx b/icons/jsx/index.jsx index 5fd4aa3455..bf8858181b 100644 --- a/icons/jsx/index.jsx +++ b/icons/jsx/index.jsx @@ -56,7 +56,6 @@ export { default as Pgn8Mp } from './8Mp'; export { default as Pgn9K } from './9K'; export { default as Pgn9KPlus } from './9KPlus'; export { default as Pgn9Mp } from './9Mp'; -export { default as By } from './By'; export { default as Cc } from './Cc'; export { default as Nc } from './Nc'; export { default as Nd } from './Nd'; @@ -661,6 +660,7 @@ export { default as EdgesensorLow } from './EdgesensorLow'; export { default as Edit } from './Edit'; export { default as EditAttributes } from './EditAttributes'; export { default as EditCalendar } from './EditCalendar'; +export { default as EditCircle } from './EditCircle'; export { default as EditLocation } from './EditLocation'; export { default as EditLocationAlt } from './EditLocationAlt'; export { default as EditNote } from './EditNote'; diff --git a/icons/package-lock.json b/icons/package-lock.json index 164e84fc1c..4165d5fac5 100644 --- a/icons/package-lock.json +++ b/icons/package-lock.json @@ -13,12 +13,28 @@ "@babel/preset-env": "^7.12.11", "@babel/preset-react": "^7.12.10", "@material-icons/svg": "^1.0.30", - "@svgr/cli": "^5.5.0" + "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", + "@svgr/cli": "^5.5.0", + "@svgr/plugin-jsx": "^6.5.1", + "@svgr/plugin-prettier": "^6.5.1" }, "peerDependencies": { "react": "^16.8.6" } }, + "node_modules/@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, "node_modules/@babel/cli": { "version": "7.12.10", "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.12.10.tgz", @@ -76,41 +92,47 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "dependencies": { - "@babel/highlight": "^7.10.4" + "@babel/highlight": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz", - "integrity": "sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==", - "dev": true + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.5.tgz", + "integrity": "sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, "node_modules/@babel/core": { - "version": "7.12.10", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz", - "integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.10", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.5", - "@babel/parser": "^7.12.10", - "@babel/template": "^7.12.7", - "@babel/traverse": "^7.12.10", - "@babel/types": "^7.12.10", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.5.tgz", + "integrity": "sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.5", + "@babel/parser": "^7.20.5", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "semver": "^5.4.1", - "source-map": "^0.5.0" + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" }, "engines": { "node": ">=6.9.0" @@ -120,15 +142,41 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/generator": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", - "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.5.tgz", + "integrity": "sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==", "dev": true, "dependencies": { - "@babel/types": "^7.12.11", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "@babel/types": "^7.20.5", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" } }, "node_modules/@babel/helper-annotate-as-pure": { @@ -151,20 +199,32 @@ } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz", - "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.12.5", - "@babel/helper-validator-option": "^7.12.1", - "browserslist": "^4.14.5", - "semver": "^5.5.0" + "@babel/compat-data": "^7.20.0", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.12.1", "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.12.1.tgz", @@ -205,6 +265,15 @@ "lodash": "^4.17.19" } }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, "node_modules/@babel/helper-explode-assignable-expression": { "version": "7.12.1", "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz", @@ -215,32 +284,28 @@ } }, "node_modules/@babel/helper-function-name": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", - "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", - "dev": true, - "dependencies": { - "@babel/helper-get-function-arity": "^7.12.10", - "@babel/template": "^7.12.7", - "@babel/types": "^7.12.11" - } - }, - "node_modules/@babel/helper-get-function-arity": { - "version": "7.12.10", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", - "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "dev": true, "dependencies": { - "@babel/types": "^7.12.10" + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz", - "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dev": true, "dependencies": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { @@ -253,29 +318,34 @@ } }, "node_modules/@babel/helper-module-imports": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", - "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "dev": true, "dependencies": { - "@babel/types": "^7.12.5" + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz", - "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.12.1", - "@babel/helper-replace-supers": "^7.12.1", - "@babel/helper-simple-access": "^7.12.1", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/helper-validator-identifier": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.12.1", - "@babel/types": "^7.12.1", - "lodash": "^4.17.19" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/helper-optimise-call-expression": { @@ -317,12 +387,15 @@ } }, "node_modules/@babel/helper-simple-access": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz", - "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "dev": true, "dependencies": { - "@babel/types": "^7.12.1" + "@babel/types": "^7.20.2" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { @@ -335,25 +408,43 @@ } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", - "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, "dependencies": { - "@babel/types": "^7.12.11" + "@babel/types": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "dev": true, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", - "dev": true + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, "node_modules/@babel/helper-validator-option": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz", - "integrity": "sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==", - "dev": true + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } }, "node_modules/@babel/helper-wrap-function": { "version": "7.12.3", @@ -368,25 +459,31 @@ } }, "node_modules/@babel/helpers": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz", - "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.6.tgz", + "integrity": "sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==", "dev": true, "dependencies": { - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.12.5", - "@babel/types": "^7.12.5" + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/highlight/node_modules/chalk": { @@ -404,9 +501,9 @@ } }, "node_modules/@babel/parser": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", - "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.5.tgz", + "integrity": "sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -1327,42 +1424,99 @@ } }, "node_modules/@babel/template": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz", - "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==", + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.12.12", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", - "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.12.11", - "@babel/generator": "^7.12.11", - "@babel/helper-function-name": "^7.12.11", - "@babel/helper-split-export-declaration": "^7.12.11", - "@babel/parser": "^7.12.11", - "@babel/types": "^7.12.12", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.5.tgz", + "integrity": "sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.5", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.5", + "@babel/types": "^7.20.5", "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.19" + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" } }, "node_modules/@babel/types": { - "version": "7.12.12", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", - "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.5.tgz", + "integrity": "sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.12.11", - "lodash": "^4.17.19", + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" } }, "node_modules/@material-icons/svg": { @@ -1372,6 +1526,187 @@ "dev": true }, "node_modules/@svgr/babel-plugin-add-jsx-attribute": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz", + "integrity": "sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.5.0.tgz", + "integrity": "sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.5.0.tgz", + "integrity": "sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz", + "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz", + "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz", + "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz", + "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-plugin-transform-svg-component": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz", + "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/babel-preset": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz", + "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==", + "dev": true, + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", + "@svgr/babel-plugin-remove-jsx-attribute": "*", + "@svgr/babel-plugin-remove-jsx-empty-expression": "*", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1", + "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1", + "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1", + "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1", + "@svgr/babel-plugin-transform-svg-component": "^6.5.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@svgr/cli": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/cli/-/cli-5.5.0.tgz", + "integrity": "sha512-KwEWi8olD7MpHR9pD5CrgsH7W8kQpzhSM0Ar3gGQyXqXdIuRYX5RgkWGm8Zi5ALZV9UhbPE+ObLhuSwEJxOzgA==", + "dev": true, + "dependencies": { + "@svgr/core": "^5.5.0", + "@svgr/plugin-jsx": "^5.5.0", + "@svgr/plugin-prettier": "^5.5.0", + "@svgr/plugin-svgo": "^5.5.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "commander": "^6.2.0", + "dashify": "^2.0.0", + "glob": "^7.1.4" + }, + "bin": { + "svgr": "bin/svgr" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-add-jsx-attribute": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", @@ -1384,7 +1719,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/babel-plugin-remove-jsx-attribute": { + "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-remove-jsx-attribute": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", @@ -1397,7 +1732,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { + "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-remove-jsx-empty-expression": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", @@ -1410,7 +1745,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { + "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-replace-jsx-attribute-value": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", @@ -1423,7 +1758,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/babel-plugin-svg-dynamic-title": { + "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-svg-dynamic-title": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", @@ -1436,7 +1771,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/babel-plugin-svg-em-dimensions": { + "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-svg-em-dimensions": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", @@ -1449,7 +1784,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/babel-plugin-transform-react-native-svg": { + "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-transform-react-native-svg": { "version": "5.4.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", @@ -1462,7 +1797,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/babel-plugin-transform-svg-component": { + "node_modules/@svgr/cli/node_modules/@svgr/babel-plugin-transform-svg-component": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", @@ -1475,7 +1810,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/babel-preset": { + "node_modules/@svgr/cli/node_modules/@svgr/babel-preset": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", @@ -1498,34 +1833,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/cli": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/cli/-/cli-5.5.0.tgz", - "integrity": "sha512-KwEWi8olD7MpHR9pD5CrgsH7W8kQpzhSM0Ar3gGQyXqXdIuRYX5RgkWGm8Zi5ALZV9UhbPE+ObLhuSwEJxOzgA==", - "dev": true, - "dependencies": { - "@svgr/core": "^5.5.0", - "@svgr/plugin-jsx": "^5.5.0", - "@svgr/plugin-prettier": "^5.5.0", - "@svgr/plugin-svgo": "^5.5.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "commander": "^6.2.0", - "dashify": "^2.0.0", - "glob": "^7.1.4" - }, - "bin": { - "svgr": "bin/svgr" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/gregberge" - } - }, - "node_modules/@svgr/core": { + "node_modules/@svgr/cli/node_modules/@svgr/core": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", @@ -1543,7 +1851,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/hast-util-to-babel-ast": { + "node_modules/@svgr/cli/node_modules/@svgr/hast-util-to-babel-ast": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", @@ -1559,7 +1867,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/plugin-jsx": { + "node_modules/@svgr/cli/node_modules/@svgr/plugin-jsx": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", @@ -1578,7 +1886,7 @@ "url": "https://github.com/sponsors/gregberge" } }, - "node_modules/@svgr/plugin-prettier": { + "node_modules/@svgr/cli/node_modules/@svgr/plugin-prettier": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/plugin-prettier/-/plugin-prettier-5.5.0.tgz", "integrity": "sha512-mVc+u+eKUmy8sW5UnFpes9NqVtizJfnhasF8Srbi3XdxVTWyU5lmhWlQAgHLhcrsZKowQ0b7xBa4qWHI5Ew/VQ==", @@ -1595,6 +1903,98 @@ "url": "https://github.com/sponsors/gregberge" } }, + "node_modules/@svgr/core": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz", + "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==", + "dev": true, + "peer": true, + "dependencies": { + "@babel/core": "^7.19.6", + "@svgr/babel-preset": "^6.5.1", + "@svgr/plugin-jsx": "^6.5.1", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", + "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.0", + "entities": "^4.4.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + } + }, + "node_modules/@svgr/hast-util-to-babel-ast/node_modules/entities": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", + "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", + "dev": true, + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/@svgr/plugin-jsx": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz", + "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.19.6", + "@svgr/babel-preset": "^6.5.1", + "@svgr/hast-util-to-babel-ast": "^6.5.1", + "svg-parser": "^2.0.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "^6.0.0" + } + }, + "node_modules/@svgr/plugin-prettier": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/plugin-prettier/-/plugin-prettier-6.5.1.tgz", + "integrity": "sha512-nJTtamrxQjsHcP9vb5PVBiaVW9kEtAt0hzGK8e4+zbaIUHq6RPeR8+SvYaAbIIn1TExFszFuZSz1U08UX7kz7w==", + "dev": true, + "dependencies": { + "deepmerge": "^4.2.2", + "prettier": "^2.7.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/gregberge" + }, + "peerDependencies": { + "@svgr/core": "*" + } + }, "node_modules/@svgr/plugin-svgo": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/@svgr/plugin-svgo/-/plugin-svgo-5.5.0.tgz", @@ -1890,56 +2290,33 @@ } }, "node_modules/browserslist": { - "version": "4.16.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.5.tgz", - "integrity": "sha512-C2HAjrM1AI/djrpAUU/tr4pml1DqLIzJKSLDBXBrNErl9ZCCTXdhwxdJjYc16953+mBWf7Lw+uUJgpgb8cN71A==", + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], "dependencies": { - "caniuse-lite": "^1.0.30001214", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.719", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - } - }, - "node_modules/browserslist/node_modules/caniuse-lite": { - "version": "1.0.30001235", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001235.tgz", - "integrity": "sha512-zWEwIVqnzPkSAXOUlQnPW2oKoYb2aLQ4Q5ejdjBcnH63rfypaW34CxaeBn1VMya2XaEU3P/R2qHpWyj+l0BT1A==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" } }, - "node_modules/browserslist/node_modules/colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", - "dev": true - }, - "node_modules/browserslist/node_modules/electron-to-chromium": { - "version": "1.3.749", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz", - "integrity": "sha512-F+v2zxZgw/fMwPz/VUGIggG4ZndDsYy0vlpthi3tjmDZlcfbhN5mYW0evXUsBr2sUtuDANFtle410A9u/sd/4A==", - "dev": true - }, - "node_modules/browserslist/node_modules/node-releases": { - "version": "1.1.73", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", - "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==", - "dev": true - }, "node_modules/cache-base": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", @@ -1995,6 +2372,22 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/caniuse-lite": { + "version": "1.0.30001439", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz", + "integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + } + ] + }, "node_modules/chalk": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", @@ -2357,9 +2750,9 @@ "optional": true }, "node_modules/cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "dependencies": { "@types/parse-json": "^4.0.0", @@ -2614,6 +3007,12 @@ "domelementtype": "1" } }, + "node_modules/electron-to-chromium": { + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", + "dev": true + }, "node_modules/entities": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", @@ -3480,13 +3879,10 @@ "dev": true }, "node_modules/json5": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", - "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", "dev": true, - "dependencies": { - "minimist": "^1.2.5" - }, "bin": { "json5": "lib/cli.js" }, @@ -3681,6 +4077,12 @@ "node": ">=0.10.0" } }, + "node_modules/node-releases": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.7.tgz", + "integrity": "sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==", + "dev": true + }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", @@ -3921,6 +4323,12 @@ "node": ">=8" } }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, "node_modules/picomatch": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", @@ -3954,15 +4362,18 @@ } }, "node_modules/prettier": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", - "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", + "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", "dev": true, "bin": { "prettier": "bin-prettier.js" }, "engines": { "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" } }, "node_modules/process-nextick-args": { @@ -4786,6 +5197,32 @@ "yarn": "*" } }, + "node_modules/update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "browserslist-lint": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, "node_modules/urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", @@ -4868,6 +5305,16 @@ } }, "dependencies": { + "@ampproject/remapping": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.0.tgz", + "integrity": "sha512-qRmjj8nj9qmLTQXXmaR1cck3UXSRMPrbsLJAasZpF+t3riI71BXed5ebIOYwQntykeZuhjsdweEc9BxH5Jc26w==", + "dev": true, + "requires": { + "@jridgewell/gen-mapping": "^0.1.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, "@babel/cli": { "version": "7.12.10", "resolved": "https://registry.npmjs.org/@babel/cli/-/cli-7.12.10.tgz", @@ -4915,52 +5362,73 @@ } }, "@babel/code-frame": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.12.11.tgz", - "integrity": "sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", + "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", "dev": true, "requires": { - "@babel/highlight": "^7.10.4" + "@babel/highlight": "^7.18.6" } }, "@babel/compat-data": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.12.7.tgz", - "integrity": "sha512-YaxPMGs/XIWtYqrdEOZOCPsVWfEoriXopnsz3/i7apYPXQ3698UFhS6dVT1KN5qOsWmVgw/FOrmQgpRaZayGsw==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.5.tgz", + "integrity": "sha512-KZXo2t10+/jxmkhNXc7pZTqRvSOIvVv/+lJwHS+B2rErwOyjuVRh60yVpb7liQ1U5t7lLJ1bz+t8tSypUZdm0g==", "dev": true }, "@babel/core": { - "version": "7.12.10", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.12.10.tgz", - "integrity": "sha512-eTAlQKq65zHfkHZV0sIVODCPGVgoo1HdBlbSLi9CqOzuZanMv2ihzY+4paiKr1mH+XmYESMAmJ/dpZ68eN6d8w==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/generator": "^7.12.10", - "@babel/helper-module-transforms": "^7.12.1", - "@babel/helpers": "^7.12.5", - "@babel/parser": "^7.12.10", - "@babel/template": "^7.12.7", - "@babel/traverse": "^7.12.10", - "@babel/types": "^7.12.10", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.5.tgz", + "integrity": "sha512-UdOWmk4pNWTm/4DlPUl/Pt4Gz4rcEMb7CY0Y3eJl5Yz1vI8ZJGmHWaVE55LoxRjdpx0z259GE9U5STA9atUinQ==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.1.0", + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.5", + "@babel/helper-compilation-targets": "^7.20.0", + "@babel/helper-module-transforms": "^7.20.2", + "@babel/helpers": "^7.20.5", + "@babel/parser": "^7.20.5", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5", "convert-source-map": "^1.7.0", "debug": "^4.1.0", - "gensync": "^1.0.0-beta.1", - "json5": "^2.1.2", - "lodash": "^4.17.19", - "semver": "^5.4.1", - "source-map": "^0.5.0" + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.1", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "@babel/generator": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.12.11.tgz", - "integrity": "sha512-Ggg6WPOJtSi8yYQvLVjG8F/TlpWDlKx0OpS4Kt+xMQPs5OaGYWy+v1A+1TvxI6sAMGZpKWWoAQ1DaeQbImlItA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.5.tgz", + "integrity": "sha512-jl7JY2Ykn9S0yj4DQP82sYvPU+T3g0HFcWTqDLqiuA9tGRNIj9VfbtXGAYTTkyNEnQk1jkMGOdYka8aG/lulCA==", "dev": true, "requires": { - "@babel/types": "^7.12.11", - "jsesc": "^2.5.1", - "source-map": "^0.5.0" + "@babel/types": "^7.20.5", + "@jridgewell/gen-mapping": "^0.3.2", + "jsesc": "^2.5.1" + }, + "dependencies": { + "@jridgewell/gen-mapping": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", + "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + } + } } }, "@babel/helper-annotate-as-pure": { @@ -4983,15 +5451,23 @@ } }, "@babel/helper-compilation-targets": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.12.5.tgz", - "integrity": "sha512-+qH6NrscMolUlzOYngSBMIOQpKUGPPsc61Bu5W10mg84LxZ7cmvnBHzARKbDoFxVvqqAbj6Tg6N7bSrWSPXMyw==", + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.0.tgz", + "integrity": "sha512-0jp//vDGp9e8hZzBc6N/KwA5ZK3Wsm/pfm4CrY7vzegkVxc65SgSn6wYOnwHe9Js9HRQ1YTCKLGPzDtaS3RoLQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.12.5", - "@babel/helper-validator-option": "^7.12.1", - "browserslist": "^4.14.5", - "semver": "^5.5.0" + "@babel/compat-data": "^7.20.0", + "@babel/helper-validator-option": "^7.18.6", + "browserslist": "^4.21.3", + "semver": "^6.3.0" + }, + "dependencies": { + "semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true + } } }, "@babel/helper-create-class-features-plugin": { @@ -5028,6 +5504,12 @@ "lodash": "^4.17.19" } }, + "@babel/helper-environment-visitor": { + "version": "7.18.9", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", + "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "dev": true + }, "@babel/helper-explode-assignable-expression": { "version": "7.12.1", "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.12.1.tgz", @@ -5038,32 +5520,22 @@ } }, "@babel/helper-function-name": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.12.11.tgz", - "integrity": "sha512-AtQKjtYNolKNi6nNNVLQ27CP6D9oFR6bq/HPYSizlzbp7uC1M59XJe8L+0uXjbIaZaUJF99ruHqVGiKXU/7ybA==", - "dev": true, - "requires": { - "@babel/helper-get-function-arity": "^7.12.10", - "@babel/template": "^7.12.7", - "@babel/types": "^7.12.11" - } - }, - "@babel/helper-get-function-arity": { - "version": "7.12.10", - "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.12.10.tgz", - "integrity": "sha512-mm0n5BPjR06wh9mPQaDdXWDoll/j5UpCAPl1x8fS71GHm7HA6Ua2V4ylG1Ju8lvcTOietbPNNPaSilKj+pj+Ag==", + "version": "7.19.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", + "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", "dev": true, "requires": { - "@babel/types": "^7.12.10" + "@babel/template": "^7.18.10", + "@babel/types": "^7.19.0" } }, "@babel/helper-hoist-variables": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.10.4.tgz", - "integrity": "sha512-wljroF5PgCk2juF69kanHVs6vrLwIPNp6DLD+Lrl3hoQ3PpPPikaDRNFA+0t81NOoMt2DL6WW/mdU8k4k6ZzuA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", + "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", "dev": true, "requires": { - "@babel/types": "^7.10.4" + "@babel/types": "^7.18.6" } }, "@babel/helper-member-expression-to-functions": { @@ -5076,29 +5548,28 @@ } }, "@babel/helper-module-imports": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.12.5.tgz", - "integrity": "sha512-SR713Ogqg6++uexFRORf/+nPXMmWIn80TALu0uaFb+iQIUoR7bOC7zBWyzBs5b3tBBJXuyD0cRu1F15GyzjOWA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", + "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", "dev": true, "requires": { - "@babel/types": "^7.12.5" + "@babel/types": "^7.18.6" } }, "@babel/helper-module-transforms": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.12.1.tgz", - "integrity": "sha512-QQzehgFAZ2bbISiCpmVGfiGux8YVFXQ0abBic2Envhej22DVXV9nCFaS5hIQbkyo1AdGb+gNME2TSh3hYJVV/w==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.2.tgz", + "integrity": "sha512-zvBKyJXRbmK07XhMuujYoJ48B5yvvmM6+wcpv6Ivj4Yg6qO7NOZOSnvZN9CRl1zz1Z4cKf8YejmCMh8clOoOeA==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.12.1", - "@babel/helper-replace-supers": "^7.12.1", - "@babel/helper-simple-access": "^7.12.1", - "@babel/helper-split-export-declaration": "^7.11.0", - "@babel/helper-validator-identifier": "^7.10.4", - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.12.1", - "@babel/types": "^7.12.1", - "lodash": "^4.17.19" + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-module-imports": "^7.18.6", + "@babel/helper-simple-access": "^7.20.2", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/helper-validator-identifier": "^7.19.1", + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.1", + "@babel/types": "^7.20.2" } }, "@babel/helper-optimise-call-expression": { @@ -5140,12 +5611,12 @@ } }, "@babel/helper-simple-access": { - "version": "7.12.1", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.12.1.tgz", - "integrity": "sha512-OxBp7pMrjVewSSC8fXDFrHrBcJATOOFssZwv16F3/6Xtc138GHybBfPbm9kfiqQHKhYQrlamWILwlDCeyMFEaA==", + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", + "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", "dev": true, "requires": { - "@babel/types": "^7.12.1" + "@babel/types": "^7.20.2" } }, "@babel/helper-skip-transparent-expression-wrappers": { @@ -5158,24 +5629,30 @@ } }, "@babel/helper-split-export-declaration": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.12.11.tgz", - "integrity": "sha512-LsIVN8j48gHgwzfocYUSkO/hjYAOJqlpJEc7tGXcIm4cubjVUf8LGW6eWRyxEu7gA25q02p0rQUWoCI33HNS5g==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", + "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", "dev": true, "requires": { - "@babel/types": "^7.12.11" + "@babel/types": "^7.18.6" } }, + "@babel/helper-string-parser": { + "version": "7.19.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", + "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "dev": true + }, "@babel/helper-validator-identifier": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.12.11.tgz", - "integrity": "sha512-np/lG3uARFybkoHokJUmf1QfEvRVCPbmQeUQpKow5cQ3xWrV9i3rUHodKDJPQfTVX61qKi+UdYk8kik84n7XOw==", + "version": "7.19.1", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", + "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", "dev": true }, "@babel/helper-validator-option": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.12.11.tgz", - "integrity": "sha512-TBFCyj939mFSdeX7U7DDj32WtzYY7fDcalgq8v3fBZMNOJQNn7nOYzMaUCiPxPYfCup69mtIpqlKgMZLvQ8Xhw==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", + "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", "dev": true }, "@babel/helper-wrap-function": { @@ -5191,23 +5668,23 @@ } }, "@babel/helpers": { - "version": "7.12.5", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.12.5.tgz", - "integrity": "sha512-lgKGMQlKqA8meJqKsW6rUnc4MdUk35Ln0ATDqdM1a/UpARODdI4j5Y5lVfUScnSNkJcdCRAaWkspykNoFg9sJA==", + "version": "7.20.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.6.tgz", + "integrity": "sha512-Pf/OjgfgFRW5bApskEz5pvidpim7tEDPlFtKcNRXWmfHGn9IEI2W2flqRQXTFb7gIPTyK++N6rVHuwKut4XK6w==", "dev": true, "requires": { - "@babel/template": "^7.10.4", - "@babel/traverse": "^7.12.5", - "@babel/types": "^7.12.5" + "@babel/template": "^7.18.10", + "@babel/traverse": "^7.20.5", + "@babel/types": "^7.20.5" } }, "@babel/highlight": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.10.4.tgz", - "integrity": "sha512-i6rgnR/YgPEQzZZnbTHHuZdlE8qyoBNalD6F+q4vAFlcMEcqmkoG+mPqJYJCo63qPf74+Y1UZsl3l6f7/RIkmA==", + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", + "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.10.4", + "@babel/helper-validator-identifier": "^7.18.6", "chalk": "^2.0.0", "js-tokens": "^4.0.0" }, @@ -5226,9 +5703,9 @@ } }, "@babel/parser": { - "version": "7.12.11", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.12.11.tgz", - "integrity": "sha512-N3UxG+uuF4CMYoNj8AhnbAcJF0PiuJ9KHuy1lQmkYsxTer/MAH9UBNHsBoAX/4s6NvlDD047No8mYVGGzLL4hg==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.5.tgz", + "integrity": "sha512-r27t/cy/m9uKLXQNWWebeCUHgnAZq0CpG1OwKRxzJMP1vpSU4bSIK2hq+/cp0bQxetkXx38n09rNu8jVkcK/zA==", "dev": true }, "@babel/plugin-proposal-async-generator-functions": { @@ -5945,44 +6422,83 @@ } }, "@babel/template": { - "version": "7.12.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.12.7.tgz", - "integrity": "sha512-GkDzmHS6GV7ZeXfJZ0tLRBhZcMcY0/Lnb+eEbXDBfCAcZCjrZKe6p3J4we/D24O9Y8enxWAg1cWwof59yLh2ow==", + "version": "7.18.10", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.18.10.tgz", + "integrity": "sha512-TI+rCtooWHr3QJ27kJxfjutghu44DLnasDMwpDqCXVTal9RLp3RSYNh4NdBrRP2cQAoG9A8juOQl6P6oZG4JxA==", "dev": true, "requires": { - "@babel/code-frame": "^7.10.4", - "@babel/parser": "^7.12.7", - "@babel/types": "^7.12.7" + "@babel/code-frame": "^7.18.6", + "@babel/parser": "^7.18.10", + "@babel/types": "^7.18.10" } }, "@babel/traverse": { - "version": "7.12.12", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.12.12.tgz", - "integrity": "sha512-s88i0X0lPy45RrLM8b9mz8RPH5FqO9G9p7ti59cToE44xFm1Q+Pjh5Gq4SXBbtb88X7Uy7pexeqRIQDDMNkL0w==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.12.11", - "@babel/generator": "^7.12.11", - "@babel/helper-function-name": "^7.12.11", - "@babel/helper-split-export-declaration": "^7.12.11", - "@babel/parser": "^7.12.11", - "@babel/types": "^7.12.12", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.5.tgz", + "integrity": "sha512-WM5ZNN3JITQIq9tFZaw1ojLU3WgWdtkxnhM1AegMS+PvHjkM5IXjmYEGY7yukz5XS4sJyEf2VzWjI8uAavhxBQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.18.6", + "@babel/generator": "^7.20.5", + "@babel/helper-environment-visitor": "^7.18.9", + "@babel/helper-function-name": "^7.19.0", + "@babel/helper-hoist-variables": "^7.18.6", + "@babel/helper-split-export-declaration": "^7.18.6", + "@babel/parser": "^7.20.5", + "@babel/types": "^7.20.5", "debug": "^4.1.0", - "globals": "^11.1.0", - "lodash": "^4.17.19" + "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.12.12", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.12.12.tgz", - "integrity": "sha512-lnIX7piTxOH22xE7fDXDbSHg9MM1/6ORnafpJmov5rs0kX5g4BZxeXNJLXsMRiO0U5Rb8/FvMS6xlTnTHvxonQ==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.5.tgz", + "integrity": "sha512-c9fst/h2/dcF7H+MJKZ2T0KjEQ8hY/BNnDk/H3XY8C4Aw/eWQXWn/lWntHF9ooUBnGmEvbfGrTgLWc+um0YDUg==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.12.11", - "lodash": "^4.17.19", + "@babel/helper-string-parser": "^7.19.4", + "@babel/helper-validator-identifier": "^7.19.1", "to-fast-properties": "^2.0.0" } }, + "@jridgewell/gen-mapping": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", + "integrity": "sha512-sQXCasFk+U8lWYEe66WxRDOE9PjVz4vSM51fTu3Hw+ClTpUSQb718772vH3pyS5pShp6lvQM7SxgIDXXXmOX7w==", + "dev": true, + "requires": { + "@jridgewell/set-array": "^1.0.0", + "@jridgewell/sourcemap-codec": "^1.4.10" + } + }, + "@jridgewell/resolve-uri": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.0.tgz", + "integrity": "sha512-F2msla3tad+Mfht5cJq7LSXcdudKTWCVYUgw6pLFOOHSTtZlj6SWNYAp+AhuqLmWdBO2X5hPrLcu8cVP8fy28w==", + "dev": true + }, + "@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true + }, + "@jridgewell/sourcemap-codec": { + "version": "1.4.14", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", + "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "dev": true + }, + "@jridgewell/trace-mapping": { + "version": "0.3.17", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", + "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "dev": true, + "requires": { + "@jridgewell/resolve-uri": "3.1.0", + "@jridgewell/sourcemap-codec": "1.4.14" + } + }, "@material-icons/svg": { "version": "1.0.30", "resolved": "https://registry.npmjs.org/@material-icons/svg/-/svg-1.0.30.tgz", @@ -5990,67 +6506,75 @@ "dev": true }, "@svgr/babel-plugin-add-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", - "dev": true + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-6.5.1.tgz", + "integrity": "sha512-9PYGcXrAxitycIjRmZB+Q0JaN07GZIWaTBIGQzfaZv+qr1n8X1XUEJ5rZ/vx6OVD9RRYlrNnXWExQXcmZeD/BQ==", + "dev": true, + "requires": {} }, "@svgr/babel-plugin-remove-jsx-attribute": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", - "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", - "dev": true + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-6.5.0.tgz", + "integrity": "sha512-8zYdkym7qNyfXpWvu4yq46k41pyNM9SOstoWhKlm+IfdCE1DdnRKeMUPsWIEO/DEkaWxJ8T9esNdG3QwQ93jBA==", + "dev": true, + "requires": {} }, "@svgr/babel-plugin-remove-jsx-empty-expression": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", - "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", - "dev": true + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-6.5.0.tgz", + "integrity": "sha512-NFdxMq3xA42Kb1UbzCVxplUc0iqSyM9X8kopImvFnB+uSDdzIHOdbs1op8ofAvVRtbg4oZiyRl3fTYeKcOe9Iw==", + "dev": true, + "requires": {} }, "@svgr/babel-plugin-replace-jsx-attribute-value": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", - "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", - "dev": true + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-6.5.1.tgz", + "integrity": "sha512-8DPaVVE3fd5JKuIC29dqyMB54sA6mfgki2H2+swh+zNJoynC8pMPzOkidqHOSc6Wj032fhl8Z0TVn1GiPpAiJg==", + "dev": true, + "requires": {} }, "@svgr/babel-plugin-svg-dynamic-title": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", - "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", - "dev": true + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-6.5.1.tgz", + "integrity": "sha512-FwOEi0Il72iAzlkaHrlemVurgSQRDFbk0OC8dSvD5fSBPHltNh7JtLsxmZUhjYBZo2PpcU/RJvvi6Q0l7O7ogw==", + "dev": true, + "requires": {} }, "@svgr/babel-plugin-svg-em-dimensions": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", - "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", - "dev": true + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-6.5.1.tgz", + "integrity": "sha512-gWGsiwjb4tw+ITOJ86ndY/DZZ6cuXMNE/SjcDRg+HLuCmwpcjOktwRF9WgAiycTqJD/QXqL2f8IzE2Rzh7aVXA==", + "dev": true, + "requires": {} }, "@svgr/babel-plugin-transform-react-native-svg": { - "version": "5.4.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", - "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", - "dev": true + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-6.5.1.tgz", + "integrity": "sha512-2jT3nTayyYP7kI6aGutkyfJ7UMGtuguD72OjeGLwVNyfPRBD8zQthlvL+fAbAKk5n9ZNcvFkp/b1lZ7VsYqVJg==", + "dev": true, + "requires": {} }, "@svgr/babel-plugin-transform-svg-component": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", - "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", - "dev": true + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-6.5.1.tgz", + "integrity": "sha512-a1p6LF5Jt33O3rZoVRBqdxL350oge54iZWHNI6LJB5tQ7EelvD/Mb1mfBiZNAan0dt4i3VArkFRjA4iObuNykQ==", + "dev": true, + "requires": {} }, "@svgr/babel-preset": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", - "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-6.5.1.tgz", + "integrity": "sha512-6127fvO/FF2oi5EzSQOAjo1LE3OtNVh11R+/8FXa+mHx1ptAaS4cknIjnUA7e6j6fwGGJ17NzaTJFUwOV2zwCw==", "dev": true, "requires": { - "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", - "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", - "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", - "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", - "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", - "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", - "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1", + "@svgr/babel-plugin-remove-jsx-attribute": "*", + "@svgr/babel-plugin-remove-jsx-empty-expression": "*", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^6.5.1", + "@svgr/babel-plugin-svg-dynamic-title": "^6.5.1", + "@svgr/babel-plugin-svg-em-dimensions": "^6.5.1", + "@svgr/babel-plugin-transform-react-native-svg": "^6.5.1", + "@svgr/babel-plugin-transform-svg-component": "^6.5.1" } }, "@svgr/cli": { @@ -6068,48 +6592,168 @@ "commander": "^6.2.0", "dashify": "^2.0.0", "glob": "^7.1.4" + }, + "dependencies": { + "@svgr/babel-plugin-add-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-ZFf2gs/8/6B8PnSofI0inYXr2SDNTDScPXhN7k5EqD4aZ3gi6u+rbmZHVB8IM3wDyx8ntKACZbtXSm7oZGRqVg==", + "dev": true + }, + "@svgr/babel-plugin-remove-jsx-attribute": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-5.4.0.tgz", + "integrity": "sha512-yaS4o2PgUtwLFGTKbsiAy6D0o3ugcUhWK0Z45umJ66EPWunAz9fuFw2gJuje6wqQvQWOTJvIahUwndOXb7QCPg==", + "dev": true + }, + "@svgr/babel-plugin-remove-jsx-empty-expression": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-5.0.1.tgz", + "integrity": "sha512-LA72+88A11ND/yFIMzyuLRSMJ+tRKeYKeQ+mR3DcAZ5I4h5CPWN9AHyUzJbWSYp/u2u0xhmgOe0+E41+GjEueA==", + "dev": true + }, + "@svgr/babel-plugin-replace-jsx-attribute-value": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-5.0.1.tgz", + "integrity": "sha512-PoiE6ZD2Eiy5mK+fjHqwGOS+IXX0wq/YDtNyIgOrc6ejFnxN4b13pRpiIPbtPwHEc+NT2KCjteAcq33/F1Y9KQ==", + "dev": true + }, + "@svgr/babel-plugin-svg-dynamic-title": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-5.4.0.tgz", + "integrity": "sha512-zSOZH8PdZOpuG1ZVx/cLVePB2ibo3WPpqo7gFIjLV9a0QsuQAzJiwwqmuEdTaW2pegyBE17Uu15mOgOcgabQZg==", + "dev": true + }, + "@svgr/babel-plugin-svg-em-dimensions": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-5.4.0.tgz", + "integrity": "sha512-cPzDbDA5oT/sPXDCUYoVXEmm3VIoAWAPT6mSPTJNbQaBNUuEKVKyGH93oDY4e42PYHRW67N5alJx/eEol20abw==", + "dev": true + }, + "@svgr/babel-plugin-transform-react-native-svg": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-5.4.0.tgz", + "integrity": "sha512-3eYP/SaopZ41GHwXma7Rmxcv9uRslRDTY1estspeB1w1ueZWd/tPlMfEOoccYpEMZU3jD4OU7YitnXcF5hLW2Q==", + "dev": true + }, + "@svgr/babel-plugin-transform-svg-component": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-5.5.0.tgz", + "integrity": "sha512-q4jSH1UUvbrsOtlo/tKcgSeiCHRSBdXoIoqX1pgcKK/aU3JD27wmMKwGtpB8qRYUYoyXvfGxUVKchLuR5pB3rQ==", + "dev": true + }, + "@svgr/babel-preset": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/babel-preset/-/babel-preset-5.5.0.tgz", + "integrity": "sha512-4FiXBjvQ+z2j7yASeGPEi8VD/5rrGQk4Xrq3EdJmoZgz/tpqChpo5hgXDvmEauwtvOc52q8ghhZK4Oy7qph4ig==", + "dev": true, + "requires": { + "@svgr/babel-plugin-add-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-attribute": "^5.4.0", + "@svgr/babel-plugin-remove-jsx-empty-expression": "^5.0.1", + "@svgr/babel-plugin-replace-jsx-attribute-value": "^5.0.1", + "@svgr/babel-plugin-svg-dynamic-title": "^5.4.0", + "@svgr/babel-plugin-svg-em-dimensions": "^5.4.0", + "@svgr/babel-plugin-transform-react-native-svg": "^5.4.0", + "@svgr/babel-plugin-transform-svg-component": "^5.5.0" + } + }, + "@svgr/core": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", + "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "dev": true, + "requires": { + "@svgr/plugin-jsx": "^5.5.0", + "camelcase": "^6.2.0", + "cosmiconfig": "^7.0.0" + } + }, + "@svgr/hast-util-to-babel-ast": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", + "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "dev": true, + "requires": { + "@babel/types": "^7.12.6" + } + }, + "@svgr/plugin-jsx": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", + "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "dev": true, + "requires": { + "@babel/core": "^7.12.3", + "@svgr/babel-preset": "^5.5.0", + "@svgr/hast-util-to-babel-ast": "^5.5.0", + "svg-parser": "^2.0.2" + } + }, + "@svgr/plugin-prettier": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/@svgr/plugin-prettier/-/plugin-prettier-5.5.0.tgz", + "integrity": "sha512-mVc+u+eKUmy8sW5UnFpes9NqVtizJfnhasF8Srbi3XdxVTWyU5lmhWlQAgHLhcrsZKowQ0b7xBa4qWHI5Ew/VQ==", + "dev": true, + "requires": { + "deepmerge": "^4.2.2", + "prettier": "^2.1.2" + } + } } }, "@svgr/core": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/core/-/core-5.5.0.tgz", - "integrity": "sha512-q52VOcsJPvV3jO1wkPtzTuKlvX7Y3xIcWRpCMtBF3MrteZJtBfQw/+u0B1BHy5ColpQc1/YVTrPEtSYIMNZlrQ==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/core/-/core-6.5.1.tgz", + "integrity": "sha512-/xdLSWxK5QkqG524ONSjvg3V/FkNyCv538OIBdQqPNaAta3AsXj/Bd2FbvR87yMbXO2hFSWiAe/Q6IkVPDw+mw==", "dev": true, + "peer": true, "requires": { - "@svgr/plugin-jsx": "^5.5.0", + "@babel/core": "^7.19.6", + "@svgr/babel-preset": "^6.5.1", + "@svgr/plugin-jsx": "^6.5.1", "camelcase": "^6.2.0", - "cosmiconfig": "^7.0.0" + "cosmiconfig": "^7.0.1" } }, "@svgr/hast-util-to-babel-ast": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-5.5.0.tgz", - "integrity": "sha512-cAaR/CAiZRB8GP32N+1jocovUtvlj0+e65TB50/6Lcime+EA49m/8l+P2ko+XPJ4dw3xaPS3jOL4F2X4KWxoeQ==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-6.5.1.tgz", + "integrity": "sha512-1hnUxxjd83EAxbL4a0JDJoD3Dao3hmjvyvyEV8PzWmLK3B9m9NPlW7GKjFyoWE8nM7HnXzPcmmSyOW8yOddSXw==", "dev": true, "requires": { - "@babel/types": "^7.12.6" + "@babel/types": "^7.20.0", + "entities": "^4.4.0" + }, + "dependencies": { + "entities": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.4.0.tgz", + "integrity": "sha512-oYp7156SP8LkeGD0GF85ad1X9Ai79WtRsZ2gxJqtBuzH+98YUV6jkHEKlZkMbcrjJjIVJNIDP/3WL9wQkoPbWA==", + "dev": true + } } }, "@svgr/plugin-jsx": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-5.5.0.tgz", - "integrity": "sha512-V/wVh33j12hGh05IDg8GpIUXbjAPnTdPTKuP4VNLggnwaHMPNQNae2pRnyTAILWCQdz5GyMqtO488g7CKM8CBA==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/plugin-jsx/-/plugin-jsx-6.5.1.tgz", + "integrity": "sha512-+UdQxI3jgtSjCykNSlEMuy1jSRQlGC7pqBCPvkG/2dATdWo082zHTTK3uhnAju2/6XpE6B5mZ3z4Z8Ns01S8Gw==", "dev": true, "requires": { - "@babel/core": "^7.12.3", - "@svgr/babel-preset": "^5.5.0", - "@svgr/hast-util-to-babel-ast": "^5.5.0", - "svg-parser": "^2.0.2" + "@babel/core": "^7.19.6", + "@svgr/babel-preset": "^6.5.1", + "@svgr/hast-util-to-babel-ast": "^6.5.1", + "svg-parser": "^2.0.4" } }, "@svgr/plugin-prettier": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/@svgr/plugin-prettier/-/plugin-prettier-5.5.0.tgz", - "integrity": "sha512-mVc+u+eKUmy8sW5UnFpes9NqVtizJfnhasF8Srbi3XdxVTWyU5lmhWlQAgHLhcrsZKowQ0b7xBa4qWHI5Ew/VQ==", + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@svgr/plugin-prettier/-/plugin-prettier-6.5.1.tgz", + "integrity": "sha512-nJTtamrxQjsHcP9vb5PVBiaVW9kEtAt0hzGK8e4+zbaIUHq6RPeR8+SvYaAbIIn1TExFszFuZSz1U08UX7kz7w==", "dev": true, "requires": { "deepmerge": "^4.2.2", - "prettier": "^2.1.2" + "prettier": "^2.7.1" } }, "@svgr/plugin-svgo": { @@ -6355,42 +6999,15 @@ } }, "browserslist": { - "version": "4.16.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.16.5.tgz", - "integrity": "sha512-C2HAjrM1AI/djrpAUU/tr4pml1DqLIzJKSLDBXBrNErl9ZCCTXdhwxdJjYc16953+mBWf7Lw+uUJgpgb8cN71A==", + "version": "4.21.4", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.4.tgz", + "integrity": "sha512-CBHJJdDmgjl3daYjN5Cp5kbTf1mUhZoS+beLklHIvkOWscs83YAhLlF3Wsh/lciQYAcbBJgTOD44VtG31ZM4Hw==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001214", - "colorette": "^1.2.2", - "electron-to-chromium": "^1.3.719", - "escalade": "^3.1.1", - "node-releases": "^1.1.71" - }, - "dependencies": { - "caniuse-lite": { - "version": "1.0.30001235", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001235.tgz", - "integrity": "sha512-zWEwIVqnzPkSAXOUlQnPW2oKoYb2aLQ4Q5ejdjBcnH63rfypaW34CxaeBn1VMya2XaEU3P/R2qHpWyj+l0BT1A==", - "dev": true - }, - "colorette": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-1.2.2.tgz", - "integrity": "sha512-MKGMzyfeuutC/ZJ1cba9NqcNpfeqMUcYmyF1ZFY6/Cn7CNSAKx6a+s48sqLqyAiZuaP2TcqMhoo+dlwFnVxT9w==", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.749", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.749.tgz", - "integrity": "sha512-F+v2zxZgw/fMwPz/VUGIggG4ZndDsYy0vlpthi3tjmDZlcfbhN5mYW0evXUsBr2sUtuDANFtle410A9u/sd/4A==", - "dev": true - }, - "node-releases": { - "version": "1.1.73", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.73.tgz", - "integrity": "sha512-uW7fodD6pyW2FZNZnp/Z3hvWKeEW1Y8R1+1CnErE8cXFXzl5blBOoVB41CvMer6P6Q0S5FXDwcHgFd1Wj0U9zg==", - "dev": true - } + "caniuse-lite": "^1.0.30001400", + "electron-to-chromium": "^1.4.251", + "node-releases": "^2.0.6", + "update-browserslist-db": "^1.0.9" } }, "cache-base": { @@ -6433,6 +7050,12 @@ "integrity": "sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg==", "dev": true }, + "caniuse-lite": { + "version": "1.0.30001439", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001439.tgz", + "integrity": "sha512-1MgUzEkoMO6gKfXflStpYgZDlFM7M/ck/bgfVCACO5vnAf0fXoNVHdWtqGU+MYca+4bL9Z5bpOVmR33cWW9G2A==", + "dev": true + }, "chalk": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.0.tgz", @@ -6724,9 +7347,9 @@ "optional": true }, "cosmiconfig": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.0.0.tgz", - "integrity": "sha512-pondGvTuVYDk++upghXJabWzL6Kxu6f26ljFw64Swq9v6sQPUL3EUlVDV56diOjpCayKihL6hVe8exIACU4XcA==", + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", "dev": true, "requires": { "@types/parse-json": "^4.0.0", @@ -6927,6 +7550,12 @@ "domelementtype": "1" } }, + "electron-to-chromium": { + "version": "1.4.284", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.284.tgz", + "integrity": "sha512-M8WEXFuKXMYMVr45fo8mq0wUrrJHheiKZf6BArTKk9ZBYCKJEOU5H8cdWgDT+qCVZf7Na4lVUaZsA+h6uA9+PA==", + "dev": true + }, "entities": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.1.0.tgz", @@ -7598,13 +8227,10 @@ "dev": true }, "json5": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.3.tgz", - "integrity": "sha512-KXPvOm8K9IJKFM0bmdn8QXh7udDh1g/giieX0NLCaMnb4hEiVFqnop2ImTXCc5e0/oHz3LTqmHGtExn5hfMkOA==", - "dev": true, - "requires": { - "minimist": "^1.2.5" - } + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", + "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", + "dev": true }, "kind-of": { "version": "6.0.3", @@ -7762,6 +8388,12 @@ "to-regex": "^3.0.1" } }, + "node-releases": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.7.tgz", + "integrity": "sha512-EJ3rzxL9pTWPjk5arA0s0dgXpnyiAbJDE6wHT62g7VsgrgQgmmZ+Ru++M1BFofncWja+Pnn3rEr3fieRySAdKQ==", + "dev": true + }, "normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", @@ -7941,6 +8573,12 @@ "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true }, + "picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, "picomatch": { "version": "2.2.2", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.2.2.tgz", @@ -7962,9 +8600,9 @@ "optional": true }, "prettier": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.2.1.tgz", - "integrity": "sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q==", + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.1.tgz", + "integrity": "sha512-lqGoSJBQNJidqCHE80vqZJHWHRFoNYsSpP9AjFhlhi9ODCJA541svILes/+/1GM3VaL/abZi7cpFzOpdR9UPKg==", "dev": true }, "process-nextick-args": { @@ -8649,6 +9287,16 @@ "dev": true, "optional": true }, + "update-browserslist-db": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", + "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "dev": true, + "requires": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + } + }, "urix": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", diff --git a/icons/package.json b/icons/package.json index 8b95718345..a1dce44c21 100644 --- a/icons/package.json +++ b/icons/package.json @@ -15,7 +15,8 @@ "@babel/preset-env": "^7.12.11", "@babel/preset-react": "^7.12.10", "@material-icons/svg": "^1.0.30", - "@svgr/cli": "^5.5.0" + "@svgr/cli": "^5.5.0", + "@svgr/babel-plugin-add-jsx-attribute": "^6.5.1" }, "peerDependencies": { "react": "^16.8.6" diff --git a/icons/svg/edit_circle.svg b/icons/svg/edit_circle.svg new file mode 100644 index 0000000000..8892e0ff8d --- /dev/null +++ b/icons/svg/edit_circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/icons/svg/feedback_outline.svg b/icons/svg/feedback_outline.svg new file mode 100644 index 0000000000..a7bb59834d --- /dev/null +++ b/icons/svg/feedback_outline.svg @@ -0,0 +1,3 @@ + + + diff --git a/icons/svg/text_to_speech.svg b/icons/svg/text_to_speech.svg new file mode 100644 index 0000000000..65d4f5eb54 --- /dev/null +++ b/icons/svg/text_to_speech.svg @@ -0,0 +1,3 @@ + + + diff --git a/package-lock.json b/package-lock.json index 8f19dce02f..eafd4256b0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -13,7 +13,9 @@ "@fortawesome/react-fontawesome": "^0.1.18", "@popperjs/core": "^2.11.4", "bootstrap": "^4.6.2", + "chroma-js": "^2.4.2", "classnames": "^2.3.1", + "commander": "^9.4.1", "email-prop-type": "^3.0.0", "file-selector": "^0.6.0", "font-awesome": "^4.7.0", @@ -30,8 +32,14 @@ "react-responsive": "^8.2.0", "react-table": "^7.7.0", "react-transition-group": "^4.4.2", + "style-dictionary": "^3.7.1", "tabbable": "^5.3.3", - "uncontrollable": "^7.2.1" + "uncontrollable": "^7.2.1", + "uuid": "^9.0.0" + }, + "bin": { + "build-design-tokens": "tokens/build-tokens.js", + "replace-scss-with-css": "tokens/replace-variables.js" }, "devDependencies": { "@babel/cli": "^7.16.8", @@ -50,12 +58,14 @@ "@semantic-release/git": "^10.0.1", "@testing-library/jest-dom": "^5.16.3", "@testing-library/react": "^12.1.4", + "@testing-library/react-hooks": "^8.0.1", "@testing-library/user-event": "^13.5.0", "@types/enzyme": "^3.10.12", "@types/jest": "^27.5.0", "@types/react": "17.0.0", "@types/react-dom": "17.0.11", "@types/react-test-renderer": "^18.0.0", + "@types/uuid": "^9.0.0", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", "@wojtekmaj/enzyme-adapter-react-17": "^0.6.7", @@ -63,7 +73,6 @@ "axios-mock-adapter": "^1.21.1", "babel-jest": "^28.1.2", "babel-loader": "^8.2.4", - "commander": "^9.3.0", "enzyme": "^3.9.0", "eslint": "8.18.0", "eslint-config-airbnb": "19.0.4", @@ -3716,6 +3725,36 @@ "react-dom": "<18.0.0" } }, + "node_modules/@testing-library/react-hooks": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@testing-library/react-hooks/-/react-hooks-8.0.1.tgz", + "integrity": "sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.12.5", + "react-error-boundary": "^3.1.0" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "@types/react": "^16.9.0 || ^17.0.0", + "react": "^16.9.0 || ^17.0.0", + "react-dom": "^16.9.0 || ^17.0.0", + "react-test-renderer": "^16.9.0 || ^17.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "react-dom": { + "optional": true + }, + "react-test-renderer": { + "optional": true + } + } + }, "node_modules/@testing-library/user-event": { "version": "13.5.0", "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", @@ -4011,6 +4050,12 @@ "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", "dev": true }, + "node_modules/@types/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-kr90f+ERiQtKWMz5rP32ltJ/BtULDI5RVO0uavn1HQUOwjx0R1h0rnDYNL0CepF1zL5bSY6FISAfd9tOdDhU5Q==", + "dev": true + }, "node_modules/@types/warning": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", @@ -5177,7 +5222,6 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -5315,9 +5359,9 @@ } }, "node_modules/caniuse-lite": { - "version": "1.0.30001378", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001378.tgz", - "integrity": "sha512-JVQnfoO7FK7WvU4ZkBRbPjaot4+YqxogSDosHv0Hv5mWpUESmN+UubMU6L/hGz8QlQ2aY5U0vR6MOs6j/CXpNA==", + "version": "1.0.30001448", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001448.tgz", + "integrity": "sha512-tq2YI+MJnooG96XpbTRYkBxLxklZPOdLmNIOdIhvf7SNJan6u5vCKum8iT7ZfCt70m1GPkuC7P3TtX6UuhupuA==", "dev": true, "funding": [ { @@ -5330,6 +5374,33 @@ } ] }, + "node_modules/capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/capital-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/capital-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, "node_modules/cardinal": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", @@ -5365,6 +5436,60 @@ "node": ">=4" } }, + "node_modules/change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "dependencies": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/change-case/node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/change-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/change-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/change-case/node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -5439,6 +5564,11 @@ "fsevents": "~2.3.2" } }, + "node_modules/chroma-js": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.4.2.tgz", + "integrity": "sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==" + }, "node_modules/chrome-trace-event": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", @@ -5563,10 +5693,9 @@ } }, "node_modules/commander": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.4.0.tgz", - "integrity": "sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw==", - "dev": true, + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", "engines": { "node": "^12.20.0 || >=14" } @@ -5590,8 +5719,7 @@ "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "node_modules/confusing-browser-globals": { "version": "1.0.11", @@ -5599,6 +5727,41 @@ "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", "dev": true }, + "node_modules/constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + } + }, + "node_modules/constant-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/constant-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/constant-case/node_modules/upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, "node_modules/conventional-changelog-angular": { "version": "5.0.13", "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", @@ -5942,9 +6105,9 @@ "dev": true }, "node_modules/decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==", + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", "engines": { "node": ">=0.10" } @@ -6199,6 +6362,32 @@ "url": "https://github.com/fb55/domutils?sponsor=1" } }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, "node_modules/dot-prop": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", @@ -7963,8 +8152,7 @@ "node_modules/graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, "node_modules/handlebars": { "version": "4.7.7", @@ -8080,6 +8268,15 @@ "he": "bin/he" } }, + "node_modules/header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "dependencies": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", @@ -8161,9 +8358,9 @@ } }, "node_modules/html-loader/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" @@ -8173,9 +8370,9 @@ } }, "node_modules/html-loader/node_modules/loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -11073,10 +11270,9 @@ "dev": true }, "node_modules/json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", - "dev": true, + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "bin": { "json5": "lib/cli.js" }, @@ -11084,11 +11280,15 @@ "node": ">=6" } }, + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" + }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, "dependencies": { "universalify": "^2.0.0" }, @@ -11258,9 +11458,9 @@ } }, "node_modules/loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -11286,8 +11486,7 @@ "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "node_modules/lodash.capitalize": { "version": "4.2.1", @@ -11488,9 +11687,9 @@ } }, "node_modules/markdown-loader/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" @@ -11500,9 +11699,9 @@ } }, "node_modules/markdown-loader/node_modules/loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "dependencies": { "big.js": "^5.2.2", @@ -11663,7 +11862,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, "dependencies": { "brace-expansion": "^1.1.7" }, @@ -11712,18 +11910,6 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true, - "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" - } - }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -14887,6 +15073,41 @@ "url": "https://github.com/inikulin/parse5?sponsor=1" } }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -14900,7 +15121,6 @@ "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true, "engines": { "node": ">=0.10.0" } @@ -15161,6 +15381,18 @@ "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true }, + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", @@ -15469,6 +15701,22 @@ "react": ">= 16.8 || 18.0.0" } }, + "node_modules/react-error-boundary": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.4.tgz", + "integrity": "sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.12.5" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + }, + "peerDependencies": { + "react": ">=16.13.1" + } + }, "node_modules/react-fast-compare": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", @@ -16445,6 +16693,33 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + } + }, + "node_modules/sentence-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/sentence-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, "node_modules/serialize-javascript": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", @@ -16592,6 +16867,15 @@ "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true }, + "node_modules/snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -16906,59 +17190,185 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/style-search": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", - "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", - "dev": true - }, - "node_modules/stylelint": { - "version": "14.10.0", - "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.10.0.tgz", - "integrity": "sha512-VAmyKrEK+wNFh9R8mNqoxEFzaa4gsHGhcT4xgkQDuOA5cjF6CaNS8loYV7gpi4tIZBPUyXesotPXzJAMN8VLOQ==", - "dev": true, + "node_modules/style-dictionary": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", + "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", "dependencies": { - "@csstools/selector-specificity": "^2.0.2", - "balanced-match": "^2.0.0", - "colord": "^2.9.2", - "cosmiconfig": "^7.0.1", - "css-functions-list": "^3.1.0", - "debug": "^4.3.4", - "fast-glob": "^3.2.11", - "fastest-levenshtein": "^1.0.16", - "file-entry-cache": "^6.0.1", - "global-modules": "^2.0.0", - "globby": "^11.1.0", - "globjoin": "^0.1.4", - "html-tags": "^3.2.0", - "ignore": "^5.2.0", - "import-lazy": "^4.0.0", - "imurmurhash": "^0.1.4", - "is-plain-object": "^5.0.0", - "known-css-properties": "^0.25.0", - "mathml-tag-names": "^2.1.3", - "meow": "^9.0.0", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "picocolors": "^1.0.0", - "postcss": "^8.4.16", - "postcss-media-query-parser": "^0.2.3", - "postcss-resolve-nested-selector": "^0.1.1", - "postcss-safe-parser": "^6.0.0", - "postcss-selector-parser": "^6.0.10", - "postcss-value-parser": "^4.2.0", - "resolve-from": "^5.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "style-search": "^0.1.0", - "supports-hyperlinks": "^2.2.0", - "svg-tags": "^1.0.0", - "table": "^6.8.0", - "v8-compile-cache": "^2.3.0", - "write-file-atomic": "^4.0.1" + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" }, "bin": { - "stylelint": "bin/stylelint.js" + "style-dictionary": "bin/style-dictionary" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/style-dictionary/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/style-dictionary/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/style-dictionary/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/style-dictionary/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/style-dictionary/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "engines": { + "node": ">= 12" + } + }, + "node_modules/style-dictionary/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/style-dictionary/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/style-dictionary/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/style-dictionary/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/style-search": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", + "integrity": "sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==", + "dev": true + }, + "node_modules/stylelint": { + "version": "14.10.0", + "resolved": "https://registry.npmjs.org/stylelint/-/stylelint-14.10.0.tgz", + "integrity": "sha512-VAmyKrEK+wNFh9R8mNqoxEFzaa4gsHGhcT4xgkQDuOA5cjF6CaNS8loYV7gpi4tIZBPUyXesotPXzJAMN8VLOQ==", + "dev": true, + "dependencies": { + "@csstools/selector-specificity": "^2.0.2", + "balanced-match": "^2.0.0", + "colord": "^2.9.2", + "cosmiconfig": "^7.0.1", + "css-functions-list": "^3.1.0", + "debug": "^4.3.4", + "fast-glob": "^3.2.11", + "fastest-levenshtein": "^1.0.16", + "file-entry-cache": "^6.0.1", + "global-modules": "^2.0.0", + "globby": "^11.1.0", + "globjoin": "^0.1.4", + "html-tags": "^3.2.0", + "ignore": "^5.2.0", + "import-lazy": "^4.0.0", + "imurmurhash": "^0.1.4", + "is-plain-object": "^5.0.0", + "known-css-properties": "^0.25.0", + "mathml-tag-names": "^2.1.3", + "meow": "^9.0.0", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "picocolors": "^1.0.0", + "postcss": "^8.4.16", + "postcss-media-query-parser": "^0.2.3", + "postcss-resolve-nested-selector": "^0.1.1", + "postcss-safe-parser": "^6.0.0", + "postcss-selector-parser": "^6.0.10", + "postcss-value-parser": "^4.2.0", + "resolve-from": "^5.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "style-search": "^0.1.0", + "supports-hyperlinks": "^2.2.0", + "svg-tags": "^1.0.0", + "table": "^6.8.0", + "v8-compile-cache": "^2.3.0", + "write-file-atomic": "^4.0.1" + }, + "bin": { + "stylelint": "bin/stylelint.js" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" @@ -17497,6 +17907,11 @@ "node": ">= 6" } }, + "node_modules/tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" + }, "node_modules/tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -17654,9 +18069,9 @@ } }, "node_modules/tsconfig-paths/node_modules/json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { "minimist": "^1.2.0" @@ -17859,7 +18274,6 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true, "engines": { "node": ">= 10.0.0" } @@ -17896,6 +18310,14 @@ "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", "dev": true }, + "node_modules/upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -17958,6 +18380,14 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, + "node_modules/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "bin": { + "uuid": "dist/bin/uuid" + } + }, "node_modules/v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", @@ -21035,6 +21465,16 @@ "@types/react-dom": "<18.0.0" } }, + "@testing-library/react-hooks": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/@testing-library/react-hooks/-/react-hooks-8.0.1.tgz", + "integrity": "sha512-Aqhl2IVmLt8IovEVarNDFuJDVWVvhnr9/GCU6UUnrYXwgDFF9h2L2o2P9KBni1AST5sT6riAyoukFLyjQUgD/g==", + "dev": true, + "requires": { + "@babel/runtime": "^7.12.5", + "react-error-boundary": "^3.1.0" + } + }, "@testing-library/user-event": { "version": "13.5.0", "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", @@ -21320,6 +21760,12 @@ "integrity": "sha512-Q5vtl1W5ue16D+nIaW8JWebSSraJVlK+EthKn7e7UcD4KWsaSJ8BqGPXNaPghgtcn/fhvrN17Tv8ksUsQpiplw==", "dev": true }, + "@types/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-kr90f+ERiQtKWMz5rP32ltJ/BtULDI5RVO0uavn1HQUOwjx0R1h0rnDYNL0CepF1zL5bSY6FISAfd9tOdDhU5Q==", + "dev": true + }, "@types/warning": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@types/warning/-/warning-3.0.0.tgz", @@ -22205,7 +22651,6 @@ "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, "requires": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" @@ -22306,11 +22751,40 @@ } }, "caniuse-lite": { - "version": "1.0.30001378", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001378.tgz", - "integrity": "sha512-JVQnfoO7FK7WvU4ZkBRbPjaot4+YqxogSDosHv0Hv5mWpUESmN+UubMU6L/hGz8QlQ2aY5U0vR6MOs6j/CXpNA==", + "version": "1.0.30001448", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001448.tgz", + "integrity": "sha512-tq2YI+MJnooG96XpbTRYkBxLxklZPOdLmNIOdIhvf7SNJan6u5vCKum8iT7ZfCt70m1GPkuC7P3TtX6UuhupuA==", "dev": true }, + "capital-case": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/capital-case/-/capital-case-1.0.4.tgz", + "integrity": "sha512-ds37W8CytHgwnhGGTi88pcPyR15qoNkOpYwmMMfnWqqWgESapLqvDx6huFjQ5vqWSn2Z06173XNA7LtMOeUh1A==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + }, + "dependencies": { + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + } + } + }, "cardinal": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/cardinal/-/cardinal-2.1.1.tgz", @@ -22340,6 +22814,62 @@ "supports-color": "^5.3.0" } }, + "change-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-4.1.2.tgz", + "integrity": "sha512-bSxY2ws9OtviILG1EiY5K7NNxkqg/JnRnFxLtKQ96JaviiIxi7djMrSd0ECT9AC+lttClmYwKw53BWpOMblo7A==", + "requires": { + "camel-case": "^4.1.2", + "capital-case": "^1.0.4", + "constant-case": "^3.0.4", + "dot-case": "^3.0.4", + "header-case": "^2.0.4", + "no-case": "^3.0.4", + "param-case": "^3.0.4", + "pascal-case": "^3.1.2", + "path-case": "^3.0.4", + "sentence-case": "^3.0.4", + "snake-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "requires": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + } + } + }, "char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", @@ -22391,6 +22921,11 @@ "readdirp": "~3.6.0" } }, + "chroma-js": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chroma-js/-/chroma-js-2.4.2.tgz", + "integrity": "sha512-U9eDw6+wt7V8z5NncY2jJfZa+hUH8XEj8FQHgFJTrUFnJfXYf4Ml4adI2vXZOjqRDpFWtYVWypDfZwnJ+HIR4A==" + }, "chrome-trace-event": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", @@ -22494,10 +23029,9 @@ } }, "commander": { - "version": "9.4.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-9.4.0.tgz", - "integrity": "sha512-sRPT+umqkz90UA8M1yqYfnHlZA7fF6nSphDtxeywPZ49ysjxDQybzk13CL+mXekDRG92skbcqCLVovuCusNmFw==", - "dev": true + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==" }, "commondir": { "version": "1.0.1", @@ -22518,8 +23052,7 @@ "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", - "dev": true + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" }, "confusing-browser-globals": { "version": "1.0.11", @@ -22527,6 +23060,43 @@ "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", "dev": true }, + "constant-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-3.0.4.tgz", + "integrity": "sha512-I2hSBi7Vvs7BEuJDr5dDHfzb/Ruj3FyvFyh7KLilAjNQw3Be+xgqUBA2W6scVEcL0hL1dwPRtIqEPVUCKkSsyQ==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case": "^2.0.2" + }, + "dependencies": { + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "upper-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-2.0.2.tgz", + "integrity": "sha512-KgdgDGJt2TpuwBUIjgG6lzw2GWFRCW9Qkfkiv0DxqHHLYJHmtmdUIKcZd8rHgFSjopVTlw6ggzCm1b8MFQwikg==", + "requires": { + "tslib": "^2.0.3" + } + } + } + }, "conventional-changelog-angular": { "version": "5.0.13", "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-5.0.13.tgz", @@ -22792,9 +23362,9 @@ "dev": true }, "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha512-hjf+xovcEn31w/EUYdTXQh/8smFL/dzYjohQGEIgjyNavaJfBY2p5F527Bo1VPATxv0VYTUC2bOcXvqFwk78Og==" + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==" }, "dedent": { "version": "0.7.0", @@ -22982,6 +23552,34 @@ "domhandler": "^5.0.1" } }, + "dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + } + } + }, "dot-prop": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", @@ -24313,8 +24911,7 @@ "graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", - "dev": true + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" }, "handlebars": { "version": "4.7.7", @@ -24392,6 +24989,15 @@ "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true }, + "header-case": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-2.0.4.tgz", + "integrity": "sha512-H/vuk5TEEVZwrR0lp2zed9OCo1uAILMlx0JEMgC26rzyJJ3N1v6XkwHHXJQdR2doSjcGPM6OKPYoJgf0plJ11Q==", + "requires": { + "capital-case": "^1.0.4", + "tslib": "^2.0.3" + } + }, "hoist-non-react-statics": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", @@ -24463,18 +25069,18 @@ }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" } }, "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -26610,16 +27216,19 @@ "dev": true }, "json5": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.1.tgz", - "integrity": "sha512-1hqLFMSrGHRHxav9q9gNjJ5EXznIxGVO09xQRrwplcS8qs28pZ8s8hupZAmqDwZUmVZ2Qb2jnyPOWcDH8m8dlA==", - "dev": true + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==" + }, + "jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==" }, "jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dev": true, "requires": { "graceful-fs": "^4.1.6", "universalify": "^2.0.0" @@ -26750,9 +27359,9 @@ "peer": true }, "loader-utils": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.2.tgz", - "integrity": "sha512-TM57VeHptv569d/GKh6TAYdzKblwDNiumOdkFnejjD0XwTH87K90w3O7AiJRqdQoXygvi1VQTJTLGhJl7WqA7A==", + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -26772,8 +27381,7 @@ "lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", - "dev": true + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, "lodash.capitalize": { "version": "4.2.1", @@ -26942,18 +27550,18 @@ }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" } }, "loader-utils": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.0.tgz", - "integrity": "sha512-qH0WSMBtn/oHuwjy/NucEgbx5dbxxnxup9s4PVXJUDHZBQY+s0NWA9rJf53RBnQZxfch7euUui7hpoAPvALZdA==", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", "dev": true, "requires": { "big.js": "^5.2.2", @@ -27079,7 +27687,6 @@ "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, "requires": { "brace-expansion": "^1.1.7" } @@ -27119,12 +27726,6 @@ "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true - }, "natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", @@ -29271,6 +29872,43 @@ "parse5": "^7.0.0" } }, + "pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + }, + "dependencies": { + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + } + } + }, + "path-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-3.0.4.tgz", + "integrity": "sha512-qO4qCFjXqVTrcbPt/hQfhTQ+VhFsqNKOPtytgNKkKxSoEp3XPUQ8ObFuePylOIok5gjn69ry8XiULxCwot3Wfg==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", @@ -29280,8 +29918,7 @@ "path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "dev": true + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==" }, "path-key": { "version": "3.1.1", @@ -29416,6 +30053,14 @@ "nanoid": "^3.3.4", "picocolors": "^1.0.0", "source-map-js": "^1.0.2" + }, + "dependencies": { + "nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true + } } }, "postcss-media-query-parser": { @@ -29697,6 +30342,15 @@ "prop-types": "^15.8.1" } }, + "react-error-boundary": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/react-error-boundary/-/react-error-boundary-3.1.4.tgz", + "integrity": "sha512-uM9uPzZJTF6wRQORmSrvOIgt4lJ9MC1sNgEOj2XGsDTRE4kmpWxg7ENK9EWNKJRMAOY9z0MuF4yIfl6gp4sotA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.12.5" + } + }, "react-fast-compare": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.0.tgz", @@ -30394,6 +31048,35 @@ "integrity": "sha512-6IiqeZNgq01qGf0TId0t3NvKzSvUsjcpdEO3AQNeIjR6A2+ckTnQlDpl4qu1bjRv0RzN3FP9hzFmws3lKqRWkA==", "dev": true }, + "sentence-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/sentence-case/-/sentence-case-3.0.4.tgz", + "integrity": "sha512-8LS0JInaQMCRoQ7YUytAo/xUu5W2XnQxV2HI/6uM6U7CITS1RqPElr30V6uIqyMKM9lJGRVFy5/4CuzcixNYSg==", + "requires": { + "no-case": "^3.0.4", + "tslib": "^2.0.3", + "upper-case-first": "^2.0.2" + }, + "dependencies": { + "lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "requires": { + "tslib": "^2.0.3" + } + }, + "no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "requires": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + } + } + }, "serialize-javascript": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.0.tgz", @@ -30512,6 +31195,15 @@ } } }, + "snake-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/snake-case/-/snake-case-3.0.4.tgz", + "integrity": "sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==", + "requires": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", @@ -30769,6 +31461,95 @@ "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true }, + "style-dictionary": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/style-dictionary/-/style-dictionary-3.7.2.tgz", + "integrity": "sha512-Nd/qrPj1ikYX+sL/8PofMgfaJLRvGgT96Ty3dJLGNqtZmecVr3Xs+OZivMQEYmSCTiap/UyeV5SqwmAgn3/KKA==", + "requires": { + "chalk": "^4.0.0", + "change-case": "^4.1.2", + "commander": "^8.3.0", + "fs-extra": "^10.0.0", + "glob": "^7.2.0", + "json5": "^2.2.0", + "jsonc-parser": "^3.0.0", + "lodash": "^4.17.15", + "tinycolor2": "^1.4.1" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "requires": { + "color-name": "~1.1.4" + } + }, + "color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==" + }, + "fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "requires": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + } + }, + "glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "requires": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==" + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "style-search": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/style-search/-/style-search-0.1.0.tgz", @@ -31227,6 +32008,11 @@ } } }, + "tinycolor2": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz", + "integrity": "sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==" + }, "tmpl": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", @@ -31334,9 +32120,9 @@ }, "dependencies": { "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "requires": { "minimist": "^1.2.0" @@ -31486,8 +32272,7 @@ "universalify": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", - "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", - "dev": true + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==" }, "update-browserslist-db": { "version": "1.0.5", @@ -31505,6 +32290,14 @@ "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==", "dev": true }, + "upper-case-first": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/upper-case-first/-/upper-case-first-2.0.2.tgz", + "integrity": "sha512-514ppYHBaKwfJRK/pNC6c/OxfGa0obSnAl106u97Ed0I625Nin96KAjttZF6ZL3e1XLtphxnqrOi9iWgm+u+bg==", + "requires": { + "tslib": "^2.0.3" + } + }, "uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", @@ -31543,6 +32336,11 @@ "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true }, + "uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==" + }, "v8-compile-cache": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", diff --git a/package.json b/package.json index 1c3cd1011e..4ce022eb45 100644 --- a/package.json +++ b/package.json @@ -5,6 +5,10 @@ "main": "dist/index.js", "module": "dist/index.js", "license": "Apache-2.0", + "bin": { + "build-design-tokens": "./tokens/build-tokens.js", + "replace-scss-with-css": "./tokens/replace-variables.js" + }, "publishConfig": { "access": "public" }, @@ -16,7 +20,8 @@ "/dist", "/icons", "/src", - "/scss" + "/scss", + "/tokens" ], "sideEffects": false, "scripts": { @@ -30,7 +35,8 @@ "commit": "commit", "debug-test": "node --inspect-brk node_modules/.bin/jest --runInBand --coverage", "stylelint": "stylelint \"src/**/*.scss\" \"scss/**/*.scss\" \"www/src/**/*.scss\" --config .stylelintrc.json", - "lint": "npm run stylelint && eslint --ext .js --ext .jsx --ext .ts --ext .tsx . && npm run generate-component-lint", + "lint": "npm run stylelint && eslint --ext .js --ext .jsx --ext .ts --ext .tsx . && npm run generate-component-lint && npm run lint-docs", + "lint-docs": "cd ./www && \"$npm_execpath\" run lint", "prepublishOnly": "npm run build", "semantic-release": "semantic-release", "snapshot": "jest --updateSnapshot", @@ -42,16 +48,21 @@ "generate-changelog": "node generate-changelog.js", "i18n_compile": "formatjs compile-folder --format transifex ./src/i18n/messages ./src/i18n/messages", "i18n_extract": "formatjs extract 'src/**/*.{jsx,js,tsx,ts}' --out-file ./src/i18n/transifex_input.json --format transifex", - "type-check": "tsc --noEmit", + "type-check": "tsc --noEmit && tsc --project www --noEmit", "type-check:watch": "npm run type-check -- --watch", - "build-types": "tsc --emitDeclarationOnly" + "build-types": "tsc --emitDeclarationOnly", + "build-tokens": "node tokens/build-tokens.js --build-dir ./scss/core/css/", + "replace-variables-usage-with-css": "node tokens/replace-variables.js -p src -t usage", + "replace-variables-definition-with-css": "node tokens/replace-variables.js -p src -t definition" }, "dependencies": { "@fortawesome/fontawesome-svg-core": "^6.1.1", "@fortawesome/react-fontawesome": "^0.1.18", "@popperjs/core": "^2.11.4", "bootstrap": "^4.6.2", + "chroma-js": "^2.4.2", "classnames": "^2.3.1", + "commander": "^9.4.1", "email-prop-type": "^3.0.0", "file-selector": "^0.6.0", "font-awesome": "^4.7.0", @@ -68,8 +79,10 @@ "react-responsive": "^8.2.0", "react-table": "^7.7.0", "react-transition-group": "^4.4.2", + "style-dictionary": "^3.7.1", "tabbable": "^5.3.3", - "uncontrollable": "^7.2.1" + "uncontrollable": "^7.2.1", + "uuid": "^9.0.0" }, "peerDependencies": { "react": "^16.8.6 || ^17.0.0", @@ -93,12 +106,14 @@ "@semantic-release/git": "^10.0.1", "@testing-library/jest-dom": "^5.16.3", "@testing-library/react": "^12.1.4", + "@testing-library/react-hooks": "^8.0.1", "@testing-library/user-event": "^13.5.0", "@types/enzyme": "^3.10.12", "@types/jest": "^27.5.0", "@types/react": "17.0.0", "@types/react-dom": "17.0.11", "@types/react-test-renderer": "^18.0.0", + "@types/uuid": "^9.0.0", "@typescript-eslint/eslint-plugin": "^5.22.0", "@typescript-eslint/parser": "^5.22.0", "@wojtekmaj/enzyme-adapter-react-17": "^0.6.7", @@ -106,7 +121,6 @@ "axios-mock-adapter": "^1.21.1", "babel-jest": "^28.1.2", "babel-loader": "^8.2.4", - "commander": "^9.3.0", "enzyme": "^3.9.0", "eslint": "8.18.0", "eslint-config-airbnb": "19.0.4", diff --git a/scss/core/_functions.scss b/scss/core/_functions.scss index 3cfa15e758..e16ebf8fdb 100644 --- a/scss/core/_functions.scss +++ b/scss/core/_functions.scss @@ -1,4 +1,4 @@ -@import "~bootstrap/scss/functions"; +@import "./bootstrap-override/functions"; // // BOOTSTRAP FUNCTION OVERRIDE diff --git a/scss/core/_grid.scss b/scss/core/_grid.scss index 33aa52584c..f520a35fc7 100644 --- a/scss/core/_grid.scss +++ b/scss/core/_grid.scss @@ -1,21 +1,21 @@ @import "~bootstrap/scss/grid"; .container-mw-xs { - max-width: $max-width-xs + $grid-gutter-width !important; + max-width: calc(#{$max-width-xs} + #{$grid-gutter-width}) !important; } .container-mw-sm { - max-width: $max-width-sm + $grid-gutter-width !important; + max-width: calc(#{$max-width-sm} + #{$grid-gutter-width}) !important; } .container-mw-md { - max-width: $max-width-md + $grid-gutter-width !important; + max-width: calc(#{$max-width-md} + #{$grid-gutter-width}) !important; } .container-mw-lg { - max-width: $max-width-lg + $grid-gutter-width !important; + max-width: calc(#{$max-width-lg} + #{$grid-gutter-width}) !important; } .container-mw-xl { - max-width: $max-width-xl + $grid-gutter-width !important; + max-width: calc(#{$max-width-xl} + #{$grid-gutter-width}) !important; } diff --git a/scss/core/_utilities.scss b/scss/core/_utilities.scss index 254c484c7c..609d440d3c 100644 --- a/scss/core/_utilities.scss +++ b/scss/core/_utilities.scss @@ -1,19 +1,26 @@ -@import "~bootstrap/scss/utilities"; +// explicitly import bootstrap's utility module to exclude some modules which do not work +// with CSS variables, they are instead overriden by Paragon +@import "~bootstrap/scss/utilities/align"; +@import "~bootstrap/scss/utilities/clearfix"; +@import "~bootstrap/scss/utilities/display"; +@import "~bootstrap/scss/utilities/embed"; +@import "~bootstrap/scss/utilities/flex"; +@import "~bootstrap/scss/utilities/float"; +@import "~bootstrap/scss/utilities/interactions"; +@import "~bootstrap/scss/utilities/overflow"; +@import "~bootstrap/scss/utilities/position"; +@import "~bootstrap/scss/utilities/screenreaders"; +@import "~bootstrap/scss/utilities/shadows"; +@import "~bootstrap/scss/utilities/sizing"; +@import "~bootstrap/scss/utilities/stretched-link"; +@import "~bootstrap/scss/utilities/visibility"; +@import "./bootstrap-override/utilities"; +@import "css/utility-classes"; // Add background, border, and text color utilities // for all theme color levels. $color-levels: 100, 200, 300, 400, 500, 600, 700, 800, 900; -@each $color, $value in $theme-colors { - @each $level in $color-levels { - @include bg-variant(".bg-#{$color}-#{$level}", theme-color($color, $level), true); - @include text-emphasis-variant(".text-#{$color}-#{$level}", theme-color($color, $level), true); - .border-#{$color}-#{$level} { - border-color: theme-color($color, $level) !important; - } - } -} - .x-small { font-size: $x-small-font-size; } diff --git a/scss/core/_variables.scss b/scss/core/_variables.scss index 3fe1f20d29..59ad185c04 100644 --- a/scss/core/_variables.scss +++ b/scss/core/_variables.scss @@ -5,17 +5,17 @@ @import "exports.module.scss"; // Color system -$white: #FFFFFF !default; -$gray-100: #EBEBEB !default; -$gray-200: #CCCCCC !default; -$gray-300: #ADADAD !default; -$gray-400: #8F8F8F !default; -$gray-500: #707070 !default; -$gray-600: #5C5C5C !default; -$gray-700: #454545 !default; -$gray-800: #333333 !default; -$gray-900: #212529 !default; -$black: #000000 !default; +$white: var(--pgn-color-white) !default; +$gray-100: var(--pgn-color-gray-100) !default; +$gray-200: var(--pgn-color-gray-200) !default; +$gray-300: var(--pgn-color-gray-300) !default; +$gray-400: var(--pgn-color-gray-400) !default; +$gray-500: var(--pgn-color-gray-500) !default; +$gray-600: var(--pgn-color-gray-600) !default; +$gray-700: var(--pgn-color-gray-700) !default; +$gray-800: var(--pgn-color-gray-800) !default; +$gray-900: var(--pgn-color-gray-900) !default; +$black: var(--pgn-color-black) !default; $grays: () !default; $grays: map-merge( @@ -33,11 +33,11 @@ $grays: map-merge( $grays ); -$blue: #23419F !default; -$red: #C32D3A !default; -$yellow: #FFD900 !default; -$green: #178253 !default; -$teal: #006DAA !default; +$blue: var(--pgn-color-blue) !default; +$red: var(--pgn-color-red) !default; +$yellow: var(--pgn-color-yellow) !default; +$green: var(--pgn-color-green) !default; +$teal: var(--pgn-color-teal) !default; $colors: () !default; $colors: map-merge( @@ -54,17 +54,17 @@ $colors: map-merge( $colors ); -$primary: #0A3055 !default; -$secondary: $gray-700 !default; -$brand: #9D0054 !default; -$success: $green !default; -$info: $teal !default; -$danger: $red !default; -$warning: $yellow !default; -$light: #E1DDDB !default; -$dark: #273F2F !default; -$accent-a: #00BBF9 !default; -$accent-b: #FFEE88 !default; +$primary: var(--pgn-color-primary-base) !default; +$secondary: var(--pgn-color-secondary-base) !default; +$brand: var(--pgn-color-brand-base) !default; +$success: var(--pgn-color-success-base) !default; +$info: var(--pgn-color-info-base) !default; +$danger: var(--pgn-color-danger-base) !default; +$warning: var(--pgn-color-warning-base) !default; +$light: var(--pgn-color-light-base) !default; +$dark: var(--pgn-color-dark-base) !default; +$accent-a: var(--pgn-color-accent-a) !default; +$accent-b: var(--pgn-color-accent-b) !default; $theme-colors: () !default; $theme-colors: map-merge( @@ -85,95 +85,95 @@ $theme-colors: map-merge( $theme-colors ); -$primary-100: mix(white, $primary, 94%) !default; -$primary-200: mix(white, $primary, 75%) !default; -$primary-300: mix(white, $primary, 50%) !default; -$primary-400: mix(white, $primary, 25%) !default; -$primary-500: $primary !default; -$primary-600: mix(black, $primary, 10%) !default; -$primary-700: mix(black, $primary, 20%) !default; -$primary-800: mix(black, $primary, 25%) !default; -$primary-900: mix(black, $primary, 30%) !default; - -$secondary-100: mix(white, $secondary, 94%) !default; -$secondary-200: mix(white, $secondary, 75%) !default; -$secondary-300: mix(white, $secondary, 50%) !default; -$secondary-400: mix(white, $secondary, 25%) !default; -$secondary-500: $secondary !default; -$secondary-600: mix(black, $secondary, 10%) !default; -$secondary-700: mix(black, $secondary, 20%) !default; -$secondary-800: mix(black, $secondary, 25%) !default; -$secondary-900: mix(black, $secondary, 30%) !default; - -$brand-100: mix(white, $brand, 94%) !default; -$brand-200: mix(white, $brand, 75%) !default; -$brand-300: mix(white, $brand, 50%) !default; -$brand-400: mix(white, $brand, 25%) !default; -$brand-500: $brand !default; -$brand-600: mix(black, $brand, 10%) !default; -$brand-700: mix(black, $brand, 20%) !default; -$brand-800: mix(black, $brand, 25%) !default; -$brand-900: mix(black, $brand, 30%) !default; - -$success-100: mix(white, $success, 94%) !default; -$success-200: mix(white, $success, 75%) !default; -$success-300: mix(white, $success, 50%) !default; -$success-400: mix(white, $success, 25%) !default; -$success-500: $success !default; -$success-600: mix(black, $success, 10%) !default; -$success-700: mix(black, $success, 20%) !default; -$success-800: mix(black, $success, 25%) !default; -$success-900: mix(black, $success, 30%) !default; - -$info-100: mix(white, $info, 94%) !default; -$info-200: mix(white, $info, 75%) !default; -$info-300: mix(white, $info, 50%) !default; -$info-400: mix(white, $info, 25%) !default; -$info-500: $info !default; -$info-600: mix(black, $info, 10%) !default; -$info-700: mix(black, $info, 20%) !default; -$info-800: mix(black, $info, 25%) !default; -$info-900: mix(black, $info, 30%) !default; - -$warning-100: mix(white, $warning, 94%) !default; -$warning-200: mix(white, $warning, 75%) !default; -$warning-300: mix(white, $warning, 50%) !default; -$warning-400: mix(white, $warning, 25%) !default; -$warning-500: $warning !default; -$warning-600: mix(black, $warning, 10%) !default; -$warning-700: mix(black, $warning, 20%) !default; -$warning-800: mix(black, $warning, 25%) !default; -$warning-900: mix(black, $warning, 30%) !default; - -$danger-100: mix(white, $danger, 94%) !default; -$danger-200: mix(white, $danger, 75%) !default; -$danger-300: mix(white, $danger, 50%) !default; -$danger-400: mix(white, $danger, 25%) !default; -$danger-500: $danger !default; -$danger-600: mix(black, $danger, 10%) !default; -$danger-700: mix(black, $danger, 20%) !default; -$danger-800: mix(black, $danger, 25%) !default; -$danger-900: mix(black, $danger, 30%) !default; - -$light-100: mix(white, $light, 94%) !default; -$light-200: mix(white, $light, 75%) !default; -$light-300: mix(white, $light, 50%) !default; -$light-400: mix(white, $light, 25%) !default; -$light-500: $light !default; -$light-600: mix(black, $light, 10%) !default; -$light-700: mix(black, $light, 20%) !default; -$light-800: mix(black, $light, 25%) !default; -$light-900: mix(black, $light, 30%) !default; - -$dark-100: mix(white, $dark, 94%) !default; -$dark-200: mix(white, $dark, 75%) !default; -$dark-300: mix(white, $dark, 50%) !default; -$dark-400: mix(white, $dark, 25%) !default; -$dark-500: $dark !default; -$dark-600: mix(black, $dark, 10%) !default; -$dark-700: mix(black, $dark, 20%) !default; -$dark-800: mix(black, $dark, 25%) !default; -$dark-900: mix(black, $dark, 30%) !default; +$primary-100: var(--pgn-color-primary-100) !default; +$primary-200: var(--pgn-color-primary-200) !default; +$primary-300: var(--pgn-color-primary-300) !default; +$primary-400: var(--pgn-color-primary-400) !default; +$primary-500: var(--pgn-color-primary-500) !default; +$primary-600: var(--pgn-color-primary-600) !default; +$primary-700: var(--pgn-color-primary-700) !default; +$primary-800: var(--pgn-color-primary-800) !default; +$primary-900: var(--pgn-color-primary-900) !default; + +$secondary-100: var(--pgn-color-secondary-100) !default; +$secondary-200: var(--pgn-color-secondary-200) !default; +$secondary-300: var(--pgn-color-secondary-300) !default; +$secondary-400: var(--pgn-color-secondary-400) !default; +$secondary-500: var(--pgn-color-secondary-500) !default; +$secondary-600: var(--pgn-color-secondary-600) !default; +$secondary-700: var(--pgn-color-secondary-700) !default; +$secondary-800: var(--pgn-color-secondary-800) !default; +$secondary-900: var(--pgn-color-secondary-900) !default; + +$brand-100: var(--pgn-color-brand-100) !default; +$brand-200: var(--pgn-color-brand-200) !default; +$brand-300: var(--pgn-color-brand-300) !default; +$brand-400: var(--pgn-color-brand-400) !default; +$brand-500: var(--pgn-color-brand-500) !default; +$brand-600: var(--pgn-color-brand-600) !default; +$brand-700: var(--pgn-color-brand-700) !default; +$brand-800: var(--pgn-color-brand-800) !default; +$brand-900: var(--pgn-color-brand-900) !default; + +$success-100: var(--pgn-color-success-100) !default; +$success-200: var(--pgn-color-success-200) !default; +$success-300: var(--pgn-color-success-300) !default; +$success-400: var(--pgn-color-success-400) !default; +$success-500: var(--pgn-color-success-500) !default; +$success-600: var(--pgn-color-success-600) !default; +$success-700: var(--pgn-color-success-700) !default; +$success-800: var(--pgn-color-success-800) !default; +$success-900: var(--pgn-color-success-900) !default; + +$info-100: var(--pgn-color-info-100) !default; +$info-200: var(--pgn-color-info-200) !default; +$info-300: var(--pgn-color-info-300) !default; +$info-400: var(--pgn-color-info-400) !default; +$info-500: var(--pgn-color-info-500) !default; +$info-600: var(--pgn-color-info-600) !default; +$info-700: var(--pgn-color-info-700) !default; +$info-800: var(--pgn-color-info-800) !default; +$info-900: var(--pgn-color-info-900) !default; + +$warning-100: var(--pgn-color-warning-100) !default; +$warning-200: var(--pgn-color-warning-200) !default; +$warning-300: var(--pgn-color-warning-300) !default; +$warning-400: var(--pgn-color-warning-400) !default; +$warning-500: var(--pgn-color-warning-500) !default; +$warning-600: var(--pgn-color-warning-600) !default; +$warning-700: var(--pgn-color-warning-700) !default; +$warning-800: var(--pgn-color-warning-800) !default; +$warning-900: var(--pgn-color-warning-900) !default; + +$danger-100: var(--pgn-color-danger-100) !default; +$danger-200: var(--pgn-color-danger-200) !default; +$danger-300: var(--pgn-color-danger-300) !default; +$danger-400: var(--pgn-color-danger-400) !default; +$danger-500: var(--pgn-color-danger-500) !default; +$danger-600: var(--pgn-color-danger-600) !default; +$danger-700: var(--pgn-color-danger-700) !default; +$danger-800: var(--pgn-color-danger-800) !default; +$danger-900: var(--pgn-color-danger-900) !default; + +$light-100: var(--pgn-color-light-100) !default; +$light-200: var(--pgn-color-light-200) !default; +$light-300: var(--pgn-color-light-300) !default; +$light-400: var(--pgn-color-light-400) !default; +$light-500: var(--pgn-color-light-500) !default; +$light-600: var(--pgn-color-light-600) !default; +$light-700: var(--pgn-color-light-700) !default; +$light-800: var(--pgn-color-light-800) !default; +$light-900: var(--pgn-color-light-900) !default; + +$dark-100: var(--pgn-color-dark-100) !default; +$dark-200: var(--pgn-color-dark-200) !default; +$dark-300: var(--pgn-color-dark-300) !default; +$dark-400: var(--pgn-color-dark-400) !default; +$dark-500: var(--pgn-color-dark-500) !default; +$dark-600: var(--pgn-color-dark-600) !default; +$dark-700: var(--pgn-color-dark-700) !default; +$dark-800: var(--pgn-color-dark-800) !default; +$dark-900: var(--pgn-color-dark-900) !default; $theme-color-levels: () !default; @@ -295,7 +295,8 @@ $element-color-levels: map-merge( ); // Set a specific jump point for requesting color jumps -$theme-color-interval: 8% !default; +// TODO: can't use css variables due to conflict with SCSS function. +$theme-color-interval: var(--pgn-theme-interval) !default; // The yiq lightness value that determines when the lightness // of color changes from "dark" to "light". Acceptable values are between 0 and 255. @@ -338,23 +339,23 @@ $enable-deprecation-messages: true !default; // variables. Mostly focused on spacing. // You can add more entries to the $spacers map, should you need more variation. -$spacer: 1rem !default; +$spacer: var(--pgn-spacing-spacer-base) !default; $spacers: () !default; // stylelint-disable-next-line scss/dollar-variable-default $spacers: map-merge( ( 0: 0, - 1: ($spacer * .25), - 1\.5: ($spacer * .375), - 2: ($spacer * .5), - 2\.5: ($spacer * .75), + 1: calc(#{$spacer} * .25), + 1\.5: calc(#{$spacer} * .375), + 2: calc(#{$spacer} * .5), + 2\.5: calc(#{$spacer} * .75), 3: $spacer, - 3\.5: ($spacer * 1.25), - 4: ($spacer * 1.5), - 4\.5: ($spacer * 2), - 5: ($spacer * 3), - 5\.5: ($spacer * 4), - 6: ($spacer * 5), + 3\.5: calc(#{$spacer} * 1.25), + 4: calc(#{$spacer} * 1.5), + 4\.5: calc(#{$spacer} * 2), + 5: calc(#{$spacer} * 3), + 5\.5: calc(#{$spacer} * 4), + 6: calc(#{$spacer} * 5), ), $spacers ); @@ -377,57 +378,54 @@ $sizes: map-merge( // // Settings for the `` element. -$body-bg: $white !default; -$body-color: $gray-700 !default; +$body-bg: var(--pgn-color-body-bg) !default; +$body-color: var(--pgn-color-body-base) !default; // Links // // Style anchor elements. -$link-color: $info-500 !default; -$link-decoration: none !default; -$link-hover-color: darken($link-color, 15%) !default; -$link-hover-decoration: underline !default; -$inline-link-color: $info-500 !default; -$inline-link-decoration: underline !default; -$inline-link-decoration-color: rgba($inline-link-color, .3) !default; -$inline-link-hover-color: darken($inline-link-color, 15%) !default; -$inline-link-hover-decoration: underline !default; -$inline-link-hover-decoration-color: rgba($inline-link-hover-color, 1) !default; - -$muted-link-color: $primary-500 !default; -$muted-link-decoration: none !default; -$muted-link-hover-color: darken($muted-link-color, 15%) !default; -$muted-link-hover-decoration: underline !default; -$muted-inline-link-color: $primary-500 !default; -$muted-inline-link-decoration: underline !default; -$muted-inline-link-decoration-color: rgba($muted-inline-link-color, .3) !default; -$muted-inline-link-hover-color: darken($muted-inline-link-color, 15%) !default; -$muted-inline-link-hover-decoration: underline !default; -$muted-inline-link-hover-decoration-color: rgba($muted-inline-link-hover-color, 1) !default; - -$brand-link-color: $brand-500 !default; -$brand-link-decoration: none !default; -$brand-link-hover-color: darken($brand-link-color, 15%) !default; -$brand-link-hover-decoration: underline !default; -$brand-inline-link-color: $brand-500 !default; -$brand-inline-link-decoration: underline !default; -$brand-inline-link-decoration-color: rgba($brand-inline-link-color, .3) !default; -$brand-inline-link-hover-color: darken($brand-inline-link-color, 15%) !default; -$brand-inline-link-hover-decoration: underline !default; -$brand-inline-link-hover-decoration-color: rgba($brand-inline-link-hover-color, 1) !default; +$link-color: var(--pgn-color-link-base) !default; +$link-decoration: var(--pgn-typography-link-decoration-base) !default; +$link-hover-color: var(--pgn-color-link-hover) !default; +$link-hover-decoration: var(--pgn-typography-link-decoration-hover) !default; +$inline-link-color: var(--pgn-color-link-inline-base) !default; +$inline-link-decoration: var(--pgn-typography-link-decoration-inline-base) !default; +$inline-link-decoration-color: var(--pgn-color-link-inline-decoration) !default; +$inline-link-hover-color: var(--pgn-color-link-inline-hover-base) !default; +$inline-link-hover-decoration: var(--pgn-typography-link-decoration-inline-hover) !default; +$inline-link-hover-decoration-color: var(--pgn-color-link-inline-hover-decoration) !default; + +$muted-link-color: var(--pgn-color-link-muted-base) !default; +$muted-link-decoration: var(--pgn-typography-link-decoration-muted-base) !default; +$muted-link-hover-color: var(--pgn-color-link-muted-hover) !default; +$muted-link-hover-decoration: var(--pgn-typography-link-decoration-muted-hover) !default; +$muted-inline-link-color: var(--pgn-color-link-muted-inline-base) !default; +$muted-inline-link-decoration: var(--pgn-typography-link-decoration-muted-inline-base) !default; +$muted-inline-link-decoration-color: var(--pgn-color-link-muted-inline-decoration) !default; +$muted-inline-link-hover-color: var(--pgn-color-link-muted-inline-hover-base) !default; +$muted-inline-link-hover-decoration: var(--pgn-typography-link-decoration-muted-inline-hover) !default; +$muted-inline-link-hover-decoration-color: var(--pgn-color-link-muted-inline-hover-decoration) !default; + +$brand-link-color: var(--pgn-color-link-brand-base) !default; +$brand-link-decoration: var(--pgn-typography-link-decoration-brand-base) !default; +$brand-link-hover-color: var(--pgn-color-link-brand-hover) !default; +$brand-link-hover-decoration: var(--pgn-typography-link-decoration-brand-hover) !default; +$brand-inline-link-color: var(--pgn-color-link-brand-inline-base) !default; +$brand-inline-link-decoration: var(--pgn-typography-link-decoration-brand-inline-base) !default; +$brand-inline-link-decoration-color: var(--pgn-color-link-brand-inline-decoration) !default; +$brand-inline-link-hover-color: var(--pgn-color-link-brand-inline-hover-base) !default; +$brand-inline-link-hover-decoration: var(--pgn-typography-link-decoration-brand-inline-hover) !default; +$brand-inline-link-hover-decoration-color: var(--pgn-color-link-brand-inline-hover-decoration) !default; // Darken percentage for links with `.text-*` class (e.g. `.text-success`) -$emphasized-link-hover-darken-percentage: 15% !default; +$emphasized-link-hover-darken-percentage: var(--pgn-other-link-emphasized-hover-darken-percentage) !default; // Paragraphs // // Style p element. -$paragraph-margin-bottom: 1rem !default; - -@include _assert-ascending($grid-breakpoints, "$grid-breakpoints"); -@include _assert-starts-at-zero($grid-breakpoints, "$grid-breakpoints"); +$paragraph-margin-bottom: var(--pgn-spacing-paragraph-margin-bottom) !default; // Grid containers // @@ -440,73 +438,73 @@ $container-max-widths: ( xl: 1600px ) !default; -@include _assert-ascending($container-max-widths, "$container-max-widths"); - // Grid columns // // Set the number of columns and specify the width of the gutters. -$grid-columns: 12 !default; +// TODO: can't use css variables due to conflict with @if SCSS. +$grid-columns: 12 !default; $grid-gutter-width: 24px !default; -$grid-row-columns: 6 !default; +// TODO: can't use css variables due to conflict with @if SCSS. +$grid-row-columns: 6 !default; -$max-width-xs: 464px !default; -$max-width-sm: 708px !default; -$max-width-md: 952px !default; -$max-width-lg: 1196px !default; -$max-width-xl: 1440px !default; +$max-width-xs: var(--pgn-size-container-max-width-xs) !default; +$max-width-sm: var(--pgn-size-container-max-width-sm) !default; +$max-width-md: var(--pgn-size-container-max-width-md) !default; +$max-width-lg: var(--pgn-size-container-max-width-lg) !default; +$max-width-xl: var(--pgn-size-container-max-width-xl) !default; // Components // // Define common padding and border radius sizes and more. -$line-height-lg: 1.5 !default; -$line-height-sm: 1.5 !default; +$line-height-lg: var(--pgn-typography-line-height-lg) !default; +$line-height-sm: var(--pgn-typography-line-height-sm) !default; -$border-width: 1px !default; -$border-color: theme-color("gray", "border") !default; +$border-width: var(--pgn-size-border-width) !default; +$border-color: var(--pgn-color-border) !default; -$border-radius: .375rem !default; -$border-radius-lg: .425rem !default; -$border-radius-sm: .25rem !default; +$border-radius: var(--pgn-size-border-radius-base) !default; +$border-radius-lg: var(--pgn-size-border-radius-lg) !default; +$border-radius-sm: var(--pgn-size-border-radius-sm) !default; $rounded-pill: 50rem !default; -$level-1-box-shadow: 0 .0625rem .125rem rgba(0, 0, 0, .15), 0 .0625rem .25rem rgba(0, 0, 0, .15) !default; -$level-2-box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .15), 0 .125rem .5rem rgba(0, 0, 0, .15) !default; -$level-3-box-shadow: 0 0 .625rem rgba(0, 0, 0, .15), 0 0 1rem rgba(0, 0, 0, .15) !default; -$level-4-box-shadow: 0 .625rem 1.25rem rgba(0, 0, 0, .15), 0 .5rem 1.25rem rgba(0, 0, 0, .15) !default; -$level-5-box-shadow: 0 1.25px 2.5rem rgba(0, 0, 0, .15), 0 .5rem 2.5rem rgba(0, 0, 0, .15) !default; - -$box-shadow-down-1: 0 .0625rem .125rem rgba(0, 0, 0, .15), 0 .0625rem .25rem rgba(0, 0, 0, .15) !default; -$box-shadow-down-2: 0 .125rem .25rem rgba(0, 0, 0, .15), 0 .125rem .5rem rgba(0, 0, 0, .15) !default; -$box-shadow-down-3: 0 .5rem 1rem rgba(0, 0, 0, .15), 0 .25rem .625rem rgba(0, 0, 0, .15) !default; -$box-shadow-down-4: 0 .625rem 1.25rem rgba(0, 0, 0, .15), 0 .5rem 1.25rem rgba(0, 0, 0, .15) !default; -$box-shadow-down-5: 0 1.25px 2.5rem rgba(0, 0, 0, .15), 0 .5rem 2.5rem rgba(0, 0, 0, .15) !default; - -$box-shadow-left-1: -.0625rem 0 .125rem rgba(0, 0, 0, .15), -.0625rem 0 .25rem rgba(0, 0, 0, .15) !default; -$box-shadow-left-2: -.125rem 0 .25rem rgba(0, 0, 0, .15), -.125rem 0 .5rem rgba(0, 0, 0, .15) !default; -$box-shadow-left-3: -.5rem 0 1rem rgba(0, 0, 0, .15), -.25rem 0 .625rem rgba(0, 0, 0, .15) !default; -$box-shadow-left-4: -.625rem 0 1.25rem rgba(0, 0, 0, .15), -.5rem 0 1.25rem rgba(0, 0, 0, .15) !default; -$box-shadow-left-5: -1.25rem 0 2.5rem rgba(0, 0, 0, .15), -.5rem 0 3rem rgba(0, 0, 0, .15) !default; - -$box-shadow-up-1: 0 -.0625rem .125rem rgba(0, 0, 0, .15), 0 -.0625rem .25rem rgba(0, 0, 0, .15) !default; -$box-shadow-up-2: 0 -.125rem .25rem rgba(0, 0, 0, .15), 0 -.125rem .5rem rgba(0, 0, 0, .15) !default; -$box-shadow-up-3: 0 -.5rem 1rem rgba(0, 0, 0, .15), 0 -.25rem .625rem rgba(0, 0, 0, .15) !default; -$box-shadow-up-4: 0 -.625rem 1.25rem rgba(0, 0, 0, .15), 0 -.5rem 1.25rem rgba(0, 0, 0, .15) !default; -$box-shadow-up-5: 0 -1.25rem 2.5rem rgba(0, 0, 0, .15), 0 -.5rem 3rem rgba(0, 0, 0, .15) !default; - -$box-shadow-right-1: .0625rem 0 .125rem rgba(0, 0, 0, .15), .0625rem 0 .25rem rgba(0, 0, 0, .15) !default; -$box-shadow-right-2: .125rem 0 .25rem rgba(0, 0, 0, .15), .125rem 0 .5rem rgba(0, 0, 0, .15) !default; -$box-shadow-right-3: .5rem 0 1rem rgba(0, 0, 0, .15), .25rem 0 .625rem rgba(0, 0, 0, .15) !default; -$box-shadow-right-4: .625rem 0 1.25rem rgba(0, 0, 0, .15), .5rem 0 1.25rem rgba(0, 0, 0, .15) !default; -$box-shadow-right-5: 1.25rem 0 2.5rem rgba(0, 0, 0, .15), .5rem 0 3rem rgba(0, 0, 0, .15) !default; - -$box-shadow-centered-1: 0 0 .125rem rgba(0, 0, 0, .15), 0 0 .25rem rgba(0, 0, 0, .15) !default; -$box-shadow-centered-2: 0 0 .25rem rgba(0, 0, 0, .15), 0 0 .5rem rgba(0, 0, 0, .15) !default; -$box-shadow-centered-3: 0 0 .625rem rgba(0, 0, 0, .15), 0 0 1rem rgba(0, 0, 0, .15) !default; -$box-shadow-centered-4: 0 0 1.25rem rgba(0, 0, 0, .15), 0 0 1.25rem rgba(0, 0, 0, .15) !default; -$box-shadow-centered-5: 0 0 2.5rem rgba(0, 0, 0, .15), 0 0 3rem rgba(0, 0, 0, .15) !default; +$level-1-box-shadow: var(--pgn-elevation-box-shadow-level-1) !default; +$level-2-box-shadow: var(--pgn-elevation-box-shadow-level-2) !default; +$level-3-box-shadow: var(--pgn-elevation-box-shadow-level-3) !default; +$level-4-box-shadow: var(--pgn-elevation-box-shadow-level-4) !default; +$level-5-box-shadow: var(--pgn-elevation-box-shadow-level-5) !default; + +$box-shadow-down-1: var(--pgn-elevation-box-shadow-down-1) !default; +$box-shadow-down-2: var(--pgn-elevation-box-shadow-down-2) !default; +$box-shadow-down-3: var(--pgn-elevation-box-shadow-down-3) !default; +$box-shadow-down-4: var(--pgn-elevation-box-shadow-down-4) !default; +$box-shadow-down-5: var(--pgn-elevation-box-shadow-down-5) !default; + +$box-shadow-left-1: var(--pgn-elevation-box-shadow-left-1) !default; +$box-shadow-left-2: var(--pgn-elevation-box-shadow-left-2) !default; +$box-shadow-left-3: var(--pgn-elevation-box-shadow-left-3) !default; +$box-shadow-left-4: var(--pgn-elevation-box-shadow-left-4) !default; +$box-shadow-left-5: var(--pgn-elevation-box-shadow-left-5) !default; + +$box-shadow-up-1: var(--pgn-elevation-box-shadow-up-1) !default; +$box-shadow-up-2: var(--pgn-elevation-box-shadow-up-2) !default; +$box-shadow-up-3: var(--pgn-elevation-box-shadow-up-3) !default; +$box-shadow-up-4: var(--pgn-elevation-box-shadow-up-4) !default; +$box-shadow-up-5: var(--pgn-elevation-box-shadow-up-5) !default; + +$box-shadow-right-1: var(--pgn-elevation-box-shadow-right-1) !default; +$box-shadow-right-2: var(--pgn-elevation-box-shadow-right-2) !default; +$box-shadow-right-3: var(--pgn-elevation-box-shadow-right-3) !default; +$box-shadow-right-4: var(--pgn-elevation-box-shadow-right-4) !default; +$box-shadow-right-5: var(--pgn-elevation-box-shadow-right-5) !default; + +$box-shadow-centered-1: var(--pgn-elevation-box-shadow-centered-1) !default; +$box-shadow-centered-2: var(--pgn-elevation-box-shadow-centered-2) !default; +$box-shadow-centered-3: var(--pgn-elevation-box-shadow-centered-3) !default; +$box-shadow-centered-4: var(--pgn-elevation-box-shadow-centered-4) !default; +$box-shadow-centered-5: var(--pgn-elevation-box-shadow-centered-5) !default; @mixin pgn-box-shadow($level, $side) { @if $side == "down" { @@ -656,20 +654,20 @@ $box-shadow-sides: ( "centered" ) !default; -$box-shadow-sm: 0 .0625rem .125rem rgba($black, .2) !default; -$box-shadow: 0 .125rem .25rem rgba($black, .3) !default; -$box-shadow-lg: 0 .25rem .5rem rgba($black, .3) !default; +$box-shadow-sm: var(--pgn-elevation-box-shadow-sm) !default; +$box-shadow: var(--pgn-elevation-box-shadow-base) !default; +$box-shadow-lg: var(--pgn-elevation-box-shadow-lg) !default; -$component-active-color: $white !default; -$component-active-bg: theme-color("primary") !default; +$component-active-color: var(--pgn-color-active) !default; +$component-active-bg: var(--pgn-color-bg-active) !default; -$caret-width: .3em !default; -$caret-vertical-align: $caret-width * .85 !default; -$caret-spacing: $caret-width * .85 !default; +$caret-width: var(--pgn-size-caret-width) !default; +$caret-vertical-align: var(--pgn-spacing-caret-vertical-align) !default; +$caret-spacing: var(--pgn-spacing-caret-base) !default; -$transition-base: all .2s ease-in-out !default; -$transition-fade: opacity .15s linear !default; -$transition-collapse: height .35s ease !default; +$transition-base: var(--pgn-transition-base) !default; +$transition-fade: var(--pgn-transition-fade) !default; +$transition-collapse: var(--pgn-transition-collapse) !default; $transition-collapse-width: width .35s ease !default; $embed-responsive-aspect-ratios: () !default; @@ -688,142 +686,137 @@ $embed-responsive-aspect-ratios: join( // // Font, line-height, and color for body text, headings, and more. -// stylelint-disable value-keyword-case -$font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", - Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", - "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default; -$font-family-serif: serif !default; -$font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", - "Courier New", monospace !default; -$font-family-base: $font-family-sans-serif !default; -// stylelint-enable value-keyword-case +$font-family-sans-serif: var(--pgn-typography-font-family-sans-serif) !default; +$font-family-serif: var(--pgn-typography-font-family-serif) !default; +$font-family-monospace: var(--pgn-typography-font-family-monospace) !default; +$font-family-base: var(--pgn-typography-font-family-base) !default; -$font-size-base: 1.125rem !default; // Assumes the browser default, typically `16px` -$font-size-lg: $font-size-base * 1.25 !default; -$font-size-sm: .875rem !default; -$font-size-xs: .75rem !default; +$font-size-base: var(--pgn-typography-font-size-base) !default; +$font-size-lg: var(--pgn-typography-font-size-lg) !default; +$font-size-sm: var(--pgn-typography-font-size-sm) !default; +$font-size-xs: var(--pgn-typography-font-size-xs) !default; -$font-weight-lighter: lighter !default; -$font-weight-light: 300 !default; -$font-weight-normal: 400 !default; -$font-weight-semi-bold: 500 !default; -$font-weight-bold: 700 !default; -$font-weight-bolder: bolder !default; +$font-weight-lighter: var(--pgn-typography-font-weight-lighter) !default; +$font-weight-light: var(--pgn-typography-font-weight-light) !default; +$font-weight-normal: var(--pgn-typography-font-weight-normal) !default; +$font-weight-semi-bold: var(--pgn-typography-font-weight-semi-bold) !default; +$font-weight-bold: var(--pgn-typography-font-weight-bold) !default; +$font-weight-bolder: var(--pgn-typography-font-weight-bolder) !default; -$font-weight-base: $font-weight-normal !default; -$line-height-base: 1.5556 !default; +$font-weight-base: var(--pgn-typography-font-weight-base) !default; +$line-height-base: var(--pgn-typography-line-height-base) !default; -$h1-font-size: 2.5rem !default; -$h2-font-size: 2rem !default; -$h3-font-size: 1.375rem !default; -$h4-font-size: 1.125rem !default; -$h5-font-size: .875rem !default; -$h6-font-size: .75rem !default; +$h1-font-size: var(--pgn-typography-font-size-h1) !default; +$h2-font-size: var(--pgn-typography-font-size-h2) !default; +$h3-font-size: var(--pgn-typography-font-size-h3) !default; +$h4-font-size: var(--pgn-typography-font-size-h4) !default; +$h5-font-size: var(--pgn-typography-font-size-h5) !default; +$h6-font-size: var(--pgn-typography-font-size-h6) !default; -$h1-mobile-font-size: 2.25rem !default; -$h2-mobile-font-size: $h2-font-size !default; -$h3-mobile-font-size: $h3-font-size !default; -$h4-mobile-font-size: $h4-font-size !default; -$h5-mobile-font-size: $h5-font-size !default; -$h6-mobile-font-size: $h6-font-size !default; +$h1-mobile-font-size: var(--pgn-typography-font-size-mobile-h1) !default; +$h2-mobile-font-size: var(--pgn-typography-font-size-mobile-h2) !default; +$h3-mobile-font-size: var(--pgn-typography-font-size-mobile-h3) !default; +$h4-mobile-font-size: var(--pgn-typography-font-size-mobile-h4) !default; +$h5-mobile-font-size: var(--pgn-typography-font-size-mobile-h5) !default; +$h6-mobile-font-size: var(--pgn-typography-font-size-mobile-h6) !default; -$headings-margin-bottom: calc($spacer / 2) !default; -$headings-font-family: null !default; -$headings-font-weight: $font-weight-bold !default; -$headings-line-height: 1.25 !default; -$headings-color: $black !default; +$headings-margin-bottom: var(--pgn-spacing-headings-margin-bottom) !default; +$headings-font-family: var(--pgn-typography-headings-font-family) !default; +$headings-font-weight: var(--pgn-typography-headings-font-weight) !default; +$headings-line-height: var(--pgn-typography-headings-line-height) !default; +$headings-color: var(--pgn-color-headings-base) !default; -$display1-size: 3.75rem !default; -$display2-size: 4.875rem !default; -$display3-size: 5.625rem !default; -$display4-size: 7.5rem !default; +$display1-size: var(--pgn-typography-display-1) !default; +$display2-size: var(--pgn-typography-display-2) !default; +$display3-size: var(--pgn-typography-display-3) !default; +$display4-size: var(--pgn-typography-display-4) !default; -$display-mobile-size: 3.25rem !default; +$display-mobile-size: var(--pgn-typography-display-mobile) !default; -$display1-weight: 700 !default; -$display2-weight: 700 !default; -$display3-weight: 700 !default; -$display4-weight: 700 !default; +$display1-weight: var(--pgn-typography-display-weight-1) !default; +$display2-weight: var(--pgn-typography-display-weight-2) !default; +$display3-weight: var(--pgn-typography-display-weight-3) !default; +$display4-weight: var(--pgn-typography-display-weight-4) !default; -$display-line-height: 1 !default; -$display-mobile-line-height: 3.5rem !default; +$display-line-height: var(--pgn-typography-display-line-height-base) !default; +$display-mobile-line-height: var(--pgn-typography-display-line-height-mobile) !default; -$lead-font-size: $font-size-base * 1.25 !default; -$lead-font-weight: null !default; +$lead-font-size: var(--pgn-typography-font-size-lead) !default; +$lead-font-weight: var(--pgn-typography-font-weight-lead) !default; -$small-font-size: 87.5% !default; -$x-small-font-size: 75% !default; +$small-font-size: var(--pgn-typography-font-size-small-base) !default; +$x-small-font-size: var(--pgn-typography-font-size-small-x) !default; -$micro-font-size: .688rem; -$micro-line-height: .938rem; +$micro-font-size: .688rem; +$micro-line-height: .938rem; -$text-muted: theme-color("gray", "light-text") !default; +$text-muted: var(--pgn-color-text-muted) !default; -$blockquote-small-color: theme-color("gray", "light-text") !default; -$blockquote-small-font-size: $small-font-size !default; -$blockquote-font-size: $font-size-base * 1.25 !default; +$blockquote-small-color: theme-color("gray", "light-text") !default; +$blockquote-small-font-size: var(--pgn-typography-blockquote-small-font-size) !default; +$blockquote-font-size: var(--pgn-typography-blockquote-font-size) !default; -$hr-border-color: rgba($black, .1) !default; -$hr-border-width: $border-width !default; +$hr-border-color: var(--pgn-color-hr-border) !default; +$hr-border-width: var(--pgn-size-hr-border-width) !default; -$mark-padding: .2em !default; +$mark-padding: var(--pgn-spacing-mark-padding) !default; -$dt-font-weight: $font-weight-bold !default; +$dt-font-weight: var(--pgn-typography-dt-font-weight) !default; -$list-inline-padding: .5rem !default; +$list-inline-padding: var(--pgn-spacing-list-inline-padding) !default; -$mark-bg: #FFF243 !default; +$mark-bg: var(--pgn-color-mark-bg) !default; -$hr-margin-y: $spacer !default; +$hr-margin-y: var(--pgn-size-hr-border-margin-y) !default; -$label-margin-bottom: .5rem !default; +$label-margin-bottom: .5rem !default; -$table-cell-padding: .75rem !default; -$table-cell-padding-sm: .3rem !default; -$table-caption-color: $text-muted !default; -$table-border-color: $border-color !default; -$table-th-font-weight: null !default; +$table-cell-padding: 75rem !default; +$table-cell-padding-sm: .3rem !default; +$table-caption-color: $text-muted !default; +$table-border-color: $border-color !default; +$table-th-font-weight: null !default; // Z-index master list // // Warning: Avoid customizing these values. They're used for a bird's eye view // of components dependent on the z-axis and are designed to all work together. -$zindex-dropdown: 1000 !default; -$zindex-sticky: 1020 !default; -$zindex-fixed: 1030 !default; -$zindex-sheet-backdrop: 1031 !default; -$zindex-sheet: 1032 !default; -$zindex-modal-backdrop: 1040 !default; -$zindex-modal: 1050 !default; -$zindex-popover: 1060 !default; -$zindex-tooltip: 1070 !default; +$zindex-dropdown: var(--pgn-elevation-dropdown-zindex) !default; +$zindex-sticky: var(--pgn-elevation-zindex-sticky) !default; +$zindex-fixed: var(--pgn-elevation-zindex-fixed) !default; +$zindex-sheet-backdrop: var(--pgn-elevation-sheet-zindex-backdrop) !default; +$zindex-sheet: var(--pgn-elevation-sheet-zindex-main) !default; +$zindex-modal-backdrop: var(--pgn-elevation-modal-backdrop-zindex) !default; +$zindex-modal: var(--pgn-elevation-modal-zindex) !default; +$zindex-popover: var(--pgn-elevation-popover-zindex) !default; +$zindex-tooltip: var(--pgn-elevation-tooltip-zindex) !default; // Buttons + Forms // // Shared variables that are reassigned to `$input-` and `$btn-` specific variables. -$input-btn-padding-y: .5625rem !default; -$input-btn-padding-x: 1rem !default; -$input-btn-font-family: null !default; -$input-btn-font-size: 1.125rem !default; -$input-btn-line-height: 1.3333 !default; +$input-btn-padding-y: var(--pgn-spacing-input-btn-padding-y) !default; +$input-btn-padding-x: var(--pgn-spacing-input-btn-padding-x) !default; +$input-btn-font-family: var(--pgn-typography-input-btn-font-family) !default; +$input-btn-font-size: var(--pgn-typography-input-btn-font-size-base) !default; +$input-btn-line-height: var(--pgn-typography-input-btn-line-height-base) !default; -$input-btn-focus-width: 1px !default; -$input-btn-focus-color: $component-active-bg !default; -$input-btn-focus-box-shadow: 0 0 0 $input-btn-focus-width $input-btn-focus-color !default; +$input-btn-focus-width: var(--pgn-size-input-btn-focus-width) !default; +$input-btn-focus-color: var(--pgn-color-input-btn-focus) !default; +$input-btn-focus-box-shadow: var(--pgn-elevation-input-btn-focus-box-shadow) !default; -$input-btn-padding-y-sm: .4375rem !default; -$input-btn-padding-x-sm: .75rem !default; -$input-btn-font-size-sm: .875rem !default; -$input-btn-line-height-sm: 1.4286 !default; +$input-btn-padding-y-sm: var(--pgn-spacing-input-btn-padding-sm-y) !default; +$input-btn-padding-x-sm: var(--pgn-spacing-input-btn-padding-sm-x) !default; +$input-btn-font-size-sm: var(--pgn-typography-input-btn-font-size-sm) !default; +$input-btn-line-height-sm: var(--pgn-typography-input-btn-line-height-sm) !default; -$input-btn-padding-y-lg: .6875rem !default; -$input-btn-padding-x-lg: 1.25rem !default; -$input-btn-font-size-lg: 1.325rem !default; -$input-btn-line-height-lg: $line-height-lg !default; +$input-btn-padding-y-lg: var(--pgn-spacing-input-btn-padding-lg-y) !default; +$input-btn-padding-x-lg: var(--pgn-spacing-input-btn-padding-lg-x) !default; +$input-btn-font-size-lg: var(--pgn-typography-input-btn-font-size-lg) !default; +$input-btn-line-height-lg: var(--pgn-typography-input-btn-line-height-lg) !default; -$input-btn-border-width: $border-width !default; +$input-btn-border-width: var(--pgn-size-input-btn-border-width) !default; // Spinners @@ -851,25 +844,28 @@ $print-body-min-width: map-get($grid-breakpoints, "lg") !default; // List group -$list-group-color: null !default; -$list-group-bg: $white !default; -$list-group-border-color: rgba($black, .125) !default; -$list-group-border-width: $border-width !default; -$list-group-border-radius: $border-radius !default; +$list-group-color: var(--pgn-color-list-group-base) !default; +$list-group-bg: var(--pgn-color-list-group-bg-base) !default; +$list-group-border-color: var(--pgn-color-list-group-border) !default; +$list-group-border-width: var(--pgn-size-list-group-border-width) !default; +$list-group-border-radius: var(--pgn-size-list-group-border-radius) !default; + +$list-group-item-padding-y: var(--pgn-spacing-list-group-item-padding-y) !default; +$list-group-item-padding-x: var(--pgn-spacing-list-group-item-padding-x) !default; -$list-group-item-padding-y: .75rem !default; -$list-group-item-padding-x: 1.25rem !default; +$list-group-hover-bg: var(--pgn-color-list-group-bg-hover) !default; +$list-group-active-color: var(--pgn-color-list-group-active-base) !default; +$list-group-active-bg: var(--pgn-color-list-group-active-bg) !default; +$list-group-active-border-color: var(--pgn-color-list-group-active-border) !default; -$list-group-hover-bg: $gray-100 !default; -$list-group-active-color: $component-active-color !default; -$list-group-active-bg: $component-active-bg !default; -$list-group-active-border-color: $list-group-active-bg !default; +$list-group-disabled-color: var(--pgn-color-list-group-disabled-base) !default; +$list-group-disabled-bg: var(--pgn-color-list-group-disabled-bg) !default; -$list-group-disabled-color: $gray-600 !default; -$list-group-disabled-bg: $list-group-bg !default; +$list-group-action-color: var(--pgn-color-list-group-action-base) !default; +$list-group-action-hover-color: var(--pgn-color-list-group-action-hover) !default; -$list-group-action-color: $gray-700 !default; -$list-group-action-hover-color: $list-group-action-color !default; +$list-group-action-active-color: var(--pgn-color-list-group-action-active-base) !default; +$list-group-action-active-bg: var(--pgn-color-list-group-action-active-bg) !default; -$list-group-action-active-color: $body-color !default; -$list-group-action-active-bg: $gray-200 !default; +$text-black-50: var(--pgn-color-text-50-black) !default; +$text-white-50: var(--pgn-color-text-50-white) !default; diff --git a/scss/core/bootstrap-override/_functions.scss b/scss/core/bootstrap-override/_functions.scss new file mode 100644 index 0000000000..e853ef586e --- /dev/null +++ b/scss/core/bootstrap-override/_functions.scss @@ -0,0 +1,104 @@ +// Bootstrap functions +// +// Utility mixins and functions for evaluating source code across our variables, maps, and mixins. + +// Replace `$search` with `$replace` in `$string` +// Used on our SVG icon backgrounds for custom forms. +// +// @author Hugo Giraudel +// @param {String} $string - Initial string +// @param {String} $search - Substring to replace +// @param {String} $replace ('') - New value +// @return {String} - Updated string +@function str-replace($string, $search, $replace: "") { + $index: str-index($string, $search); + + @if $index { + // stylelint-disable-next-line max-line-length + @return str-slice($string, 1, $index - 1) + $replace + str-replace(str-slice($string, $index + str-length($search)), $search, $replace); + } + + @return $string; +} + +// See https://codepen.io/kevinweber/pen/dXWoRw +// +// Requires the use of quotes around data URIs. + +@function escape-svg($string) { + @if str-index($string, "data:image/svg+xml") { + @each $char, $encoded in $escaped-characters { + // Do not escape the url brackets + @if str-index($string, "url(") == 1 { + $string: url("#{str-replace(str-slice($string, 6, -3), $char, $encoded)}"); + } + + @else { + $string: str-replace($string, $char, $encoded); + } + } + } + + @return $string; +} + +// Retrieve color Sass maps +@function color($key: "blue") { + @return map-get($colors, $key); +} + +@function gray($key: "100") { + @return map-get($grays, $key); +} + +@function divide($dividend, $divisor, $precision: 10) { + $sign: if($dividend > 0 and $divisor > 0 or $dividend < 0 and $divisor < 0, 1, -1); + $dividend: abs($dividend); + $divisor: abs($divisor); + + @if $dividend == 0 { + @return 0; + } + + @if $divisor == 0 { + @error "Cannot divide by 0"; + } + + $remainder: $dividend; + $result: 0; + $factor: 10; + + @while ($remainder > 0 and $precision >= 0) { + $quotient: 0; + + @while ($remainder >= $divisor) { + $remainder: $remainder - $divisor; + $quotient: $quotient + 1; + } + + $result: $result * 10 + $quotient; + $factor: $factor * .1; + $remainder: $remainder * 10; + $precision: $precision - 1; + + @if ($precision < 0 and $remainder >= $divisor * 5) { + $result: $result + 1; + } + } + + $result: $result * $factor * $sign; + $dividend-unit: unit($dividend); + $divisor-unit: unit($divisor); + $unit-map: ( + "px": 1px, + "rem": 1rem, + "em": 1em, + "%": 1% + ); + + @if ($dividend-unit != $divisor-unit and map-has-key($unit-map, $dividend-unit)) { + $result: $result * map-get($unit-map, $dividend-unit); + } + + @return $result; +} diff --git a/scss/core/bootstrap-override/_mixins.scss b/scss/core/bootstrap-override/_mixins.scss new file mode 100644 index 0000000000..f427fad6ea --- /dev/null +++ b/scss/core/bootstrap-override/_mixins.scss @@ -0,0 +1,2 @@ +// Components +@import "mixins/list-group"; diff --git a/scss/core/bootstrap-override/_utilities.scss b/scss/core/bootstrap-override/_utilities.scss new file mode 100644 index 0000000000..8927eaffee --- /dev/null +++ b/scss/core/bootstrap-override/_utilities.scss @@ -0,0 +1,4 @@ +@import "utilities/spacing"; +@import "utilities/text"; +@import "utilities/background"; +@import "utilities/borders"; diff --git a/scss/core/bootstrap-override/bootstrap.scss b/scss/core/bootstrap-override/bootstrap.scss new file mode 100644 index 0000000000..3a0966da88 --- /dev/null +++ b/scss/core/bootstrap-override/bootstrap.scss @@ -0,0 +1,2 @@ +@import "mixins"; +@import "utilities"; diff --git a/scss/core/bootstrap-override/mixins/_list-group.scss b/scss/core/bootstrap-override/mixins/_list-group.scss new file mode 100644 index 0000000000..994bdc3af7 --- /dev/null +++ b/scss/core/bootstrap-override/mixins/_list-group.scss @@ -0,0 +1,22 @@ +// List Groups +// TODO: not used in Paragon. +@mixin list-group-item-variant($state, $background, $color) { + .list-group-item-#{$state} { + color: $color; + background-color: $background; + + &.list-group-item-action { + @include hover-focus() { + color: $color; + background-color: $background; + filter: opacity(.9); + } + + &.active { + color: $white; + background-color: $color; + border-color: $color; + } + } + } +} diff --git a/scss/core/bootstrap-override/utilities/_background.scss b/scss/core/bootstrap-override/utilities/_background.scss new file mode 100644 index 0000000000..155f9b77db --- /dev/null +++ b/scss/core/bootstrap-override/utilities/_background.scss @@ -0,0 +1,7 @@ +.bg-white { + background-color: $white !important; +} + +.bg-transparent { + background-color: transparent !important; +} diff --git a/scss/core/bootstrap-override/utilities/_borders.scss b/scss/core/bootstrap-override/utilities/_borders.scss new file mode 100644 index 0000000000..1f848b1dc7 --- /dev/null +++ b/scss/core/bootstrap-override/utilities/_borders.scss @@ -0,0 +1,46 @@ +// +// Border +// + +.border { border: $border-width solid $border-color !important; } +.border-top { border-top: $border-width solid $border-color !important; } +.border-right { border-right: $border-width solid $border-color !important; } +.border-bottom { border-bottom: $border-width solid $border-color !important; } +.border-left { border-left: $border-width solid $border-color !important; } + +.border-0 { border: 0 !important; } +.border-top-0 { border-top: 0 !important; } +.border-right-0 { border-right: 0 !important; } +.border-bottom-0 { border-bottom: 0 !important; } +.border-left-0 { border-left: 0 !important; } + +.border-white { + border-color: $white !important; +} + +// +// Border-radius +// + +.rounded-sm { + border-radius: $border-radius-sm !important; +} + +.rounded { + border-radius: $border-radius !important; +} + +.rounded-top { + border-top-left-radius: $border-radius !important; + border-top-right-radius: $border-radius !important; +} + +.rounded-right { + border-top-right-radius: $border-radius !important; + border-bottom-right-radius: $border-radius !important; +} + +.rounded-bottom { + border-bottom-right-radius: $border-radius !important; + border-bottom-left-radius: $border-radius !important; +} diff --git a/scss/core/bootstrap-override/utilities/_spacing.scss b/scss/core/bootstrap-override/utilities/_spacing.scss new file mode 100644 index 0000000000..2759c2b751 --- /dev/null +++ b/scss/core/bootstrap-override/utilities/_spacing.scss @@ -0,0 +1,70 @@ +// Bootstrap overrides for spacing utility classes +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + @each $prop, $abbrev in (margin: m, padding: p) { + @each $size, $length in $spacers { + .#{$abbrev}#{$infix}-#{$size} { #{$prop}: $length !important; } + .#{$abbrev}t#{$infix}-#{$size}, + .#{$abbrev}y#{$infix}-#{$size} { + #{$prop}-top: $length !important; + } + .#{$abbrev}r#{$infix}-#{$size}, + .#{$abbrev}x#{$infix}-#{$size} { + #{$prop}-right: $length !important; + } + .#{$abbrev}b#{$infix}-#{$size}, + .#{$abbrev}y#{$infix}-#{$size} { + #{$prop}-bottom: $length !important; + } + .#{$abbrev}l#{$infix}-#{$size}, + .#{$abbrev}x#{$infix}-#{$size} { + #{$prop}-left: $length !important; + } + } + } + + // Negative margins (e.g., where `.mb-n1` is negative version of `.mb-1`) + @each $size, $length in $spacers { + @if "#{$size}" != "0" { + .m#{$infix}-n#{$size} { margin: calc(-1 * #{$length}) !important; } + .mt#{$infix}-n#{$size}, + .my#{$infix}-n#{$size} { + margin-top: calc(-1 * #{$length}) !important; + } + .mr#{$infix}-n#{$size}, + .mx#{$infix}-n#{$size} { + margin-right: calc(-1 * #{$length}) !important; + } + .mb#{$infix}-n#{$size}, + .my#{$infix}-n#{$size} { + margin-bottom: calc(-1 * #{$length}) !important; + } + .ml#{$infix}-n#{$size}, + .mx#{$infix}-n#{$size} { + margin-left: calc(-1 * #{$length}) !important; + } + } + } + + // Some special margin utils + .m#{$infix}-auto { margin: auto !important; } + .mt#{$infix}-auto, + .my#{$infix}-auto { + margin-top: auto !important; + } + .mr#{$infix}-auto, + .mx#{$infix}-auto { + margin-right: auto !important; + } + .mb#{$infix}-auto, + .my#{$infix}-auto { + margin-bottom: auto !important; + } + .ml#{$infix}-auto, + .mx#{$infix}-auto { + margin-left: auto !important; + } + } +} diff --git a/scss/core/bootstrap-override/utilities/_text.scss b/scss/core/bootstrap-override/utilities/_text.scss new file mode 100644 index 0000000000..4aea8ce71e --- /dev/null +++ b/scss/core/bootstrap-override/utilities/_text.scss @@ -0,0 +1,68 @@ +// stylelint-disable declaration-no-important + +// +// Bootstrap's overrides for text utilities +// + +.text-monospace { font-family: $font-family-monospace !important; } + +// Alignment + +.text-justify { text-align: justify !important; } +.text-wrap { white-space: normal !important; } +.text-nowrap { white-space: nowrap !important; } +.text-truncate { @include text-truncate(); } + +// Responsive alignment + +@each $breakpoint in map-keys($grid-breakpoints) { + @include media-breakpoint-up($breakpoint) { + $infix: breakpoint-infix($breakpoint, $grid-breakpoints); + + .text#{$infix}-left { text-align: left !important; } + .text#{$infix}-right { text-align: right !important; } + .text#{$infix}-center { text-align: center !important; } + } +} + +// Transformation + +.text-lowercase { text-transform: lowercase !important; } +.text-uppercase { text-transform: uppercase !important; } +.text-capitalize { text-transform: capitalize !important; } + +// Weight and italics + +.font-weight-light { font-weight: $font-weight-light !important; } +.font-weight-lighter { font-weight: $font-weight-lighter !important; } +.font-weight-normal { font-weight: $font-weight-normal !important; } +.font-weight-bold { font-weight: $font-weight-bold !important; } +.font-weight-bolder { font-weight: $font-weight-bolder !important; } +.font-italic { font-style: italic !important; } + +// Contextual colors + +.text-white { color: $white !important; } + +.text-body { color: $body-color !important; } +.text-muted { color: $text-muted !important; } + +.text-black-50 { color: $text-black-50 !important; } +.text-white-50 { color: $text-white-50 !important; } + +// Misc + +.text-hide { + @include text-hide($ignore-warning: true); +} + +.text-decoration-none { text-decoration: none !important; } + +.text-break { + word-break: break-word !important; // Deprecated, but avoids issues with flex containers + word-wrap: break-word !important; // Used instead of `overflow-wrap` for IE & Edge Legacy +} + +// Reset + +.text-reset { color: inherit !important; } diff --git a/scss/core/core.scss b/scss/core/core.scss index d6a2b072f7..8dba102ca3 100644 --- a/scss/core/core.scss +++ b/scss/core/core.scss @@ -1,6 +1,8 @@ +@import "css/variables"; @import "functions"; @import "variables"; @import "~bootstrap/scss/mixins"; +@import "./bootstrap-override/mixins"; @import "~bootstrap/scss/root"; @import "~bootstrap/scss/reboot"; @import "typography"; diff --git a/scss/core/css/utility-classes.css b/scss/core/css/utility-classes.css new file mode 100644 index 0000000000..9caedab3d5 --- /dev/null +++ b/scss/core/css/utility-classes.css @@ -0,0 +1,2454 @@ +/** + * IMPORTANT: This file is the result of assembling design tokens + * Do not edit directly + * Generated on Thu, 16 Feb 2023 10:37:12 GMT + */ + +.bg-dark { + background-color: #273F2FFF !important; +} + +a.bg-dark:hover, +a.bg-dark:focus, +button.bg-dark:hover, +button.bg-dark:focus { + background-color: #142018FF !important; +} + +.text-dark { + color: #273F2FFF !important; +} + +a.text-dark:hover, +a.text-dark:focus { + color: #0A100CFF !important; +} + +.border-dark { + border-color: #273F2FFF !important; +} + +.bg-light { + background-color: #E1DDDBFF !important; +} + +a.bg-light:hover, +a.bg-light:focus, +button.bg-light:hover, +button.bg-light:focus { + background-color: #CAC3BFFF !important; +} + +.text-light { + color: #E1DDDBFF !important; +} + +a.text-light:hover, +a.text-light:focus { + color: #BEB6B1FF !important; +} + +.border-light { + border-color: #E1DDDBFF !important; +} + +.bg-brand { + background-color: #9D0054FF !important; +} + +a.bg-brand:hover, +a.bg-brand:focus, +button.bg-brand:hover, +button.bg-brand:focus { + background-color: #6A0039FF !important; +} + +.text-brand { + color: #9D0054FF !important; +} + +a.text-brand:hover, +a.text-brand:focus { + color: #51002BFF !important; +} + +.border-brand { + border-color: #9D0054FF !important; +} + +.bg-primary { + background-color: #0A3055FF !important; +} + +a.bg-primary:hover, +a.bg-primary:focus, +button.bg-primary:hover, +button.bg-primary:focus { + background-color: #051627FF !important; +} + +.text-primary { + color: #0A3055FF !important; +} + +a.text-primary:hover, +a.text-primary:focus { + color: #020911FF !important; +} + +.border-primary { + border-color: #0A3055FF !important; +} + +.bg-gray { + background-color: #707070FF !important; +} + +a.bg-gray:hover, +a.bg-gray:focus, +button.bg-gray:hover, +button.bg-gray:focus { + background-color: #575757FF !important; +} + +.text-gray { + color: #707070FF !important; +} + +a.text-gray:hover, +a.text-gray:focus { + color: #4A4A4AFF !important; +} + +.border-gray { + border-color: #707070FF !important; +} + +.bg-gray-900 { + background-color: #212529FF !important; +} + +a.bg-gray-900:hover, +a.bg-gray-900:focus, +button.bg-gray-900:hover, +button.bg-gray-900:focus { + background-color: #0A0C0DFF !important; +} + +.text-gray-900 { + color: #212529FF !important; +} + +a.text-gray-900:hover, +a.text-gray-900:focus { + color: #000000FF !important; +} + +.border-gray-900 { + border-color: #212529FF !important; +} + +.bg-gray-800 { + background-color: #333333FF !important; +} + +a.bg-gray-800:hover, +a.bg-gray-800:focus, +button.bg-gray-800:hover, +button.bg-gray-800:focus { + background-color: #1A1A1AFF !important; +} + +.text-gray-800 { + color: #333333FF !important; +} + +a.text-gray-800:hover, +a.text-gray-800:focus { + color: #0D0D0DFF !important; +} + +.border-gray-800 { + border-color: #333333FF !important; +} + +.bg-gray-700 { + background-color: #454545FF !important; +} + +a.bg-gray-700:hover, +a.bg-gray-700:focus, +button.bg-gray-700:hover, +button.bg-gray-700:focus { + background-color: #2B2B2BFF !important; +} + +.text-gray-700 { + color: #454545FF !important; +} + +a.text-gray-700:hover, +a.text-gray-700:focus { + color: #1F1F1FFF !important; +} + +.border-gray-700 { + border-color: #454545FF !important; +} + +.bg-gray-600 { + background-color: #5C5C5CFF !important; +} + +a.bg-gray-600:hover, +a.bg-gray-600:focus, +button.bg-gray-600:hover, +button.bg-gray-600:focus { + background-color: #424242FF !important; +} + +.text-gray-600 { + color: #5C5C5CFF !important; +} + +a.text-gray-600:hover, +a.text-gray-600:focus { + color: #363636FF !important; +} + +.border-gray-600 { + border-color: #5C5C5CFF !important; +} + +.bg-gray-400 { + background-color: #8F8F8FFF !important; +} + +a.bg-gray-400:hover, +a.bg-gray-400:focus, +button.bg-gray-400:hover, +button.bg-gray-400:focus { + background-color: #767676FF !important; +} + +.text-gray-400 { + color: #8F8F8FFF !important; +} + +a.text-gray-400:hover, +a.text-gray-400:focus { + color: #696969FF !important; +} + +.border-gray-400 { + border-color: #8F8F8FFF !important; +} + +.bg-gray-300 { + background-color: #ADADADFF !important; +} + +a.bg-gray-300:hover, +a.bg-gray-300:focus, +button.bg-gray-300:hover, +button.bg-gray-300:focus { + background-color: #949494FF !important; +} + +.text-gray-300 { + color: #ADADADFF !important; +} + +a.text-gray-300:hover, +a.text-gray-300:focus { + color: #878787FF !important; +} + +.border-gray-300 { + border-color: #ADADADFF !important; +} + +.bg-gray-200 { + background-color: #CCCCCCFF !important; +} + +a.bg-gray-200:hover, +a.bg-gray-200:focus, +button.bg-gray-200:hover, +button.bg-gray-200:focus { + background-color: #B3B3B3FF !important; +} + +.text-gray-200 { + color: #CCCCCCFF !important; +} + +a.text-gray-200:hover, +a.text-gray-200:focus { + color: #A6A6A6FF !important; +} + +.border-gray-200 { + border-color: #CCCCCCFF !important; +} + +.bg-gray-100 { + background-color: #EBEBEBFF !important; +} + +a.bg-gray-100:hover, +a.bg-gray-100:focus, +button.bg-gray-100:hover, +button.bg-gray-100:focus { + background-color: #D2D2D2FF !important; +} + +.text-gray-100 { + color: #EBEBEBFF !important; +} + +a.text-gray-100:hover, +a.text-gray-100:focus { + color: #C5C5C5FF !important; +} + +.border-gray-100 { + border-color: #EBEBEBFF !important; +} + +.bg-accent-b { + background-color: #FFEE88FF !important; +} + +a.bg-accent-b:hover, +a.bg-accent-b:focus, +button.bg-accent-b:hover, +button.bg-accent-b:focus { + background-color: #FFE755FF !important; +} + +.text-accent-b { + color: #FFEE88FF !important; +} + +a.text-accent-b:hover, +a.text-accent-b:focus { + color: #FFE33BFF !important; +} + +.border-accent-b { + border-color: #FFEE88FF !important; +} + +.bg-accent-a { + background-color: #00BBF9FF !important; +} + +a.bg-accent-a:hover, +a.bg-accent-a:focus, +button.bg-accent-a:hover, +button.bg-accent-a:focus { + background-color: #0095C6FF !important; +} + +.text-accent-a { + color: #00BBF9FF !important; +} + +a.text-accent-a:hover, +a.text-accent-a:focus { + color: #0082ADFF !important; +} + +.border-accent-a { + border-color: #00BBF9FF !important; +} + +.bg-dark-900 { + background-color: #1B2C21FF !important; +} + +a.bg-dark-900:hover, +a.bg-dark-900:focus, +button.bg-dark-900:hover, +button.bg-dark-900:focus { + background-color: #080C09FF !important; +} + +.text-dark-900 { + color: #1B2C21FF !important; +} + +a.text-dark-900:hover, +a.text-dark-900:focus { + color: #000000FF !important; +} + +.border-dark-900 { + border-color: #1B2C21FF !important; +} + +.bg-dark-800 { + background-color: #1D2F23FF !important; +} + +a.bg-dark-800:hover, +a.bg-dark-800:focus, +button.bg-dark-800:hover, +button.bg-dark-800:focus { + background-color: #0A0F0CFF !important; +} + +.text-dark-800 { + color: #1D2F23FF !important; +} + +a.text-dark-800:hover, +a.text-dark-800:focus { + color: #000000FF !important; +} + +.border-dark-800 { + border-color: #1D2F23FF !important; +} + +.bg-dark-700 { + background-color: #1F3226FF !important; +} + +a.bg-dark-700:hover, +a.bg-dark-700:focus, +button.bg-dark-700:hover, +button.bg-dark-700:focus { + background-color: #0B130EFF !important; +} + +.text-dark-700 { + color: #1F3226FF !important; +} + +a.text-dark-700:hover, +a.text-dark-700:focus { + color: #020302FF !important; +} + +.border-dark-700 { + border-color: #1F3226FF !important; +} + +.bg-dark-600 { + background-color: #23392AFF !important; +} + +a.bg-dark-600:hover, +a.bg-dark-600:focus, +button.bg-dark-600:hover, +button.bg-dark-600:focus { + background-color: #101913FF !important; +} + +.text-dark-600 { + color: #23392AFF !important; +} + +a.text-dark-600:hover, +a.text-dark-600:focus { + color: #060A07FF !important; +} + +.border-dark-600 { + border-color: #23392AFF !important; +} + +.bg-dark-500 { + background-color: #273F2FFF !important; +} + +a.bg-dark-500:hover, +a.bg-dark-500:focus, +button.bg-dark-500:hover, +button.bg-dark-500:focus { + background-color: #142018FF !important; +} + +.text-dark-500 { + color: #273F2FFF !important; +} + +a.text-dark-500:hover, +a.text-dark-500:focus { + color: #0A100CFF !important; +} + +.border-dark-500 { + border-color: #273F2FFF !important; +} + +.bg-dark-400 { + background-color: #5D6F63FF !important; +} + +a.bg-dark-400:hover, +a.bg-dark-400:focus, +button.bg-dark-400:hover, +button.bg-dark-400:focus { + background-color: #46534AFF !important; +} + +.text-dark-400 { + color: #5D6F63FF !important; +} + +a.text-dark-400:hover, +a.text-dark-400:focus { + color: #3A453EFF !important; +} + +.border-dark-400 { + border-color: #5D6F63FF !important; +} + +.bg-dark-300 { + background-color: #939F97FF !important; +} + +a.bg-dark-300:hover, +a.bg-dark-300:focus, +button.bg-dark-300:hover, +button.bg-dark-300:focus { + background-color: #78877DFF !important; +} + +.text-dark-300 { + color: #939F97FF !important; +} + +a.text-dark-300:hover, +a.text-dark-300:focus { + color: #6C7A71FF !important; +} + +.border-dark-300 { + border-color: #939F97FF !important; +} + +.bg-dark-200 { + background-color: #C9CFCBFF !important; +} + +a.bg-dark-200:hover, +a.bg-dark-200:focus, +button.bg-dark-200:hover, +button.bg-dark-200:focus { + background-color: #AEB7B1FF !important; +} + +.text-dark-200 { + color: #C9CFCBFF !important; +} + +a.text-dark-200:hover, +a.text-dark-200:focus { + color: #A1ABA4FF !important; +} + +.border-dark-200 { + border-color: #C9CFCBFF !important; +} + +.bg-dark-100 { + background-color: #F2F3F3FF !important; +} + +a.bg-dark-100:hover, +a.bg-dark-100:focus, +button.bg-dark-100:hover, +button.bg-dark-100:focus { + background-color: #D7DBDBFF !important; +} + +.text-dark-100 { + color: #F2F3F3FF !important; +} + +a.text-dark-100:hover, +a.text-dark-100:focus { + color: #CACECEFF !important; +} + +.border-dark-100 { + border-color: #F2F3F3FF !important; +} + +.bg-light-900 { + background-color: #9E9B99FF !important; +} + +a.bg-light-900:hover, +a.bg-light-900:focus, +button.bg-light-900:hover, +button.bg-light-900:focus { + background-color: #85817FFF !important; +} + +.text-light-900 { + color: #9E9B99FF !important; +} + +a.text-light-900:hover, +a.text-light-900:focus { + color: #787572FF !important; +} + +.border-light-900 { + border-color: #9E9B99FF !important; +} + +.bg-light-800 { + background-color: #A9A6A4FF !important; +} + +a.bg-light-800:hover, +a.bg-light-800:focus, +button.bg-light-800:hover, +button.bg-light-800:focus { + background-color: #908C8AFF !important; +} + +.text-light-800 { + color: #A9A6A4FF !important; +} + +a.text-light-800:hover, +a.text-light-800:focus { + color: #84807DFF !important; +} + +.border-light-800 { + border-color: #A9A6A4FF !important; +} + +.bg-light-700 { + background-color: #B4B1AFFF !important; +} + +a.bg-light-700:hover, +a.bg-light-700:focus, +button.bg-light-700:hover, +button.bg-light-700:focus { + background-color: #9B9795FF !important; +} + +.text-light-700 { + color: #B4B1AFFF !important; +} + +a.text-light-700:hover, +a.text-light-700:focus { + color: #8F8B88FF !important; +} + +.border-light-700 { + border-color: #B4B1AFFF !important; +} + +.bg-light-600 { + background-color: #CBC7C5FF !important; +} + +a.bg-light-600:hover, +a.bg-light-600:focus, +button.bg-light-600:hover, +button.bg-light-600:focus { + background-color: #B3ADAAFF !important; +} + +.text-light-600 { + color: #CBC7C5FF !important; +} + +a.text-light-600:hover, +a.text-light-600:focus { + color: #A7A09DFF !important; +} + +.border-light-600 { + border-color: #CBC7C5FF !important; +} + +.bg-light-500 { + background-color: #E1DDDBFF !important; +} + +a.bg-light-500:hover, +a.bg-light-500:focus, +button.bg-light-500:hover, +button.bg-light-500:focus { + background-color: #CAC3BFFF !important; +} + +.text-light-500 { + color: #E1DDDBFF !important; +} + +a.text-light-500:hover, +a.text-light-500:focus { + color: #BEB6B1FF !important; +} + +.border-light-500 { + border-color: #E1DDDBFF !important; +} + +.bg-light-400 { + background-color: #E9E6E4FF !important; +} + +a.bg-light-400:hover, +a.bg-light-400:focus, +button.bg-light-400:hover, +button.bg-light-400:focus { + background-color: #D2CCC8FF !important; +} + +.text-light-400 { + color: #E9E6E4FF !important; +} + +a.text-light-400:hover, +a.text-light-400:focus { + color: #C7BFBAFF !important; +} + +.border-light-400 { + border-color: #E9E6E4FF !important; +} + +.bg-light-300 { + background-color: #F0EEEDFF !important; +} + +a.bg-light-300:hover, +a.bg-light-300:focus, +button.bg-light-300:hover, +button.bg-light-300:focus { + background-color: #D9D4D1FF !important; +} + +.text-light-300 { + color: #F0EEEDFF !important; +} + +a.text-light-300:hover, +a.text-light-300:focus { + color: #CDC7C3FF !important; +} + +.border-light-300 { + border-color: #F0EEEDFF !important; +} + +.bg-light-200 { + background-color: #F8F7F6FF !important; +} + +a.bg-light-200:hover, +a.bg-light-200:focus, +button.bg-light-200:hover, +button.bg-light-200:focus { + background-color: #E2DED9FF !important; +} + +.text-light-200 { + color: #F8F7F6FF !important; +} + +a.text-light-200:hover, +a.text-light-200:focus { + color: #D7D1CBFF !important; +} + +.border-light-200 { + border-color: #F8F7F6FF !important; +} + +.bg-light-100 { + background-color: #FDFDFDFF !important; +} + +a.bg-light-100:hover, +a.bg-light-100:focus, +button.bg-light-100:hover, +button.bg-light-100:focus { + background-color: #E4E4E4FF !important; +} + +.text-light-100 { + color: #FDFDFDFF !important; +} + +a.text-light-100:hover, +a.text-light-100:focus { + color: #D7D7D7FF !important; +} + +.border-light-100 { + border-color: #FDFDFDFF !important; +} + +.bg-danger { + background-color: #C32D3AFF !important; +} + +a.bg-danger:hover, +a.bg-danger:focus, +button.bg-danger:hover, +button.bg-danger:focus { + background-color: #9A232EFF !important; +} + +.text-danger { + color: #C32D3AFF !important; +} + +a.text-danger:hover, +a.text-danger:focus { + color: #851F28FF !important; +} + +.border-danger { + border-color: #C32D3AFF !important; +} + +.bg-warning { + background-color: #FFD900FF !important; +} + +a.bg-warning:hover, +a.bg-warning:focus, +button.bg-warning:hover, +button.bg-warning:focus { + background-color: #CCAE00FF !important; +} + +.text-warning { + color: #FFD900FF !important; +} + +a.text-warning:hover, +a.text-warning:focus { + color: #B39800FF !important; +} + +.border-warning { + border-color: #FFD900FF !important; +} + +.bg-info { + background-color: #006DAAFF !important; +} + +a.bg-info:hover, +a.bg-info:focus, +button.bg-info:hover, +button.bg-info:focus { + background-color: #004C77FF !important; +} + +.text-info { + color: #006DAAFF !important; +} + +a.text-info:hover, +a.text-info:focus { + color: #003C5EFF !important; +} + +.border-info { + border-color: #006DAAFF !important; +} + +.bg-success { + background-color: #178253FF !important; +} + +a.bg-success:hover, +a.bg-success:focus, +button.bg-success:hover, +button.bg-success:focus { + background-color: #0F5737FF !important; +} + +.text-success { + color: #178253FF !important; +} + +a.text-success:hover, +a.text-success:focus { + color: #0C412AFF !important; +} + +.border-success { + border-color: #178253FF !important; +} + +.bg-brand-900 { + background-color: #6E003BFF !important; +} + +a.bg-brand-900:hover, +a.bg-brand-900:focus, +button.bg-brand-900:hover, +button.bg-brand-900:focus { + background-color: #3B0020FF !important; +} + +.text-brand-900 { + color: #6E003BFF !important; +} + +a.text-brand-900:hover, +a.text-brand-900:focus { + color: #220012FF !important; +} + +.border-brand-900 { + border-color: #6E003BFF !important; +} + +.bg-brand-800 { + background-color: #76003FFF !important; +} + +a.bg-brand-800:hover, +a.bg-brand-800:focus, +button.bg-brand-800:hover, +button.bg-brand-800:focus { + background-color: #430024FF !important; +} + +.text-brand-800 { + color: #76003FFF !important; +} + +a.text-brand-800:hover, +a.text-brand-800:focus { + color: #2A0016FF !important; +} + +.border-brand-800 { + border-color: #76003FFF !important; +} + +.bg-brand-700 { + background-color: #7E0043FF !important; +} + +a.bg-brand-700:hover, +a.bg-brand-700:focus, +button.bg-brand-700:hover, +button.bg-brand-700:focus { + background-color: #4B0028FF !important; +} + +.text-brand-700 { + color: #7E0043FF !important; +} + +a.text-brand-700:hover, +a.text-brand-700:focus { + color: #32001AFF !important; +} + +.border-brand-700 { + border-color: #7E0043FF !important; +} + +.bg-brand-600 { + background-color: #8D004CFF !important; +} + +a.bg-brand-600:hover, +a.bg-brand-600:focus, +button.bg-brand-600:hover, +button.bg-brand-600:focus { + background-color: #5A0031FF !important; +} + +.text-brand-600 { + color: #8D004CFF !important; +} + +a.text-brand-600:hover, +a.text-brand-600:focus { + color: #410023FF !important; +} + +.border-brand-600 { + border-color: #8D004CFF !important; +} + +.bg-brand-500 { + background-color: #9D0054FF !important; +} + +a.bg-brand-500:hover, +a.bg-brand-500:focus, +button.bg-brand-500:hover, +button.bg-brand-500:focus { + background-color: #6A0039FF !important; +} + +.text-brand-500 { + color: #9D0054FF !important; +} + +a.text-brand-500:hover, +a.text-brand-500:focus { + color: #51002BFF !important; +} + +.border-brand-500 { + border-color: #9D0054FF !important; +} + +.bg-brand-400 { + background-color: #B6407FFF !important; +} + +a.bg-brand-400:hover, +a.bg-brand-400:focus, +button.bg-brand-400:hover, +button.bg-brand-400:focus { + background-color: #903365FF !important; +} + +.text-brand-400 { + color: #B6407FFF !important; +} + +a.text-brand-400:hover, +a.text-brand-400:focus { + color: #7D2C58FF !important; +} + +.border-brand-400 { + border-color: #B6407FFF !important; +} + +.bg-brand-300 { + background-color: #CE80AAFF !important; +} + +a.bg-brand-300:hover, +a.bg-brand-300:focus, +button.bg-brand-300:hover, +button.bg-brand-300:focus { + background-color: #C05B91FF !important; +} + +.text-brand-300 { + color: #CE80AAFF !important; +} + +a.text-brand-300:hover, +a.text-brand-300:focus { + color: #B94985FF !important; +} + +.border-brand-300 { + border-color: #CE80AAFF !important; +} + +.bg-brand-200 { + background-color: #E7BFD4FF !important; +} + +a.bg-brand-200:hover, +a.bg-brand-200:focus, +button.bg-brand-200:hover, +button.bg-brand-200:focus { + background-color: #D99ABBFF !important; +} + +.text-brand-200 { + color: #E7BFD4FF !important; +} + +a.text-brand-200:hover, +a.text-brand-200:focus { + color: #D287AFFF !important; +} + +.border-brand-200 { + border-color: #E7BFD4FF !important; +} + +.bg-brand-100 { + background-color: #F9F0F5FF !important; +} + +a.bg-brand-100:hover, +a.bg-brand-100:focus, +button.bg-brand-100:hover, +button.bg-brand-100:focus { + background-color: #EACCDDFF !important; +} + +.text-brand-100 { + color: #F9F0F5FF !important; +} + +a.text-brand-100:hover, +a.text-brand-100:focus { + color: #E3B9D1FF !important; +} + +.border-brand-100 { + border-color: #F9F0F5FF !important; +} + +.bg-secondary { + background-color: #454545FF !important; +} + +a.bg-secondary:hover, +a.bg-secondary:focus, +button.bg-secondary:hover, +button.bg-secondary:focus { + background-color: #2B2B2BFF !important; +} + +.text-secondary { + color: #454545FF !important; +} + +a.text-secondary:hover, +a.text-secondary:focus { + color: #1F1F1FFF !important; +} + +.border-secondary { + border-color: #454545FF !important; +} + +.bg-primary-900 { + background-color: #07223CFF !important; +} + +a.bg-primary-900:hover, +a.bg-primary-900:focus, +button.bg-primary-900:hover, +button.bg-primary-900:focus { + background-color: #02080EFF !important; +} + +.text-primary-900 { + color: #07223CFF !important; +} + +a.text-primary-900:hover, +a.text-primary-900:focus { + color: #000000FF !important; +} + +.border-primary-900 { + border-color: #07223CFF !important; +} + +.bg-primary-800 { + background-color: #082440FF !important; +} + +a.bg-primary-800:hover, +a.bg-primary-800:focus, +button.bg-primary-800:hover, +button.bg-primary-800:focus { + background-color: #020A13FF !important; +} + +.text-primary-800 { + color: #082440FF !important; +} + +a.text-primary-800:hover, +a.text-primary-800:focus { + color: #000000FF !important; +} + +.border-primary-800 { + border-color: #082440FF !important; +} + +.bg-primary-700 { + background-color: #082644FF !important; +} + +a.bg-primary-700:hover, +a.bg-primary-700:focus, +button.bg-primary-700:hover, +button.bg-primary-700:focus { + background-color: #030C16FF !important; +} + +.text-primary-700 { + color: #082644FF !important; +} + +a.text-primary-700:hover, +a.text-primary-700:focus { + color: #000000FF !important; +} + +.border-primary-700 { + border-color: #082644FF !important; +} + +.bg-primary-600 { + background-color: #092B4DFF !important; +} + +a.bg-primary-600:hover, +a.bg-primary-600:focus, +button.bg-primary-600:hover, +button.bg-primary-600:focus { + background-color: #04111FFF !important; +} + +.text-primary-600 { + color: #092B4DFF !important; +} + +a.text-primary-600:hover, +a.text-primary-600:focus { + color: #010509FF !important; +} + +.border-primary-600 { + border-color: #092B4DFF !important; +} + +.bg-primary-500 { + background-color: #0A3055FF !important; +} + +a.bg-primary-500:hover, +a.bg-primary-500:focus, +button.bg-primary-500:hover, +button.bg-primary-500:focus { + background-color: #051627FF !important; +} + +.text-primary-500 { + color: #0A3055FF !important; +} + +a.text-primary-500:hover, +a.text-primary-500:focus { + color: #020911FF !important; +} + +.border-primary-500 { + border-color: #0A3055FF !important; +} + +.bg-primary-400 { + background-color: #476480FF !important; +} + +a.bg-primary-400:hover, +a.bg-primary-400:focus, +button.bg-primary-400:hover, +button.bg-primary-400:focus { + background-color: #354A5FFF !important; +} + +.text-primary-400 { + color: #476480FF !important; +} + +a.text-primary-400:hover, +a.text-primary-400:focus { + color: #2C3E4FFF !important; +} + +.border-primary-400 { + border-color: #476480FF !important; +} + +.bg-primary-300 { + background-color: #8598AAFF !important; +} + +a.bg-primary-300:hover, +a.bg-primary-300:focus, +button.bg-primary-300:hover, +button.bg-primary-300:focus { + background-color: #677F95FF !important; +} + +.text-primary-300 { + color: #8598AAFF !important; +} + +a.text-primary-300:hover, +a.text-primary-300:focus { + color: #5D7285FF !important; +} + +.border-primary-300 { + border-color: #8598AAFF !important; +} + +.bg-primary-200 { + background-color: #C2CBD5FF !important; +} + +a.bg-primary-200:hover, +a.bg-primary-200:focus, +button.bg-primary-200:hover, +button.bg-primary-200:focus { + background-color: #A4B1C0FF !important; +} + +.text-primary-200 { + color: #C2CBD5FF !important; +} + +a.text-primary-200:hover, +a.text-primary-200:focus { + color: #95A4B6FF !important; +} + +.border-primary-200 { + border-color: #C2CBD5FF !important; +} + +.bg-primary-100 { + background-color: #F0F3F5FF !important; +} + +a.bg-primary-100:hover, +a.bg-primary-100:focus, +button.bg-primary-100:hover, +button.bg-primary-100:focus { + background-color: #D1DBE1FF !important; +} + +.text-primary-100 { + color: #F0F3F5FF !important; +} + +a.text-primary-100:hover, +a.text-primary-100:focus { + color: #C2CED6FF !important; +} + +.border-primary-100 { + border-color: #F0F3F5FF !important; +} + +.bg-gray-500 { + background-color: #707070FF !important; +} + +a.bg-gray-500:hover, +a.bg-gray-500:focus, +button.bg-gray-500:hover, +button.bg-gray-500:focus { + background-color: #575757FF !important; +} + +.text-gray-500 { + color: #707070FF !important; +} + +a.text-gray-500:hover, +a.text-gray-500:focus { + color: #4A4A4AFF !important; +} + +.border-gray-500 { + border-color: #707070FF !important; +} + +.bg-danger-900 { + background-color: #892029FF !important; +} + +a.bg-danger-900:hover, +a.bg-danger-900:focus, +button.bg-danger-900:hover, +button.bg-danger-900:focus { + background-color: #60161DFF !important; +} + +.text-danger-900 { + color: #892029FF !important; +} + +a.text-danger-900:hover, +a.text-danger-900:focus { + color: #4B1216FF !important; +} + +.border-danger-900 { + border-color: #892029FF !important; +} + +.bg-danger-800 { + background-color: #92222CFF !important; +} + +a.bg-danger-800:hover, +a.bg-danger-800:focus, +button.bg-danger-800:hover, +button.bg-danger-800:focus { + background-color: #691820FF !important; +} + +.text-danger-800 { + color: #92222CFF !important; +} + +a.text-danger-800:hover, +a.text-danger-800:focus { + color: #541419FF !important; +} + +.border-danger-800 { + border-color: #92222CFF !important; +} + +.bg-danger-700 { + background-color: #9C242EFF !important; +} + +a.bg-danger-700:hover, +a.bg-danger-700:focus, +button.bg-danger-700:hover, +button.bg-danger-700:focus { + background-color: #731A22FF !important; +} + +.text-danger-700 { + color: #9C242EFF !important; +} + +a.text-danger-700:hover, +a.text-danger-700:focus { + color: #5E161CFF !important; +} + +.border-danger-700 { + border-color: #9C242EFF !important; +} + +.bg-danger-600 { + background-color: #B02934FF !important; +} + +a.bg-danger-600:hover, +a.bg-danger-600:focus, +button.bg-danger-600:hover, +button.bg-danger-600:focus { + background-color: #871F28FF !important; +} + +.text-danger-600 { + color: #B02934FF !important; +} + +a.text-danger-600:hover, +a.text-danger-600:focus { + color: #721B22FF !important; +} + +.border-danger-600 { + border-color: #B02934FF !important; +} + +.bg-danger-500 { + background-color: #C32D3AFF !important; +} + +a.bg-danger-500:hover, +a.bg-danger-500:focus, +button.bg-danger-500:hover, +button.bg-danger-500:focus { + background-color: #9A232EFF !important; +} + +.text-danger-500 { + color: #C32D3AFF !important; +} + +a.text-danger-500:hover, +a.text-danger-500:focus { + color: #851F28FF !important; +} + +.border-danger-500 { + border-color: #C32D3AFF !important; +} + +.bg-danger-400 { + background-color: #D2626BFF !important; +} + +a.bg-danger-400:hover, +a.bg-danger-400:focus, +button.bg-danger-400:hover, +button.bg-danger-400:focus { + background-color: #C73A46FF !important; +} + +.text-danger-400 { + color: #D2626BFF !important; +} + +a.text-danger-400:hover, +a.text-danger-400:focus { + color: #B4343EFF !important; +} + +.border-danger-400 { + border-color: #D2626BFF !important; +} + +.bg-danger-300 { + background-color: #E1969DFF !important; +} + +a.bg-danger-300:hover, +a.bg-danger-300:focus, +button.bg-danger-300:hover, +button.bg-danger-300:focus { + background-color: #D66E78FF !important; +} + +.text-danger-300 { + color: #E1969DFF !important; +} + +a.text-danger-300:hover, +a.text-danger-300:focus { + color: #D05B65FF !important; +} + +.border-danger-300 { + border-color: #E1969DFF !important; +} + +.bg-danger-200 { + background-color: #F0CBCEFF !important; +} + +a.bg-danger-200:hover, +a.bg-danger-200:focus, +button.bg-danger-200:hover, +button.bg-danger-200:focus { + background-color: #E5A3A9FF !important; +} + +.text-danger-200 { + color: #F0CBCEFF !important; +} + +a.text-danger-200:hover, +a.text-danger-200:focus { + color: #DF9096FF !important; +} + +.border-danger-200 { + border-color: #F0CBCEFF !important; +} + +.bg-danger-100 { + background-color: #FBF2F3FF !important; +} + +a.bg-danger-100:hover, +a.bg-danger-100:focus, +button.bg-danger-100:hover, +button.bg-danger-100:focus { + background-color: #EFCBCFFF !important; +} + +.text-danger-100 { + color: #FBF2F3FF !important; +} + +a.text-danger-100:hover, +a.text-danger-100:focus { + color: #E9B7BDFF !important; +} + +.border-danger-100 { + border-color: #FBF2F3FF !important; +} + +.bg-warning-900 { + background-color: #B39800FF !important; +} + +a.bg-warning-900:hover, +a.bg-warning-900:focus, +button.bg-warning-900:hover, +button.bg-warning-900:focus { + background-color: #806D00FF !important; +} + +.text-warning-900 { + color: #B39800FF !important; +} + +a.text-warning-900:hover, +a.text-warning-900:focus { + color: #665700FF !important; +} + +.border-warning-900 { + border-color: #B39800FF !important; +} + +.bg-warning-800 { + background-color: #BFA300FF !important; +} + +a.bg-warning-800:hover, +a.bg-warning-800:focus, +button.bg-warning-800:hover, +button.bg-warning-800:focus { + background-color: #8C7700FF !important; +} + +.text-warning-800 { + color: #BFA300FF !important; +} + +a.text-warning-800:hover, +a.text-warning-800:focus { + color: #736200FF !important; +} + +.border-warning-800 { + border-color: #BFA300FF !important; +} + +.bg-warning-700 { + background-color: #CCAE00FF !important; +} + +a.bg-warning-700:hover, +a.bg-warning-700:focus, +button.bg-warning-700:hover, +button.bg-warning-700:focus { + background-color: #998300FF !important; +} + +.text-warning-700 { + color: #CCAE00FF !important; +} + +a.text-warning-700:hover, +a.text-warning-700:focus { + color: #806D00FF !important; +} + +.border-warning-700 { + border-color: #CCAE00FF !important; +} + +.bg-warning-600 { + background-color: #E6C300FF !important; +} + +a.bg-warning-600:hover, +a.bg-warning-600:focus, +button.bg-warning-600:hover, +button.bg-warning-600:focus { + background-color: #B39800FF !important; +} + +.text-warning-600 { + color: #E6C300FF !important; +} + +a.text-warning-600:hover, +a.text-warning-600:focus { + color: #9A8200FF !important; +} + +.border-warning-600 { + border-color: #E6C300FF !important; +} + +.bg-warning-500 { + background-color: #FFD900FF !important; +} + +a.bg-warning-500:hover, +a.bg-warning-500:focus, +button.bg-warning-500:hover, +button.bg-warning-500:focus { + background-color: #CCAE00FF !important; +} + +.text-warning-500 { + color: #FFD900FF !important; +} + +a.text-warning-500:hover, +a.text-warning-500:focus { + color: #B39800FF !important; +} + +.border-warning-500 { + border-color: #FFD900FF !important; +} + +.bg-warning-400 { + background-color: #FFE340FF !important; +} + +a.bg-warning-400:hover, +a.bg-warning-400:focus, +button.bg-warning-400:hover, +button.bg-warning-400:focus { + background-color: #FFDC0DFF !important; +} + +.text-warning-400 { + color: #FFE340FF !important; +} + +a.text-warning-400:hover, +a.text-warning-400:focus { + color: #F3CF00FF !important; +} + +.border-warning-400 { + border-color: #FFE340FF !important; +} + +.bg-warning-300 { + background-color: #FFEC80FF !important; +} + +a.bg-warning-300:hover, +a.bg-warning-300:focus, +button.bg-warning-300:hover, +button.bg-warning-300:focus { + background-color: #FFE44DFF !important; +} + +.text-warning-300 { + color: #FFEC80FF !important; +} + +a.text-warning-300:hover, +a.text-warning-300:focus { + color: #FFE133FF !important; +} + +.border-warning-300 { + border-color: #FFEC80FF !important; +} + +.bg-warning-200 { + background-color: #FFF6BFFF !important; +} + +a.bg-warning-200:hover, +a.bg-warning-200:focus, +button.bg-warning-200:hover, +button.bg-warning-200:focus { + background-color: #FFEF8CFF !important; +} + +.text-warning-200 { + color: #FFF6BFFF !important; +} + +a.text-warning-200:hover, +a.text-warning-200:focus { + color: #FFEB72FF !important; +} + +.border-warning-200 { + border-color: #FFF6BFFF !important; +} + +.bg-warning-100 { + background-color: #FFFDF0FF !important; +} + +a.bg-warning-100:hover, +a.bg-warning-100:focus, +button.bg-warning-100:hover, +button.bg-warning-100:focus { + background-color: #FFF6BDFF !important; +} + +.text-warning-100 { + color: #FFFDF0FF !important; +} + +a.text-warning-100:hover, +a.text-warning-100:focus { + color: #FFF3A3FF !important; +} + +.border-warning-100 { + border-color: #FFFDF0FF !important; +} + +.bg-info-900 { + background-color: #004C77FF !important; +} + +a.bg-info-900:hover, +a.bg-info-900:focus, +button.bg-info-900:hover, +button.bg-info-900:focus { + background-color: #002B44FF !important; +} + +.text-info-900 { + color: #004C77FF !important; +} + +a.text-info-900:hover, +a.text-info-900:focus { + color: #001B2BFF !important; +} + +.border-info-900 { + border-color: #004C77FF !important; +} + +.bg-info-800 { + background-color: #005280FF !important; +} + +a.bg-info-800:hover, +a.bg-info-800:focus, +button.bg-info-800:hover, +button.bg-info-800:focus { + background-color: #00314DFF !important; +} + +.text-info-800 { + color: #005280FF !important; +} + +a.text-info-800:hover, +a.text-info-800:focus { + color: #002134FF !important; +} + +.border-info-800 { + border-color: #005280FF !important; +} + +.bg-info-700 { + background-color: #005788FF !important; +} + +a.bg-info-700:hover, +a.bg-info-700:focus, +button.bg-info-700:hover, +button.bg-info-700:focus { + background-color: #003655FF !important; +} + +.text-info-700 { + color: #005788FF !important; +} + +a.text-info-700:hover, +a.text-info-700:focus { + color: #00263CFF !important; +} + +.border-info-700 { + border-color: #005788FF !important; +} + +.bg-info-600 { + background-color: #006299FF !important; +} + +a.bg-info-600:hover, +a.bg-info-600:focus, +button.bg-info-600:hover, +button.bg-info-600:focus { + background-color: #004166FF !important; +} + +.text-info-600 { + color: #006299FF !important; +} + +a.text-info-600:hover, +a.text-info-600:focus { + color: #00314DFF !important; +} + +.border-info-600 { + border-color: #006299FF !important; +} + +.bg-info-500 { + background-color: #006DAAFF !important; +} + +a.bg-info-500:hover, +a.bg-info-500:focus, +button.bg-info-500:hover, +button.bg-info-500:focus { + background-color: #004C77FF !important; +} + +.text-info-500 { + color: #006DAAFF !important; +} + +a.text-info-500:hover, +a.text-info-500:focus { + color: #003C5EFF !important; +} + +.border-info-500 { + border-color: #006DAAFF !important; +} + +.bg-info-400 { + background-color: #4092BFFF !important; +} + +a.bg-info-400:hover, +a.bg-info-400:focus, +button.bg-info-400:hover, +button.bg-info-400:focus { + background-color: #337599FF !important; +} + +.text-info-400 { + color: #4092BFFF !important; +} + +a.text-info-400:hover, +a.text-info-400:focus { + color: #2D6686FF !important; +} + +.border-info-400 { + border-color: #4092BFFF !important; +} + +.bg-info-300 { + background-color: #80B6D5FF !important; +} + +a.bg-info-300:hover, +a.bg-info-300:focus, +button.bg-info-300:hover, +button.bg-info-300:focus { + background-color: #5AA0C8FF !important; +} + +.text-info-300 { + color: #80B6D5FF !important; +} + +a.text-info-300:hover, +a.text-info-300:focus { + color: #4795C2FF !important; +} + +.border-info-300 { + border-color: #80B6D5FF !important; +} + +.bg-info-200 { + background-color: #BFDBEAFF !important; +} + +a.bg-info-200:hover, +a.bg-info-200:focus, +button.bg-info-200:hover, +button.bg-info-200:focus { + background-color: #99C5DDFF !important; +} + +.text-info-200 { + color: #BFDBEAFF !important; +} + +a.text-info-200:hover, +a.text-info-200:focus { + color: #85BBD7FF !important; +} + +.border-info-200 { + border-color: #BFDBEAFF !important; +} + +.bg-info-100 { + background-color: #F0F6FAFF !important; +} + +a.bg-info-100:hover, +a.bg-info-100:focus, +button.bg-info-100:hover, +button.bg-info-100:focus { + background-color: #CADFEDFF !important; +} + +.text-info-100 { + color: #F0F6FAFF !important; +} + +a.text-info-100:hover, +a.text-info-100:focus { + color: #B7D4E7FF !important; +} + +.border-info-100 { + border-color: #F0F6FAFF !important; +} + +.bg-success-900 { + background-color: #105B3AFF !important; +} + +a.bg-success-900:hover, +a.bg-success-900:focus, +button.bg-success-900:hover, +button.bg-success-900:focus { + background-color: #08301EFF !important; +} + +.text-success-900 { + color: #105B3AFF !important; +} + +a.text-success-900:hover, +a.text-success-900:focus { + color: #051A11FF !important; +} + +.border-success-900 { + border-color: #105B3AFF !important; +} + +.bg-success-800 { + background-color: #11623EFF !important; +} + +a.bg-success-800:hover, +a.bg-success-800:focus, +button.bg-success-800:hover, +button.bg-success-800:focus { + background-color: #093723FF !important; +} + +.text-success-800 { + color: #11623EFF !important; +} + +a.text-success-800:hover, +a.text-success-800:focus { + color: #062115FF !important; +} + +.border-success-800 { + border-color: #11623EFF !important; +} + +.bg-success-700 { + background-color: #126842FF !important; +} + +a.bg-success-700:hover, +a.bg-success-700:focus, +button.bg-success-700:hover, +button.bg-success-700:focus { + background-color: #0A3D26FF !important; +} + +.text-success-700 { + color: #126842FF !important; +} + +a.text-success-700:hover, +a.text-success-700:focus { + color: #072719FF !important; +} + +.border-success-700 { + border-color: #126842FF !important; +} + +.bg-success-600 { + background-color: #15754BFF !important; +} + +a.bg-success-600:hover, +a.bg-success-600:focus, +button.bg-success-600:hover, +button.bg-success-600:focus { + background-color: #0D4A2FFF !important; +} + +.text-success-600 { + color: #15754BFF !important; +} + +a.text-success-600:hover, +a.text-success-600:focus { + color: #093421FF !important; +} + +.border-success-600 { + border-color: #15754BFF !important; +} + +.bg-success-500 { + background-color: #178253FF !important; +} + +a.bg-success-500:hover, +a.bg-success-500:focus, +button.bg-success-500:hover, +button.bg-success-500:focus { + background-color: #0F5737FF !important; +} + +.text-success-500 { + color: #178253FF !important; +} + +a.text-success-500:hover, +a.text-success-500:focus { + color: #0C412AFF !important; +} + +.border-success-500 { + border-color: #178253FF !important; +} + +.bg-success-400 { + background-color: #51A17EFF !important; +} + +a.bg-success-400:hover, +a.bg-success-400:focus, +button.bg-success-400:hover, +button.bg-success-400:focus { + background-color: #407F63FF !important; +} + +.text-success-400 { + color: #51A17EFF !important; +} + +a.text-success-400:hover, +a.text-success-400:focus { + color: #376E56FF !important; +} + +.border-success-400 { + border-color: #51A17EFF !important; +} + +.bg-success-300 { + background-color: #8BC1A9FF !important; +} + +a.bg-success-300:hover, +a.bg-success-300:focus, +button.bg-success-300:hover, +button.bg-success-300:focus { + background-color: #6AAF90FF !important; +} + +.text-success-300 { + color: #8BC1A9FF !important; +} + +a.text-success-300:hover, +a.text-success-300:focus { + color: #59A684FF !important; +} + +.border-success-300 { + border-color: #8BC1A9FF !important; +} + +.bg-success-200 { + background-color: #C5E0D4FF !important; +} + +a.bg-success-200:hover, +a.bg-success-200:focus, +button.bg-success-200:hover, +button.bg-success-200:focus { + background-color: #A4CEBBFF !important; +} + +.text-success-200 { + color: #C5E0D4FF !important; +} + +a.text-success-200:hover, +a.text-success-200:focus { + color: #93C5AFFF !important; +} + +.border-success-200 { + border-color: #C5E0D4FF !important; +} + +.bg-success-100 { + background-color: #F1F8F5FF !important; +} + +a.bg-success-100:hover, +a.bg-success-100:focus, +button.bg-success-100:hover, +button.bg-success-100:focus { + background-color: #CFE7DDFF !important; +} + +.text-success-100 { + color: #F1F8F5FF !important; +} + +a.text-success-100:hover, +a.text-success-100:focus { + color: #BEDFD1FF !important; +} + +.border-success-100 { + border-color: #F1F8F5FF !important; +} + +.bg-secondary-900 { + background-color: #303030FF !important; +} + +a.bg-secondary-900:hover, +a.bg-secondary-900:focus, +button.bg-secondary-900:hover, +button.bg-secondary-900:focus { + background-color: #161616FF !important; +} + +.text-secondary-900 { + color: #303030FF !important; +} + +a.text-secondary-900:hover, +a.text-secondary-900:focus { + color: #0A0A0AFF !important; +} + +.border-secondary-900 { + border-color: #303030FF !important; +} + +.bg-secondary-800 { + background-color: #343434FF !important; +} + +a.bg-secondary-800:hover, +a.bg-secondary-800:focus, +button.bg-secondary-800:hover, +button.bg-secondary-800:focus { + background-color: #1A1A1AFF !important; +} + +.text-secondary-800 { + color: #343434FF !important; +} + +a.text-secondary-800:hover, +a.text-secondary-800:focus { + color: #0E0E0EFF !important; +} + +.border-secondary-800 { + border-color: #343434FF !important; +} + +.bg-secondary-700 { + background-color: #373737FF !important; +} + +a.bg-secondary-700:hover, +a.bg-secondary-700:focus, +button.bg-secondary-700:hover, +button.bg-secondary-700:focus { + background-color: #1E1E1EFF !important; +} + +.text-secondary-700 { + color: #373737FF !important; +} + +a.text-secondary-700:hover, +a.text-secondary-700:focus { + color: #111111FF !important; +} + +.border-secondary-700 { + border-color: #373737FF !important; +} + +.bg-secondary-600 { + background-color: #3E3E3EFF !important; +} + +a.bg-secondary-600:hover, +a.bg-secondary-600:focus, +button.bg-secondary-600:hover, +button.bg-secondary-600:focus { + background-color: #252525FF !important; +} + +.text-secondary-600 { + color: #3E3E3EFF !important; +} + +a.text-secondary-600:hover, +a.text-secondary-600:focus { + color: #181818FF !important; +} + +.border-secondary-600 { + border-color: #3E3E3EFF !important; +} + +.bg-secondary-500 { + background-color: #454545FF !important; +} + +a.bg-secondary-500:hover, +a.bg-secondary-500:focus, +button.bg-secondary-500:hover, +button.bg-secondary-500:focus { + background-color: #2B2B2BFF !important; +} + +.text-secondary-500 { + color: #454545FF !important; +} + +a.text-secondary-500:hover, +a.text-secondary-500:focus { + color: #1F1F1FFF !important; +} + +.border-secondary-500 { + border-color: #454545FF !important; +} + +.bg-secondary-400 { + background-color: #747474FF !important; +} + +a.bg-secondary-400:hover, +a.bg-secondary-400:focus, +button.bg-secondary-400:hover, +button.bg-secondary-400:focus { + background-color: #5A5A5AFF !important; +} + +.text-secondary-400 { + color: #747474FF !important; +} + +a.text-secondary-400:hover, +a.text-secondary-400:focus { + color: #4E4E4EFF !important; +} + +.border-secondary-400 { + border-color: #747474FF !important; +} + +.bg-secondary-300 { + background-color: #A2A2A2FF !important; +} + +a.bg-secondary-300:hover, +a.bg-secondary-300:focus, +button.bg-secondary-300:hover, +button.bg-secondary-300:focus { + background-color: #898989FF !important; +} + +.text-secondary-300 { + color: #A2A2A2FF !important; +} + +a.text-secondary-300:hover, +a.text-secondary-300:focus { + color: #7C7C7CFF !important; +} + +.border-secondary-300 { + border-color: #A2A2A2FF !important; +} + +.bg-secondary-200 { + background-color: #D1D1D1FF !important; +} + +a.bg-secondary-200:hover, +a.bg-secondary-200:focus, +button.bg-secondary-200:hover, +button.bg-secondary-200:focus { + background-color: #B8B8B8FF !important; +} + +.text-secondary-200 { + color: #D1D1D1FF !important; +} + +a.text-secondary-200:hover, +a.text-secondary-200:focus { + color: #ABABABFF !important; +} + +.border-secondary-200 { + border-color: #D1D1D1FF !important; +} + +.bg-secondary-100 { + background-color: #F4F4F4FF !important; +} + +a.bg-secondary-100:hover, +a.bg-secondary-100:focus, +button.bg-secondary-100:hover, +button.bg-secondary-100:focus { + background-color: #DBDBDBFF !important; +} + +.text-secondary-100 { + color: #F4F4F4FF !important; +} + +a.text-secondary-100:hover, +a.text-secondary-100:focus { + color: #CECECEFF !important; +} + +.border-secondary-100 { + border-color: #F4F4F4FF !important; +} + diff --git a/scss/core/css/variables.css b/scss/core/css/variables.css new file mode 100644 index 0000000000..67c6fdf9c0 --- /dev/null +++ b/scss/core/css/variables.css @@ -0,0 +1,1758 @@ +/** + * IMPORTANT: This file is the result of assembling design tokens + * Do not edit directly + * Generated on Thu, 16 Feb 2023 10:37:12 GMT + */ + +:root { + --pgn-theme-interval: 8%; + --pgn-other-tooltip-opacity: 1; + --pgn-other-search-field-disabled-opacity: .3; + --pgn-other-modal-opacity: .5; + --pgn-other-link-emphasized-hover-darken-percentage: 15%; + --pgn-other-form-feedback-tooltip-opacity: .9; + --pgn-other-form-control-range-track-cursor: pointer; + --pgn-other-form-control-cursor: auto; + --pgn-other-chip-opacity-disabled: .3; + --pgn-other-btn-disabled-opacity: .65; + --pgn-transition-collapse: height .35s ease; + --pgn-transition-fade: opacity .15s linear; + --pgn-transition-base: all .2s ease-in-out; + --pgn-transition-progress-bar-bar-transition: width .6s ease; + --pgn-transition-progress-bar-bar-animation-timing: 1s linear infinite; + --pgn-transition-form-control: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out; + --pgn-transition-form-input: border-color .15s ease-in-out, box-shadow .15s ease-in-out; + --pgn-transition-carousel-control: opacity .15s ease; + --pgn-transition-carousel-indicator: opacity .6s ease; + --pgn-transition-carousel-duration: .6s; + --pgn-transition-btn: none; + --pgn-transition-badge: none; + --pgn-elevation-zindex-fixed: 1030; + --pgn-elevation-zindex-sticky: 1020; + --pgn-elevation-zindex-2000: 2000; + --pgn-elevation-zindex-1800: 1800; + --pgn-elevation-zindex-1600: 1600; + --pgn-elevation-zindex-1400: 1400; + --pgn-elevation-zindex-1200: 1200; + --pgn-elevation-zindex-1000: 1000; + --pgn-elevation-zindex-800: 800; + --pgn-elevation-zindex-600: 600; + --pgn-elevation-zindex-400: 400; + --pgn-elevation-zindex-200: 200; + --pgn-elevation-zindex-0: 0; + --pgn-elevation-box-shadow-centered-5: 0 0 2.5rem rgba(0, 0, 0, .15), 0 0 3rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-centered-4: 0 0 1.25rem rgba(0, 0, 0, .15), 0 0 1.25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-centered-3: 0 0 .625rem rgba(0, 0, 0, .15), 0 0 1rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-centered-2: 0 0 .25rem rgba(0, 0, 0, .15), 0 0 .5rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-centered-1: 0 0 .125rem rgba(0, 0, 0, .15), 0 0 .25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-right-5: 1.25rem 0 2.5rem rgba(0, 0, 0, .15), .5rem 0 3rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-right-4: .625rem 0 1.25rem rgba(0, 0, 0, .15), .5rem 0 1.25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-right-3: .5rem 0 1rem rgba(0, 0, 0, .15), .25rem 0 .625rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-right-2: .125rem 0 .25rem rgba(0, 0, 0, .15), .125rem 0 .5rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-right-1: .0625rem 0 .125rem rgba(0, 0, 0, .15), .0625rem 0 .25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-up-5: 0 -1.25rem 2.5rem rgba(0, 0, 0, .15), 0 -.5rem 3rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-up-4: 0 -.625rem 1.25rem rgba(0, 0, 0, .15), 0 -.5rem 1.25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-up-3: 0 -.5rem 1rem rgba(0, 0, 0, .15), 0 -.25rem .625rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-up-2: 0 -.125rem .25rem rgba(0, 0, 0, .15), 0 -.125rem .5rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-up-1: 0 -.0625rem .125rem rgba(0, 0, 0, .15), 0 -.0625rem .25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-left-5: -1.25rem 0 2.5rem rgba(0, 0, 0, .15), -.5rem 0 3rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-left-4: -.625rem 0 1.25rem rgba(0, 0, 0, .15), -.5rem 0 1.25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-left-3: -.5rem 0 1rem rgba(0, 0, 0, .15), -.25rem 0 .625rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-left-2: -.125rem 0 .25rem rgba(0, 0, 0, .15), -.125rem 0 .5rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-left-1: -.0625rem 0 .125rem rgba(0, 0, 0, .15), -.0625rem 0 .25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-down-5: 0 1.25px 2.5rem rgba(0, 0, 0, .15), 0 .5rem 2.5rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-down-4: 0 .625rem 1.25rem rgba(0, 0, 0, .15), 0 .5rem 1.25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-down-3: 0 .5rem 1rem rgba(0, 0, 0, .15), 0 .25rem .625rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-down-2: 0 .125rem .25rem rgba(0, 0, 0, .15), 0 .125rem .5rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-down-1: 0 .0625rem .125rem rgba(0, 0, 0, .15), 0 .0625rem .25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-lg: 0 .25rem .5rem rgba(0, 0, 0, .3); + --pgn-elevation-box-shadow-sm: 0 .0625rem .125rem rgba(0, 0, 0, .2); + --pgn-elevation-box-shadow-base: 0 .125rem .25rem rgba(0, 0, 0, .3); + --pgn-elevation-box-shadow-level-5: 0 1.25px 2.5rem rgba(0, 0, 0, .15), 0 .5rem 2.5rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-level-4: 0 .625rem 1.25rem rgba(0, 0, 0, .15), 0 .5rem 1.25rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-level-3: 0 0 .625rem rgba(0, 0, 0, .15), 0 0 1rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-level-2: 0 .125rem .25rem rgba(0, 0, 0, .15), 0 .125rem .5rem rgba(0, 0, 0, .15); + --pgn-elevation-box-shadow-level-1: 0 .0625rem .125rem rgba(0, 0, 0, .15), 0 .0625rem .25rem rgba(0, 0, 0, .15); + --pgn-elevation-tooltip-zindex: 1070; + --pgn-elevation-tooltip-box-shadow: drop-shadow(0 2px 4px rgba(0, 0, 0, .15)) drop-shadow(0 2px 8px rgba(0, 0, 0, .15)); + --pgn-elevation-toast-box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, .15), 0 .5rem 3rem rgba(0, 0, 0, .15); + --pgn-elevation-sticky-shadow-bottom: 0 .5rem 1rem rgba(0, 0, 0, .15), 0 .25rem .625rem rgba(0, 0, 0, .15); + --pgn-elevation-sticky-shadow-top: 0 -.5rem 1rem rgba(0, 0, 0, .15), 0 -.25rem .625rem rgba(0, 0, 0, .15); + --pgn-elevation-sheet-zindex-main: 1032; + --pgn-elevation-sheet-zindex-backdrop: 1031; + --pgn-elevation-progress-bar-box-shadow: none; + --pgn-elevation-product-tour-checkpoint-zindex: 1060; + --pgn-elevation-popover-zindex: 1060; + --pgn-elevation-popover-box-shadow: drop-shadow(0 2px 4px rgba(0, 0, 0, .15)) drop-shadow(0 2px 8px rgba(0, 0, 0, .15)); + --pgn-elevation-modal-zindex: 1050; + --pgn-elevation-modal-backdrop-zindex: 1040; + --pgn-elevation-modal-content-box-shadow-sm-up: 0 10px 20px rgba(0, 0, 0, .15), 0 8px 20px rgba(0, 0, 0, .15); + --pgn-elevation-image-thumbnail-box-shadow: 0 1px 2px rgba(0, 0, 0, .075); + --pgn-elevation-form-control-select-border-base: inset 0 1px 2px rgba(0, 0, 0, .075); + --pgn-elevation-form-control-range-thumb-base: 0 .1rem .25rem rgba(0, 0, 0, .1); + --pgn-elevation-form-control-range-track: inset 0 .25rem .25rem rgba(0, 0, 0, .1); + --pgn-elevation-form-control-checkbox-indicator-indeterminate: none; + --pgn-elevation-form-control-indicator-active: none; + --pgn-elevation-form-control-indicator-checked-focus: 0 0 0 4px rgba(0, 0, 0, .1); + --pgn-elevation-form-control-indicator-checked-base: none; + --pgn-elevation-form-input-base: inset 0 1px 1px rgba(0, 0, 0, .075); + --pgn-elevation-dropdown-zindex: 1000; + --pgn-elevation-dropdown-box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .175); + --pgn-elevation-code-kbd-box-shadow: inset 0 -.1rem 0 rgba(0, 0, 0, .25); + --pgn-elevation-btn-box-shadow-active: none; + --pgn-elevation-btn-box-shadow-base: none; + --pgn-elevation-annotation-box-shadow: drop-shadow(0 2px 4px rgba(0, 0, 0, .15)) drop-shadow(0 2px 8px rgba(0, 0, 0, .15)); + --pgn-elevation-alert-box-shadow: 0 1px 2px rgba(0, 0, 0, .15), 0 1px 4px rgba(0, 0, 0, .15); + --pgn-typography-line-height-sm: 1.5; + --pgn-typography-line-height-lg: 1.5; + --pgn-typography-line-height-base: 1.5556; + --pgn-typography-font-weight-lead: inherit; + --pgn-typography-font-weight-bolder: bolder; + --pgn-typography-font-weight-bold: 700; + --pgn-typography-font-weight-semi-bold: 500; + --pgn-typography-font-weight-normal: 400; + --pgn-typography-font-weight-light: 300; + --pgn-typography-font-weight-lighter: lighter; + --pgn-typography-font-size-mobile-h1: 2.25rem; + --pgn-typography-font-size-h6: .75rem; + --pgn-typography-font-size-h5: .875rem; + --pgn-typography-font-size-h4: 1.125rem; + --pgn-typography-font-size-h3: 1.375rem; + --pgn-typography-font-size-h2: 2rem; + --pgn-typography-font-size-h1: 2.5rem; + --pgn-typography-font-size-small-x: 75%; + --pgn-typography-font-size-small-base: 87.5%; + --pgn-typography-font-size-xs: .75rem; + --pgn-typography-font-size-sm: .875rem; + --pgn-typography-font-size-lg: 1.4063rem; + --pgn-typography-font-size-base: 1.125rem; + --pgn-typography-font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; + --pgn-typography-font-family-serif: serif; + --pgn-typography-font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; + --pgn-typography-display-mobile: 3.25rem; + --pgn-typography-display-line-height-mobile: 3.5rem; + --pgn-typography-display-line-height-base: 1; + --pgn-typography-display-4: 7.5rem; + --pgn-typography-display-3: 5.625rem; + --pgn-typography-display-2: 4.875rem; + --pgn-typography-display-1: 3.75rem; + --pgn-typography-toast-font-size: .875rem; + --pgn-typography-pagination-line-height: 1.5rem; + --pgn-typography-pagination-font-size-sm: .875rem; + --pgn-typography-nav-link-font-weight: 500; + --pgn-typography-image-figure-caption-font-size: 90%; + --pgn-typography-link-decoration-brand-inline-hover: underline; + --pgn-typography-link-decoration-brand-inline-base: underline; + --pgn-typography-link-decoration-brand-hover: underline; + --pgn-typography-link-decoration-brand-base: none; + --pgn-typography-link-decoration-muted-inline-hover: underline; + --pgn-typography-link-decoration-muted-inline-base: underline; + --pgn-typography-link-decoration-muted-hover: underline; + --pgn-typography-link-decoration-muted-base: none; + --pgn-typography-link-decoration-inline-hover: underline; + --pgn-typography-link-decoration-inline-base: underline; + --pgn-typography-link-decoration-hover: underline; + --pgn-typography-link-decoration-base: none; + --pgn-typography-input-btn-line-height-sm: 1.4286; + --pgn-typography-input-btn-line-height-base: 1.3333; + --pgn-typography-input-btn-font-size-lg: 1.325rem; + --pgn-typography-input-btn-font-size-sm: .875rem; + --pgn-typography-input-btn-font-size-base: 1.125rem; + --pgn-typography-input-btn-font-family: inherit; + --pgn-typography-headings-line-height: 1.25; + --pgn-typography-headings-font-family: inherit; + --pgn-typography-code-font-size: 87.5%; + --pgn-typography-breadcrumb-font-size: inherit; + --pgn-typography-badge-font-size: 75%; + --pgn-typography-alert-line-height: 1.5rem; + --pgn-typography-alert-font-size: .875rem; + --pgn-spacing-spacer-base: 1rem; + --pgn-spacing-spacer-0: 0; + --pgn-spacing-tooltip-margin: 0; + --pgn-spacing-tooltip-padding-x: .5rem; + --pgn-spacing-tooltip-padding-y: .5rem; + --pgn-spacing-toast-container-gutter-sm: .625rem; + --pgn-spacing-toast-container-gutter-lg: 1.25rem; + --pgn-spacing-toast-padding-y: .25rem; + --pgn-spacing-toast-padding-x: .75rem; + --pgn-spacing-sticky-offset: 0; + --pgn-spacing-selectable-box-box-space: .75rem; + --pgn-spacing-selectable-box-border-radius: .25rem; + --pgn-spacing-selectable-box-padding: 1rem; + --pgn-spacing-search-field-margin-button: .5rem; + --pgn-spacing-progress-bar-hint-annotation-gap: .5rem; + --pgn-spacing-popover-icon-margin-right: .5rem; + --pgn-spacing-popover-header-padding-x: 1rem; + --pgn-spacing-popover-header-padding-y: .5rem; + --pgn-spacing-pagination-margin-x: .5rem; + --pgn-spacing-pagination-padding-x-lg: 1.5rem; + --pgn-spacing-pagination-padding-x-sm: .6rem; + --pgn-spacing-pagination-padding-x-base: 1rem; + --pgn-spacing-pagination-padding-y-lg: .75rem; + --pgn-spacing-pagination-padding-y-sm: .8rem; + --pgn-spacing-pagination-padding-y-base: .625rem; + --pgn-spacing-navbar-toggler-padding-x: .75rem; + --pgn-spacing-navbar-toggler-padding-y: .25rem; + --pgn-spacing-navbar-padding-x-nav-link: .5rem; + --pgn-spacing-nav-link-padding-x: 1rem; + --pgn-spacing-nav-link-padding-y: .5rem; + --pgn-spacing-modal-dialog-margin: 1.5rem; + --pgn-spacing-modal-header-padding-y: 1rem; + --pgn-spacing-modal-footer-padding-y: 1rem; + --pgn-spacing-modal-inner-padding-bottom: .7rem; + --pgn-spacing-modal-inner-padding-base: 1.5rem; + --pgn-spacing-image-thumbnail-padding: .25rem; + --pgn-spacing-mark-padding: .2em; + --pgn-spacing-paragraph-margin-bottom: 1rem; + --pgn-spacing-list-group-item-padding-x: 1.25rem; + --pgn-spacing-list-group-item-padding-y: .75rem; + --pgn-spacing-list-inline-padding: .5rem; + --pgn-spacing-input-btn-padding-lg-x: 1.25rem; + --pgn-spacing-input-btn-padding-lg-y: .6875rem; + --pgn-spacing-input-btn-padding-sm-x: .75rem; + --pgn-spacing-input-btn-padding-sm-y: .4375rem; + --pgn-spacing-input-btn-padding-x: 1rem; + --pgn-spacing-input-btn-padding-y: .5625rem; + --pgn-spacing-headings-margin-bottom: .5rem; + --pgn-spacing-caret-vertical-align: .255em; + --pgn-spacing-caret-base: .255em; + --pgn-spacing-form-control-select-icon-padding: .5625rem; + --pgn-spacing-form-control-select-feedback-tooltip-padding-x: .5rem; + --pgn-spacing-form-control-select-feedback-tooltip-padding-y: .25rem; + --pgn-spacing-form-control-select-indicator-padding: 1rem; + --pgn-spacing-form-control-spacer-x: 1rem; + --pgn-spacing-form-control-gutter: .5rem; + --pgn-spacing-form-group-margin-bottom: 1rem; + --pgn-spacing-form-check-position-axis: .375rem; + --pgn-spacing-form-check-inline-margin-x: .75rem; + --pgn-spacing-form-text-margin-top: .25rem; + --pgn-spacing-form-input-check-margin-y: .3rem; + --pgn-spacing-form-input-check-margin-x-inline: .3125rem; + --pgn-spacing-form-input-check-margin-x-base: .25rem; + --pgn-spacing-form-input-check-gutter: 1.25rem; + --pgn-spacing-dropzone-border-error: 2px; + --pgn-spacing-dropzone-border-active: 2px; + --pgn-spacing-dropzone-border-focus: 2px; + --pgn-spacing-dropzone-border-hover: 2px; + --pgn-spacing-dropzone-border-base: 1px; + --pgn-spacing-dropzone-padding: 1.5rem; + --pgn-spacing-dropdown-close-container-top: .625rem; + --pgn-spacing-dropdown-padding-y-item: .5rem; + --pgn-spacing-dropdown-padding-y-base: .25rem; + --pgn-spacing-dropdown-padding-x-item: 1rem; + --pgn-spacing-dropdown-padding-x-base: 0; + --pgn-spacing-dropdown-spacer: .125rem; + --pgn-spacing-data-table-footer-position: center; + --pgn-spacing-data-table-padding-head-cell: .5rem .75rem; + --pgn-spacing-data-table-padding-cell: .75rem; + --pgn-spacing-data-table-padding-small: .5rem; + --pgn-spacing-data-table-padding-y: .75rem; + --pgn-spacing-data-table-padding-x: .75rem; + --pgn-spacing-collapsible-card-spacer-basic-icon: .625rem; + --pgn-spacing-collapsible-card-spacer-basic-x: .5rem; + --pgn-spacing-collapsible-card-spacer-basic-y: .5rem; + --pgn-spacing-collapsible-card-spacer-icon: 2.5rem; + --pgn-spacing-collapsible-card-spacer-left-body: .75rem; + --pgn-spacing-collapsible-card-spacer-x-base: .5rem; + --pgn-spacing-collapsible-card-spacer-y-base: .5rem; + --pgn-spacing-code-kbd-padding-x: .4rem; + --pgn-spacing-code-kbd-padding-y: .2rem; + --pgn-spacing-chip-padding-to-icon: 3px; + --pgn-spacing-chip-padding-icon: .25rem; + --pgn-spacing-chip-padding-x: .5rem; + --pgn-spacing-chip-padding-y: .125rem; + --pgn-spacing-chip-margin: .125rem; + --pgn-spacing-carousel-indicator-spacer: 3px; + --pgn-spacing-card-focus-border-offset: 5px; + --pgn-spacing-card-logo-bottom-offset-horizontal: .4375rem; + --pgn-spacing-card-logo-bottom-offset-base: 1rem; + --pgn-spacing-card-logo-left-offset-horizontal: .4375rem; + --pgn-spacing-card-logo-left-offset-base: 1.5rem; + --pgn-spacing-card-loading-skeleton-spacer: .313rem; + --pgn-spacing-card-footer-action-gap: .5rem; + --pgn-spacing-card-columns-gap: 1.25rem; + --pgn-spacing-card-columns-count: 3; + --pgn-spacing-card-margin-group: 12px; + --pgn-spacing-card-spacer-y: .75rem; + --pgn-spacing-card-spacer-x: 1.25rem; + --pgn-spacing-btn-focus-gap: 1px; + --pgn-spacing-btn-block-spacing-y: .5rem; + --pgn-spacing-bubble-expandable-padding-x: .25rem; + --pgn-spacing-bubble-expandable-padding-y: 0; + --pgn-spacing-breadcrumb-margin-left: .5rem; + --pgn-spacing-breadcrumb-margin-bottom: 1rem; + --pgn-spacing-breadcrumb-padding-item: .5rem; + --pgn-spacing-breadcrumb-padding-x: 1rem; + --pgn-spacing-breadcrumb-padding-y: .75rem; + --pgn-spacing-badge-padding-y: .125rem; + --pgn-spacing-badge-padding-x-pill: .6em; + --pgn-spacing-badge-padding-x-base: .5rem; + --pgn-spacing-avatar-button-padding-left-lg: .25em; + --pgn-spacing-avatar-button-padding-left-sm: .25em; + --pgn-spacing-avatar-button-padding-left-base: .25em; + --pgn-spacing-annotation-arrow-side-margin: .25rem; + --pgn-spacing-annotation-padding: .5rem; + --pgn-spacing-alert-icon-space: .8rem; + --pgn-spacing-alert-margin-bottom: 1rem; + --pgn-spacing-alert-padding-x: 1.5rem; + --pgn-spacing-alert-padding-y: 1.5rem; + --pgn-spacing-action-row-gap-y: .5rem; + --pgn-spacing-action-row-gap-x: .5rem; + --pgn-size-breakpoint-xxl: 1400px; + --pgn-size-breakpoint-xl: 1200px; + --pgn-size-breakpoint-lg: 992px; + --pgn-size-breakpoint-md: 768px; + --pgn-size-breakpoint-sm: 576px; + --pgn-size-breakpoint-xs: 0; + --pgn-size-tooltip-arrow-width: .8rem; + --pgn-size-tooltip-arrow-height: .4rem; + --pgn-size-tooltip-max-width: 200px; + --pgn-size-toast-border-radius: .25rem; + --pgn-size-toast-border-width: 1px; + --pgn-size-toast-max-width: 400px; + --pgn-size-tabs-notification-width: 1rem; + --pgn-size-tabs-notification-height: 1rem; + --pgn-size-stack-gap: 0; + --pgn-size-spinner-sm-border-width: .2em; + --pgn-size-spinner-sm-width: 1rem; + --pgn-size-spinner-base-border-width: .25em; + --pgn-size-spinner-base-width: 2rem; + --pgn-size-search-field-border-radius: 0; + --pgn-size-search-field-border-width-focus: .3125rem; + --pgn-size-search-field-border-width-base: .0625rem; + --pgn-size-progress-bar-threshold-circle: .5625rem; + --pgn-size-progress-bar-border-radius: 0; + --pgn-size-progress-bar-border-width: 1px; + --pgn-size-progress-bar-height-annotated: .3125rem; + --pgn-size-progress-bar-height-base: 1rem; + --pgn-size-product-tour-checkpoint-width-max: 480px; + --pgn-size-product-tour-checkpoint-width-arrow: 15px; + --pgn-size-product-tour-checkpoint-width-border: 8px; + --pgn-size-popover-arrow-height: .5rem; + --pgn-size-popover-arrow-width: 1rem; + --pgn-size-popover-icon-width: 1rem; + --pgn-size-popover-icon-height: 1rem; + --pgn-size-popover-max-width: 480px; + --pgn-size-pagination-focus-outline: 0; + --pgn-size-pagination-focus-border-width: .125rem; + --pgn-size-pagination-toggle-border-sm: .25rem; + --pgn-size-pagination-toggle-border-base: .3125rem; + --pgn-size-pagination-reduced-dropdown-min-width: 6rem; + --pgn-size-pagination-reduced-dropdown-max-height: 60vh; + --pgn-size-pagination-secondary-height-sm: 2.25rem; + --pgn-size-pagination-secondary-height-base: 2.75rem; + --pgn-size-pagination-icon-height: 2.25rem; + --pgn-size-pagination-icon-width: 2.25rem; + --pgn-size-navbar-nav-scroll-max-height: 75vh; + --pgn-size-nav-tabs-border-radius: 0; + --pgn-size-nav-tabs-border-width: 2px; + --pgn-size-modal-content-border-width: 0px; + --pgn-size-modal-sm: 400px; + --pgn-size-modal-md: 500px; + --pgn-size-modal-lg: 800px; + --pgn-size-modal-xl: 1140px; + --pgn-size-icon-button-diameter-sm: 2.25rem; + --pgn-size-icon-button-diameter-md: 2.75rem; + --pgn-size-icon-lg: 1.75rem; + --pgn-size-icon-md: 1.5rem; + --pgn-size-icon-sm: 1.25rem; + --pgn-size-icon-inline: .8em; + --pgn-size-input-btn-focus-width: 1px; + --pgn-size-caret-width: .3em; + --pgn-size-form-border-radius-width: .125rem; + --pgn-size-form-border-radius-check-focus: .0625rem; + --pgn-size-form-autosuggest-border-width: .125rem; + --pgn-size-form-autosuggest-spinner-width: 1.25rem; + --pgn-size-form-autosuggest-icon-width: 2.4rem; + --pgn-size-form-grid-gutter-width: 0.625rem; + --pgn-size-form-control-border-radio-indicator-radius: 50%; + --pgn-size-form-control-border-checkbox-indicator-radius: 0; + --pgn-size-form-control-icon-width: 2rem; + --pgn-size-form-control-range-thumb-border-radius: 1rem; + --pgn-size-form-control-range-thumb-border-base: 0; + --pgn-size-form-control-range-thumb-width: 1rem; + --pgn-size-form-control-range-track-border-radius: 1rem; + --pgn-size-form-control-range-track-height: .5rem; + --pgn-size-form-control-range-track-width: 100%; + --pgn-size-form-control-indicator-border-width: 0.125rem; + --pgn-size-form-control-indicator-bg: 100%; + --pgn-size-form-control-indicator-base: 1.25rem; + --pgn-size-form-input-width-focus: 0.063rem; + --pgn-size-form-input-width-hover: 0.063rem; + --pgn-size-dropdown-min-width: 18rem; + --pgn-size-data-table-dropdown-pagination-min-width: 6rem; + --pgn-size-data-table-dropdown-pagination-max-height: 60vh; + --pgn-size-data-table-border: 1px; + --pgn-size-container-max-width-xl: 1440px; + --pgn-size-container-max-width-lg: 1192px; + --pgn-size-container-max-width-md: 952px; + --pgn-size-container-max-width-sm: 708px; + --pgn-size-container-max-width-xs: 464px; + --pgn-size-code-pre-scrollable-max-height: 340px; + --pgn-size-chip-icon: 1.25rem; + --pgn-size-chip-border-radius: .25rem; + --pgn-size-carousel-caption-width: 70%; + --pgn-size-carousel-indicator-height-area-hit: 3px; + --pgn-size-carousel-indicator-height-base: 3px; + --pgn-size-carousel-indicator-width: 30px; + --pgn-size-carousel-control-width-icon: 20px; + --pgn-size-carousel-control-width-base: 15%; + --pgn-size-card-logo-height: 4.125rem; + --pgn-size-card-logo-width: 7.25rem; + --pgn-size-card-image-vertical-max-height: 140px; + --pgn-size-card-image-horizontal-width-max: 240px; + --pgn-size-card-focus-border-radius: 5px; + --pgn-size-card-focus-border-width: 2px; + --pgn-size-card-border-radius-logo: .25rem; + --pgn-size-card-border-radius-image: .3125rem; + --pgn-size-btn-focus-width: 2px; + --pgn-size-breadcrumb-border-width-focus: .0625rem; + --pgn-size-breadcrumb-border-axis-y-focus: .5rem; + --pgn-size-breadcrumb-border-axis-x-focus: .25rem; + --pgn-size-breadcrumb-border-radius-focus: .125rem; + --pgn-size-badge-border-radius-pill: 10rem; + --pgn-size-badge-border-radius-base: .25rem; + --pgn-size-avatar-border-radius: 100%; + --pgn-size-avatar-border-base: 1px; + --pgn-size-avatar-huge: 18.75rem; + --pgn-size-avatar-xxl: 11.5rem; + --pgn-size-avatar-xl: 6rem; + --pgn-size-avatar-lg: 4rem; + --pgn-size-avatar-sm: 2.25rem; + --pgn-size-avatar-xs: 1.5rem; + --pgn-size-avatar-base: 3rem; + --pgn-size-annotation-border-radius: .25rem; + --pgn-size-annotation-max-width: 18.75rem; + --pgn-size-annotation-arrow-border-width: .5rem; + --pgn-size-alert-border-width: 0; + --pgn-size-border-radius-sm: 4px; + --pgn-size-border-radius-lg: 7px; + --pgn-size-border-radius-base: 6px; + --pgn-size-border-width: 1px; + --pgn-color-dark-base: #273F2FFF; + --pgn-color-light-base: #E1DDDBFF; + --pgn-color-brand-base: #9D0054FF; + --pgn-color-primary-base: #0A3055FF; + --pgn-color-gray-base: #707070FF; + --pgn-color-gray-900: #212529FF; + --pgn-color-gray-800: #333333FF; + --pgn-color-gray-700: #454545FF; + --pgn-color-gray-600: #5C5C5CFF; + --pgn-color-gray-400: #8F8F8FFF; + --pgn-color-gray-300: #ADADADFF; + --pgn-color-gray-200: #CCCCCCFF; + --pgn-color-gray-100: #EBEBEBFF; + --pgn-color-accent-b: #FFEE88FF; + --pgn-color-accent-a: #00BBF9FF; + --pgn-color-teal: #006DAAFF; + --pgn-color-yellow: #FFD900FF; + --pgn-color-green: #178253FF; + --pgn-color-red: #C32D3AFF; + --pgn-color-blue: #23419FFF; + --pgn-color-black: #000000FF; + --pgn-color-white: #FFFFFFFF; + --pgn-color-toast-base: inherit; + --pgn-color-progress-bar-bg: #00000000; + --pgn-color-product-tour-checkpoint-arrow-border-transparent: #00000000; + --pgn-color-popover-border: #00000033; + --pgn-color-menu-border-hover: #00000000; + --pgn-color-menu-border-active: #00000000; + --pgn-color-menu-border-base: #00000000; + --pgn-color-icon-button-bg: #00000000; + --pgn-color-mark-bg: #FFF243FF; + --pgn-color-list-group-base: inherit; + --pgn-color-form-control-select-bg-size: #000000FF; + --pgn-color-form-control-label-base: inherit; + --pgn-color-code-base: #E83E8CFF; + --pgn-color-carousel-control-opacity-hover: #000000FF; + --pgn-color-carousel-control-opacity-base: #000000FF; + --pgn-color-card-base: inherit; + --pgn-color-btn-disabled-border-inverse-warning: #00000000; + --pgn-color-btn-disabled-border-inverse-outline-success: inherit; + --pgn-color-btn-disabled-border-inverse-success: #00000000; + --pgn-color-btn-disabled-border-secondary: inherit; + --pgn-color-btn-disabled-border-inverse-primary: #00000000; + --pgn-color-btn-disabled-border-inverse-light: #00000000; + --pgn-color-btn-disabled-border-inverse-info: #00000000; + --pgn-color-btn-disabled-border-inverse-dark: #00000000; + --pgn-color-btn-disabled-border-inverse-danger: #00000000; + --pgn-color-btn-disabled-bg-inverse-outline-warning: inherit; + --pgn-color-btn-disabled-bg-inverse-warning: inherit; + --pgn-color-btn-disabled-bg-outline-warning: inherit; + --pgn-color-btn-disabled-bg-inverse-tertiary: inherit; + --pgn-color-btn-disabled-bg-tertiary: inherit; + --pgn-color-btn-disabled-bg-inverse-outline-success: inherit; + --pgn-color-btn-disabled-bg-inverse-success: inherit; + --pgn-color-btn-disabled-bg-outline-success: inherit; + --pgn-color-btn-disabled-bg-inverse-outline-secondary: inherit; + --pgn-color-btn-disabled-bg-inverse-secondary: inherit; + --pgn-color-btn-disabled-bg-outline-secondary: inherit; + --pgn-color-btn-disabled-bg-inverse-outline-primary: inherit; + --pgn-color-btn-disabled-bg-outline-primary: inherit; + --pgn-color-btn-disabled-bg-inverse-outline-light: inherit; + --pgn-color-btn-disabled-bg-inverse-light: inherit; + --pgn-color-btn-disabled-bg-outline-light: inherit; + --pgn-color-btn-disabled-bg-inverse-outline-info: inherit; + --pgn-color-btn-disabled-bg-inverse-info: inherit; + --pgn-color-btn-disabled-bg-outline-info: inherit; + --pgn-color-btn-disabled-bg-inverse-outline-dark: inherit; + --pgn-color-btn-disabled-bg-inverse-dark: inherit; + --pgn-color-btn-disabled-bg-outline-dark: inherit; + --pgn-color-btn-disabled-bg-inverse-outline-danger: inherit; + --pgn-color-btn-disabled-bg-inverse-danger: #00000000; + --pgn-color-btn-disabled-bg-outline-danger: inherit; + --pgn-color-btn-disabled-bg-outline-brand: inherit; + --pgn-color-btn-disabled-text-inverse-secondary: inherit; + --pgn-color-btn-disabled-text-outline-secondary: inherit; + --pgn-color-btn-disabled-text-outline-dark: inherit; + --pgn-color-btn-focus-outline-inverse-outline-warning: inherit; + --pgn-color-btn-focus-bg-inverse-outline-warning: inherit; + --pgn-color-btn-focus-bg-outline-warning: inherit; + --pgn-color-btn-focus-bg-inverse-tertiary: inherit; + --pgn-color-btn-focus-bg-tertiary: inherit; + --pgn-color-btn-focus-bg-inverse-outline-success: inherit; + --pgn-color-btn-focus-bg-outline-success: inherit; + --pgn-color-btn-focus-bg-inverse-outline-secondary: inherit; + --pgn-color-btn-focus-bg-outline-secondary: #00000000; + --pgn-color-btn-focus-bg-inverse-outline-primary: inherit; + --pgn-color-btn-focus-bg-outline-primary: inherit; + --pgn-color-btn-focus-bg-inverse-outline-light: inherit; + --pgn-color-btn-focus-bg-outline-light: #00000000; + --pgn-color-btn-focus-bg-inverse-outline-info: inherit; + --pgn-color-btn-focus-bg-outline-info: inherit; + --pgn-color-btn-focus-bg-inverse-outline-dark: inherit; + --pgn-color-btn-focus-bg-outline-dark: inherit; + --pgn-color-btn-focus-bg-inverse-outline-danger: inherit; + --pgn-color-btn-focus-bg-outline-danger: inherit; + --pgn-color-btn-focus-bg-inverse-outline-brand: inherit; + --pgn-color-btn-focus-bg-outline-brand: inherit; + --pgn-color-btn-focus-border-inverse-tertiary: #00000000; + --pgn-color-btn-focus-text-inverse-secondary: inherit; + --pgn-color-btn-focus-text-outline-dark: inherit; + --pgn-color-btn-active-border-inverse-outline-warning: #00000000; + --pgn-color-btn-active-border-inverse-warning: inherit; + --pgn-color-btn-active-border-inverse-tertiary: #00000000; + --pgn-color-btn-active-border-tertiary: #00000000; + --pgn-color-btn-active-border-inverse-outline-success: #00000000; + --pgn-color-btn-active-border-inverse-success: inherit; + --pgn-color-btn-active-border-inverse-secondary: #00000000; + --pgn-color-btn-active-border-inverse-outline-secondary: #00000000; + --pgn-color-btn-active-border-inverse-primary: #00000000; + --pgn-color-btn-active-border-inverse-outline-primary: #00000000; + --pgn-color-btn-active-border-inverse-outline-light: #00000000; + --pgn-color-btn-active-border-inverse-light: inherit; + --pgn-color-btn-active-border-inverse-outline-info: #00000000; + --pgn-color-btn-active-border-inverse-info: #00000000; + --pgn-color-btn-active-border-inverse-outline-dark: #00000000; + --pgn-color-btn-active-border-inverse-dark: #00000000; + --pgn-color-btn-active-border-inverse-outline-danger: #00000000; + --pgn-color-btn-active-border-inverse-danger: #00000000; + --pgn-color-btn-active-border-inverse-outline-brand: #00000000; + --pgn-color-btn-active-border-inverse-brand: #00000000; + --pgn-color-btn-hover-border-inverse-outline-warning: #00000000; + --pgn-color-btn-hover-border-inverse-warning: #00000000; + --pgn-color-btn-hover-border-inverse-tertiary: #00000000; + --pgn-color-btn-hover-border-tertiary: #00000000; + --pgn-color-btn-hover-border-inverse-outline-success: #00000000; + --pgn-color-btn-hover-border-inverse-success: #00000000; + --pgn-color-btn-hover-border-inverse-secondary: #00000000; + --pgn-color-btn-hover-border-inverse-outline-secondary: #00000000; + --pgn-color-btn-hover-border-inverse-primary: #00000000; + --pgn-color-btn-hover-border-inverse-outline-primary: #00000000; + --pgn-color-btn-hover-border-inverse-outline-light: #00000000; + --pgn-color-btn-hover-border-inverse-light: #00000000; + --pgn-color-btn-hover-border-inverse-outline-info: #00000000; + --pgn-color-btn-hover-border-inverse-info: #00000000; + --pgn-color-btn-hover-border-inverse-outline-dark: #00000000; + --pgn-color-btn-hover-border-inverse-dark: #00000000; + --pgn-color-btn-hover-border-inverse-outline-danger: #00000000; + --pgn-color-btn-hover-border-inverse-danger: #00000000; + --pgn-color-btn-hover-border-inverse-brand: #00000000; + --pgn-color-btn-hover-border-inverse-outline-brand: #00000000; + --pgn-color-btn-border-inverse-warning: #00000000; + --pgn-color-btn-border-inverse-tertiary: #00000000; + --pgn-color-btn-border-tertiary: #00000000; + --pgn-color-btn-border-inverse-success: #00000000; + --pgn-color-btn-border-inverse-secondary: #00000000; + --pgn-color-btn-border-inverse-primary: #00000000; + --pgn-color-btn-border-inverse-light: #00000000; + --pgn-color-btn-border-inverse-info: #00000000; + --pgn-color-btn-border-inverse-dark: #00000000; + --pgn-color-btn-border-inverse-danger: #00000000; + --pgn-color-btn-border-inverse-brand: #00000000; + --pgn-color-btn-bg-inverse-outline-warning: inherit; + --pgn-color-btn-bg-outline-warning: inherit; + --pgn-color-btn-bg-inverse-tertiary: #00000000; + --pgn-color-btn-bg-tertiary: #00000000; + --pgn-color-btn-bg-inverse-outline-success: inherit; + --pgn-color-btn-bg-outline-success: inherit; + --pgn-color-btn-bg-inverse-outline-secondary: inherit; + --pgn-color-btn-bg-outline-secondary: inherit; + --pgn-color-btn-bg-inverse-outline-primary: #00000000; + --pgn-color-btn-bg-outline-primary: #00000000; + --pgn-color-btn-bg-inverse-outline-light: inherit; + --pgn-color-btn-bg-outline-light: inherit; + --pgn-color-btn-bg-inverse-outline-info: inherit; + --pgn-color-btn-bg-outline-info: inherit; + --pgn-color-btn-bg-inverse-outline-dark: #00000000; + --pgn-color-btn-bg-outline-dark: inherit; + --pgn-color-btn-bg-inverse-outline-danger: #00000000; + --pgn-color-btn-bg-outline-danger: inherit; + --pgn-color-btn-bg-inverse-outline-brand: #00000000; + --pgn-color-btn-bg-outline-brand: inherit; + --pgn-transition-carousel-base: transform var(--pgn-transition-carousel-duration) ease-in-out; + --pgn-elevation-scrollable-body-box-shadow: #0000008C; + --pgn-elevation-input-btn-focus-box-shadow: 0 0 0 var(--pgn-size-input-btn-focus-width) var(--pgn-color-input-btn-focus); + --pgn-elevation-form-control-file-base: var(--pgn-elevation-form-input-base); + --pgn-elevation-form-control-indicator-base: var(--pgn-elevation-form-input-base); + --pgn-elevation-data-table-box-shadow: var(--pgn-elevation-box-shadow-sm); + --pgn-elevation-close-button-text-shadow: 0 1px 0 var(--pgn-color-white); + --pgn-typography-font-weight-base: var(--pgn-typography-font-weight-normal); + --pgn-typography-font-size-lead: calc(var(--pgn-typography-font-size-base) * 1.25); + --pgn-typography-font-size-mobile-h6: var(--pgn-typography-font-size-h6); + --pgn-typography-font-size-mobile-h5: var(--pgn-typography-font-size-h5); + --pgn-typography-font-size-mobile-h4: var(--pgn-typography-font-size-h4); + --pgn-typography-font-size-mobile-h3: var(--pgn-typography-font-size-h3); + --pgn-typography-font-size-mobile-h2: var(--pgn-typography-font-size-h2); + --pgn-typography-font-family-base: var(--pgn-typography-font-family-sans-serif); + --pgn-typography-display-weight-4: var(--pgn-typography-font-weight-bold); + --pgn-typography-display-weight-3: var(--pgn-typography-font-weight-bold); + --pgn-typography-display-weight-2: var(--pgn-typography-font-weight-bold); + --pgn-typography-display-weight-1: var(--pgn-typography-font-weight-bold); + --pgn-typography-tooltip-font-size: var(--pgn-typography-font-size-sm); + --pgn-typography-tabs-notification-font-size: var(--pgn-typography-font-size-xs); + --pgn-typography-progress-bar-font-size: calc(var(--pgn-typography-font-size-base) * .75); + --pgn-typography-popover-font-size: var(--pgn-typography-font-size-sm); + --pgn-typography-navbar-toggler-font-size: var(--pgn-typography-font-size-lg); + --pgn-typography-navbar-nav-link-height: calc(var(--pgn-typography-font-size-base) * var(--pgn-typography-line-height-base) + .5rem * 2); + --pgn-typography-navbar-brand-font-size: var(--pgn-typography-font-size-lg); + --pgn-typography-blockquote-font-size: calc(var(--pgn-typography-font-size-base) * 1.25); + --pgn-typography-blockquote-small-font-size: var(--pgn-typography-font-size-small-base); + --pgn-typography-dt-font-weight: var(--pgn-typography-font-weight-bold); + --pgn-typography-input-btn-line-height-lg: var(--pgn-typography-line-height-lg); + --pgn-typography-headings-font-weight: var(--pgn-typography-font-weight-bold); + --pgn-typography-form-feedback-tooltip-line-height: var(--pgn-typography-line-height-base); + --pgn-typography-form-feedback-tooltip-font-size: var(--pgn-typography-font-size-sm); + --pgn-typography-form-feedback-font-size: var(--pgn-typography-font-size-small-base); + --pgn-typography-form-input-line-height-sm: var(--pgn-typography-input-btn-line-height-sm); + --pgn-typography-form-input-line-height-base: var(--pgn-typography-input-btn-line-height-base); + --pgn-typography-form-input-font-size-lg: var(--pgn-typography-input-btn-font-size-lg); + --pgn-typography-form-input-font-size-sm: var(--pgn-typography-input-btn-font-size-sm); + --pgn-typography-form-input-font-size-base: var(--pgn-typography-input-btn-font-size-base); + --pgn-typography-form-input-font-family: var(--pgn-typography-input-btn-font-family); + --pgn-typography-dropzone-restriction-msg-font-size: var(--pgn-typography-font-size-small-x); + --pgn-typography-dropdown-font-size: var(--pgn-typography-font-size-base); + --pgn-typography-code-kbd-nested-font-weight: var(--pgn-typography-font-weight-bold); + --pgn-typography-code-kbd-font-size: var(--pgn-typography-code-font-size); + --pgn-typography-close-button-font-weight: var(--pgn-typography-font-weight-bold); + --pgn-typography-close-button-font-size: calc(var(--pgn-typography-font-size-base) * 1.5); + --pgn-typography-footer-text-font-size: var(--pgn-typography-font-size-small-x); + --pgn-typography-btn-line-height-sm: var(--pgn-typography-input-btn-line-height-sm); + --pgn-typography-btn-line-height-base: var(--pgn-typography-input-btn-line-height-base); + --pgn-typography-btn-font-weight: var(--pgn-typography-font-weight-normal); + --pgn-typography-btn-font-size-lg: var(--pgn-typography-input-btn-font-size-lg); + --pgn-typography-btn-font-size-sm: var(--pgn-typography-input-btn-font-size-sm); + --pgn-typography-btn-font-size-base: var(--pgn-typography-input-btn-font-size-base); + --pgn-typography-btn-font-family: var(--pgn-typography-input-btn-font-family); + --pgn-typography-badge-font-weight: var(--pgn-typography-font-weight-bold); + --pgn-typography-annotation-line-height: var(--pgn-typography-line-height-sm); + --pgn-typography-annotation-font-size: var(--pgn-typography-font-size-sm); + --pgn-typography-alert-font-weight-link: var(--pgn-typography-font-weight-normal); + --pgn-spacing-spacer-5-5: calc(var(--pgn-spacing-spacer-base) * 4rem); + --pgn-spacing-spacer-4-5: calc(var(--pgn-spacing-spacer-base) * 2rem); + --pgn-spacing-spacer-3-5: calc(var(--pgn-spacing-spacer-base) * 1.25rem); + --pgn-spacing-spacer-2-5: calc(var(--pgn-spacing-spacer-base) * .75rem); + --pgn-spacing-spacer-1-5: calc(var(--pgn-spacing-spacer-base) * .375rem); + --pgn-spacing-spacer-6: calc(var(--pgn-spacing-spacer-base) * 5rem); + --pgn-spacing-spacer-5: calc(var(--pgn-spacing-spacer-base) * 3rem); + --pgn-spacing-spacer-4: calc(var(--pgn-spacing-spacer-base) * 1.5rem); + --pgn-spacing-spacer-3: var(--pgn-spacing-spacer-base); + --pgn-spacing-spacer-2: calc(var(--pgn-spacing-spacer-base) * .5rem); + --pgn-spacing-spacer-1: calc(var(--pgn-spacing-spacer-base) * .25rem); + --pgn-spacing-popover-body-padding-x: var(--pgn-spacing-popover-header-padding-x); + --pgn-spacing-popover-body-padding-y: var(--pgn-spacing-popover-header-padding-y); + --pgn-spacing-navbar-padding-x-base: var(--pgn-spacing-spacer-base); + --pgn-spacing-navbar-padding-y: calc(var(--pgn-spacing-spacer-base) / 2); + --pgn-spacing-nav-divider-margin-y: calc(var(--pgn-spacing-spacer-base) / 2); + --pgn-spacing-modal-header-padding-base: var(--pgn-spacing-modal-header-padding-y) 1.5rem; + --pgn-spacing-modal-footer-padding-base: var(--pgn-spacing-modal-footer-padding-y) 1.5rem; + --pgn-spacing-form-control-select-feedback-margin-top: var(--pgn-spacing-form-text-margin-top); + --pgn-spacing-form-input-padding-x-lg: var(--pgn-spacing-input-btn-padding-lg-x); + --pgn-spacing-form-input-padding-x-sm: var(--pgn-spacing-input-btn-padding-sm-x); + --pgn-spacing-form-input-padding-x-base: var(--pgn-spacing-input-btn-padding-x); + --pgn-spacing-form-input-padding-y-lg: var(--pgn-spacing-input-btn-padding-lg-y); + --pgn-spacing-form-input-padding-y-sm: var(--pgn-spacing-input-btn-padding-sm-y); + --pgn-spacing-form-input-padding-y-base: var(--pgn-spacing-input-btn-padding-y); + --pgn-spacing-dropdown-divider-margin-y: calc(var(--pgn-spacing-spacer-base) / 2); + --pgn-spacing-dropdown-padding-header: var(--pgn-spacing-dropdown-padding-y-base) var(--pgn-spacing-dropdown-padding-x-item); + --pgn-spacing-collapsible-card-spacer-x-lg: var(--pgn-spacing-card-spacer-x); + --pgn-spacing-collapsible-card-spacer-y-lg: var(--pgn-spacing-card-spacer-y); + --pgn-spacing-card-columns-margin: var(--pgn-spacing-card-spacer-y); + --pgn-spacing-card-margin-grid: var(--pgn-spacing-card-margin-group); + --pgn-spacing-card-margin-deck: var(--pgn-spacing-card-margin-group); + --pgn-spacing-btn-focus-border-gap: calc(var(--pgn-size-btn-focus-width) + var(--pgn-spacing-btn-focus-gap)); + --pgn-spacing-btn-padding-x-sm: var(--pgn-spacing-input-btn-padding-sm-x); + --pgn-spacing-btn-padding-x-lg: var(--pgn-spacing-input-btn-padding-lg-x); + --pgn-spacing-btn-padding-x-base: var(--pgn-spacing-input-btn-padding-x); + --pgn-spacing-btn-padding-y-sm: var(--pgn-spacing-input-btn-padding-sm-y); + --pgn-spacing-btn-padding-y-lg: var(--pgn-spacing-input-btn-padding-lg-y); + --pgn-spacing-btn-padding-y-base: var(--pgn-spacing-input-btn-padding-y); + --pgn-size-tooltip-border-radius: var(--pgn-size-border-radius-base); + --pgn-size-spinner-sm-height: var(--pgn-size-spinner-sm-width); + --pgn-size-spinner-base-height: var(--pgn-size-spinner-base-width); + --pgn-size-product-tour-checkpoint-arrow-transparent: var(--pgn-size-product-tour-checkpoint-width-arrow); + --pgn-size-product-tour-checkpoint-arrow-top: var(--pgn-size-product-tour-checkpoint-width-arrow); + --pgn-size-product-tour-checkpoint-arrow-bottom: var(--pgn-size-product-tour-checkpoint-width-arrow) var(--pgn-size-product-tour-checkpoint-width-border); + --pgn-size-popover-border-radius: var(--pgn-size-border-radius-sm); + --pgn-size-popover-border-width: var(--pgn-size-border-width); + --pgn-size-pagination-border-radius-lg: var(--pgn-size-border-radius-lg); + --pgn-size-pagination-border-radius-sm: var(--pgn-size-border-radius-sm); + --pgn-size-pagination-border-width: var(--pgn-size-border-width); + --pgn-size-nav-pills-border-radius: var(--pgn-size-border-radius-base); + --pgn-size-modal-content-border-radius: var(--pgn-size-border-radius-lg); + --pgn-size-image-thumbnail-border-radius: var(--pgn-size-border-radius-base); + --pgn-size-image-thumbnail-border-width: var(--pgn-size-border-width); + --pgn-size-icon-button-diameter-inline: calc(var(--pgn-typography-line-height-base) + .1em); + --pgn-size-list-group-border-radius: var(--pgn-size-border-radius-base); + --pgn-size-list-group-border-width: var(--pgn-size-border-width); + --pgn-size-input-btn-border-width: var(--pgn-size-border-width); + --pgn-size-hr-border-margin-y: var(--pgn-spacing-spacer-base); + --pgn-size-hr-border-width: var(--pgn-size-border-width); + --pgn-size-form-feedback-tooltip-border-radius: var(--pgn-size-border-radius-base); + --pgn-size-form-autosuggest-spinner-height: var(--pgn-size-form-autosuggest-spinner-width); + --pgn-size-form-autosuggest-icon-height: var(--pgn-size-form-autosuggest-icon-width); + --pgn-size-form-control-range-thumb-focus-width: var(--pgn-size-form-input-width-focus); + --pgn-size-form-control-range-thumb-height: var(--pgn-size-form-control-range-thumb-width); + --pgn-size-form-control-select-border-radius: var(--pgn-size-border-radius-base); + --pgn-size-form-control-select-border-width-focus: var(--pgn-size-form-input-width-focus); + --pgn-size-form-control-switch-indicator-border-radius: calc(var(--pgn-size-form-control-indicator-base) / 2); + --pgn-size-form-control-switch-indicator-base: calc(var(--pgn-size-form-control-indicator-base) - var(--pgn-size-form-control-indicator-border-width) * 4); + --pgn-size-form-control-switch-width: calc(var(--pgn-size-form-control-indicator-base) * 1.75); + --pgn-size-form-input-radius-border-sm: var(--pgn-size-border-radius-sm); + --pgn-size-form-input-radius-border-lg: var(--pgn-size-border-radius-lg); + --pgn-size-form-input-radius-border-base: var(--pgn-size-border-radius-base); + --pgn-size-dropdown-border-radius-base: var(--pgn-size-border-radius-base); + --pgn-size-dropdown-border-width: var(--pgn-size-border-width); + --pgn-size-card-image-horizontal-width-min: var(--pgn-size-card-image-horizontal-width-max); + --pgn-size-card-border-radius-base: var(--pgn-size-border-radius-base); + --pgn-size-card-border-width: var(--pgn-size-border-width); + --pgn-size-btn-border-radius-sm: var(--pgn-size-border-radius-sm); + --pgn-size-btn-border-radius-lg: var(--pgn-size-border-radius-lg); + --pgn-size-btn-border-radius-base: var(--pgn-size-border-radius-base); + --pgn-size-breadcrumb-border-radius-base: var(--pgn-size-border-radius-base); + --pgn-size-badge-focus-width: var(--pgn-size-input-btn-focus-width); + --pgn-size-alert-border-radius: var(--pgn-size-border-radius-base); + --pgn-color-dark-900: #1B2C21FF; + --pgn-color-dark-800: #1D2F23FF; + --pgn-color-dark-700: #1F3226FF; + --pgn-color-dark-600: #23392AFF; + --pgn-color-dark-500: var(--pgn-color-dark-base); + --pgn-color-dark-400: #5D6F63FF; + --pgn-color-dark-300: #939F97FF; + --pgn-color-dark-200: #C9CFCBFF; + --pgn-color-dark-100: #F2F3F3FF; + --pgn-color-light-900: #9E9B99FF; + --pgn-color-light-800: #A9A6A4FF; + --pgn-color-light-700: #B4B1AFFF; + --pgn-color-light-600: #CBC7C5FF; + --pgn-color-light-500: var(--pgn-color-light-base); + --pgn-color-light-400: #E9E6E4FF; + --pgn-color-light-300: #F0EEEDFF; + --pgn-color-light-200: #F8F7F6FF; + --pgn-color-light-100: #FDFDFDFF; + --pgn-color-danger-base: var(--pgn-color-red); + --pgn-color-warning-base: var(--pgn-color-yellow); + --pgn-color-info-base: var(--pgn-color-teal); + --pgn-color-success-base: var(--pgn-color-green); + --pgn-color-brand-900: #6E003BFF; + --pgn-color-brand-800: #76003FFF; + --pgn-color-brand-700: #7E0043FF; + --pgn-color-brand-600: #8D004CFF; + --pgn-color-brand-500: var(--pgn-color-brand-base); + --pgn-color-brand-400: #B6407FFF; + --pgn-color-brand-300: #CE80AAFF; + --pgn-color-brand-200: #E7BFD4FF; + --pgn-color-brand-100: #F9F0F5FF; + --pgn-color-secondary-base: var(--pgn-color-gray-700); + --pgn-color-primary-900: #07223CFF; + --pgn-color-primary-800: #082440FF; + --pgn-color-primary-700: #082644FF; + --pgn-color-primary-600: #092B4DFF; + --pgn-color-primary-500: var(--pgn-color-primary-base); + --pgn-color-primary-400: #476480FF; + --pgn-color-primary-300: #8598AAFF; + --pgn-color-primary-200: #C2CBD5FF; + --pgn-color-primary-100: #F0F3F5FF; + --pgn-color-gray-500: var(--pgn-color-gray-base); + --pgn-color-tooltip-arrow-light: var(--pgn-color-white); + --pgn-color-tooltip-bg-light: var(--pgn-color-white); + --pgn-color-tooltip-bg-base: var(--pgn-color-black); + --pgn-color-tooltip-light: var(--pgn-color-black); + --pgn-color-tooltip-text: var(--pgn-color-white); + --pgn-color-toast-header-border: #00000080; + --pgn-color-toast-header-bg: var(--pgn-color-gray-700); + --pgn-color-toast-header-text: var(--pgn-color-white); + --pgn-color-toast-border: #0000001A; + --pgn-color-toast-bg: var(--pgn-color-gray-700); + --pgn-color-sheet-skrim-component-box-shadow: #00000026; + --pgn-color-sheet-skrim-bg: #ADADAD80; + --pgn-color-search-field-border-focus: var(--pgn-color-black); + --pgn-color-search-field-border-interaction: var(--pgn-color-black); + --pgn-color-progress-bar-bar-bg-base: var(--pgn-color-accent-a); + --pgn-color-progress-bar-bar-base: var(--pgn-color-white); + --pgn-color-product-tour-checkpoint-box-shadow: #0000004D; + --pgn-color-product-tour-checkpoint-body: var(--pgn-color-gray-700); + --pgn-color-popover-arrow-outer: #0000000D; + --pgn-color-popover-header-border-bottom-dark: #F2F2F2FF; + --pgn-color-popover-header-bg-dark: #808080FF; + --pgn-color-popover-header-bg: var(--pgn-color-white); + --pgn-color-pagination-focus-text: var(--pgn-color-black); + --pgn-color-pagination-border-disabled: var(--pgn-color-gray-100); + --pgn-color-pagination-border-hover: var(--pgn-color-gray-200); + --pgn-color-pagination-border-base: var(--pgn-color-gray-200); + --pgn-color-pagination-bg-disabled: var(--pgn-color-white); + --pgn-color-pagination-bg-hover: var(--pgn-color-gray-100); + --pgn-color-pagination-text-inverse: var(--pgn-color-white); + --pgn-color-navbar-light-toggler-border: #0000001A; + --pgn-color-navbar-light-disabled: #0000004D; + --pgn-color-navbar-light-active: #000000E6; + --pgn-color-navbar-light-hover: #000000B3; + --pgn-color-navbar-light-text: #00000080; + --pgn-color-navbar-dark-toggler-border: #FFFFFF1A; + --pgn-color-navbar-dark-disabled: #FFFFFF40; + --pgn-color-navbar-dark-hover: #FFFFFFBF; + --pgn-color-navbar-dark-text: #FFFFFF80; + --pgn-color-nav-light: #00000080; + --pgn-color-nav-dark: #FFFFFF80; + --pgn-color-nav-divider: var(--pgn-color-gray-100); + --pgn-color-nav-link-text-disabled: var(--pgn-color-gray-300); + --pgn-color-nav-link-text-base: var(--pgn-color-gray-700); + --pgn-color-modal-backdrop-bg: var(--pgn-color-black); + --pgn-color-modal-content-border: #00000033; + --pgn-color-image-thumbnail-border: var(--pgn-color-gray-200); + --pgn-color-icon-button-black: var(--pgn-color-black); + --pgn-color-icon-button-dark: var(--pgn-color-dark-base); + --pgn-color-icon-button-light: var(--pgn-color-light-base); + --pgn-color-icon-button-brand: var(--pgn-color-brand-base); + --pgn-color-icon-button-primary: var(--pgn-color-primary-base); + --pgn-color-icon-button-accent: var(--pgn-color-white); + --pgn-color-list-group-action-active-bg: var(--pgn-color-gray-200); + --pgn-color-list-group-action-base: var(--pgn-color-gray-700); + --pgn-color-list-group-disabled-base: var(--pgn-color-gray-600); + --pgn-color-list-group-border: #00000020; + --pgn-color-list-group-bg-hover: var(--pgn-color-gray-100); + --pgn-color-hr-border: #0000001A; + --pgn-color-headings-base: var(--pgn-color-black); + --pgn-color-body-base: var(--pgn-color-gray-700); + --pgn-color-form-control-range-track-bg: var(--pgn-color-gray-300); + --pgn-color-form-control-select-bg-disabled: var(--pgn-color-gray-100); + --pgn-color-form-control-indicator-border: var(--pgn-color-gray-700); + --pgn-color-form-input-group-addon-bg: var(--pgn-color-gray-100); + --pgn-color-form-input-bg-disabled: var(--pgn-color-gray-100); + --pgn-color-form-input-base: var(--pgn-color-gray-700); + --pgn-color-dropdown-link-hover-base: var(--pgn-color-gray-900); + --pgn-color-dropdown-link-base: var(--pgn-color-gray-900); + --pgn-color-dropdown-divider-bg: var(--pgn-color-gray-100); + --pgn-color-dropdown-border: #00000026; + --pgn-color-data-table-border: var(--pgn-color-gray-200); + --pgn-color-data-table-bg-is-loading: #FFFFFFB3; + --pgn-color-code-pre: var(--pgn-color-gray-900); + --pgn-color-code-kbd-bg: var(--pgn-color-gray-700); + --pgn-color-code-kbd-base: var(--pgn-color-white); + --pgn-color-close-button: var(--pgn-color-black); + --pgn-color-chip-text-dark: var(--pgn-color-white); + --pgn-color-chip-text-light: var(--pgn-color-black); + --pgn-color-carousel-caption: var(--pgn-color-white); + --pgn-color-carousel-indicator-active-bg: var(--pgn-color-white); + --pgn-color-carousel-control-base: var(--pgn-color-white); + --pgn-color-card-border-focus-base: #00000080; + --pgn-color-card-border-base: #00000020; + --pgn-color-btn-disabled-border-inverse-tertiary: var(--pgn-color-btn-border-inverse-tertiary); + --pgn-color-btn-disabled-border-tertiary: var(--pgn-color-btn-border-tertiary); + --pgn-color-btn-disabled-border-inverse-secondary: var(--pgn-color-btn-border-inverse-secondary); + --pgn-color-btn-disabled-bg-inverse-primary: var(--pgn-color-white); + --pgn-color-btn-disabled-bg-inverse-outline-brand: var(--pgn-color-btn-bg-inverse-outline-brand); + --pgn-color-btn-disabled-bg-inverse-brand: var(--pgn-color-white); + --pgn-color-btn-focus-outline-inverse-warning: var(--pgn-color-white); + --pgn-color-btn-focus-outline-inverse-tertiary: var(--pgn-color-white); + --pgn-color-btn-focus-outline-inverse-secondary: var(--pgn-color-white); + --pgn-color-btn-focus-outline-inverse-light: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-warning: var(--pgn-color-btn-border-inverse-warning); + --pgn-color-btn-focus-border-tertiary: var(--pgn-color-btn-border-tertiary); + --pgn-color-btn-focus-border-inverse-success: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-outline-secondary: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-secondary: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-primary: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-light: var(--pgn-color-btn-border-inverse-light); + --pgn-color-btn-focus-border-inverse-info: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-outline-dark: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-dark: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-outline-danger: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-danger: var(--pgn-color-white); + --pgn-color-btn-focus-border-inverse-brand: var(--pgn-color-white); + --pgn-color-btn-active-bg-inverse-warning: var(--pgn-color-gray-100); + --pgn-color-btn-active-bg-inverse-success: var(--pgn-color-gray-100); + --pgn-color-btn-active-bg-inverse-secondary: var(--pgn-color-gray-100); + --pgn-color-btn-active-bg-inverse-primary: var(--pgn-color-gray-100); + --pgn-color-btn-active-bg-inverse-light: var(--pgn-color-gray-100); + --pgn-color-btn-active-bg-inverse-info: var(--pgn-color-gray-100); + --pgn-color-btn-active-bg-inverse-dark: var(--pgn-color-gray-100); + --pgn-color-btn-active-bg-inverse-danger: var(--pgn-color-gray-100); + --pgn-color-btn-active-bg-inverse-brand: var(--pgn-color-gray-100); + --pgn-color-btn-active-text-inverse-tertiary: var(--pgn-color-white); + --pgn-color-btn-active-text-tertiary: var(--pgn-color-gray-700); + --pgn-color-btn-hover-bg-inverse-tertiary: #FFFFFF1A; + --pgn-color-btn-hover-text-inverse-tertiary: var(--pgn-color-white); + --pgn-color-btn-hover-text-tertiary: var(--pgn-color-gray-700); + --pgn-color-btn-border-inverse-outline-warning: var(--pgn-color-white); + --pgn-color-btn-border-inverse-outline-success: var(--pgn-color-white); + --pgn-color-btn-border-inverse-outline-secondary: var(--pgn-color-white); + --pgn-color-btn-border-inverse-outline-primary: var(--pgn-color-white); + --pgn-color-btn-border-outline-primary: var(--pgn-color-primary-base); + --pgn-color-btn-border-inverse-outline-light: var(--pgn-color-white); + --pgn-color-btn-border-outline-light: var(--pgn-color-light-base); + --pgn-color-btn-border-inverse-outline-info: var(--pgn-color-white); + --pgn-color-btn-border-inverse-outline-dark: var(--pgn-color-white); + --pgn-color-btn-border-outline-dark: var(--pgn-color-dark-base); + --pgn-color-btn-border-inverse-outline-danger: var(--pgn-color-white); + --pgn-color-btn-border-inverse-outline-brand: var(--pgn-color-white); + --pgn-color-btn-border-outline-brand: var(--pgn-color-brand-base); + --pgn-color-btn-bg-primary: var(--pgn-color-primary-base); + --pgn-color-btn-bg-light: var(--pgn-color-light-base); + --pgn-color-btn-bg-dark: var(--pgn-color-dark-base); + --pgn-color-btn-bg-brand: var(--pgn-color-brand-base); + --pgn-color-btn-text-inverse-outline-warning: var(--pgn-color-white); + --pgn-color-btn-text-inverse-tertiary: var(--pgn-color-white); + --pgn-color-btn-text-tertiary: var(--pgn-color-gray-700); + --pgn-color-btn-text-inverse-outline-success: var(--pgn-color-white); + --pgn-color-btn-text-inverse-outline-secondary: var(--pgn-color-white); + --pgn-color-btn-text-inverse-outline-primary: var(--pgn-color-white); + --pgn-color-btn-text-inverse-primary: var(--pgn-color-primary-base); + --pgn-color-btn-text-outline-primary: var(--pgn-color-primary-base); + --pgn-color-btn-text-inverse-outline-light: var(--pgn-color-white); + --pgn-color-btn-text-inverse-light: var(--pgn-color-light-base); + --pgn-color-btn-text-outline-light: var(--pgn-color-light-base); + --pgn-color-btn-text-inverse-outline-info: var(--pgn-color-white); + --pgn-color-btn-text-inverse-outline-dark: var(--pgn-color-white); + --pgn-color-btn-text-inverse-dark: var(--pgn-color-dark-base); + --pgn-color-btn-text-outline-dark: var(--pgn-color-dark-base); + --pgn-color-btn-text-inverse-outline-danger: var(--pgn-color-white); + --pgn-color-btn-text-inverse-outline-brand: var(--pgn-color-white); + --pgn-color-btn-text-inverse-brand: var(--pgn-color-brand-base); + --pgn-color-btn-text-outline-brand: var(--pgn-color-brand-base); + --pgn-color-bubble-bg-primary: var(--pgn-color-primary-base); + --pgn-color-bubble-text-primary: var(--pgn-color-white); + --pgn-color-bubble-text-error: var(--pgn-color-white); + --pgn-color-bubble-text-warning: var(--pgn-color-white); + --pgn-color-bubble-text-success: var(--pgn-color-white); + --pgn-color-breadcrumb-inverse-base: var(--pgn-color-white); + --pgn-color-breadcrumb-divider: var(--pgn-color-gray-600); + --pgn-color-breadcrumb-bg: var(--pgn-color-gray-200); + --pgn-color-badge-bg-dark: var(--pgn-color-dark-base); + --pgn-color-badge-bg-light: var(--pgn-color-light-base); + --pgn-color-badge-bg-primary: var(--pgn-color-primary-base); + --pgn-color-badge-text-dark: #FFFFFFFF; + --pgn-color-badge-text-light: #454545FF; + --pgn-color-badge-text-primary: #FFFFFFFF; + --pgn-color-annotation-bg-dark: var(--pgn-color-dark-base); + --pgn-color-annotation-bg-light: var(--pgn-color-white); + --pgn-color-annotation-bg-warning: var(--pgn-color-accent-b); + --pgn-color-annotation-text-dark: var(--pgn-color-white); + --pgn-color-annotation-text-error: var(--pgn-color-white); + --pgn-color-annotation-text-warning: var(--pgn-color-black); + --pgn-color-annotation-text-success: var(--pgn-color-white); + --pgn-color-alert-content: var(--pgn-color-gray-700); + --pgn-color-alert-title: var(--pgn-color-black); + --pgn-color-theme-active-gray: var(--pgn-color-gray-900); + --pgn-color-theme-hover-gray: var(--pgn-color-gray-700); + --pgn-color-theme-focus-gray: var(--pgn-color-gray-300); + --pgn-color-theme-border-gray: var(--pgn-color-gray-200); + --pgn-color-theme-bg-gray: var(--pgn-color-gray-100); + --pgn-color-border: var(--pgn-color-gray-200); + --pgn-color-active: var(--pgn-color-white); + --pgn-color-text-50-white: #FFFFFF80; + --pgn-color-text-50-black: #00000080; + --pgn-color-bg-base: var(--pgn-color-white); + --pgn-border-color-nav-tabs-link-border-active: transparent transparent var(--pgn-color-primary-500); + --pgn-content-navbar-toggler-light-icon-bg: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%2300000080' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + --pgn-content-navbar-toggler-dark-icon-bg: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23FFFFFF80' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); + --pgn-content-carousel-control-bg-next-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFFFF' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"); + --pgn-content-carousel-control-bg-prev-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23FFFFFFFF' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"); + --pgn-elevation-pagination-focus-box-shadow: var(--pgn-elevation-input-btn-focus-box-shadow); + --pgn-elevation-form-control-select-border-focus: var(--pgn-elevation-input-btn-focus-box-shadow); + --pgn-elevation-form-input-focus: var(--pgn-elevation-input-btn-focus-box-shadow); + --pgn-typography-form-control-file-font-family: var(--pgn-typography-form-input-font-family); + --pgn-typography-form-control-file-line-height: var(--pgn-typography-form-input-line-height-base); + --pgn-typography-form-control-select-line-height: var(--pgn-typography-form-input-line-height-base); + --pgn-typography-form-control-select-font-size-lg: var(--pgn-typography-form-input-font-size-lg); + --pgn-typography-form-control-select-font-size-sm: var(--pgn-typography-form-input-font-size-sm); + --pgn-typography-form-control-select-font-size-base: var(--pgn-typography-form-input-font-size-base); + --pgn-typography-form-control-select-font-family: var(--pgn-typography-form-input-font-family); + --pgn-typography-form-input-line-height-lg: var(--pgn-typography-input-btn-line-height-lg); + --pgn-typography-form-input-font-weight: var(--pgn-typography-font-weight-base); + --pgn-typography-btn-line-height-lg: var(--pgn-typography-input-btn-line-height-lg); + --pgn-spacing-navbar-brand-padding-y: calc((var(--pgn-typography-navbar-nav-link-height) - var(--pgn-size-navbar-brand-height)) / 2); + --pgn-spacing-form-control-file-padding-x: var(--pgn-spacing-form-input-padding-x-base); + --pgn-spacing-form-control-file-padding-y: var(--pgn-spacing-form-input-padding-y-base); + --pgn-spacing-form-control-select-padding-x-lg: var(--pgn-spacing-form-input-padding-x-lg); + --pgn-spacing-form-control-select-padding-x-sm: var(--pgn-spacing-form-input-padding-x-sm); + --pgn-spacing-form-control-select-padding-x-base: var(--pgn-spacing-form-input-padding-x-base); + --pgn-spacing-form-control-select-padding-y-lg: var(--pgn-spacing-form-input-padding-y-lg); + --pgn-spacing-form-control-select-padding-y-sm: var(--pgn-spacing-form-input-padding-y-sm); + --pgn-spacing-form-control-select-padding-y-base: var(--pgn-spacing-form-input-padding-y-base); + --pgn-spacing-card-margin-grid-bottom: var(--pgn-spacing-spacer-3); + --pgn-spacing-card-margin-deck-bottom: var(--pgn-spacing-spacer-3); + --pgn-spacing-btn-focus-distance-to-border: calc(var(--pgn-spacing-btn-focus-border-gap) + var(--pgn-size-btn-border-width)); + --pgn-spacing-alert-actions-gap: var(--pgn-spacing-spacer-3); + --pgn-size-search-field-search-input-height: calc(var(--pgn-typography-form-input-line-height-base) * 1em + var(--pgn-spacing-form-input-padding-y-base) * 2); + --pgn-size-navbar-toggler-border-radius: var(--pgn-size-btn-border-radius-base); + --pgn-size-navbar-brand-height: calc(var(--pgn-typography-navbar-brand-font-size) * var(--pgn-typography-line-height-base)); + --pgn-size-form-control-file-border-radius: var(--pgn-size-form-input-radius-border-base); + --pgn-size-form-input-width-border: var(--pgn-size-input-btn-border-width); + --pgn-size-form-input-height-inner-quarter: calc(var(--pgn-typography-form-input-line-height-base) * .25em + calc(var(--pgn-spacing-form-input-padding-y-base) / 2)); + --pgn-size-form-input-height-inner-half: calc(var(--pgn-typography-form-input-line-height-base) * .5em + var(--pgn-spacing-form-input-padding-y-base)); + --pgn-size-form-input-height-inner-base: calc(var(--pgn-typography-form-input-line-height-base) * 1em + var(--pgn-spacing-form-input-padding-y-base) * 2); + --pgn-size-form-input-height-sm: calc(var(--pgn-typography-form-input-line-height-sm) * 1em + var(--pgn-spacing-input-btn-padding-sm-y) * 2 + var(--pgn-size-form-input-height-border)); + --pgn-size-form-input-height-base: calc(var(--pgn-typography-form-input-line-height-base) * 1em + var(--pgn-spacing-form-input-padding-y-base) * 2 + var(--pgn-size-form-input-height-border)); + --pgn-size-dropdown-border-radius-inner: calc(var(--pgn-size-dropdown-border-radius-base) - var(--pgn-size-dropdown-border-width)); + --pgn-size-btn-focus-border-radius: calc(var(--pgn-size-btn-border-radius-base) + var(--pgn-spacing-btn-focus-border-gap)); + --pgn-size-btn-border-width: var(--pgn-size-input-btn-border-width); + --pgn-color-danger-900: #892029FF; + --pgn-color-danger-800: #92222CFF; + --pgn-color-danger-700: #9C242EFF; + --pgn-color-danger-600: #B02934FF; + --pgn-color-danger-500: var(--pgn-color-danger-base); + --pgn-color-danger-400: #D2626BFF; + --pgn-color-danger-300: #E1969DFF; + --pgn-color-danger-200: #F0CBCEFF; + --pgn-color-danger-100: #FBF2F3FF; + --pgn-color-warning-900: #B39800FF; + --pgn-color-warning-800: #BFA300FF; + --pgn-color-warning-700: #CCAE00FF; + --pgn-color-warning-600: #E6C300FF; + --pgn-color-warning-500: var(--pgn-color-warning-base); + --pgn-color-warning-400: #FFE340FF; + --pgn-color-warning-300: #FFEC80FF; + --pgn-color-warning-200: #FFF6BFFF; + --pgn-color-warning-100: #FFFDF0FF; + --pgn-color-info-900: #004C77FF; + --pgn-color-info-800: #005280FF; + --pgn-color-info-700: #005788FF; + --pgn-color-info-600: #006299FF; + --pgn-color-info-500: var(--pgn-color-info-base); + --pgn-color-info-400: #4092BFFF; + --pgn-color-info-300: #80B6D5FF; + --pgn-color-info-200: #BFDBEAFF; + --pgn-color-info-100: #F0F6FAFF; + --pgn-color-success-900: #105B3AFF; + --pgn-color-success-800: #11623EFF; + --pgn-color-success-700: #126842FF; + --pgn-color-success-600: #15754BFF; + --pgn-color-success-500: var(--pgn-color-success-base); + --pgn-color-success-400: #51A17EFF; + --pgn-color-success-300: #8BC1A9FF; + --pgn-color-success-200: #C5E0D4FF; + --pgn-color-success-100: #F1F8F5FF; + --pgn-color-secondary-900: #303030FF; + --pgn-color-secondary-800: #343434FF; + --pgn-color-secondary-700: #373737FF; + --pgn-color-secondary-600: #3E3E3EFF; + --pgn-color-secondary-500: var(--pgn-color-secondary-base); + --pgn-color-secondary-400: #747474FF; + --pgn-color-secondary-300: #A2A2A2FF; + --pgn-color-secondary-200: #D1D1D1FF; + --pgn-color-secondary-100: #F4F4F4FF; + --pgn-color-tooltip-arrow-base: var(--pgn-color-tooltip-bg-base); + --pgn-color-search-field-button-bg-brand: var(--pgn-color-brand-500); + --pgn-color-search-field-button-bg-primary: var(--pgn-color-primary-500); + --pgn-color-search-field-border-base: var(--pgn-color-gray-500); + --pgn-color-progress-bar-bar-bg-annotated: var(--pgn-color-dark-500); + --pgn-color-progress-bar-border: var(--pgn-color-gray-500); + --pgn-color-product-tour-checkpoint-breadcrumb: var(--pgn-color-primary-500); + --pgn-color-product-tour-checkpoint-border: var(--pgn-color-brand-500); + --pgn-color-product-tour-checkpoint-bg: var(--pgn-color-light-300); + --pgn-color-popover-body: var(--pgn-color-body-base); + --pgn-color-popover-header-text: var(--pgn-color-headings-base); + --pgn-color-popover-bg: var(--pgn-color-bg-base); + --pgn-color-pagination-focus-base: var(--pgn-color-primary-500); + --pgn-color-pagination-bg-base: var(--pgn-color-bg-base); + --pgn-color-pagination-text-active: var(--pgn-color-active); + --pgn-color-navbar-light-brand-hover: var(--pgn-color-navbar-light-active); + --pgn-color-navbar-light-brand-text: var(--pgn-color-navbar-light-active); + --pgn-color-navbar-dark-active: var(--pgn-color-active); + --pgn-color-nav-pills-link-active-text: var(--pgn-color-active); + --pgn-color-nav-tabs-link-active-text: var(--pgn-color-primary-500); + --pgn-color-nav-tabs-link-hover-bg: var(--pgn-color-light-400); + --pgn-color-nav-tabs-border: var(--pgn-color-light-400); + --pgn-color-modal-content-bg: var(--pgn-color-bg-base); + --pgn-color-image-figure-caption: var(--pgn-color-gray-500); + --pgn-color-icon-button-danger: var(--pgn-color-danger-base); + --pgn-color-icon-button-warning: var(--pgn-color-warning-base); + --pgn-color-icon-button-success: var(--pgn-color-success-base); + --pgn-color-icon-button-secondary: var(--pgn-color-secondary-base); + --pgn-color-text-muted: var(--pgn-color-gray-500); + --pgn-color-list-group-action-active-base: var(--pgn-color-body-base); + --pgn-color-list-group-action-hover: var(--pgn-color-list-group-action-base); + --pgn-color-list-group-active-base: var(--pgn-color-active); + --pgn-color-list-group-bg-base: var(--pgn-color-bg-base); + --pgn-color-link-brand-inline-base: var(--pgn-color-brand-500); + --pgn-color-link-brand-base: var(--pgn-color-brand-500); + --pgn-color-link-muted-inline-base: var(--pgn-color-primary-500); + --pgn-color-link-muted-base: var(--pgn-color-primary-500); + --pgn-color-body-bg: var(--pgn-color-bg-base); + --pgn-color-form-feedback-invalid: var(--pgn-color-danger-base); + --pgn-color-form-feedback-valid: var(--pgn-color-success-base); + --pgn-color-form-control-file-button-bg: var(--pgn-color-form-input-group-addon-bg); + --pgn-color-form-control-file-bg-disabled: var(--pgn-color-form-input-bg-disabled); + --pgn-color-form-control-file-base: var(--pgn-color-form-input-base); + --pgn-color-form-control-select-indicator-base: var(--pgn-color-theme-hover-gray); + --pgn-color-form-control-select-base: var(--pgn-color-form-input-base); + --pgn-color-form-control-switch-indicator-checked-bg: var(--pgn-color-success-base); + --pgn-color-form-control-indicator-active-base: var(--pgn-color-active); + --pgn-color-form-control-indicator-checked-border-base: var(--pgn-color-primary-500); + --pgn-color-form-control-indicator-checked-bg-disabled: #0A305580; + --pgn-color-form-control-indicator-bg-disabled: var(--pgn-color-form-input-bg-disabled); + --pgn-color-form-input-focus-base: var(--pgn-color-form-input-base); + --pgn-color-form-input-group-addon-base: var(--pgn-color-form-input-base); + --pgn-color-form-input-bg-base: var(--pgn-color-bg-base); + --pgn-color-form-input-border: var(--pgn-color-gray-500); + --pgn-color-form-input-plaintext: var(--pgn-color-body-base); + --pgn-color-form-input-placeholder: var(--pgn-color-gray-500); + --pgn-color-dropzone-border-active: var(--pgn-color-primary-500); + --pgn-color-dropzone-border-base: var(--pgn-color-gray-500); + --pgn-color-dropzone-restriction-msg: var(--pgn-color-gray-500); + --pgn-color-dropdown-link-active-base: var(--pgn-color-active); + --pgn-color-dropdown-link-hover-bg: var(--pgn-color-light-300); + --pgn-color-dropdown-bg: var(--pgn-color-bg-base); + --pgn-color-dropdown-header: var(--pgn-color-gray-500); + --pgn-color-dropdown-text: var(--pgn-color-body-base); + --pgn-color-data-table-bg-base: var(--pgn-color-bg-base); + --pgn-color-chip-bg-dark: var(--pgn-color-dark-200); + --pgn-color-chip-bg-light: var(--pgn-color-light-500); + --pgn-color-card-divider-bg: var(--pgn-color-light-400); + --pgn-color-card-bg-muted: var(--pgn-color-light-200); + --pgn-color-card-bg-dark: var(--pgn-color-primary-500); + --pgn-color-card-bg-base: var(--pgn-color-bg-base); + --pgn-color-btn-disabled-border-inverse-outline-warning: var(--pgn-color-btn-border-inverse-outline-warning); + --pgn-color-btn-disabled-border-inverse-outline-secondary: var(--pgn-color-btn-border-inverse-outline-secondary); + --pgn-color-btn-disabled-border-outline-secondary: var(--pgn-color-secondary-base); + --pgn-color-btn-disabled-border-inverse-outline-primary: var(--pgn-color-btn-text-inverse-outline-primary); + --pgn-color-btn-disabled-border-inverse-outline-light: var(--pgn-color-btn-border-inverse-outline-light); + --pgn-color-btn-disabled-border-inverse-outline-info: var(--pgn-color-btn-border-inverse-outline-info); + --pgn-color-btn-disabled-border-inverse-outline-dark: var(--pgn-color-btn-focus-border-inverse-outline-dark); + --pgn-color-btn-disabled-border-inverse-outline-danger: var(--pgn-color-btn-border-inverse-outline-danger); + --pgn-color-btn-disabled-border-inverse-outline-brand: var(--pgn-color-btn-text-inverse-outline-brand); + --pgn-color-btn-disabled-border-inverse-brand: var(--pgn-color-btn-disabled-bg-inverse-brand); + --pgn-color-btn-disabled-border-outline-brand: var(--pgn-color-btn-border-outline-brand); + --pgn-color-btn-disabled-bg-primary: var(--pgn-color-btn-bg-primary); + --pgn-color-btn-disabled-bg-light: var(--pgn-color-btn-bg-light); + --pgn-color-btn-disabled-bg-dark: var(--pgn-color-btn-bg-dark); + --pgn-color-btn-disabled-bg-brand: var(--pgn-color-btn-bg-brand); + --pgn-color-btn-disabled-text-inverse-outline-warning: var(--pgn-color-btn-text-inverse-outline-warning); + --pgn-color-btn-disabled-text-inverse-warning: var(--pgn-color-warning-base); + --pgn-color-btn-disabled-text-inverse-tertiary: var(--pgn-color-btn-text-inverse-tertiary); + --pgn-color-btn-disabled-text-tertiary: var(--pgn-color-btn-text-tertiary); + --pgn-color-btn-disabled-text-inverse-outline-success: var(--pgn-color-btn-text-inverse-outline-success); + --pgn-color-btn-disabled-text-inverse-success: var(--pgn-color-success-base); + --pgn-color-btn-disabled-text-inverse-outline-secondary: var(--pgn-color-btn-text-inverse-outline-secondary); + --pgn-color-btn-disabled-text-inverse-outline-primary: var(--pgn-color-btn-text-inverse-outline-primary); + --pgn-color-btn-disabled-text-inverse-primary: var(--pgn-color-primary-500); + --pgn-color-btn-disabled-text-inverse-outline-light: var(--pgn-color-btn-text-inverse-outline-light); + --pgn-color-btn-disabled-text-inverse-light: var(--pgn-color-btn-text-inverse-light); + --pgn-color-btn-disabled-text-inverse-outline-info: var(--pgn-color-btn-text-inverse-outline-info); + --pgn-color-btn-disabled-text-inverse-info: var(--pgn-color-info-base); + --pgn-color-btn-disabled-text-inverse-outline-dark: var(--pgn-color-btn-text-inverse-outline-dark); + --pgn-color-btn-disabled-text-inverse-dark: var(--pgn-color-btn-text-inverse-dark); + --pgn-color-btn-disabled-text-inverse-outline-danger: var(--pgn-color-btn-text-inverse-outline-danger); + --pgn-color-btn-disabled-text-inverse-danger: var(--pgn-color-danger-base); + --pgn-color-btn-disabled-text-inverse-outline-brand: var(--pgn-color-btn-text-inverse-outline-brand); + --pgn-color-btn-disabled-text-inverse-brand: var(--pgn-color-brand-500); + --pgn-color-btn-focus-outline-inverse-success: var(--pgn-color-btn-focus-border-inverse-success); + --pgn-color-btn-focus-outline-inverse-outline-secondary: var(--pgn-color-btn-border-inverse-outline-secondary); + --pgn-color-btn-focus-outline-inverse-outline-primary: var(--pgn-color-btn-border-inverse-outline-primary); + --pgn-color-btn-focus-outline-inverse-primary: var(--pgn-color-btn-focus-border-inverse-primary); + --pgn-color-btn-focus-outline-light: var(--pgn-color-primary-300); + --pgn-color-btn-focus-outline-inverse-info: var(--pgn-color-btn-focus-border-inverse-info); + --pgn-color-btn-focus-outline-inverse-outline-dark: var(--pgn-color-btn-focus-border-inverse-outline-dark); + --pgn-color-btn-focus-outline-inverse-dark: var(--pgn-color-btn-focus-border-inverse-dark); + --pgn-color-btn-focus-outline-inverse-outline-danger: var(--pgn-color-btn-focus-border-inverse-danger); + --pgn-color-btn-focus-outline-inverse-danger: var(--pgn-color-btn-focus-border-inverse-danger); + --pgn-color-btn-focus-outline-inverse-brand: var(--pgn-color-btn-focus-border-inverse-brand); + --pgn-color-btn-focus-bg-primary: var(--pgn-color-btn-bg-primary); + --pgn-color-btn-focus-bg-light: var(--pgn-color-btn-bg-light); + --pgn-color-btn-focus-bg-dark: var(--pgn-color-btn-bg-dark); + --pgn-color-btn-focus-bg-brand: var(--pgn-color-btn-bg-brand); + --pgn-color-btn-focus-border-inverse-outline-warning: var(--pgn-color-btn-border-inverse-outline-warning); + --pgn-color-btn-focus-border-inverse-outline-success: var(--pgn-color-btn-border-inverse-outline-success); + --pgn-color-btn-focus-border-inverse-outline-primary: var(--pgn-color-btn-border-inverse-outline-primary); + --pgn-color-btn-focus-border-outline-primary: var(--pgn-color-btn-border-outline-primary); + --pgn-color-btn-focus-border-inverse-outline-light: var(--pgn-color-btn-border-inverse-outline-light); + --pgn-color-btn-focus-border-outline-light: var(--pgn-color-btn-border-outline-light); + --pgn-color-btn-focus-border-inverse-outline-info: var(--pgn-color-btn-border-inverse-outline-info); + --pgn-color-btn-focus-border-outline-dark: var(--pgn-color-btn-border-outline-dark); + --pgn-color-btn-focus-border-inverse-outline-brand: var(--pgn-color-btn-border-inverse-outline-brand); + --pgn-color-btn-focus-border-outline-brand: var(--pgn-color-btn-border-outline-brand); + --pgn-color-btn-focus-text-inverse-outline-warning: var(--pgn-color-btn-text-inverse-outline-warning); + --pgn-color-btn-focus-text-inverse-tertiary: var(--pgn-color-btn-text-inverse-tertiary); + --pgn-color-btn-focus-text-tertiary: var(--pgn-color-btn-text-tertiary); + --pgn-color-btn-focus-text-inverse-outline-success: var(--pgn-color-btn-text-inverse-outline-success); + --pgn-color-btn-focus-text-inverse-outline-secondary: var(--pgn-color-btn-text-inverse-outline-secondary); + --pgn-color-btn-focus-text-inverse-outline-primary: var(--pgn-color-btn-text-inverse-outline-primary); + --pgn-color-btn-focus-text-inverse-primary: var(--pgn-color-btn-text-inverse-primary); + --pgn-color-btn-focus-text-outline-primary: var(--pgn-color-btn-text-outline-primary); + --pgn-color-btn-focus-text-inverse-outline-light: var(--pgn-color-btn-text-inverse-outline-light); + --pgn-color-btn-focus-text-inverse-light: var(--pgn-color-btn-text-inverse-light); + --pgn-color-btn-focus-text-outline-light: var(--pgn-color-btn-text-outline-light); + --pgn-color-btn-focus-text-inverse-outline-info: var(--pgn-color-btn-text-inverse-outline-info); + --pgn-color-btn-focus-text-inverse-outline-dark: var(--pgn-color-btn-text-inverse-outline-dark); + --pgn-color-btn-focus-text-inverse-dark: var(--pgn-color-btn-text-inverse-dark); + --pgn-color-btn-focus-text-inverse-outline-danger: var(--pgn-color-btn-text-inverse-outline-danger); + --pgn-color-btn-focus-text-inverse-outline-brand: var(--pgn-color-btn-text-inverse-outline-brand); + --pgn-color-btn-focus-text-outline-brand: var(--pgn-color-btn-text-outline-brand); + --pgn-color-btn-focus-text-inverse-brand: var(--pgn-color-btn-text-inverse-brand); + --pgn-color-btn-active-bg-inverse-tertiary: var(--pgn-color-btn-hover-bg-inverse-tertiary); + --pgn-color-btn-active-bg-tertiary: var(--pgn-color-light-500); + --pgn-color-btn-active-text-inverse-primary: #051627FF; + --pgn-color-btn-active-text-inverse-light: #CAC3BFFF; + --pgn-color-btn-active-text-inverse-dark: #142018FF; + --pgn-color-btn-active-text-inverse-brand: #6A0039FF; + --pgn-color-btn-hover-border-outline-primary: var(--pgn-color-primary-900); + --pgn-color-btn-hover-border-outline-light: var(--pgn-color-light-900); + --pgn-color-btn-hover-border-outline-dark: var(--pgn-color-dark-900); + --pgn-color-btn-hover-border-outline-brand: var(--pgn-color-brand-900); + --pgn-color-btn-hover-bg-tertiary: var(--pgn-color-light-500); + --pgn-color-btn-hover-bg-inverse-outline-primary: var(--pgn-color-primary-100); + --pgn-color-btn-hover-bg-outline-primary: var(--pgn-color-primary-100); + --pgn-color-btn-hover-bg-inverse-outline-light: var(--pgn-color-light-100); + --pgn-color-btn-hover-bg-outline-light: var(--pgn-color-light-100); + --pgn-color-btn-hover-bg-inverse-outline-dark: var(--pgn-color-dark-100); + --pgn-color-btn-hover-bg-outline-dark: var(--pgn-color-dark-100); + --pgn-color-btn-hover-bg-inverse-outline-brand: var(--pgn-color-brand-100); + --pgn-color-btn-hover-bg-outline-brand: var(--pgn-color-brand-100); + --pgn-color-btn-hover-text-inverse-primary: #061D33FF; + --pgn-color-btn-hover-text-inverse-light: #D0C9C6FF; + --pgn-color-btn-hover-text-inverse-dark: #18271DFF; + --pgn-color-btn-hover-text-inverse-brand: #770040FF; + --pgn-color-btn-border-outline-warning: var(--pgn-color-warning-base); + --pgn-color-btn-border-outline-success: var(--pgn-color-success-base); + --pgn-color-btn-border-outline-secondary: var(--pgn-color-secondary-base); + --pgn-color-btn-border-primary: var(--pgn-color-btn-bg-primary); + --pgn-color-btn-border-light: var(--pgn-color-btn-bg-light); + --pgn-color-btn-border-outline-info: var(--pgn-color-info-base); + --pgn-color-btn-border-dark: var(--pgn-color-btn-bg-dark); + --pgn-color-btn-border-outline-danger: var(--pgn-color-danger-base); + --pgn-color-btn-border-brand: var(--pgn-color-btn-bg-brand); + --pgn-color-btn-bg-warning: var(--pgn-color-warning-base); + --pgn-color-btn-bg-success: var(--pgn-color-success-base); + --pgn-color-btn-bg-secondary: var(--pgn-color-secondary-base); + --pgn-color-btn-bg-inverse-primary: #FFFFFFFF; + --pgn-color-btn-bg-inverse-light: #454545FF; + --pgn-color-btn-bg-info: var(--pgn-color-info-base); + --pgn-color-btn-bg-inverse-dark: #FFFFFFFF; + --pgn-color-btn-bg-danger: var(--pgn-color-danger-base); + --pgn-color-btn-bg-inverse-brand: #FFFFFFFF; + --pgn-color-btn-text-inverse-warning: var(--pgn-color-warning-base); + --pgn-color-btn-text-outline-warning: var(--pgn-color-warning-base); + --pgn-color-btn-text-inverse-success: var(--pgn-color-success-base); + --pgn-color-btn-text-outline-success: var(--pgn-color-success-base); + --pgn-color-btn-text-inverse-secondary: var(--pgn-color-secondary-base); + --pgn-color-btn-text-outline-secondary: var(--pgn-color-secondary-base); + --pgn-color-btn-text-primary: #FFFFFFFF; + --pgn-color-btn-text-light: #454545FF; + --pgn-color-btn-text-inverse-info: var(--pgn-color-info-base); + --pgn-color-btn-text-outline-info: var(--pgn-color-info-base); + --pgn-color-btn-text-dark: #FFFFFFFF; + --pgn-color-btn-text-inverse-danger: var(--pgn-color-danger-base); + --pgn-color-btn-text-outline-danger: var(--pgn-color-danger-base); + --pgn-color-btn-text-brand: #FFFFFFFF; + --pgn-color-bubble-bg-error: var(--pgn-color-danger-base); + --pgn-color-bubble-bg-warning: var(--pgn-color-warning-base); + --pgn-color-bubble-bg-success: var(--pgn-color-success-base); + --pgn-color-breadcrumb-inverse-spacer: var(--pgn-color-light-700); + --pgn-color-breadcrumb-inverse-active: var(--pgn-color-light-500); + --pgn-color-breadcrumb-active: var(--pgn-color-gray-500); + --pgn-color-breadcrumb-base: var(--pgn-color-primary-500); + --pgn-color-badge-focus-box-shadow-dark: #273F2F0D; + --pgn-color-badge-focus-box-shadow-light: #E1DDDB0D; + --pgn-color-badge-focus-box-shadow-primary: #0A30550D; + --pgn-color-badge-focus-bg-dark: #142018FF; + --pgn-color-badge-focus-bg-light: #CAC3BFFF; + --pgn-color-badge-focus-bg-primary: #051627FF; + --pgn-color-badge-focus-dark: var(--pgn-color-badge-text-dark); + --pgn-color-badge-focus-light: var(--pgn-color-badge-text-light); + --pgn-color-badge-focus-primary: var(--pgn-color-badge-text-primary); + --pgn-color-badge-bg-info: var(--pgn-color-info-base); + --pgn-color-badge-bg-danger: var(--pgn-color-danger-base); + --pgn-color-badge-bg-warning: var(--pgn-color-warning-base); + --pgn-color-badge-bg-success: var(--pgn-color-success-base); + --pgn-color-badge-bg-secondary: var(--pgn-color-secondary-base); + --pgn-color-badge-text-info: #FFFFFFFF; + --pgn-color-badge-text-warning: #454545FF; + --pgn-color-badge-text-danger: #FFFFFFFF; + --pgn-color-badge-text-success: #FFFFFFFF; + --pgn-color-badge-text-secondary: #FFFFFFFF; + --pgn-color-avatar-border: var(--pgn-color-light-300); + --pgn-color-annotation-bg-error: var(--pgn-color-danger-base); + --pgn-color-annotation-bg-success: var(--pgn-color-success-base); + --pgn-color-annotation-text-light: var(--pgn-color-primary-500); + --pgn-color-theme-active-dark: var(--pgn-color-dark-900); + --pgn-color-theme-active-light: var(--pgn-color-light-900); + --pgn-color-theme-active-brand: var(--pgn-color-brand-900); + --pgn-color-theme-active-primary: var(--pgn-color-primary-900); + --pgn-color-theme-hover-dark: var(--pgn-color-dark-700); + --pgn-color-theme-hover-light: var(--pgn-color-light-700); + --pgn-color-theme-hover-brand: var(--pgn-color-brand-700); + --pgn-color-theme-hover-primary: var(--pgn-color-primary-700); + --pgn-color-theme-default-gray: var(--pgn-color-gray-500); + --pgn-color-theme-default-dark: var(--pgn-color-dark-500); + --pgn-color-theme-default-light: var(--pgn-color-light-500); + --pgn-color-theme-default-brand: var(--pgn-color-brand-500); + --pgn-color-theme-default-primary: var(--pgn-color-primary-500); + --pgn-color-theme-focus-dark: var(--pgn-color-dark-300); + --pgn-color-theme-focus-light: var(--pgn-color-light-300); + --pgn-color-theme-focus-brand: var(--pgn-color-brand-300); + --pgn-color-theme-focus-primary: var(--pgn-color-primary-300); + --pgn-color-theme-border-dark: var(--pgn-color-dark-200); + --pgn-color-theme-border-light: var(--pgn-color-light-200); + --pgn-color-theme-border-brand: var(--pgn-color-brand-200); + --pgn-color-theme-border-primary: var(--pgn-color-primary-200); + --pgn-color-theme-bg-dark: var(--pgn-color-dark-100); + --pgn-color-theme-bg-light: var(--pgn-color-light-100); + --pgn-color-theme-bg-brand: var(--pgn-color-brand-100); + --pgn-color-theme-bg-primary: var(--pgn-color-primary-100); + --pgn-color-input-focus: var(--pgn-color-primary-500); + --pgn-color-disabled: var(--pgn-color-gray-500); + --pgn-color-bg-active: var(--pgn-color-primary-500); + --pgn-border-color-nav-tabs-link-border-hover: transparent transparent var(--pgn-color-nav-tabs-border); + --pgn-other-content-form-control-select-indicator-icon: url('data:image/svg+xml,'); + --pgn-other-content-form-control-switch-indicator-icon-on: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23FFFFFFFF'/%3e%3c/svg%3e"); + --pgn-elevation-form-control-file-focus: var(--pgn-elevation-form-input-focus); + --pgn-elevation-form-control-range-thumb-focus: 0 0 0 1px var(--pgn-color-body-bg), var(--pgn-size-form-input-width-focus); + --pgn-typography-form-control-file-font-weight: var(--pgn-typography-form-input-font-weight); + --pgn-typography-form-control-select-font-weight: var(--pgn-typography-form-input-font-weight); + --pgn-spacing-form-control-select-feedback-icon-position: center right calc(var(--pgn-spacing-form-control-select-padding-x-base) + var(--pgn-spacing-form-control-select-indicator-padding)); + --pgn-spacing-form-control-select-feedback-icon-padding-right: calc((1em + 2 * var(--pgn-spacing-form-control-select-padding-y-base)) * 3 / 4 + var(--pgn-spacing-form-control-select-padding-x-base) + var(--pgn-spacing-form-control-select-indicator-padding)); + --pgn-size-form-control-file-height-inner: var(--pgn-size-form-input-height-inner-base); + --pgn-size-form-control-file-height-base: var(--pgn-size-form-input-height-base); + --pgn-size-form-control-file-width: var(--pgn-size-form-input-width-border); + --pgn-size-form-control-select-border-width-base: var(--pgn-size-form-input-width-border); + --pgn-size-form-control-select-feedback-icon: var(--pgn-size-form-input-height-inner-half) var(--pgn-size-form-input-height-inner-half); + --pgn-size-form-control-select-height-sm: var(--pgn-size-form-input-height-sm); + --pgn-size-form-control-select-height-base: var(--pgn-size-form-input-height-base); + --pgn-size-form-input-height-border: calc(var(--pgn-size-form-input-width-border) * 2); + --pgn-size-form-input-height-lg: calc(var(--pgn-typography-form-input-line-height-lg) * 1em + var(--pgn-spacing-input-btn-padding-lg-y) * 2 + var(--pgn-size-form-input-height-border)); + --pgn-color-product-tour-checkpoint-arrow-border-top: var(--pgn-color-product-tour-checkpoint-bg); + --pgn-color-popover-danger-icon: var(--pgn-color-warning-500); + --pgn-color-popover-danger-bg: var(--pgn-color-danger-100); + --pgn-color-popover-warning-icon: var(--pgn-color-warning-500); + --pgn-color-popover-warning-bg: var(--pgn-color-warning-100); + --pgn-color-popover-success-icon: var(--pgn-color-success-500); + --pgn-color-popover-success-bg: var(--pgn-color-success-100); + --pgn-color-popover-arrow-base: var(--pgn-color-popover-bg); + --pgn-color-pagination-bg-active: var(--pgn-color-bg-active); + --pgn-color-pagination-text-disabled: var(--pgn-color-disabled); + --pgn-color-navbar-dark-brand-hover: var(--pgn-color-navbar-dark-active); + --pgn-color-navbar-dark-brand-text: var(--pgn-color-navbar-dark-active); + --pgn-color-nav-pills-link-active-bg: var(--pgn-color-bg-active); + --pgn-color-nav-tabs-link-active-bg: var(--pgn-color-body-bg); + --pgn-color-menu-bg-active: var(--pgn-color-btn-active-bg-tertiary); + --pgn-color-image-thumbnail-bg: var(--pgn-color-body-bg); + --pgn-color-list-group-disabled-bg: var(--pgn-color-list-group-bg-base); + --pgn-color-list-group-active-bg: var(--pgn-color-bg-active); + --pgn-color-link-brand-inline-hover-base: #51002BFF; + --pgn-color-link-brand-inline-decoration: #9D00544D; + --pgn-color-link-brand-hover: #51002BFF; + --pgn-color-link-muted-inline-hover-base: #020911FF; + --pgn-color-link-muted-inline-decoration: #0A30554D; + --pgn-color-link-muted-hover: #020911FF; + --pgn-color-link-inline-base: var(--pgn-color-info-500); + --pgn-color-link-base: var(--pgn-color-info-500); + --pgn-color-form-feedback-checked-invalid: #D64D59FF; + --pgn-color-form-feedback-checked-valid: #1FAD6FFF; + --pgn-color-form-feedback-tooltip-box-shadow-focus-invalid: #C32D3A40; + --pgn-color-form-feedback-tooltip-box-shadow-focus-valid: #17825340; + --pgn-color-form-feedback-tooltip-bg-invalid: #C32D3AE6; + --pgn-color-form-feedback-tooltip-bg-valid: #178253E6; + --pgn-color-form-feedback-tooltip-valid: #FFFFFFFF; + --pgn-color-form-feedback-icon-invalid: var(--pgn-color-form-feedback-invalid); + --pgn-color-form-feedback-icon-valid: var(--pgn-color-form-feedback-valid); + --pgn-color-form-control-file-border-base: var(--pgn-color-form-input-border); + --pgn-color-form-control-file-button-base: var(--pgn-color-form-control-file-base); + --pgn-color-form-control-file-bg-base: var(--pgn-color-form-input-bg-base); + --pgn-color-form-control-range-thumb-bg-active: #000000FF; + --pgn-color-form-control-range-thumb-bg-disabled: var(--pgn-color-disabled); + --pgn-color-form-control-range-thumb-bg-base: var(--pgn-color-bg-active); + --pgn-color-form-control-select-border-base: var(--pgn-color-form-input-border); + --pgn-color-form-control-select-bg-base: var(--pgn-color-form-input-bg-base); + --pgn-color-form-control-select-disabled: var(--pgn-color-disabled); + --pgn-color-form-control-checkbox-indicator-indeterminate-bg: var(--pgn-color-bg-active); + --pgn-color-form-control-label-floating-text: #FFFFFF1A; + --pgn-color-form-control-label-disabled: var(--pgn-color-disabled); + --pgn-color-form-control-indicator-active-bg: var(--pgn-color-bg-active); + --pgn-color-form-control-indicator-checked-bg-base: var(--pgn-color-bg-active); + --pgn-color-form-control-indicator-checked-base: var(--pgn-color-bg-active); + --pgn-color-form-control-indicator-bg-base: var(--pgn-color-form-input-bg-base); + --pgn-color-form-input-focus-bg: var(--pgn-color-form-input-bg-base); + --pgn-color-form-input-focus-border: var(--pgn-color-input-focus); + --pgn-color-form-input-group-addon-border: var(--pgn-color-form-input-border); + --pgn-color-dropzone-border-error: var(--pgn-color-danger-300); + --pgn-color-dropzone-border-focus: var(--pgn-color-info-300); + --pgn-color-dropzone-border-hover: var(--pgn-color-info-300); + --pgn-color-dropzone-error-wrapper: var(--pgn-color-danger-500); + --pgn-color-dropdown-link-disabled: var(--pgn-color-disabled); + --pgn-color-dropdown-link-active-bg: var(--pgn-color-bg-active); + --pgn-color-card-border-focus-dark: var(--pgn-color-theme-focus-primary); + --pgn-color-btn-disabled-link: var(--pgn-color-disabled); + --pgn-color-btn-disabled-border-outline-warning: var(--pgn-color-btn-border-outline-warning); + --pgn-color-btn-disabled-border-outline-success: var(--pgn-color-btn-border-outline-success); + --pgn-color-btn-disabled-border-primary: var(--pgn-color-btn-border-primary); + --pgn-color-btn-disabled-border-light: var(--pgn-color-btn-border-light); + --pgn-color-btn-disabled-border-outline-info: var(--pgn-color-btn-border-outline-info); + --pgn-color-btn-disabled-border-info: var(--pgn-color-btn-bg-info); + --pgn-color-btn-disabled-border-dark: var(--pgn-color-btn-border-dark); + --pgn-color-btn-disabled-border-outline-danger: var(--pgn-color-btn-border-outline-danger); + --pgn-color-btn-disabled-border-brand: var(--pgn-color-btn-border-brand); + --pgn-color-btn-disabled-bg-warning: var(--pgn-color-btn-bg-warning); + --pgn-color-btn-disabled-bg-success: var(--pgn-color-btn-bg-success); + --pgn-color-btn-disabled-bg-secondary: var(--pgn-color-btn-bg-secondary); + --pgn-color-btn-disabled-bg-info: var(--pgn-color-btn-bg-info); + --pgn-color-btn-disabled-bg-danger: var(--pgn-color-btn-bg-danger); + --pgn-color-btn-disabled-text-outline-warning: var(--pgn-color-btn-text-outline-warning); + --pgn-color-btn-disabled-text-outline-success: var(--pgn-color-btn-text-outline-success); + --pgn-color-btn-disabled-text-primary: var(--pgn-color-btn-text-primary); + --pgn-color-btn-disabled-text-light: var(--pgn-color-btn-text-light); + --pgn-color-btn-disabled-text-outline-info: var(--pgn-color-btn-text-outline-info); + --pgn-color-btn-disabled-text-dark: var(--pgn-color-btn-text-dark); + --pgn-color-btn-disabled-text-brand: var(--pgn-color-btn-text-brand); + --pgn-color-btn-focus-outline-tertiary: var(--pgn-color-theme-focus-primary); + --pgn-color-btn-focus-outline-inverse-outline-success: var(--pgn-color-btn-focus-border-inverse-outline-success); + --pgn-color-btn-focus-outline-outline-primary: var(--pgn-color-theme-focus-primary); + --pgn-color-btn-focus-outline-primary: var(--pgn-color-theme-focus-primary); + --pgn-color-btn-focus-outline-inverse-outline-light: var(--pgn-color-btn-focus-border-inverse-outline-light); + --pgn-color-btn-focus-outline-outline-light: var(--pgn-color-theme-focus-light); + --pgn-color-btn-focus-outline-inverse-outline-info: var(--pgn-color-btn-focus-border-inverse-outline-info); + --pgn-color-btn-focus-outline-outline-dark: var(--pgn-color-theme-focus-dark); + --pgn-color-btn-focus-outline-dark: var(--pgn-color-theme-focus-dark); + --pgn-color-btn-focus-outline-inverse-outline-brand: var(--pgn-color-btn-focus-border-inverse-outline-brand); + --pgn-color-btn-focus-outline-outline-brand: var(--pgn-color-theme-focus-brand); + --pgn-color-btn-focus-outline-brand: var(--pgn-color-theme-focus-brand); + --pgn-color-btn-focus-bg-warning: var(--pgn-color-btn-bg-warning); + --pgn-color-btn-focus-bg-success: var(--pgn-color-btn-bg-success); + --pgn-color-btn-focus-bg-secondary: var(--pgn-color-btn-bg-secondary); + --pgn-color-btn-focus-bg-inverse-primary: var(--pgn-color-btn-bg-inverse-primary); + --pgn-color-btn-focus-bg-inverse-light: var(--pgn-color-btn-bg-inverse-light); + --pgn-color-btn-focus-bg-info: var(--pgn-color-btn-bg-info); + --pgn-color-btn-focus-bg-inverse-dark: var(--pgn-color-btn-bg-inverse-dark); + --pgn-color-btn-focus-bg-danger: var(--pgn-color-btn-bg-danger); + --pgn-color-btn-focus-bg-inverse-brand: var(--pgn-color-btn-bg-inverse-brand); + --pgn-color-btn-focus-border-outline-warning: var(--pgn-color-btn-border-outline-warning); + --pgn-color-btn-focus-border-outline-success: var(--pgn-color-btn-border-outline-success); + --pgn-color-btn-focus-border-outline-secondary: var(--pgn-color-btn-border-outline-secondary); + --pgn-color-btn-focus-border-secondary: var(--pgn-color-btn-bg-secondary); + --pgn-color-btn-focus-border-primary: var(--pgn-color-btn-border-primary); + --pgn-color-btn-focus-border-light: var(--pgn-color-btn-border-light); + --pgn-color-btn-focus-border-outline-info: var(--pgn-color-btn-border-outline-info); + --pgn-color-btn-focus-border-dark: var(--pgn-color-btn-focus-bg-dark); + --pgn-color-btn-focus-border-outline-danger: var(--pgn-color-btn-border-outline-danger); + --pgn-color-btn-focus-border-brand: var(--pgn-color-btn-border-brand); + --pgn-color-btn-focus-text-inverse-warning: var(--pgn-color-btn-text-inverse-warning); + --pgn-color-btn-focus-text-outline-warning: var(--pgn-color-btn-text-outline-warning); + --pgn-color-btn-focus-text-inverse-success: var(--pgn-color-btn-text-inverse-success); + --pgn-color-btn-focus-text-outline-success: var(--pgn-color-btn-text-outline-success); + --pgn-color-btn-focus-text-outline-secondary: var(--pgn-color-btn-text-outline-secondary); + --pgn-color-btn-focus-text-primary: var(--pgn-color-btn-text-primary); + --pgn-color-btn-focus-text-light: var(--pgn-color-btn-text-light); + --pgn-color-btn-focus-text-inverse-info: var(--pgn-color-btn-text-inverse-info); + --pgn-color-btn-focus-text-outline-info: var(--pgn-color-btn-text-outline-info); + --pgn-color-btn-focus-text-dark: var(--pgn-color-btn-text-dark); + --pgn-color-btn-focus-text-outline-danger: var(--pgn-color-btn-text-outline-danger); + --pgn-color-btn-focus-text-inverse-danger: var(--pgn-color-btn-text-inverse-danger); + --pgn-color-btn-focus-text-brand: var(--pgn-color-btn-text-brand); + --pgn-color-btn-active-border-outline-primary: var(--pgn-color-theme-active-primary); + --pgn-color-btn-active-border-primary: var(--pgn-color-theme-active-primary); + --pgn-color-btn-active-border-outline-light: var(--pgn-color-theme-active-light); + --pgn-color-btn-active-border-light: var(--pgn-color-theme-active-light); + --pgn-color-btn-active-border-outline-dark: var(--pgn-color-theme-active-dark); + --pgn-color-btn-active-border-dark: var(--pgn-color-theme-active-dark); + --pgn-color-btn-active-border-outline-brand: var(--pgn-color-theme-active-brand); + --pgn-color-btn-active-border-brand: var(--pgn-color-theme-active-brand); + --pgn-color-btn-active-bg-inverse-outline-primary: var(--pgn-color-theme-bg-primary); + --pgn-color-btn-active-bg-outline-primary: var(--pgn-color-theme-bg-primary); + --pgn-color-btn-active-bg-primary: var(--pgn-color-theme-active-primary); + --pgn-color-btn-active-bg-inverse-outline-light: var(--pgn-color-theme-bg-light); + --pgn-color-btn-active-bg-outline-light: var(--pgn-color-theme-bg-light); + --pgn-color-btn-active-bg-light: var(--pgn-color-theme-active-light); + --pgn-color-btn-active-bg-inverse-outline-dark: var(--pgn-color-theme-bg-dark); + --pgn-color-btn-active-bg-outline-dark: var(--pgn-color-theme-bg-dark); + --pgn-color-btn-active-bg-dark: var(--pgn-color-theme-active-dark); + --pgn-color-btn-active-bg-inverse-outline-brand: var(--pgn-color-theme-bg-brand); + --pgn-color-btn-active-bg-outline-brand: var(--pgn-color-theme-bg-brand); + --pgn-color-btn-active-bg-brand: var(--pgn-color-theme-active-brand); + --pgn-color-btn-active-text-inverse-warning: #CCAE00FF; + --pgn-color-btn-active-text-inverse-success: #0F5737FF; + --pgn-color-btn-active-text-inverse-secondary: #2B2B2BFF; + --pgn-color-btn-active-text-inverse-info: #004C77FF; + --pgn-color-btn-active-text-inverse-danger: #9A232EFF; + --pgn-color-btn-hover-border-outline-warning: var(--pgn-color-warning-900); + --pgn-color-btn-hover-border-outline-success: var(--pgn-color-success-900); + --pgn-color-btn-hover-border-outline-secondary: var(--pgn-color-secondary-900); + --pgn-color-btn-hover-border-primary: var(--pgn-color-theme-hover-primary); + --pgn-color-btn-hover-border-light: var(--pgn-color-theme-hover-light); + --pgn-color-btn-hover-border-outline-info: var(--pgn-color-info-900); + --pgn-color-btn-hover-border-dark: var(--pgn-color-theme-hover-dark); + --pgn-color-btn-hover-border-outline-danger: var(--pgn-color-danger-900); + --pgn-color-btn-hover-border-brand: var(--pgn-color-theme-hover-brand); + --pgn-color-btn-hover-bg-inverse-outline-warning: var(--pgn-color-warning-100); + --pgn-color-btn-hover-bg-outline-warning: var(--pgn-color-warning-100); + --pgn-color-btn-hover-bg-inverse-outline-success: var(--pgn-color-success-100); + --pgn-color-btn-hover-bg-outline-success: var(--pgn-color-success-100); + --pgn-color-btn-hover-bg-inverse-outline-secondary: var(--pgn-color-secondary-100); + --pgn-color-btn-hover-bg-outline-secondary: var(--pgn-color-secondary-100); + --pgn-color-btn-hover-bg-inverse-primary: #ECECECFF; + --pgn-color-btn-hover-bg-primary: var(--pgn-color-theme-hover-primary); + --pgn-color-btn-hover-bg-inverse-light: #323232FF; + --pgn-color-btn-hover-bg-light: var(--pgn-color-theme-hover-light); + --pgn-color-btn-hover-bg-inverse-outline-info: var(--pgn-color-info-100); + --pgn-color-btn-hover-bg-outline-info: var(--pgn-color-info-100); + --pgn-color-btn-hover-bg-inverse-dark: #ECECECFF; + --pgn-color-btn-hover-bg-dark: var(--pgn-color-theme-hover-dark); + --pgn-color-btn-hover-bg-inverse-outline-danger: var(--pgn-color-danger-100); + --pgn-color-btn-hover-bg-outline-danger: var(--pgn-color-danger-100); + --pgn-color-btn-hover-bg-inverse-brand: #ECECECFF; + --pgn-color-btn-hover-bg-brand: var(--pgn-color-theme-hover-brand); + --pgn-color-btn-hover-text-inverse-warning: #D9B800FF; + --pgn-color-btn-hover-text-inverse-success: #11623EFF; + --pgn-color-btn-hover-text-inverse-secondary: #323232FF; + --pgn-color-btn-hover-text-inverse-outline-primary: var(--pgn-color-theme-hover-primary); + --pgn-color-btn-hover-text-outline-primary: var(--pgn-color-theme-hover-primary); + --pgn-color-btn-hover-text-inverse-outline-light: var(--pgn-color-theme-hover-light); + --pgn-color-btn-hover-text-outline-light: var(--pgn-color-theme-hover-light); + --pgn-color-btn-hover-text-inverse-info: #005484FF; + --pgn-color-btn-hover-text-inverse-outline-dark: var(--pgn-color-theme-hover-dark); + --pgn-color-btn-hover-text-outline-dark: var(--pgn-color-theme-hover-dark); + --pgn-color-btn-hover-text-inverse-danger: #A42631FF; + --pgn-color-btn-hover-text-inverse-outline-brand: var(--pgn-color-theme-hover-brand); + --pgn-color-btn-hover-text-outline-brand: var(--pgn-color-theme-hover-brand); + --pgn-color-btn-border-warning: var(--pgn-color-btn-bg-warning); + --pgn-color-btn-border-success: var(--pgn-color-btn-bg-success); + --pgn-color-btn-border-secondary: var(--pgn-color-btn-bg-secondary); + --pgn-color-btn-border-info: var(--pgn-color-btn-bg-info); + --pgn-color-btn-border-danger: var(--pgn-color-btn-bg-danger); + --pgn-color-btn-bg-inverse-warning: #454545FF; + --pgn-color-btn-bg-inverse-success: #FFFFFFFF; + --pgn-color-btn-bg-inverse-secondary: #FFFFFFFF; + --pgn-color-btn-bg-inverse-info: #FFFFFFFF; + --pgn-color-btn-bg-inverse-danger: #FFFFFFFF; + --pgn-color-btn-text-warning: #454545FF; + --pgn-color-btn-text-success: #FFFFFFFF; + --pgn-color-btn-text-secondary: #FFFFFFFF; + --pgn-color-btn-text-info: #FFFFFFFF; + --pgn-color-btn-text-danger: #FFFFFFFF; + --pgn-color-badge-focus-box-shadow-info: #006DAA0D; + --pgn-color-badge-focus-box-shadow-warning: #FFD9000D; + --pgn-color-badge-focus-box-shadow-danger: #C32D3A0D; + --pgn-color-badge-focus-box-shadow-success: #1782530D; + --pgn-color-badge-focus-box-shadow-secondary: #4545450D; + --pgn-color-badge-focus-bg-info: #004C77FF; + --pgn-color-badge-focus-bg-warning: #CCAE00FF; + --pgn-color-badge-focus-bg-danger: #9A232EFF; + --pgn-color-badge-focus-bg-success: #0F5737FF; + --pgn-color-badge-focus-bg-secondary: #2B2B2BFF; + --pgn-color-badge-focus-info: var(--pgn-color-badge-text-info); + --pgn-color-badge-focus-danger: var(--pgn-color-badge-text-danger); + --pgn-color-badge-focus-warning: var(--pgn-color-badge-text-warning); + --pgn-color-badge-focus-success: var(--pgn-color-badge-text-success); + --pgn-color-badge-focus-secondary: var(--pgn-color-badge-text-secondary); + --pgn-color-theme-active-danger: var(--pgn-color-danger-900); + --pgn-color-theme-active-warning: var(--pgn-color-warning-900); + --pgn-color-theme-active-info: var(--pgn-color-info-900); + --pgn-color-theme-active-success: var(--pgn-color-success-900); + --pgn-color-theme-active-secondary: var(--pgn-color-secondary-900); + --pgn-color-theme-hover-danger: var(--pgn-color-danger-700); + --pgn-color-theme-hover-warning: var(--pgn-color-warning-700); + --pgn-color-theme-hover-info: var(--pgn-color-info-700); + --pgn-color-theme-hover-success: var(--pgn-color-success-700); + --pgn-color-theme-hover-secondary: var(--pgn-color-secondary-700); + --pgn-color-theme-default-danger: var(--pgn-color-danger-500); + --pgn-color-theme-default-warning: var(--pgn-color-warning-500); + --pgn-color-theme-default-info: var(--pgn-color-info-500); + --pgn-color-theme-default-success: var(--pgn-color-success-500); + --pgn-color-theme-default-secondary: var(--pgn-color-secondary-500); + --pgn-color-theme-focus-danger: var(--pgn-color-danger-300); + --pgn-color-theme-focus-warning: var(--pgn-color-warning-300); + --pgn-color-theme-focus-info: var(--pgn-color-info-300); + --pgn-color-theme-focus-success: var(--pgn-color-success-300); + --pgn-color-theme-focus-secondary: var(--pgn-color-secondary-300); + --pgn-color-theme-border-danger: var(--pgn-color-danger-200); + --pgn-color-theme-border-warning: var(--pgn-color-warning-200); + --pgn-color-theme-border-info: var(--pgn-color-info-200); + --pgn-color-theme-border-success: var(--pgn-color-success-200); + --pgn-color-theme-border-secondary: var(--pgn-color-secondary-200); + --pgn-color-theme-bg-danger: var(--pgn-color-danger-100); + --pgn-color-theme-bg-warning: var(--pgn-color-warning-100); + --pgn-color-theme-bg-info: var(--pgn-color-info-100); + --pgn-color-theme-bg-success: var(--pgn-color-success-100); + --pgn-color-theme-bg-secondary: var(--pgn-color-secondary-100); + --pgn-color-input-btn-focus: var(--pgn-color-input-focus); + --pgn-other-content-form-feedback-icon-invalid: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23C32D3AFF' viewBox='-2 -2 7 7'%3e%3cpath stroke='%23C32D3AFF' d='M0 0l3 3m0-3L0 3'/%3e%3ccircle r='.5'/%3e%3ccircle cx='3' r='.5'/%3e%3ccircle cy='3' r='.5'/%3e%3ccircle cx='3' cy='3' r='.5'/%3e%3c/svg%3E"); + --pgn-other-content-form-feedback-icon-valid: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23178253FF' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e"); + --pgn-other-content-form-control-select-bg: var(--pgn-other-content-form-control-select-indicator-icon) no-repeat right var(--pgn-spacing-form-input-padding-y-base) center / var(--pgn-color-form-control-select-bg-base); + --pgn-other-content-form-control-switch-indicator-icon-off: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%230A3055FF'/%3e%3c/svg%3e"); + --pgn-other-content-form-control-radio-indicator-icon-checked: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%230A3055FF'/%3e%3c/svg%3e"); + --pgn-other-content-form-control-checkbox-indicator-icon-checked: url("data:image/svg+xml,"); + --pgn-size-form-control-select-height-lg: var(--pgn-size-form-input-height-lg); + --pgn-color-pagination-border-active: var(--pgn-color-pagination-bg-active); + --pgn-color-pagination-text-base: var(--pgn-color-link-base); + --pgn-color-list-group-active-border: var(--pgn-color-list-group-active-bg); + --pgn-color-link-brand-inline-hover-decoration: var(--pgn-color-link-brand-inline-hover-base); + --pgn-color-link-muted-inline-hover-decoration: var(--pgn-color-link-muted-inline-hover-base); + --pgn-color-link-inline-hover-base: #003C5EFF; + --pgn-color-link-inline-decoration: #006DAA4D; + --pgn-color-link-hover: #003C5EFF; + --pgn-color-form-control-file-border-focus: var(--pgn-color-form-input-focus-border); + --pgn-color-form-control-select-border-focus: var(--pgn-color-form-input-focus-border); + --pgn-color-form-control-checkbox-indicator-indeterminate-border: var(--pgn-color-form-control-checkbox-indicator-indeterminate-bg); + --pgn-color-form-control-checkbox-indicator-indeterminate-base: var(--pgn-color-form-control-indicator-checked-base); + --pgn-color-form-control-indicator-active-border: var(--pgn-color-form-control-indicator-active-bg); + --pgn-color-form-control-indicator-checked-border-focus: var(--pgn-color-form-input-focus-border); + --pgn-color-btn-disabled-border-warning: var(--pgn-color-btn-border-warning); + --pgn-color-btn-disabled-border-success: var(--pgn-color-btn-border-success); + --pgn-color-btn-disabled-border-outline-primary: var(--pgn-color-btn-hover-text-outline-primary); + --pgn-color-btn-disabled-border-outline-light: var(--pgn-color-btn-hover-text-outline-light); + --pgn-color-btn-disabled-border-outline-dark: var(--pgn-color-btn-hover-text-outline-dark); + --pgn-color-btn-disabled-border-danger: var(--pgn-color-btn-border-danger); + --pgn-color-btn-disabled-text-warning: var(--pgn-color-btn-text-warning); + --pgn-color-btn-disabled-text-success: var(--pgn-color-btn-text-success); + --pgn-color-btn-disabled-text-secondary: var(--pgn-color-btn-text-secondary); + --pgn-color-btn-disabled-text-outline-primary: var(--pgn-color-btn-hover-text-outline-primary); + --pgn-color-btn-disabled-text-outline-light: var(--pgn-color-btn-hover-text-outline-light); + --pgn-color-btn-disabled-text-info: var(--pgn-color-btn-text-info); + --pgn-color-btn-disabled-text-danger: var(--pgn-color-btn-text-danger); + --pgn-color-btn-disabled-text-outline-brand: var(--pgn-color-btn-hover-text-outline-brand); + --pgn-color-btn-focus-outline-outline-warning: var(--pgn-color-theme-focus-warning); + --pgn-color-btn-focus-outline-warning: var(--pgn-color-theme-focus-warning); + --pgn-color-btn-focus-outline-outline-success: var(--pgn-color-theme-focus-success); + --pgn-color-btn-focus-outline-success: var(--pgn-color-theme-focus-success); + --pgn-color-btn-focus-outline-outline-secondary: var(--pgn-color-theme-focus-secondary); + --pgn-color-btn-focus-outline-secondary: var(--pgn-color-theme-focus-secondary); + --pgn-color-btn-focus-outline-outline-info: var(--pgn-color-theme-focus-info); + --pgn-color-btn-focus-outline-info: var(--pgn-color-theme-focus-info); + --pgn-color-btn-focus-outline-outline-danger: var(--pgn-color-theme-focus-danger); + --pgn-color-btn-focus-outline-danger: var(--pgn-color-theme-focus-danger); + --pgn-color-btn-focus-bg-inverse-warning: var(--pgn-color-btn-bg-inverse-warning); + --pgn-color-btn-focus-bg-inverse-success: var(--pgn-color-btn-bg-inverse-success); + --pgn-color-btn-focus-bg-inverse-secondary: var(--pgn-color-btn-bg-inverse-secondary); + --pgn-color-btn-focus-bg-inverse-info: var(--pgn-color-btn-bg-inverse-info); + --pgn-color-btn-focus-bg-inverse-danger: var(--pgn-color-btn-bg-inverse-danger); + --pgn-color-btn-focus-border-warning: var(--pgn-color-btn-border-warning); + --pgn-color-btn-focus-border-success: var(--pgn-color-btn-border-success); + --pgn-color-btn-focus-border-info: var(--pgn-color-btn-border-info); + --pgn-color-btn-focus-border-danger: var(--pgn-color-btn-focus-bg-danger); + --pgn-color-btn-focus-text-warning: var(--pgn-color-btn-text-warning); + --pgn-color-btn-focus-text-success: var(--pgn-color-btn-text-success); + --pgn-color-btn-focus-text-secondary: var(--pgn-color-btn-text-secondary); + --pgn-color-btn-focus-text-info: var(--pgn-color-btn-text-info); + --pgn-color-btn-focus-text-danger: var(--pgn-color-btn-text-danger); + --pgn-color-btn-active-border-outline-warning: var(--pgn-color-theme-active-warning); + --pgn-color-btn-active-border-warning: var(--pgn-color-theme-active-warning); + --pgn-color-btn-active-border-outline-success: var(--pgn-color-theme-active-success); + --pgn-color-btn-active-border-success: var(--pgn-color-theme-active-success); + --pgn-color-btn-active-border-outline-secondary: var(--pgn-color-theme-active-secondary); + --pgn-color-btn-active-border-secondary: var(--pgn-color-theme-active-secondary); + --pgn-color-btn-active-border-outline-info: var(--pgn-color-theme-active-info); + --pgn-color-btn-active-border-info: var(--pgn-color-theme-active-info); + --pgn-color-btn-active-border-outline-danger: var(--pgn-color-theme-active-danger); + --pgn-color-btn-active-border-danger: var(--pgn-color-theme-active-danger); + --pgn-color-btn-active-bg-inverse-outline-warning: var(--pgn-color-theme-bg-warning); + --pgn-color-btn-active-bg-outline-warning: var(--pgn-color-theme-bg-warning); + --pgn-color-btn-active-bg-warning: var(--pgn-color-theme-active-warning); + --pgn-color-btn-active-bg-inverse-outline-success: var(--pgn-color-theme-bg-success); + --pgn-color-btn-active-bg-outline-success: var(--pgn-color-theme-bg-success); + --pgn-color-btn-active-bg-success: var(--pgn-color-theme-active-success); + --pgn-color-btn-active-bg-inverse-outline-secondary: var(--pgn-color-theme-bg-secondary); + --pgn-color-btn-active-bg-outline-secondary: var(--pgn-color-theme-bg-secondary); + --pgn-color-btn-active-bg-secondary: var(--pgn-color-theme-active-secondary); + --pgn-color-btn-active-bg-inverse-outline-info: var(--pgn-color-theme-bg-info); + --pgn-color-btn-active-bg-outline-info: var(--pgn-color-theme-bg-info); + --pgn-color-btn-active-bg-info: var(--pgn-color-theme-active-info); + --pgn-color-btn-active-bg-inverse-outline-danger: var(--pgn-color-theme-bg-danger); + --pgn-color-btn-active-bg-outline-danger: var(--pgn-color-theme-bg-danger); + --pgn-color-btn-active-bg-danger: var(--pgn-color-theme-active-danger); + --pgn-color-btn-active-text-inverse-outline-primary: #454545FF; + --pgn-color-btn-active-text-outline-primary: #454545FF; + --pgn-color-btn-active-text-primary: #FFFFFFFF; + --pgn-color-btn-active-text-inverse-outline-light: #454545FF; + --pgn-color-btn-active-text-outline-light: #454545FF; + --pgn-color-btn-active-text-light: #454545FF; + --pgn-color-btn-active-text-inverse-outline-dark: #454545FF; + --pgn-color-btn-active-text-outline-dark: #454545FF; + --pgn-color-btn-active-text-dark: #FFFFFFFF; + --pgn-color-btn-active-text-inverse-outline-brand: #454545FF; + --pgn-color-btn-active-text-outline-brand: #454545FF; + --pgn-color-btn-active-text-brand: #FFFFFFFF; + --pgn-color-btn-hover-border-warning: var(--pgn-color-theme-hover-warning); + --pgn-color-btn-hover-border-success: var(--pgn-color-theme-hover-success); + --pgn-color-btn-hover-border-secondary: var(--pgn-color-theme-hover-secondary); + --pgn-color-btn-hover-border-info: var(--pgn-color-theme-hover-info); + --pgn-color-btn-hover-border-danger: var(--pgn-color-theme-hover-danger); + --pgn-color-btn-hover-bg-inverse-warning: #323232FF; + --pgn-color-btn-hover-bg-warning: var(--pgn-color-theme-hover-warning); + --pgn-color-btn-hover-bg-inverse-success: #ECECECFF; + --pgn-color-btn-hover-bg-success: var(--pgn-color-theme-hover-success); + --pgn-color-btn-hover-bg-inverse-secondary: #ECECECFF; + --pgn-color-btn-hover-bg-secondary: var(--pgn-color-theme-hover-secondary); + --pgn-color-btn-hover-bg-inverse-info: #ECECECFF; + --pgn-color-btn-hover-bg-info: var(--pgn-color-theme-hover-info); + --pgn-color-btn-hover-bg-inverse-danger: #ECECECFF; + --pgn-color-btn-hover-bg-danger: var(--pgn-color-theme-hover-danger); + --pgn-color-btn-hover-text-inverse-outline-warning: var(--pgn-color-theme-hover-warning); + --pgn-color-btn-hover-text-outline-warning: var(--pgn-color-theme-hover-warning); + --pgn-color-btn-hover-text-inverse-outline-success: var(--pgn-color-theme-hover-success); + --pgn-color-btn-hover-text-outline-success: var(--pgn-color-theme-hover-success); + --pgn-color-btn-hover-text-inverse-outline-secondary: var(--pgn-color-theme-hover-secondary); + --pgn-color-btn-hover-text-outline-secondary: var(--pgn-color-theme-hover-secondary); + --pgn-color-btn-hover-text-primary: #FFFFFFFF; + --pgn-color-btn-hover-text-light: #454545FF; + --pgn-color-btn-hover-text-inverse-outline-info: var(--pgn-color-theme-hover-info); + --pgn-color-btn-hover-text-outline-info: var(--pgn-color-theme-hover-info); + --pgn-color-btn-hover-text-dark: #FFFFFFFF; + --pgn-color-btn-hover-text-inverse-outline-danger: var(--pgn-color-theme-hover-danger); + --pgn-color-btn-hover-text-outline-danger: var(--pgn-color-theme-hover-danger); + --pgn-color-btn-hover-text-brand: #FFFFFFFF; + --pgn-color-alert-border-warning: var(--pgn-color-theme-border-warning); + --pgn-color-alert-border-danger: var(--pgn-color-theme-border-danger); + --pgn-color-alert-border-info: var(--pgn-color-theme-border-info); + --pgn-color-alert-border-success: var(--pgn-color-theme-border-success); + --pgn-color-alert-bg-warning: var(--pgn-color-theme-bg-warning); + --pgn-color-alert-bg-danger: var(--pgn-color-theme-bg-danger); + --pgn-color-alert-bg-info: var(--pgn-color-theme-bg-info); + --pgn-color-alert-bg-success: var(--pgn-color-theme-bg-success); + --pgn-color-alert-icon-warning: var(--pgn-color-theme-default-warning); + --pgn-color-alert-icon-danger: var(--pgn-color-theme-default-danger); + --pgn-color-alert-icon-info: var(--pgn-color-theme-default-info); + --pgn-color-alert-icon-success: var(--pgn-color-theme-default-success); + --pgn-other-content-form-control-checkbox-indicator-indeterminate-icon: url("data:image/svg+xml,"); + --pgn-color-pagination-text-hover: var(--pgn-color-link-hover); + --pgn-color-link-inline-hover-decoration: var(--pgn-color-link-inline-hover-base); + --pgn-color-btn-disabled-text-outline-danger: var(--pgn-color-btn-hover-text-outline-danger); + --pgn-color-btn-active-text-inverse-outline-warning: #454545FF; + --pgn-color-btn-active-text-outline-warning: #454545FF; + --pgn-color-btn-active-text-warning: #FFFFFFFF; + --pgn-color-btn-active-text-inverse-outline-success: #454545FF; + --pgn-color-btn-active-text-outline-success: #454545FF; + --pgn-color-btn-active-text-success: #FFFFFFFF; + --pgn-color-btn-active-text-inverse-outline-secondary: #454545FF; + --pgn-color-btn-active-text-outline-secondary: #454545FF; + --pgn-color-btn-active-text-secondary: #FFFFFFFF; + --pgn-color-btn-active-text-inverse-outline-info: #454545FF; + --pgn-color-btn-active-text-outline-info: #454545FF; + --pgn-color-btn-active-text-info: #FFFFFFFF; + --pgn-color-btn-active-text-inverse-outline-danger: #454545FF; + --pgn-color-btn-active-text-outline-danger: #454545FF; + --pgn-color-btn-active-text-danger: #FFFFFFFF; + --pgn-color-btn-hover-text-warning: #454545FF; + --pgn-color-btn-hover-text-success: #FFFFFFFF; + --pgn-color-btn-hover-text-secondary: #FFFFFFFF; + --pgn-color-btn-hover-text-info: #FFFFFFFF; + --pgn-color-btn-hover-text-danger: #FFFFFFFF; +} diff --git a/scss/core/utilities-only.scss b/scss/core/utilities-only.scss index 78c2c45664..9d57a2486c 100644 --- a/scss/core/utilities-only.scss +++ b/scss/core/utilities-only.scss @@ -1,6 +1,7 @@ @import "functions"; @import "variables"; @import "~bootstrap/scss/mixins"; +@import "./bootstrap-override/mixins"; @import "grid"; @import "~bootstrap/scss/transitions"; @import "utilities"; diff --git a/src/ActionRow/_variables.scss b/src/ActionRow/_variables.scss index 37b2d3913d..b7600f13e6 100644 --- a/src/ActionRow/_variables.scss +++ b/src/ActionRow/_variables.scss @@ -1,2 +1,2 @@ -$action-row-gap-x: .5rem !default; -$action-row-gap-y: .5rem !default; +$action-row-gap-x: var(--pgn-spacing-action-row-gap-x) !default; +$action-row-gap-y: var(--pgn-spacing-action-row-gap-y) !default; diff --git a/src/Alert/Alert.scss b/src/Alert/Alert.scss index c17ad75a07..747dae77f8 100644 --- a/src/Alert/Alert.scss +++ b/src/Alert/Alert.scss @@ -14,7 +14,9 @@ position: relative; padding: $alert-padding-y $alert-padding-x; margin-bottom: $alert-margin-bottom; - border: $alert-border-width solid transparent; + border: $alert-border-width solid var(--pgn-alert-border-color, transparent); + color: inherit; + background-color: var(--pgn-alert-bg, transparent); @include border-radius($alert-border-radius); @include pgn-box-shadow(1, "down"); @@ -24,6 +26,7 @@ } .alert-icon { + color: var(--pgn-alert-icon-color, inherit); float: left; margin-inline-end: $alert-icon-space; width: 1.5rem; @@ -68,7 +71,7 @@ // Baking in $close-font-size: $font-size-base * 1.5 !default; to avoid any dependency .alert-dismissible { - padding-right: ($font-size-base * 1.5) + $alert-padding-x * 2; + padding-right: calc((#{$font-size-base} * 1.5) + (#{$alert-padding-x} * 2)); // Adjust close link position .close { @@ -96,17 +99,27 @@ } // Alternate styles -// -// Generate contextual modifier classes for coloring the alert. -@each $color, $value in $theme-colors { - .alert-#{$color} { - color: inherit; - background-color: theme-color($color, "background"); - border-color: theme-color($color, "border"); +.alert-success { + --pgn-alert-bg: #{$alert-success-bg}; + --pgn-alert-border-color: #{$alert-success-border-color}; + --pgn-alert-icon-color: #{$alert-success-icon-color}; +} - .alert-icon { - color: theme-color($color, "default"); - } - } +.alert-info { + --pgn-alert-bg: #{$alert-info-bg}; + --pgn-alert-border-color: #{$alert-info-border-color}; + --pgn-alert-icon-color: #{$alert-info-icon-color}; +} + +.alert-danger { + --pgn-alert-bg: #{$alert-danger-bg}; + --pgn-alert-border-color: #{$alert-danger-border-color}; + --pgn-alert-icon-color: #{$alert-danger-icon-color}; +} + +.alert-warning { + --pgn-alert-bg: #{$alert-warning-bg}; + --pgn-alert-border-color: #{$alert-warning-border-color}; + --pgn-alert-icon-color: #{$alert-warning-icon-color}; } diff --git a/src/Alert/_variables.scss b/src/Alert/_variables.scss index 493a06fece..07af4da07a 100644 --- a/src/Alert/_variables.scss +++ b/src/Alert/_variables.scss @@ -2,23 +2,35 @@ // // Define alert colors, border radius, and padding. -$alert-padding-y: 1.5rem !default; -$alert-padding-x: 1.5rem !default; -$alert-margin-bottom: 1rem !default; -$alert-border-radius: $border-radius !default; -$alert-link-font-weight: $font-weight-normal !default; -$alert-border-width: 0 !default; -$alert-title-color: #000000 !default; -$alert-box-shadow: 0 1px 2px rgba(0, 0, 0, .15), 0 1px 4px rgba(0, 0, 0, .15) !default; - -$alert-bg-level: -10 !default; -$alert-border-level: -9 !default; -$alert-color-level: 6 !default; - -$alert-icon-space: .8rem !default; - -$alert-font-size: .875rem !default; -$alert-line-height: 1.5rem !default; -$alert-content-color: $gray-700 !default; - -$alert-actions-gap: map-get($spacers, 3); +$alert-padding-y: var(--pgn-spacing-alert-padding-y) !default; +$alert-padding-x: var(--pgn-spacing-alert-padding-x) !default; +$alert-margin-bottom: var(--pgn-spacing-alert-margin-bottom) !default; +$alert-border-radius: var(--pgn-size-alert-border-radius) !default; +$alert-link-font-weight: var(--pgn-typography-alert-font-weight-link) !default; +$alert-border-width: var(--pgn-size-alert-border-width) !default; +$alert-title-color: var(--pgn-color-alert-title) !default; +$alert-box-shadow: var(--pgn-elevation-alert-box-shadow) !default; + +$alert-icon-space: var(--pgn-spacing-alert-icon-space) !default; + +$alert-font-size: var(--pgn-typography-alert-font-size) !default; +$alert-line-height: var(--pgn-typography-alert-line-height) !default; +$alert-content-color: var(--pgn-color-alert-content) !default; + +$alert-actions-gap: var(--pgn-spacing-alert-actions-gap) !default; + +$alert-success-border-color: var(--pgn-color-alert-border-success) !default; +$alert-success-bg: var(--pgn-color-alert-bg-success) !default; +$alert-success-icon-color: var(--pgn-color-alert-icon-success) !default; + +$alert-info-border-color: var(--pgn-color-alert-border-info) !default; +$alert-info-bg: var(--pgn-color-alert-bg-info) !default; +$alert-info-icon-color: var(--pgn-color-alert-icon-info) !default; + +$alert-danger-border-color: var(--pgn-color-alert-border-danger) !default; +$alert-danger-bg: var(--pgn-color-alert-bg-danger) !default; +$alert-danger-icon-color: var(--pgn-color-alert-icon-danger) !default; + +$alert-warning-border-color: var(--pgn-color-alert-border-warning) !default; +$alert-warning-bg: var(--pgn-color-alert-bg-warning) !default; +$alert-warning-icon-color: var(--pgn-color-alert-icon-warning) !default; diff --git a/src/Annotation/Annotation.scss b/src/Annotation/Annotation.scss index bdfefa7136..d8257efe15 100644 --- a/src/Annotation/Annotation.scss +++ b/src/Annotation/Annotation.scss @@ -1,50 +1,54 @@ @import "variables"; -@mixin triangle($color, $direction) { +@mixin triangle($triangle-color, $triangle-direction) { + content: ""; height: 0; width: 0; position: absolute; - content: ""; border: solid transparent; - @if $direction == top { - border-bottom-color: $color; + @if $triangle-direction == top { + border-bottom-color: $triangle-color; border-width: 0 $annotation-arrow-border-width $annotation-arrow-border-width; right: 0; left: 0; - top: -$annotation-arrow-border-width; + top: calc(#{$annotation-arrow-border-width} * -1); margin: 0 auto; } - @else if $direction == right { - border-left-color: $color; - border-width: $annotation-arrow-border-width 0 $annotation-arrow-border-width $annotation-arrow-border-width; + @else if $triangle-direction == right { + border-left-color: $triangle-color; + border-width: + $annotation-arrow-border-width 0 $annotation-arrow-border-width + $annotation-arrow-border-width; top: 0; bottom: 0; - right: -$annotation-arrow-border-width; + right: calc(#{$annotation-arrow-border-width} * -1); margin: auto 0; } - @else if $direction == bottom { - border-top-color: $color; + @else if $triangle-direction == bottom { + border-top-color: $triangle-color; border-width: $annotation-arrow-border-width $annotation-arrow-border-width 0; right: 0; left: 0; - bottom: -$annotation-arrow-border-width; + bottom: calc(#{$annotation-arrow-border-width} * -1); margin: 0 auto; } - @else if $direction == left { - border-right-color: $color; - border-width: $annotation-arrow-border-width $annotation-arrow-border-width $annotation-arrow-border-width 0; + @else if $triangle-direction == left { + border-right-color: $triangle-color; + border-width: + $annotation-arrow-border-width $annotation-arrow-border-width + $annotation-arrow-border-width 0; top: 0; bottom: 0; - left: -$annotation-arrow-border-width; + left: calc(#{$annotation-arrow-border-width} * -1); margin: auto 0; } @else { - @error "Unknown direction #{$direction}."; + @error "Unknown direction #{$triangle-direction}."; } } @@ -70,17 +74,17 @@ $arrow-directions: top, right, bottom, left; color: map-get($colors, "color"); // set additional margin to arrow side of the Annotation - margin-#{$direction}: $annotation-arrow-border-width + $annotation-arrow-side-margin; + margin-#{$direction}: calc(#{$annotation-arrow-border-width} + #{$annotation-arrow-side-margin}); [dir="rtl"] & { @if $direction == left { margin-left: 0; - margin-right: $annotation-arrow-border-width + $annotation-arrow-side-margin; + margin-right: calc(#{$annotation-arrow-border-width} + #{$annotation-arrow-side-margin}); } @else if $direction == right { margin-right: 0; - margin-left: $annotation-arrow-border-width + $annotation-arrow-side-margin; + margin-left: calc(#{$annotation-arrow-border-width} + #{$annotation-arrow-side-margin}); } } @@ -90,7 +94,7 @@ $arrow-directions: top, right, bottom, left; [dir="rtl"] & { @if $direction == left { left: initial; - right: -$annotation-arrow-border-width; + right: calc(#{$annotation-arrow-border-width} * -1); border-width: $annotation-arrow-border-width 0 $annotation-arrow-border-width $annotation-arrow-border-width; @@ -99,7 +103,7 @@ $arrow-directions: top, right, bottom, left; @else if $direction == right { right: initial; - left: -$annotation-arrow-border-width; + left: calc(#{$annotation-arrow-border-width} * -1); border-width: $annotation-arrow-border-width $annotation-arrow-border-width $annotation-arrow-border-width 0; diff --git a/src/Annotation/_variables.scss b/src/Annotation/_variables.scss index dfe1de4e58..1486c0f497 100644 --- a/src/Annotation/_variables.scss +++ b/src/Annotation/_variables.scss @@ -1,18 +1,32 @@ -$annotation-padding: .5rem !default; -$annotation-box-shadow: drop-shadow(0 2px 4px rgba(0, 0, 0, .15)) - drop-shadow(0 2px 8px rgba(0, 0, 0, .15)) !default; -$annotation-border-radius: .25rem !default; -$annotation-max-width: 18.75rem !default; -$annotation-font-size: $font-size-sm !default; -$annotation-line-height: $line-height-sm !default; +$annotation-padding: var(--pgn-spacing-annotation-padding) !default; +$annotation-box-shadow: var(--pgn-elevation-annotation-box-shadow) !default; +$annotation-border-radius: var(--pgn-size-annotation-border-radius) !default; +$annotation-max-width: var(--pgn-size-annotation-max-width) !default; +$annotation-font-size: var(--pgn-typography-annotation-font-size) !default; +$annotation-line-height: var(--pgn-typography-annotation-line-height) !default; + +$annotation-success-color: var(--pgn-color-annotation-text-success) !default; +$annotation-success-bg: var(--pgn-color-annotation-bg-success) !default; + +$annotation-warning-color: var(--pgn-color-annotation-text-warning) !default; +$annotation-warning-bg: var(--pgn-color-annotation-bg-warning) !default; + +$annotation-error-color: var(--pgn-color-annotation-text-error) !default; +$annotation-error-bg: var(--pgn-color-annotation-bg-error) !default; + +$annotation-light-color: var(--pgn-color-annotation-text-light) !default; +$annotation-light-bg: var(--pgn-color-annotation-bg-light) !default; + +$annotation-dark-color: var(--pgn-color-annotation-text-dark) !default; +$annotation-dark-bg: var(--pgn-color-annotation-bg-dark) !default; $annotation-variants: ( - "success": ( "background-color": $success, "color": $white ), - "warning": ( "background-color": $accent-b, "color": $black ), - "error": ( "background-color": $danger, "color": $white ), - "light": ( "background-color": $white, "color": $primary-500 ), - "dark": ( "background-color": $dark, "color": $white ), + "success": ( "background-color": $annotation-success-bg, "color": $annotation-success-color ), + "warning": ( "background-color": $annotation-warning-bg, "color": $annotation-warning-color ), + "error": ( "background-color": $annotation-error-bg, "color": $annotation-error-color ), + "light": ( "background-color": $annotation-light-bg, "color": $annotation-light-color ), + "dark": ( "background-color": $annotation-dark-bg, "color": $annotation-dark-color ), ) !default; -$annotation-arrow-side-margin: .25rem !default; -$annotation-arrow-border-width: .5rem !default; +$annotation-arrow-side-margin: var(--pgn-spacing-annotation-arrow-side-margin) !default; +$annotation-arrow-border-width: var(--pgn-size-annotation-arrow-border-width) !default; diff --git a/src/Avatar/Avatar.scss b/src/Avatar/Avatar.scss index 9386a97960..151e533c5f 100644 --- a/src/Avatar/Avatar.scss +++ b/src/Avatar/Avatar.scss @@ -2,7 +2,7 @@ .pgn__avatar { border-radius: $avatar-border-radius; - border: $avatar-border; + border: solid $avatar-border $avatar-color-border; display: inline-block; height: $avatar-size; overflow: hidden; diff --git a/src/Avatar/_variables.scss b/src/Avatar/_variables.scss index 1d38482cab..66256a2fbc 100644 --- a/src/Avatar/_variables.scss +++ b/src/Avatar/_variables.scss @@ -1,10 +1,11 @@ -$avatar-border-radius: 100% !default; -$avatar-border: solid 1px $light-300 !default; +$avatar-border-radius: var(--pgn-size-avatar-border-radius) !default; +$avatar-border: var(--pgn-size-avatar-border-base) !default; +$avatar-color-border: var(--pgn-color-avatar-border) !default; -$avatar-size-xs: 1.5rem !default; -$avatar-size-sm: 2.25rem !default; -$avatar-size: 3rem !default; -$avatar-size-lg: 4rem !default; -$avatar-size-xl: 6rem !default; -$avatar-size-xxl: 11.5rem !default; -$avatar-size-huge: 18.75rem !default; +$avatar-size-xs: var(--pgn-size-avatar-xs) !default; +$avatar-size-sm: var(--pgn-size-avatar-sm) !default; +$avatar-size: var(--pgn-size-avatar-base) !default; +$avatar-size-lg: var(--pgn-size-avatar-lg) !default; +$avatar-size-xl: var(--pgn-size-avatar-xl) !default; +$avatar-size-xxl: var(--pgn-size-avatar-xxl) !default; +$avatar-size-huge: var(--pgn-size-avatar-huge) !default; diff --git a/src/AvatarButton/README.md b/src/AvatarButton/README.md index 3ecfd38744..6b29bbad13 100644 --- a/src/AvatarButton/README.md +++ b/src/AvatarButton/README.md @@ -20,13 +20,13 @@ A button that contains the user’s Avatar. ```jsx live <>
- Casey + Casey
- Casey + Casey
- Casey + Casey
``` @@ -36,7 +36,7 @@ A button that contains the user’s Avatar. ```jsx live - + Casey @@ -55,7 +55,7 @@ Props set on Dropdown.Toggle get passed through to the "as" component ```jsx live - + Casey @@ -77,17 +77,17 @@ For use in mobile viewports or constrained views. ```jsx live <>
- Casey + Casey
- Casey + Casey
- Casey + Casey
- + Casey diff --git a/src/AvatarButton/_variables.scss b/src/AvatarButton/_variables.scss index cf568ae127..3b4f0fa1b1 100644 --- a/src/AvatarButton/_variables.scss +++ b/src/AvatarButton/_variables.scss @@ -1,3 +1,3 @@ -$avatar-button-padding-left: .25em !default; -$avatar-button-padding-left-sm: .25em !default; -$avatar-button-padding-left-lg: .25em !default; +$avatar-button-padding-left: var(--pgn-spacing-avatar-button-padding-left-base) !default; +$avatar-button-padding-left-sm: var(--pgn-spacing-avatar-button-padding-left-sm) !default; +$avatar-button-padding-left-lg: var(--pgn-spacing-avatar-button-padding-left-lg) !default; diff --git a/src/Badge/Badge.scss b/src/Badge/Badge.scss index c019627d0e..2a18461937 100644 --- a/src/Badge/Badge.scss +++ b/src/Badge/Badge.scss @@ -1,2 +1,114 @@ @import "variables"; -@import "~bootstrap/scss/badge"; + +.badge { + display: inline-block; + padding: $badge-padding-y $badge-padding-x; + color: var(--pgn-badge-color, inherit); + background-color: var(--pgn-badge-bg-color, transparent); + + @include font-size($badge-font-size); + + font-weight: $badge-font-weight; + line-height: 1; + text-align: center; + white-space: nowrap; + vertical-align: baseline; + transition: $badge-transition; + + @include border-radius($badge-border-radius); + + @at-root a#{&} { + &:hover, + &:focus { + text-decoration: none; + color: var(--pgn-badge-focus-color, inherit); + background-color: var(--pgn-badge-focus-bg-color, transparent); + } + + &:focus, + &.focus { + outline: 0; + box-shadow: 0 0 0 $badge-focus-width var(--pgn-badge-focus-box-shadow-color, rgba(0, 0, 0, .15)); + } + } + + &:empty { + display: none; + } +} + +.btn .badge { + position: relative; + top: -1px; +} + +.badge-pill { + padding-right: $badge-pill-padding-x; + padding-left: $badge-pill-padding-x; + + @include border-radius($badge-pill-border-radius); +} + +.badge-primary { + --pgn-badge-color: #{$badge-primary-color}; + --pgn-badge-bg-color: #{$badge-primary-bg}; + --pgn-badge-focus-color: #{$badge-primary-focus-color}; + --pgn-badge-focus-bg-color: #{$badge-primary-focus-bg}; + --pgn-badge-focus-box-shadow-color: #{$badge-primary-focus-box-shadow-color}; +} + +.badge-secondary { + --pgn-badge-color: #{$badge-secondary-color}; + --pgn-badge-bg-color: #{$badge-secondary-bg}; + --pgn-badge-focus-color: #{$badge-secondary-focus-color}; + --pgn-badge-focus-bg-color: #{$badge-secondary-focus-bg}; + --pgn-badge-focus-box-shadow-color: #{$badge-secondary-focus-box-shadow-color}; +} + +.badge-success { + --pgn-badge-color: #{$badge-success-color}; + --pgn-badge-bg-color: #{$badge-success-bg}; + --pgn-badge-focus-color: #{$badge-success-focus-color}; + --pgn-badge-focus-bg-color: #{$badge-success-focus-bg}; + --pgn-badge-focus-box-shadow-color: #{$badge-success-focus-box-shadow-color}; +} + +.badge-danger { + --pgn-badge-color: #{$badge-danger-color}; + --pgn-badge-bg-color: #{$badge-danger-bg}; + --pgn-badge-focus-color: #{$badge-danger-focus-color}; + --pgn-badge-focus-bg-color: #{$badge-danger-focus-bg}; + --pgn-badge-focus-box-shadow-color: #{$badge-danger-focus-box-shadow-color}; +} + +.badge-warning { + --pgn-badge-color: #{$badge-warning-color}; + --pgn-badge-bg-color: #{$badge-warning-bg}; + --pgn-badge-focus-color: #{$badge-warning-focus-color}; + --pgn-badge-focus-bg-color: #{$badge-warning-focus-bg}; + --pgn-badge-focus-box-shadow-color: #{$badge-warning-focus-box-shadow-color}; +} + +.badge-info { + --pgn-badge-color: #{$badge-info-color}; + --pgn-badge-bg-color: #{$badge-info-bg}; + --pgn-badge-focus-color: #{$badge-info-focus-color}; + --pgn-badge-focus-bg-color: #{$badge-info-focus-bg}; + --pgn-badge-focus-box-shadow-color: #{$badge-info-focus-box-shadow-color}; +} + +.badge-light { + --pgn-badge-color: #{$badge-light-color}; + --pgn-badge-bg-color: #{$badge-light-bg}; + --pgn-badge-focus-color: #{$badge-light-focus-color}; + --pgn-badge-focus-bg-color: #{$badge-light-focus-bg}; + --pgn-badge-focus-box-shadow-color: #{$badge-light-focus-box-shadow-color}; +} + +.badge-dark { + --pgn-badge-color: #{$badge-dark-color}; + --pgn-badge-bg-color: #{$badge-dark-bg}; + --pgn-badge-focus-color: #{$badge-dark-focus-color}; + --pgn-badge-focus-bg-color: #{$badge-dark-focus-bg}; + --pgn-badge-focus-box-shadow-color: #{$badge-dark-focus-box-shadow-color}; +} diff --git a/src/Badge/_variables.scss b/src/Badge/_variables.scss index 6067ea7d8a..676ce0e64a 100644 --- a/src/Badge/_variables.scss +++ b/src/Badge/_variables.scss @@ -1,16 +1,64 @@ // Badges -$badge-font-size: 75% !default; -$badge-font-weight: $font-weight-bold !default; -$badge-padding-y: .125rem !default; -$badge-padding-x: .5rem !default; -$badge-border-radius: .25rem !default; +$badge-font-size: var(--pgn-typography-badge-font-size) !default; +$badge-font-weight: var(--pgn-typography-badge-font-weight) !default; +$badge-padding-y: var(--pgn-spacing-badge-padding-y) !default; +$badge-padding-x: var(--pgn-spacing-badge-padding-x-base) !default; +$badge-border-radius: var(--pgn-size-badge-border-radius-base) !default; -$badge-transition: none !default; -$badge-focus-width: $input-btn-focus-width !default; +$badge-transition: var(--pgn-transition-badge) !default; +$badge-focus-width: var(--pgn-size-badge-focus-width) !default; -$badge-pill-padding-x: .6em !default; +$badge-pill-padding-x: var(--pgn-spacing-badge-padding-x-pill) !default; // Use a higher than normal value to ensure completely rounded edges when // customizing padding or font-size on labels. -$badge-pill-border-radius: 10rem !default; +$badge-pill-border-radius: var(--pgn-size-badge-border-radius-pill) !default; + +$badge-primary-color: var(--pgn-color-badge-text-primary) !default; +$badge-primary-bg: var(--pgn-color-badge-bg-primary) !default; +$badge-primary-focus-color: var(--pgn-color-badge-focus-primary) !default; +$badge-primary-focus-bg: var(--pgn-color-badge-focus-bg-primary) !default; +$badge-primary-focus-box-shadow-color: var(--pgn-color-badge-focus-box-shadow-primary) !default; + +$badge-secondary-color: var(--pgn-color-badge-text-secondary) !default; +$badge-secondary-bg: var(--pgn-color-badge-bg-secondary) !default; +$badge-secondary-focus-color: var(--pgn-color-badge-focus-secondary) !default; +$badge-secondary-focus-bg: var(--pgn-color-badge-focus-bg-secondary) !default; +$badge-secondary-focus-box-shadow-color: var(--pgn-color-badge-focus-box-shadow-secondary) !default; + +$badge-success-color: var(--pgn-color-badge-text-success) !default; +$badge-success-bg: var(--pgn-color-badge-bg-success) !default; +$badge-success-focus-color: var(--pgn-color-badge-focus-success) !default; +$badge-success-focus-bg: var(--pgn-color-badge-focus-bg-success) !default; +$badge-success-focus-box-shadow-color: var(--pgn-color-badge-focus-box-shadow-success) !default; + +$badge-danger-color: var(--pgn-color-badge-text-danger) !default; +$badge-danger-bg: var(--pgn-color-badge-bg-danger) !default; +$badge-danger-focus-color: var(--pgn-color-badge-focus-danger) !default; +$badge-danger-focus-bg: var(--pgn-color-badge-focus-bg-danger) !default; +$badge-danger-focus-box-shadow-color: var(--pgn-color-badge-focus-box-shadow-danger) !default; + +$badge-warning-color: var(--pgn-color-badge-text-warning) !default; +$badge-warning-bg: var(--pgn-color-badge-bg-warning) !default; +$badge-warning-focus-color: var(--pgn-color-badge-focus-warning) !default; +$badge-warning-focus-bg: var(--pgn-color-badge-focus-bg-warning) !default; +$badge-warning-focus-box-shadow-color: var(--pgn-color-badge-focus-box-shadow-warning) !default; + +$badge-info-color: var(--pgn-color-badge-text-info) !default; +$badge-info-bg: var(--pgn-color-badge-bg-info) !default; +$badge-info-focus-color: var(--pgn-color-badge-focus-info) !default; +$badge-info-focus-bg: var(--pgn-color-badge-focus-bg-info) !default; +$badge-info-focus-box-shadow-color: var(--pgn-color-badge-focus-box-shadow-info) !default; + +$badge-light-color: var(--pgn-color-badge-text-light) !default; +$badge-light-bg: var(--pgn-color-badge-bg-light) !default; +$badge-light-focus-color: var(--pgn-color-badge-focus-light) !default; +$badge-light-focus-bg: var(--pgn-color-badge-focus-bg-light) !default; +$badge-light-focus-box-shadow-color: var(--pgn-color-badge-focus-box-shadow-light) !default; + +$badge-dark-color: var(--pgn-color-badge-text-dark) !default; +$badge-dark-bg: var(--pgn-color-badge-bg-dark) !default; +$badge-dark-focus-color: var(--pgn-color-badge-focus-dark) !default; +$badge-dark-focus-bg: var(--pgn-color-badge-focus-bg-dark) !default; +$badge-dark-focus-box-shadow-color: var(--pgn-color-badge-focus-box-shadow-dark) !default; diff --git a/src/Breadcrumb/Breadcrumb.scss b/src/Breadcrumb/Breadcrumb.scss index b8a8e18689..7a301d4d7d 100644 --- a/src/Breadcrumb/Breadcrumb.scss +++ b/src/Breadcrumb/Breadcrumb.scss @@ -1,5 +1,4 @@ @import "variables"; -@import "~bootstrap/scss/breadcrumb"; .pgn__breadcrumb { .list-inline-item { @@ -20,10 +19,10 @@ &:focus::before { content: ""; position: absolute; - top: -$breadcrumb-border-focus-axis-y; - right: -$breadcrumb-border-focus-axis-x; - bottom: -$breadcrumb-border-focus-axis-y; - left: -$breadcrumb-border-focus-axis-x; + top: calc(#{$breadcrumb-border-focus-axis-y} * -1); + right: calc(#{$breadcrumb-border-focus-axis-x} * -1); + bottom: calc(#{$breadcrumb-border-focus-axis-y} * -1); + left: calc(#{$breadcrumb-border-focus-axis-x} * -1); border: $breadcrumb-border-focus-width solid $breadcrumb-color; border-radius: $breadcrumb-focus-border-radius; } @@ -62,20 +61,25 @@ } } - ol.is-mobile { - flex-direction: row-reverse; - justify-content: flex-end; + ol { + display: flex; + align-items: center; - .list-inline-item:not(:last-child) { - margin-right: 0; - margin-left: $breadcrumb-margin-left; - } + &.is-mobile { + flex-direction: row-reverse; + justify-content: flex-end; - .pgn__icon { - transform: scale(-1); + .list-inline-item:not(:last-child) { + margin-right: 0; + margin-left: $breadcrumb-margin-left; + } - [dir="rtl"] & { - transform: scale(1); + .pgn__icon { + transform: scale(-1); + + [dir="rtl"] & { + transform: scale(1); + } } } } diff --git a/src/Breadcrumb/Breadcrumb.test.jsx b/src/Breadcrumb/Breadcrumb.test.jsx index 4623a7dd55..9c0116a3e0 100644 --- a/src/Breadcrumb/Breadcrumb.test.jsx +++ b/src/Breadcrumb/Breadcrumb.test.jsx @@ -7,15 +7,15 @@ const baseProps = { links: [ { label: 'Link 1', - url: '/link-1', + href: '/link-1', }, { label: 'Link 2', - url: '/link-2', + href: '/link-2', }, { label: 'Link 3', - url: '/link-3', + href: '/link-3', }, ], }; @@ -75,4 +75,33 @@ describe('', () => { expect(listElements.length).toEqual(2); expect(list.hasClass('is-mobile')).toEqual(true); }); + + it('renders links as custom elements', () => { + wrapper = mount(); + + const list = wrapper.find('ol'); + const anchors = list.find('a'); + expect(anchors.length).toEqual(0); + + const customLinks = list.find('div'); + expect(customLinks.length).toEqual(3); + }); + + it('passes down link props to link elements', () => { + const linkProps = { + label: 'Link 1', + url: '/link-1', + className: 'my-link', + target: '_blank', + }; + + wrapper = mount(); + + const list = wrapper.find('ol'); + const renderedLink = list.find('a').first(); + + expect(renderedLink.hasClass('my-link')).toEqual(true); + expect(renderedLink.prop('target')).toEqual('_blank'); + expect(renderedLink.prop('href')).toEqual('/link-1'); + }); }); diff --git a/src/Breadcrumb/BreadcrumbLink.jsx b/src/Breadcrumb/BreadcrumbLink.jsx new file mode 100644 index 0000000000..e5d826a7d8 --- /dev/null +++ b/src/Breadcrumb/BreadcrumbLink.jsx @@ -0,0 +1,50 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +export default function BreadcrumbLink({ as, clickHandler, linkProps }) { + const { + label, + url, + className, + ...props + } = linkProps; + const addtlProps = {}; + + if (as === 'a' && url) { + // eslint-disable-next-line no-console + console.warn( + '[Deprecated]: using "url" parameter to specify link\'s destination in Breadcrumb component is ' + + 'deprecated. Please use "href" instead when rendering links as anchor tag.', + ); + addtlProps.href = url; + } + + if (clickHandler) { + addtlProps.onClick = clickHandler; + } + + return React.createElement( + as, + { + ...props, + ...addtlProps, + className: classNames('link-muted', className), + }, + label, + ); +} + +BreadcrumbLink.propTypes = { + as: PropTypes.elementType.isRequired, + clickHandler: PropTypes.func, + linkProps: PropTypes.shape({ + label: PropTypes.string.isRequired, + url: PropTypes.string, + className: PropTypes.string, + }).isRequired, +}; + +BreadcrumbLink.defaultProps = { + clickHandler: undefined, +}; diff --git a/src/Breadcrumb/README.md b/src/Breadcrumb/README.md index 6876fa3ebd..8f9665e827 100644 --- a/src/Breadcrumb/README.md +++ b/src/Breadcrumb/README.md @@ -18,14 +18,14 @@ Use as a secondary navigation pattern to help convey hierarchy and enable naviga ```jsx live () => { - const isExtraSmall = useMediaQuery({maxWidth: breakpoints.extraSmall.maxWidth}); + const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth }); return ( @@ -38,27 +38,27 @@ Use as a secondary navigation pattern to help convey hierarchy and enable naviga ```jsx live ``` -### Basic Usage (Inverse Pallete) +### Basic Usage (Inverse Palette) ```jsx live () => { - const isExtraSmall = useMediaQuery({maxWidth: breakpoints.extraSmall.maxWidth}); + const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth }); return (
{ + const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth }); + + return ( + + ) +} +``` + ## With active label ```jsx live () => { - const isExtraSmall = useMediaQuery({maxWidth: breakpoints.extraSmall.maxWidth}); + const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth }); return ( { - const isExtraSmall = useMediaQuery({maxWidth: breakpoints.extraSmall.maxWidth}); + const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth }); return ( /} isMobile={isExtraSmall} diff --git a/src/Breadcrumb/_variables.scss b/src/Breadcrumb/_variables.scss index 955751b0d7..4e5044d910 100644 --- a/src/Breadcrumb/_variables.scss +++ b/src/Breadcrumb/_variables.scss @@ -1,27 +1,27 @@ // Breadcrumbs -$breadcrumb-font-size: null !default; +$breadcrumb-font-size: var(--pgn-typography-breadcrumb-font-size) !default; -$breadcrumb-padding-y: .75rem !default; -$breadcrumb-padding-x: 1rem !default; -$breadcrumb-item-padding: .5rem !default; +$breadcrumb-padding-y: var(--pgn-spacing-breadcrumb-padding-y) !default; +$breadcrumb-padding-x: var(--pgn-spacing-breadcrumb-padding-x) !default; +$breadcrumb-item-padding: var(--pgn-spacing-breadcrumb-padding-item) !default; -$breadcrumb-margin-bottom: 1rem !default; -$breadcrumb-margin-left: .5rem !default; +$breadcrumb-margin-bottom: var(--pgn-spacing-breadcrumb-margin-bottom) !default; +$breadcrumb-margin-left: var(--pgn-spacing-breadcrumb-margin-left) !default; -$breadcrumb-border-focus-axis-x: .25rem !default; -$breadcrumb-border-focus-axis-y: .5rem !default; +$breadcrumb-border-focus-axis-x: var(--pgn-size-breadcrumb-border-axis-x-focus) !default; +$breadcrumb-border-focus-axis-y: var(--pgn-size-breadcrumb-border-axis-y-focus) !default; -$breadcrumb-border-focus-width: .0625rem !default; +$breadcrumb-border-focus-width: var(--pgn-size-breadcrumb-border-width-focus) !default; -$breadcrumb-bg: $gray-200 !default; -$breadcrumb-divider-color: $gray-600 !default; -$breadcrumb-active-color: $gray-500 !default; -$breadcrumb-inverse-active: $light-500 !default; -$breadcrumb-inverse-spacer: $light-700 !default; -$breadcrumb-color: $primary-500 !default; -$breadcrumb-inverse-color: $white !default; -$breadcrumb-divider: "/" !default; +$breadcrumb-bg: var(--pgn-color-breadcrumb-bg) !default; +$breadcrumb-divider-color: var(--pgn-color-breadcrumb-divider) !default; +$breadcrumb-active-color: var(--pgn-color-breadcrumb-active) !default; +$breadcrumb-inverse-active: var(--pgn-color-breadcrumb-inverse-active) !default; +$breadcrumb-inverse-spacer: var(--pgn-color-breadcrumb-inverse-spacer) !default; +$breadcrumb-color: var(--pgn-color-breadcrumb-base) !default; +$breadcrumb-inverse-color: var(--pgn-color-breadcrumb-inverse-base) !default; +$breadcrumb-divider: "/" !default; -$breadcrumb-border-radius: $border-radius !default; -$breadcrumb-focus-border-radius: .125rem !default; +$breadcrumb-border-radius: var(--pgn-size-breadcrumb-border-radius-base) !default; +$breadcrumb-focus-border-radius: var(--pgn-size-breadcrumb-border-radius-focus) !default; diff --git a/src/Breadcrumb/index.jsx b/src/Breadcrumb/index.jsx index 46397e8fcc..41cc7fd23d 100644 --- a/src/Breadcrumb/index.jsx +++ b/src/Breadcrumb/index.jsx @@ -2,22 +2,24 @@ import React from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; +import BreadcrumbLink from './BreadcrumbLink'; import { ChevronRight } from '../../icons'; import Icon from '../Icon'; function Breadcrumb({ - links, activeLabel, spacer, clickHandler, variant, isMobile, ariaLabel, + links, activeLabel, spacer, clickHandler, + variant, isMobile, ariaLabel, linkAs, }) { const linkCount = links.length; const displayLinks = isMobile ? [links[linkCount - 1]] : links; return (
{' '} - {' '} + {' '} + {' '} {' '}
@@ -170,55 +169,3 @@ For link to be `disabled`, it must have href defined with some value. ``` - -*** - -## Button/Deprecated - -### Basic Usage - -```jsx live -Hello World! -``` - -### Color Variants - -```jsx live -
- Primary - Success - Danger - Light - Dark -
-``` - -### Outline Variants - -```jsx live -
- Primary - Success - Danger -
-``` - -### Inverse Variants - -```jsx live -
- Primary - Success - Danger -
-``` - -### Link Variant - -```jsx live -
- Link with button container -
- Button with no horizontal padding -
-``` diff --git a/src/Button/_mixins.scss b/src/Button/_mixins.scss new file mode 100644 index 0000000000..04c182e669 --- /dev/null +++ b/src/Button/_mixins.scss @@ -0,0 +1,14 @@ +// OVERRIDE FROM BOOTSTRAP +// No changes made. We do this to keep all button related mixins together, +// +// Button sizes +@mixin button-size($padding-y, $padding-x, $font-size, $line-height, $border-radius) { + padding: $padding-y $padding-x; + + @include font-size($font-size); + + line-height: $line-height; + + // Manually declare to provide an override to the browser default + @include border-radius($border-radius, 0); +} diff --git a/src/Button/_variables.scss b/src/Button/_variables.scss index 525a3380a2..8ffb2faa12 100644 --- a/src/Button/_variables.scss +++ b/src/Button/_variables.scss @@ -1,45 +1,706 @@ -$btn-padding-y: $input-btn-padding-y !default; -$btn-padding-x: $input-btn-padding-x !default; -$btn-font-family: $input-btn-font-family !default; -$btn-font-size: $input-btn-font-size !default; -$btn-line-height: $input-btn-line-height !default; - -$btn-padding-y-sm: $input-btn-padding-y-sm !default; -$btn-padding-x-sm: $input-btn-padding-x-sm !default; -$btn-font-size-sm: $input-btn-font-size-sm !default; -$btn-line-height-sm: $input-btn-line-height-sm !default; - -$btn-padding-y-lg: $input-btn-padding-y-lg !default; -$btn-padding-x-lg: $input-btn-padding-x-lg !default; -$btn-font-size-lg: $input-btn-font-size-lg !default; -$btn-line-height-lg: $input-btn-line-height-lg !default; - -$btn-border-width: $input-btn-border-width !default; - -$btn-font-weight: $font-weight-normal !default; -$btn-box-shadow: inset 0 1px 0 rgba($white, .15), 0 1px 1px rgba($black, .075) !default; -$btn-focus-width: 2px !default; -$btn-focus-gap: 1px !default; -$btn-focus-box-shadow: $input-btn-focus-box-shadow !default; -$btn-disabled-opacity: .65 !default; -$btn-active-box-shadow: none; - -$btn-tertiary-color: $gray-700 !default; -$btn-tertiary-bg: transparent !default; -$btn-tertiary-hover-bg: $light-500 !default; -$btn-tertiary-active-bg: $light-500 !default; -$btn-inverse-tertiary-color: $white !default; -$btn-inverse-tertiary-bg: transparent !default; -$btn-inverse-tertiary-hover-bg: rgba(255, 255, 255, .1) !default; -$btn-inverse-tertiary-active-bg: rgba(255, 255, 255, .1) !default; - -$btn-link-disabled-color: theme-color("gray", "light-text") !default; - -$btn-block-spacing-y: .5rem !default; +// stylelint-disable max-line-length + +$btn-padding-y: var(--pgn-spacing-btn-padding-y-base) !default; +$btn-padding-x: var(--pgn-spacing-btn-padding-x-base) !default; +$btn-font-family: var(--pgn-typography-btn-font-family) !default; +$btn-font-size: var(--pgn-typography-btn-font-size-base) !default; +$btn-line-height: var(--pgn-typography-btn-line-height-base) !default; + +$btn-padding-y-sm: var(--pgn-spacing-btn-padding-y-sm) !default; +$btn-padding-x-sm: var(--pgn-spacing-btn-padding-x-sm) !default; +$btn-font-size-sm: var(--pgn-typography-btn-font-size-sm) !default; +$btn-line-height-sm: var(--pgn-typography-btn-line-height-sm) !default; + +$btn-padding-y-lg: var(--pgn-spacing-btn-padding-y-lg) !default; +$btn-padding-x-lg: var(--pgn-spacing-btn-padding-x-lg) !default; +$btn-font-size-lg: var(--pgn-typography-btn-font-size-lg) !default; +$btn-line-height-lg: var(--pgn-typography-btn-line-height-lg) !default; + +$btn-border-width: var(--pgn-size-btn-border-width) !default; + +$btn-font-weight: var(--pgn-typography-btn-font-weight) !default; +$btn-box-shadow: var(--pgn-elevation-btn-box-shadow-base) !default; +$btn-focus-width: var(--pgn-size-btn-focus-width) !default; +$btn-focus-gap: var(--pgn-spacing-btn-focus-gap) !default; +$btn-disabled-opacity: var(--pgn-other-btn-disabled-opacity) !default; +$btn-active-box-shadow: var(--pgn-elevation-btn-box-shadow-active) !default; + +$btn-link-disabled-color: var(--pgn-color-btn-disabled-link) !default; + +$btn-block-spacing-y: var(--pgn-spacing-btn-block-spacing-y) !default; // Allows for customizing button radius independently from global border radius -$btn-border-radius: $border-radius !default; -$btn-border-radius-lg: $border-radius-lg !default; -$btn-border-radius-sm: $border-radius-sm !default; +$btn-border-radius: var(--pgn-size-btn-border-radius-base) !default; +$btn-border-radius-lg: var(--pgn-size-btn-border-radius-lg) !default; +$btn-border-radius-sm: var(--pgn-size-btn-border-radius-sm) !default; + +$btn-transition: var(--pgn-transition-btn) !default; + +// PRIMARY BUTTON VARIABLES +$btn-primary-bg: var(--pgn-color-btn-bg-primary) !default; +$btn-primary-color: var(--pgn-color-btn-text-primary) !default; +$btn-primary-border-color: var(--pgn-color-btn-border-primary) !default; +$btn-primary-hover-bg: var(--pgn-color-btn-hover-bg-primary) !default; +$btn-primary-hover-color: var(--pgn-color-btn-hover-text-primary) !default; +$btn-primary-hover-border-color: var(--pgn-color-btn-hover-border-primary) !default; +$btn-primary-active-bg: var(--pgn-color-btn-active-bg-primary) !default; +$btn-primary-active-color: var(--pgn-color-btn-active-text-primary) !default; +$btn-primary-active-border-color: var(--pgn-color-btn-active-border-primary) !default; +$btn-primary-focus-outline-color: var(--pgn-color-btn-focus-outline-primary) !default; +$btn-primary-focus-bg: var(--pgn-color-btn-focus-bg-primary) !default; +$btn-primary-focus-color: var(--pgn-color-btn-focus-text-primary) !default; +$btn-primary-focus-border-color: var(--pgn-color-btn-focus-border-primary) !default; +$btn-primary-disabled-color: var(--pgn-color-btn-disabled-text-primary) !default; +$btn-primary-disabled-bg: var(--pgn-color-btn-disabled-bg-primary) !default; +$btn-primary-disabled-border-color: var(--pgn-color-btn-disabled-border-primary) !default; + +$btn-primary-outline-color: var(--pgn-color-btn-text-outline-primary) !default; +$btn-primary-outline-bg: var(--pgn-color-btn-bg-outline-primary) !default; +$btn-primary-outline-border-color: var(--pgn-color-btn-border-outline-primary) !default; +$btn-primary-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-primary) !default; +$btn-primary-outline-hover-color: var(--pgn-color-btn-hover-text-outline-primary) !default; +$btn-primary-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-primary) !default; +$btn-primary-outline-active-bg: var(--pgn-color-btn-active-bg-outline-primary) !default; +$btn-primary-outline-active-color: var(--pgn-color-btn-active-text-outline-primary) !default; +$btn-primary-outline-active-border-color: var(--pgn-color-btn-active-border-outline-primary) !default; +$btn-primary-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-primary) !default; +$btn-primary-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-primary) !default; +$btn-primary-outline-focus-color: var(--pgn-color-btn-focus-text-outline-primary) !default; +$btn-primary-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-primary) !default; +$btn-primary-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-primary) !default; +$btn-primary-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-primary) !default; +$btn-primary-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-primary) !default; + +$btn-primary-inverse-color: var(--pgn-color-btn-text-inverse-primary) !default; +$btn-primary-inverse-bg: var(--pgn-color-btn-bg-inverse-primary) !default; +$btn-primary-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-primary) !default; +$btn-primary-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-primary) !default; +$btn-primary-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-primary) !default; +$btn-primary-inverse-active-color: var(--pgn-color-btn-active-text-inverse-primary) !default; +$btn-primary-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-primary) !default; +$btn-primary-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-primary) !default; +$btn-primary-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-primary) !default; +$btn-primary-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-primary) !default; +$btn-primary-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-primary) !default; +$btn-primary-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-primary) !default; +$btn-primary-inverse-border-color: var(--pgn-color-btn-border-inverse-primary) !default; +$btn-primary-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-primary) !default; +$btn-primary-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-primary) !default; +$btn-primary-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-primary) !default; + +$btn-primary-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-primary) !default; +$btn-primary-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-primary) !default; +$btn-primary-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-primary) !default; +$btn-primary-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-primary) !default; +$btn-primary-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-primary) !default; +$btn-primary-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-primary) !default; +$btn-primary-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-primary) !default; +$btn-primary-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-primary) !default; +$btn-primary-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-primary) !default; +$btn-primary-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-outline-primary) !default; +$btn-primary-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-border-inverse-outline-primary) !default; +$btn-primary-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-primary) !default; +$btn-primary-inverse-outline-focus-bg: var(--pgn-color-btn-focus-bg-inverse-outline-primary) !default; +$btn-primary-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-primary) !default; +$btn-primary-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-primary) !default; +$btn-primary-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-primary) !default; + + +// SECONDARY BUTTON VARIABLES +$btn-secondary-bg: var(--pgn-color-btn-bg-secondary) !default; +$btn-secondary-color: var(--pgn-color-btn-text-secondary) !default; +$btn-secondary-border-color: var(--pgn-color-btn-border-secondary) !default; +$btn-secondary-hover-bg: var(--pgn-color-btn-hover-bg-secondary) !default; +$btn-secondary-hover-color: var(--pgn-color-btn-hover-text-secondary) !default; +$btn-secondary-hover-border-color: var(--pgn-color-btn-hover-border-secondary) !default; +$btn-secondary-active-bg: var(--pgn-color-btn-active-bg-secondary) !default; +$btn-secondary-active-color: var(--pgn-color-btn-active-text-secondary) !default; +$btn-secondary-active-border-color: var(--pgn-color-btn-active-border-secondary) !default; +$btn-secondary-focus-outline-color: var(--pgn-color-btn-focus-outline-secondary) !default; +$btn-secondary-focus-border-color: var(--pgn-color-btn-focus-border-secondary) !default; +$btn-secondary-focus-bg: var(--pgn-color-btn-focus-bg-secondary) !default; +$btn-secondary-focus-color: var(--pgn-color-btn-focus-text-secondary) !default; +$btn-secondary-disabled-color: var(--pgn-color-btn-disabled-text-secondary) !default; +$btn-secondary-disabled-bg: var(--pgn-color-btn-disabled-bg-secondary) !default; +$btn-secondary-disabled-border-color: var(--pgn-color-btn-disabled-border-secondary) !default; + +$btn-secondary-outline-color: var(--pgn-color-btn-text-outline-secondary) !default; +$btn-secondary-outline-bg: var(--pgn-color-btn-bg-outline-secondary) !default; +$btn-secondary-outline-border-color: var(--pgn-color-btn-border-outline-secondary) !default; +$btn-secondary-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-secondary) !default; +$btn-secondary-outline-hover-color: var(--pgn-color-btn-hover-text-outline-secondary) !default; +$btn-secondary-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-secondary) !default; +$btn-secondary-outline-active-bg: var(--pgn-color-btn-active-bg-outline-secondary) !default; +$btn-secondary-outline-active-color: var(--pgn-color-btn-active-text-outline-secondary) !default; +$btn-secondary-outline-active-border-color: var(--pgn-color-btn-active-border-outline-secondary) !default; +$btn-secondary-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-secondary) !default; +$btn-secondary-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-secondary) !default; +$btn-secondary-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-secondary) !default; +$btn-secondary-outline-focus-color: var(--pgn-color-btn-focus-text-outline-secondary) !default; +$btn-secondary-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-secondary) !default; +$btn-secondary-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-secondary) !default; +$btn-secondary-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-secondary) !default; + +$btn-secondary-inverse-color: var(--pgn-color-btn-text-inverse-secondary) !default; +$btn-secondary-inverse-bg: var(--pgn-color-btn-bg-inverse-secondary) !default; +$btn-secondary-inverse-border-color: var(--pgn-color-btn-border-inverse-secondary) !default; +$btn-secondary-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-secondary) !default; +$btn-secondary-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-secondary) !default; +$btn-secondary-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-secondary) !default; +$btn-secondary-inverse-active-color: var(--pgn-color-btn-active-text-inverse-secondary) !default; +$btn-secondary-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-secondary) !default; +$btn-secondary-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-secondary) !default; +$btn-secondary-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-secondary) !default; +$btn-secondary-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-secondary) !default; +$btn-secondary-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-secondary) !default; +$btn-secondary-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-secondary) !default; +$btn-secondary-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-secondary) !default; +$btn-secondary-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-secondary) !default; +$btn-secondary-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-secondary) !default; + +$btn-secondary-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-border-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-focus-bg: var(--pgn-color-btn-focus-bg-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-secondary) !default; +$btn-secondary-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-secondary) !default; + +// BRAND BUTTON VARIABLES +$btn-brand-bg: var(--pgn-color-btn-bg-brand) !default; +$btn-brand-color: var(--pgn-color-btn-text-brand) !default; +$btn-brand-border-color: var(--pgn-color-btn-border-brand) !default; +$btn-brand-hover-bg: var(--pgn-color-btn-hover-bg-brand) !default; +$btn-brand-hover-color: var(--pgn-color-btn-hover-text-brand) !default; +$btn-brand-hover-border-color: var(--pgn-color-btn-hover-border-brand) !default; +$btn-brand-active-bg: var(--pgn-color-btn-active-bg-brand) !default; +$btn-brand-active-color: var(--pgn-color-btn-active-text-brand) !default; +$btn-brand-active-border-color: var(--pgn-color-btn-active-border-brand) !default; +$btn-brand-focus-outline-color: var(--pgn-color-btn-focus-outline-brand) !default; +$btn-brand-focus-border-color: var(--pgn-color-btn-focus-border-brand) !default; +$btn-brand-focus-bg: var(--pgn-color-btn-focus-bg-brand) !default; +$btn-brand-focus-color: var(--pgn-color-btn-focus-text-brand) !default; +$btn-brand-disabled-color: var(--pgn-color-btn-disabled-text-brand) !default; +$btn-brand-disabled-bg: var(--pgn-color-btn-disabled-bg-brand) !default; +$btn-brand-disabled-border-color: var(--pgn-color-btn-disabled-border-brand) !default; + +$btn-brand-outline-color: var(--pgn-color-btn-text-outline-brand) !default; +$btn-brand-outline-bg: var(--pgn-color-btn-bg-outline-brand) !default; +$btn-brand-outline-border-color: var(--pgn-color-btn-border-outline-brand) !default; +$btn-brand-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-brand) !default; +$btn-brand-outline-hover-color: var(--pgn-color-btn-hover-text-outline-brand) !default; +$btn-brand-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-brand) !default; +$btn-brand-outline-active-bg: var(--pgn-color-btn-active-bg-outline-brand) !default; +$btn-brand-outline-active-color: var(--pgn-color-btn-active-text-outline-brand) !default; +$btn-brand-outline-active-border-color: var(--pgn-color-btn-active-border-outline-brand) !default; +$btn-brand-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-brand) !default; +$btn-brand-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-brand) !default; +$btn-brand-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-brand) !default; +$btn-brand-outline-focus-color: var(--pgn-color-btn-focus-text-outline-brand) !default; +$btn-brand-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-brand) !default; +$btn-brand-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-brand) !default; +$btn-brand-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-brand) !default; + +$btn-brand-inverse-color: var(--pgn-color-btn-text-inverse-brand) !default; +$btn-brand-inverse-bg: var(--pgn-color-btn-bg-inverse-brand) !default; +$btn-brand-inverse-border-color: var(--pgn-color-btn-border-inverse-brand) !default; +$btn-brand-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-brand) !default; +$btn-brand-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-brand) !default; +$btn-brand-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-brand) !default; +$btn-brand-inverse-active-color: var(--pgn-color-btn-active-text-inverse-brand) !default; +$btn-brand-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-brand) !default; +$btn-brand-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-brand) !default; +$btn-brand-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-brand) !default; +$btn-brand-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-brand) !default; +$btn-brand-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-brand) !default; +$btn-brand-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-brand) !default; +$btn-brand-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-brand) !default; +$btn-brand-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-brand) !default; +$btn-brand-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-brand) !default; + +$btn-brand-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-brand) !default; +$btn-brand-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-brand) !default; +$btn-brand-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-brand) !default; +$btn-brand-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-brand) !default; +$btn-brand-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-brand) !default; +$btn-brand-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-brand) !default; +$btn-brand-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-brand) !default; +$btn-brand-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-brand) !default; +$btn-brand-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-brand) !default; +$btn-brand-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-outline-brand) !default; +$btn-brand-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-border-inverse-outline-brand) !default; +$btn-brand-inverse-outline-focus-bg: var(--pgn-color-btn-focus-bg-inverse-outline-brand) !default; +$btn-brand-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-brand) !default; +$btn-brand-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-brand) !default; +$btn-brand-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-brand) !default; +$btn-brand-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-brand) !default; + + +// DANGER BUTTON VARIABLES +$btn-danger-bg: var(--pgn-color-btn-bg-danger) !default; +$btn-danger-color: var(--pgn-color-btn-text-danger) !default; +$btn-danger-border-color: var(--pgn-color-btn-border-danger) !default; +$btn-danger-hover-bg: var(--pgn-color-btn-hover-bg-danger) !default; +$btn-danger-hover-color: var(--pgn-color-btn-hover-text-danger) !default; +$btn-danger-hover-border-color: var(--pgn-color-btn-hover-border-danger) !default; +$btn-danger-active-bg: var(--pgn-color-btn-active-bg-danger) !default; +$btn-danger-active-color: var(--pgn-color-btn-active-text-danger) !default; +$btn-danger-active-border-color: var(--pgn-color-btn-active-border-danger) !default; +$btn-danger-focus-outline-color: var(--pgn-color-btn-focus-outline-danger) !default; +$btn-danger-focus-border-color: var(--pgn-color-btn-focus-border-danger) !default; +$btn-danger-focus-bg: var(--pgn-color-btn-focus-bg-danger) !default; +$btn-danger-focus-color: var(--pgn-color-btn-focus-text-danger) !default; +$btn-danger-disabled-color: var(--pgn-color-btn-disabled-text-danger) !default; +$btn-danger-disabled-bg: var(--pgn-color-btn-disabled-bg-danger) !default; +$btn-danger-disabled-border-color: var(--pgn-color-btn-disabled-border-danger) !default; + +$btn-danger-outline-color: var(--pgn-color-btn-text-outline-danger) !default; +$btn-danger-outline-bg: var(--pgn-color-btn-bg-outline-danger) !default; +$btn-danger-outline-border-color: var(--pgn-color-btn-border-outline-danger) !default; +$btn-danger-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-danger) !default; +$btn-danger-outline-hover-color: var(--pgn-color-btn-hover-text-outline-danger) !default; +$btn-danger-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-danger) !default; +$btn-danger-outline-active-bg: var(--pgn-color-btn-active-bg-outline-danger) !default; +$btn-danger-outline-active-color: var(--pgn-color-btn-active-text-outline-danger) !default; +$btn-danger-outline-active-border-color: var(--pgn-color-btn-active-border-outline-danger) !default; +$btn-danger-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-danger) !default; +$btn-danger-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-danger) !default; +$btn-danger-outline-focus-color: var(--pgn-color-btn-focus-text-outline-danger) !default; +$btn-danger-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-danger) !default; +$btn-danger-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-danger) !default; +$btn-danger-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-danger) !default; +$btn-danger-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-danger) !default; + +$btn-danger-inverse-color: var(--pgn-color-btn-text-inverse-danger) !default; +$btn-danger-inverse-bg: var(--pgn-color-btn-bg-inverse-danger) !default; +$btn-danger-inverse-border-color: var(--pgn-color-btn-border-inverse-danger) !default; +$btn-danger-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-danger) !default; +$btn-danger-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-danger) !default; +$btn-danger-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-danger) !default; +$btn-danger-inverse-active-color: var(--pgn-color-btn-active-text-inverse-danger) !default; +$btn-danger-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-danger) !default; +$btn-danger-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-danger) !default; +$btn-danger-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-danger) !default; +$btn-danger-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-danger) !default; +$btn-danger-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-danger) !default; +$btn-danger-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-danger) !default; +$btn-danger-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-danger) !default; +$btn-danger-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-danger) !default; +$btn-danger-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-danger) !default; + +$btn-danger-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-danger) !default; +$btn-danger-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-danger) !default; +$btn-danger-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-danger) !default; +$btn-danger-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-danger) !default; +$btn-danger-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-danger) !default; +$btn-danger-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-danger) !default; +$btn-danger-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-danger) !default; +$btn-danger-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-danger) !default; +$btn-danger-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-danger) !default; +$btn-danger-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-outline-danger) !default; +$btn-danger-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-border-inverse-outline-danger) !default; +$btn-danger-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-danger) !default; +$btn-danger-inverse-outline-focus-bg: var(--pgn-color-btn-focus-bg-inverse-outline-danger) !default; +$btn-danger-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-danger) !default; +$btn-danger-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-danger) !default; +$btn-danger-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-danger) !default; + + +// DARK BUTTON VARIABLES +$btn-dark-bg: var(--pgn-color-btn-bg-dark) !default; +$btn-dark-color: var(--pgn-color-btn-text-dark) !default; +$btn-dark-border-color: var(--pgn-color-btn-border-dark) !default; +$btn-dark-hover-bg: var(--pgn-color-btn-hover-bg-dark) !default; +$btn-dark-hover-color: var(--pgn-color-btn-hover-text-dark) !default; +$btn-dark-hover-border-color: var(--pgn-color-btn-hover-border-dark) !default; +$btn-dark-active-bg: var(--pgn-color-btn-active-bg-dark) !default; +$btn-dark-active-color: var(--pgn-color-btn-active-text-dark) !default; +$btn-dark-active-border-color: var(--pgn-color-btn-active-border-dark) !default; +$btn-dark-focus-outline-color: var(--pgn-color-btn-focus-outline-dark) !default; +$btn-dark-focus-border-color: var(--pgn-color-btn-focus-border-dark) !default; +$btn-dark-focus-bg: var(--pgn-color-btn-focus-bg-dark) !default; +$btn-dark-focus-color: var(--pgn-color-btn-focus-text-dark) !default; +$btn-dark-disabled-color: var(--pgn-color-btn-disabled-text-dark) !default; +$btn-dark-disabled-bg: var(--pgn-color-btn-disabled-bg-dark) !default; +$btn-dark-disabled-border-color: var(--pgn-color-btn-disabled-border-dark) !default; + +$btn-dark-outline-color: var(--pgn-color-btn-text-outline-dark) !default; +$btn-dark-outline-bg: var(--pgn-color-btn-bg-outline-dark) !default; +$btn-dark-outline-border-color: var(--pgn-color-btn-border-outline-dark) !default; +$btn-dark-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-dark) !default; +$btn-dark-outline-hover-color: var(--pgn-color-btn-hover-text-outline-dark) !default; +$btn-dark-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-dark) !default; +$btn-dark-outline-active-bg: var(--pgn-color-btn-active-bg-outline-dark) !default; +$btn-dark-outline-active-color: var(--pgn-color-btn-active-text-outline-dark) !default; +$btn-dark-outline-active-border-color: var(--pgn-color-btn-active-border-outline-dark) !default; +$btn-dark-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-dark) !default; +$btn-dark-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-dark) !default; +$btn-dark-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-dark) !default; +$btn-dark-outline-focus-color: var(--pgn-color-btn-focus-text-outline-dark) !default; +$btn-dark-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-dark) !default; +$btn-dark-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-dark) !default; +$btn-dark-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-dark) !default; + +$btn-dark-inverse-color: var(--pgn-color-btn-text-inverse-dark) !default; +$btn-dark-inverse-bg: var(--pgn-color-btn-bg-inverse-dark) !default; +$btn-dark-inverse-border-color: var(--pgn-color-btn-border-inverse-dark) !default; +$btn-dark-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-dark) !default; +$btn-dark-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-dark) !default; +$btn-dark-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-dark) !default; +$btn-dark-inverse-active-color: var(--pgn-color-btn-active-text-inverse-dark) !default; +$btn-dark-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-dark) !default; +$btn-dark-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-dark) !default; +$btn-dark-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-dark) !default; +$btn-dark-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-dark) !default; +$btn-dark-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-dark) !default; +$btn-dark-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-dark) !default; +$btn-dark-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-dark) !default; +$btn-dark-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-dark) !default; +$btn-dark-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-dark) !default; + +$btn-dark-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-dark) !default; +$btn-dark-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-dark) !default; +$btn-dark-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-dark) !default; +$btn-dark-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-dark) !default; +$btn-dark-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-dark) !default; +$btn-dark-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-dark) !default; +$btn-dark-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-dark) !default; +$btn-dark-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-dark) !default; +$btn-dark-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-dark) !default; +$btn-dark-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-border-inverse-outline-dark) !default; +$btn-dark-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-outline-inverse-outline-dark) !default; +$btn-dark-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-dark) !default; +$btn-dark-inverse-outline-focus-bg: var(--pgn-color-btn-focus-bg-inverse-outline-dark) !default; +$btn-dark-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-dark) !default; +$btn-dark-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-dark) !default; +$btn-dark-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-dark) !default; + + +// INFO BUTTON VARIABLES +$btn-info-bg: var(--pgn-color-btn-bg-info) !default; +$btn-info-color: var(--pgn-color-btn-text-info) !default; +$btn-info-border-color: var(--pgn-color-btn-border-info) !default; +$btn-info-hover-bg: var(--pgn-color-btn-hover-bg-info) !default; +$btn-info-hover-color: var(--pgn-color-btn-hover-text-info) !default; +$btn-info-hover-border-color: var(--pgn-color-btn-hover-border-info) !default; +$btn-info-active-bg: var(--pgn-color-btn-active-bg-info) !default; +$btn-info-active-color: var(--pgn-color-btn-active-text-info) !default; +$btn-info-active-border-color: var(--pgn-color-btn-active-border-info) !default; +$btn-info-focus-outline-color: var(--pgn-color-btn-focus-outline-info) !default; +$btn-info-focus-border-color: var(--pgn-color-btn-focus-border-info) !default; +$btn-info-focus-color: var(--pgn-color-btn-focus-text-info) !default; +$btn-info-focus-bg: var(--pgn-color-btn-focus-bg-info) !default; +$btn-info-disabled-color: var(--pgn-color-btn-disabled-text-info) !default; +$btn-info-disabled-bg: var(--pgn-color-btn-disabled-bg-info) !default; +$btn-info-disabled-border-color: var(--pgn-color-btn-disabled-border-info) !default; + +$btn-info-outline-color: var(--pgn-color-btn-text-outline-info) !default; +$btn-info-outline-bg: var(--pgn-color-btn-bg-outline-info) !default; +$btn-info-outline-border-color: var(--pgn-color-btn-border-outline-info) !default; +$btn-info-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-info) !default; +$btn-info-outline-hover-color: var(--pgn-color-btn-hover-text-outline-info) !default; +$btn-info-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-info) !default; +$btn-info-outline-active-bg: var(--pgn-color-btn-active-bg-outline-info) !default; +$btn-info-outline-active-color: var(--pgn-color-btn-active-text-outline-info) !default; +$btn-info-outline-active-border-color: var(--pgn-color-btn-active-border-outline-info) !default; +$btn-info-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-info) !default; +$btn-info-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-info) !default; +$btn-info-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-info) !default; +$btn-info-outline-focus-color: var(--pgn-color-btn-focus-text-outline-info) !default; +$btn-info-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-info) !default; +$btn-info-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-info) !default; +$btn-info-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-info) !default; + +$btn-info-inverse-color: var(--pgn-color-btn-text-inverse-info) !default; +$btn-info-inverse-bg: var(--pgn-color-btn-bg-inverse-info) !default; +$btn-info-inverse-border-color: var(--pgn-color-btn-border-inverse-info) !default; +$btn-info-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-info) !default; +$btn-info-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-info) !default; +$btn-info-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-info) !default; +$btn-info-inverse-active-color: var(--pgn-color-btn-active-text-inverse-info) !default; +$btn-info-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-info) !default; +$btn-info-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-info) !default; +$btn-info-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-info) !default; +$btn-info-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-info) !default; +$btn-info-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-info) !default; +$btn-info-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-info) !default; +$btn-info-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-info) !default; +$btn-info-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-info) !default; +$btn-info-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-info) !default; + +$btn-info-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-info) !default; +$btn-info-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-info) !default; +$btn-info-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-info) !default; +$btn-info-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-info) !default; +$btn-info-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-info) !default; +$btn-info-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-info) !default; +$btn-info-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-info) !default; +$btn-info-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-info) !default; +$btn-info-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-info) !default; +$btn-info-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-outline-info) !default; +$btn-info-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-border-inverse-outline-info) !default; +$btn-info-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-info) !default; +$btn-info-inverse-outline-focus-bg: var(--pgn-color-btn-focus-bg-inverse-outline-info) !default; +$btn-info-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-info) !default; +$btn-info-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-info) !default; +$btn-info-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-info) !default; + + +// LIGHT BUTTON VARIABLES +$btn-light-bg: var(--pgn-color-btn-bg-light) !default; +$btn-light-color: var(--pgn-color-btn-text-light) !default; +$btn-light-border-color: var(--pgn-color-btn-border-light) !default; +$btn-light-hover-bg: var(--pgn-color-btn-hover-bg-light) !default; +$btn-light-hover-color: var(--pgn-color-btn-hover-text-light) !default; +$btn-light-hover-border-color: var(--pgn-color-btn-hover-border-light) !default; +$btn-light-active-bg: var(--pgn-color-btn-active-bg-light) !default; +$btn-light-active-color: var(--pgn-color-btn-active-text-light) !default; +$btn-light-active-border-color: var(--pgn-color-btn-active-border-light) !default; +$btn-light-focus-outline-color: var(--pgn-color-btn-focus-outline-light) !default; +$btn-light-focus-border-color: var(--pgn-color-btn-focus-border-light) !default; +$btn-light-focus-bg: var(--pgn-color-btn-focus-bg-light) !default; +$btn-light-focus-color: var(--pgn-color-btn-focus-text-light) !default; +$btn-light-disabled-color: var(--pgn-color-btn-disabled-text-light) !default; +$btn-light-disabled-bg: var(--pgn-color-btn-disabled-bg-light) !default; +$btn-light-disabled-border-color: var(--pgn-color-btn-disabled-border-light) !default; + +$btn-light-outline-color: var(--pgn-color-btn-text-outline-light) !default; +$btn-light-outline-bg: var(--pgn-color-btn-bg-outline-light) !default; +$btn-light-outline-border-color: var(--pgn-color-btn-border-outline-light) !default; +$btn-light-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-light) !default; +$btn-light-outline-hover-color: var(--pgn-color-btn-hover-text-outline-light) !default; +$btn-light-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-light) !default; +$btn-light-outline-active-bg: var(--pgn-color-btn-active-bg-outline-light) !default; +$btn-light-outline-active-color: var(--pgn-color-btn-active-text-outline-light) !default; +$btn-light-outline-active-border-color: var(--pgn-color-btn-active-border-outline-light) !default; +$btn-light-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-light) !default; +$btn-light-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-light) !default; +$btn-light-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-light) !default; +$btn-light-outline-focus-color: var(--pgn-color-btn-focus-text-outline-light) !default; +$btn-light-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-light) !default; +$btn-light-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-light) !default; +$btn-light-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-light) !default; + +$btn-light-inverse-color: var(--pgn-color-btn-text-inverse-light) !default; +$btn-light-inverse-bg: var(--pgn-color-btn-bg-inverse-light) !default; +$btn-light-inverse-border-color: var(--pgn-color-btn-border-inverse-light) !default; +$btn-light-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-light) !default; +$btn-light-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-light) !default; +$btn-light-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-light) !default; +$btn-light-inverse-active-color: var(--pgn-color-btn-active-text-inverse-light) !default; +$btn-light-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-light) !default; +$btn-light-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-light) !default; +$btn-light-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-light) !default; +$btn-light-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-light) !default; +$btn-light-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-light) !default; +$btn-light-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-light) !default; +$btn-light-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-light) !default; +$btn-light-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-light) !default; +$btn-light-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-light) !default; + +$btn-light-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-light) !default; +$btn-light-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-light) !default; +$btn-light-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-light) !default; +$btn-light-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-light) !default; +$btn-light-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-light) !default; +$btn-light-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-light) !default; +$btn-light-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-light) !default; +$btn-light-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-light) !default; +$btn-light-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-light) !default; +$btn-light-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-outline-light) !default; +$btn-light-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-border-inverse-outline-light) !default; +$btn-light-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-light) !default; +$btn-light-inverse-outline-focus-bg: var(--pgn-color-btn-focus-bg-inverse-outline-light) !default; +$btn-light-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-light) !default; +$btn-light-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-light) !default; +$btn-light-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-light) !default; + + +// SUCCESS BUTTON VARIABLES +$btn-success-bg: var(--pgn-color-btn-bg-success) !default; +$btn-success-color: var(--pgn-color-btn-text-success) !default; +$btn-success-border-color: var(--pgn-color-btn-border-success) !default; +$btn-success-hover-bg: var(--pgn-color-btn-hover-bg-success) !default; +$btn-success-hover-color: var(--pgn-color-btn-hover-text-success) !default; +$btn-success-hover-border-color: var(--pgn-color-btn-hover-border-success) !default; +$btn-success-active-bg: var(--pgn-color-btn-active-bg-success) !default; +$btn-success-active-color: var(--pgn-color-btn-active-text-success) !default; +$btn-success-active-border-color: var(--pgn-color-btn-active-border-success) !default; +$btn-success-focus-outline-color: var(--pgn-color-btn-focus-outline-success) !default; +$btn-success-focus-border-color: var(--pgn-color-btn-focus-border-success) !default; +$btn-success-focus-bg: var(--pgn-color-btn-focus-bg-success) !default; +$btn-success-focus-color: var(--pgn-color-btn-focus-text-success) !default; +$btn-success-disabled-color: var(--pgn-color-btn-disabled-text-success) !default; +$btn-success-disabled-bg: var(--pgn-color-btn-disabled-bg-success) !default; +$btn-success-disabled-border-color: var(--pgn-color-btn-disabled-border-success) !default; + +$btn-success-outline-color: var(--pgn-color-btn-text-outline-success) !default; +$btn-success-outline-bg: var(--pgn-color-btn-bg-outline-success) !default; +$btn-success-outline-border-color: var(--pgn-color-btn-border-outline-success) !default; +$btn-success-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-success) !default; +$btn-success-outline-hover-color: var(--pgn-color-btn-hover-text-outline-success) !default; +$btn-success-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-success) !default; +$btn-success-outline-active-bg: var(--pgn-color-btn-active-bg-outline-success) !default; +$btn-success-outline-active-color: var(--pgn-color-btn-active-text-outline-success) !default; +$btn-success-outline-active-border-color: var(--pgn-color-btn-active-border-outline-success) !default; +$btn-success-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-success) !default; +$btn-success-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-success) !default; +$btn-success-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-success) !default; +$btn-success-outline-focus-color: var(--pgn-color-btn-focus-text-outline-success) !default; +$btn-success-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-success) !default; +$btn-success-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-success) !default; +$btn-success-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-success) !default; + +$btn-success-inverse-color: var(--pgn-color-btn-text-inverse-success) !default; +$btn-success-inverse-bg: var(--pgn-color-btn-bg-inverse-success) !default; +$btn-success-inverse-border-color: var(--pgn-color-btn-border-inverse-success) !default; +$btn-success-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-success) !default; +$btn-success-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-success) !default; +$btn-success-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-success) !default; +$btn-success-inverse-active-color: var(--pgn-color-btn-active-text-inverse-success) !default; +$btn-success-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-success) !default; +$btn-success-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-success) !default; +$btn-success-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-success) !default; +$btn-success-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-success) !default; +$btn-success-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-success) !default; +$btn-success-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-success) !default; +$btn-success-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-success) !default; +$btn-success-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-success) !default; +$btn-success-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-success) !default; + +$btn-success-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-success) !default; +$btn-success-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-success) !default; +$btn-success-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-success) !default; +$btn-success-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-success) !default; +$btn-success-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-success) !default; +$btn-success-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-success) !default; +$btn-success-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-success) !default; +$btn-success-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-success) !default; +$btn-success-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-success) !default; +$btn-success-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-outline-success) !default; +$btn-success-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-border-inverse-outline-success) !default; +$btn-success-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-success) !default; +$btn-success-inverse-outline-focus-bg: var(--pgn-color-btn-focus-bg-inverse-outline-success) !default; +$btn-success-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-success) !default; +$btn-success-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-success) !default; +$btn-success-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-success) !default; + + +// WARNING BUTTON VARIABLES +$btn-warning-bg: var(--pgn-color-btn-bg-warning) !default; +$btn-warning-color: var(--pgn-color-btn-text-warning) !default; +$btn-warning-border-color: var(--pgn-color-btn-border-warning) !default; +$btn-warning-hover-bg: var(--pgn-color-btn-hover-bg-warning) !default; +$btn-warning-hover-color: var(--pgn-color-btn-hover-text-warning) !default; +$btn-warning-hover-border-color: var(--pgn-color-btn-hover-border-warning) !default; +$btn-warning-active-bg: var(--pgn-color-btn-active-bg-warning) !default; +$btn-warning-active-color: var(--pgn-color-btn-active-text-warning) !default; +$btn-warning-active-border-color: var(--pgn-color-btn-active-border-warning) !default; +$btn-warning-focus-outline-color: var(--pgn-color-btn-focus-outline-warning) !default; +$btn-warning-focus-border-color: var(--pgn-color-btn-focus-border-warning) !default; +$btn-warning-focus-color: var(--pgn-color-btn-focus-text-warning) !default; +$btn-warning-focus-bg: var(--pgn-color-btn-focus-bg-warning) !default; +$btn-warning-disabled-color: var(--pgn-color-btn-disabled-text-warning) !default; +$btn-warning-disabled-bg: var(--pgn-color-btn-disabled-bg-warning) !default; +$btn-warning-disabled-border-color: var(--pgn-color-btn-disabled-border-warning) !default; + +$btn-warning-outline-color: var(--pgn-color-btn-text-outline-warning) !default; +$btn-warning-outline-bg: var(--pgn-color-btn-bg-outline-warning) !default; +$btn-warning-outline-border-color: var(--pgn-color-btn-border-outline-warning) !default; +$btn-warning-outline-hover-bg: var(--pgn-color-btn-hover-bg-outline-warning) !default; +$btn-warning-outline-hover-color: var(--pgn-color-btn-hover-text-outline-warning) !default; +$btn-warning-outline-hover-border-color: var(--pgn-color-btn-hover-border-outline-warning) !default; +$btn-warning-outline-active-bg: var(--pgn-color-btn-active-bg-outline-warning) !default; +$btn-warning-outline-active-color: var(--pgn-color-btn-active-text-outline-warning) !default; +$btn-warning-outline-active-border-color: var(--pgn-color-btn-active-border-outline-warning) !default; +$btn-warning-outline-focus-outline-color: var(--pgn-color-btn-focus-outline-outline-warning) !default; +$btn-warning-outline-focus-border-color: var(--pgn-color-btn-focus-border-outline-warning) !default; +$btn-warning-outline-focus-bg: var(--pgn-color-btn-focus-bg-outline-warning) !default; +$btn-warning-outline-focus-color: var(--pgn-color-btn-focus-text-outline-warning) !default; +$btn-warning-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-outline-warning) !default; +$btn-warning-outline-disabled-color: var(--pgn-color-btn-disabled-text-outline-warning) !default; +$btn-warning-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-outline-warning) !default; + +$btn-warning-inverse-color: var(--pgn-color-btn-text-inverse-warning) !default; +$btn-warning-inverse-bg: var(--pgn-color-btn-bg-inverse-warning) !default; +$btn-warning-inverse-border-color: var(--pgn-color-btn-border-inverse-warning) !default; +$btn-warning-inverse-hover-color: var(--pgn-color-btn-hover-text-inverse-warning) !default; +$btn-warning-inverse-hover-bg: var(--pgn-color-btn-hover-bg-inverse-warning) !default; +$btn-warning-inverse-hover-border-color: var(--pgn-color-btn-hover-border-inverse-warning) !default; +$btn-warning-inverse-active-color: var(--pgn-color-btn-active-text-inverse-warning) !default; +$btn-warning-inverse-active-bg: var(--pgn-color-btn-active-bg-inverse-warning) !default; +$btn-warning-inverse-active-border-color: var(--pgn-color-btn-active-border-inverse-warning) !default; +$btn-warning-inverse-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-warning) !default; +$btn-warning-inverse-focus-border-color: var(--pgn-color-btn-focus-border-inverse-warning) !default; +$btn-warning-inverse-focus-color: var(--pgn-color-btn-focus-text-inverse-warning) !default; +$btn-warning-inverse-focus-bg: var(--pgn-color-btn-focus-bg-inverse-warning) !default; +$btn-warning-inverse-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-warning) !default; +$btn-warning-inverse-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-warning) !default; +$btn-warning-inverse-disabled-color: var(--pgn-color-btn-disabled-text-inverse-warning) !default; + +$btn-warning-inverse-outline-color: var(--pgn-color-btn-text-inverse-outline-warning) !default; +$btn-warning-inverse-outline-bg: var(--pgn-color-btn-bg-inverse-outline-warning) !default; +$btn-warning-inverse-outline-border-color: var(--pgn-color-btn-border-inverse-outline-warning) !default; +$btn-warning-inverse-outline-active-color: var(--pgn-color-btn-active-text-inverse-outline-warning) !default; +$btn-warning-inverse-outline-active-bg: var(--pgn-color-btn-active-bg-inverse-outline-warning) !default; +$btn-warning-inverse-outline-active-border-color: var(--pgn-color-btn-active-border-inverse-outline-warning) !default; +$btn-warning-inverse-outline-hover-color: var(--pgn-color-btn-hover-text-inverse-outline-warning) !default; +$btn-warning-inverse-outline-hover-bg: var(--pgn-color-btn-hover-bg-inverse-outline-warning) !default; +$btn-warning-inverse-outline-hover-border-color: var(--pgn-color-btn-hover-border-inverse-outline-warning) !default; +$btn-warning-inverse-outline-focus-outline-color: var(--pgn-color-btn-focus-border-inverse-outline-warning) !default; +$btn-warning-inverse-outline-focus-border-color: var(--pgn-color-btn-focus-border-inverse-outline-warning) !default; +$btn-warning-inverse-outline-focus-color: var(--pgn-color-btn-focus-text-inverse-outline-warning) !default; +$btn-warning-inverse-outline-focus-bg: var(--pgn-color-btn-focus-outline-inverse-outline-warning) !default; +$btn-warning-inverse-outline-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-outline-warning) !default; +$btn-warning-inverse-outline-disabled-color: var(--pgn-color-btn-disabled-text-inverse-outline-warning) !default; +$btn-warning-inverse-outline-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-outline-warning) !default; + + +// TERTIARY BUTTON +$btn-tertiary-color: var(--pgn-color-btn-text-tertiary) !default; +$btn-tertiary-bg: var(--pgn-color-btn-bg-tertiary) !default; +$btn-tertiary-border-color: var(--pgn-color-btn-border-tertiary) !default; +$btn-tertiary-hover-color: var(--pgn-color-btn-hover-text-tertiary) !default; +$btn-tertiary-hover-bg: var(--pgn-color-btn-hover-bg-tertiary) !default; +$btn-tertiary-hover-border-color: var(--pgn-color-btn-hover-border-tertiary) !default; +$btn-tertiary-active-color: var(--pgn-color-btn-active-text-tertiary) !default; +$btn-tertiary-active-bg: var(--pgn-color-btn-active-bg-tertiary) !default; +$btn-tertiary-active-border-color: var(--pgn-color-btn-active-border-tertiary) !default; +$btn-tertiary-focus-outline-color: var(--pgn-color-btn-focus-outline-tertiary) !default; +$btn-tertiary-focus-border-color: var(--pgn-color-btn-focus-border-tertiary) !default; +$btn-tertiary-focus-color: var(--pgn-color-btn-focus-text-tertiary) !default; +$btn-tertiary-focus-bg: var(--pgn-color-btn-focus-bg-tertiary) !default; +$btn-tertiary-disabled-color: var(--pgn-color-btn-disabled-text-tertiary) !default; +$btn-tertiary-disabled-bg: var(--pgn-color-btn-disabled-bg-tertiary) !default; +$btn-tertiary-disabled-border-color: var(--pgn-color-btn-disabled-border-tertiary) !default; + +$btn-inverse-tertiary-color: var(--pgn-color-btn-text-inverse-tertiary) !default; +$btn-inverse-tertiary-bg: var(--pgn-color-btn-bg-inverse-tertiary) !default; +$btn-inverse-tertiary-border-color: var(--pgn-color-btn-border-inverse-tertiary) !default; +$btn-inverse-tertiary-hover-bg: var(--pgn-color-btn-hover-bg-inverse-tertiary) !default; +$btn-inverse-tertiary-hover-color: var(--pgn-color-btn-hover-text-inverse-tertiary) !default; +$btn-inverse-tertiary-hover-border-color: var(--pgn-color-btn-hover-border-inverse-tertiary) !default; +$btn-inverse-tertiary-active-color: var(--pgn-color-btn-active-text-inverse-tertiary) !default; +$btn-inverse-tertiary-active-bg: var(--pgn-color-btn-active-bg-inverse-tertiary) !default; +$btn-inverse-tertiary-active-border-color: var(--pgn-color-btn-active-border-inverse-tertiary) !default; +$btn-inverse-tertiary-focus-outline-color: var(--pgn-color-btn-focus-outline-inverse-tertiary) !default; +$btn-inverse-tertiary-focus-border-color: var(--pgn-color-btn-focus-border-inverse-tertiary) !default; +$btn-inverse-tertiary-focus-color: var(--pgn-color-btn-focus-text-inverse-tertiary) !default; +$btn-inverse-tertiary-focus-bg: var(--pgn-color-btn-focus-bg-inverse-tertiary) !default; +$btn-inverse-tertiary-disabled-color: var(--pgn-color-btn-disabled-text-inverse-tertiary) !default; +$btn-inverse-tertiary-disabled-bg: var(--pgn-color-btn-disabled-bg-inverse-tertiary) !default; +$btn-inverse-tertiary-disabled-border-color: var(--pgn-color-btn-disabled-border-inverse-tertiary) !default; + +$btn-focus-border-gap: var(--pgn-spacing-btn-focus-border-gap) !default; +$btn-focus-distance-to-border: var(--pgn-spacing-btn-focus-distance-to-border) !default; -$btn-transition: null; +$btn-focus-border-radius: var(--pgn-size-btn-focus-border-radius) !default; diff --git a/src/Button/button-group.scss b/src/Button/button-group.scss new file mode 100644 index 0000000000..0f5b60e097 --- /dev/null +++ b/src/Button/button-group.scss @@ -0,0 +1,128 @@ +@import "variables"; + +.btn-group, +.btn-group-vertical { + position: relative; + display: inline-flex; + vertical-align: middle; + + > .btn { + position: relative; + flex: 1 1 auto; + + &:hover { + z-index: 1; + } + + &:focus, + &:active, + &.active { + z-index: 1; + } + } +} + +.btn-toolbar { + display: flex; + flex-wrap: wrap; + justify-content: flex-start; + + .input-group { + width: auto; + } +} + +.btn-group { + > .btn:not(:first-child), + > .btn-group:not(:first-child) { + margin-left: calc(#{$btn-border-width} * -1); + } + + > .btn:not(:last-child):not(.dropdown-toggle), + > .btn-group:not(:last-child) > .btn { + @include border-right-radius(0); + } + + > .btn:not(:first-child), + > .btn-group:not(:first-child) > .btn { + @include border-left-radius(0); + } +} + +/* stylelint-disable-next-line scss/at-extend-no-missing-placeholder */ +.btn-group-sm > .btn { @extend .btn-sm; } +/* stylelint-disable-next-line scss/at-extend-no-missing-placeholder */ +.btn-group-lg > .btn { @extend .btn-lg; } + +.dropdown-toggle-split { + padding-right: calc(#{$btn-padding-x} * .75); + padding-left: calc(#{$btn-padding-x} * .75); + + &::after, + .dropup &::after, + .dropright &::after { + margin-left: 0; + } + + .dropleft &::before { + margin-right: 0; + } +} + +.btn-sm + .dropdown-toggle-split { + padding-right: calc(#{$btn-padding-x-sm} * .75); + padding-left: calc(#{$btn-padding-x-sm} * .75); +} + +.btn-lg + .dropdown-toggle-split { + padding-right: calc(#{$btn-padding-x-lg} * .75); + padding-left: calc(#{$btn-padding-x-lg} * .75); +} + +.btn-group.show .dropdown-toggle { + @include box-shadow(#{$btn-active-box-shadow}); + + &.btn-link { + @include box-shadow(none); + } +} + +.btn-group-vertical { + flex-direction: column; + align-items: flex-start; + justify-content: center; + + > .btn, + > .btn-group { + width: 100%; + } + + > .btn:not(:first-child), + > .btn-group:not(:first-child) { + margin-top: calc(#{$btn-border-width} * -1); + } + + > .btn:not(:last-child):not(.dropdown-toggle), + > .btn-group:not(:last-child) > .btn { + @include border-bottom-radius(0); + } + + > .btn:not(:first-child), + > .btn-group:not(:first-child) > .btn { + @include border-top-radius(0); + } +} + +.btn-group-toggle { + > .btn, + > .btn-group > .btn { + margin-bottom: 0; + + input[type="radio"], + input[type="checkbox"] { + position: absolute; + clip: rect(0, 0, 0, 0); + pointer-events: none; + } + } +} diff --git a/src/Button/deprecated/Button.test.jsx b/src/Button/deprecated/Button.test.jsx deleted file mode 100644 index 4059588db7..0000000000 --- a/src/Button/deprecated/Button.test.jsx +++ /dev/null @@ -1,39 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; -import Button from './index'; - -const defaultProps = { - label: 'Click me!', -}; - -describe(' - ); - } -} - -export const buttonPropTypes = { - /** Used to determine the type of button to be rendered. See [Bootstrap's buttons documentation](https://getbootstrap.com/docs/4.0/components/buttons/) for a list of applicable button types. For example, `buttonType="light"`. The default is `undefined`. */ - buttonType: PropTypes.string, - /** Specifies Bootstrap class names to apply to the button. See [Bootstrap's buttons documentation](https://getbootstrap.com/docs/4.0/components/buttons/) for a list of applicable class names. The default is an empty array. */ - className: PropTypes.string, - /** Specifies the text that is displayed within the button. */ - children: PropTypes.node.isRequired, - // eslint-disable-next-line max-len - /** A function that defines a reference for the button. An example `inputRef` from the calling component could look something like: `inputRef={(input) => { this.button = input; }}`. The default is an empty function. */ - inputRef: PropTypes.oneOfType([ - PropTypes.func, - PropTypes.shape({ current: PropTypes.instanceOf(PropTypes.element) }), - ]), - /** Used to determine if the button is a "Close" style button to leverage bootstrap styling. Example use case is with the Status Alert [dismiss button](https://getbootstrap.com/docs/4.0/components/alerts/#dismissing). The default is false. */ - isClose: PropTypes.bool, - // eslint-disable-next-line max-len - /** A function that would specify what the button should do when the `onBlur` event is triggered. For example, the button could change in color or `buttonType` when focus is changed. The default is an empty function. */ - onBlur: PropTypes.func, - // eslint-disable-next-line max-len - /** A function that would specify what the button should do when the `onClick` event is triggered. For example, the button could launch a `Modal`. The default is an empty function. */ - onClick: PropTypes.func, - // eslint-disable-next-line max-len - /** A function that would specify what the button should do when the `onKeyDown` event is triggered. For example, this could handle using the `Escape` key to trigger the button's action. The default is an empty function. */ - onKeyDown: PropTypes.func, - /** Used to set the `type` attribute on the `button` tag. The default type is `button`. */ - type: PropTypes.string, -}; - -Button.propTypes = buttonPropTypes; - -Button.defaultProps = { - buttonType: undefined, - className: undefined, - inputRef: () => {}, - isClose: false, - onBlur: () => {}, - onKeyDown: () => {}, - onClick: () => {}, - type: 'button', -}; - -export default withDeprecatedProps(Button, 'Button', { - label: { - deprType: DeprTypes.MOVED, - newName: 'children', - }, - className: { - deprType: DeprTypes.FORMAT, - expect: value => typeof value === 'string', - transform: value => (Array.isArray(value) ? value.join(' ') : value), - message: 'It should be a string.', - }, -}); diff --git a/src/Button/index.jsx b/src/Button/index.jsx index 395f704557..e00977e956 100644 --- a/src/Button/index.jsx +++ b/src/Button/index.jsx @@ -4,7 +4,6 @@ import classNames from 'classnames'; import Button from 'react-bootstrap/Button'; import BaseButtonGroup from 'react-bootstrap/ButtonGroup'; import BaseButtonToolbar from 'react-bootstrap/ButtonToolbar'; -import ButtonDeprecated from './deprecated'; import Icon from '../Icon'; @@ -47,8 +46,6 @@ WrappedButton.defaultProps = { iconAfter: undefined, }; -WrappedButton.Deprecated = ButtonDeprecated; - function ButtonGroup(props) { return ; } diff --git a/src/Card/Card.scss b/src/Card/Card.scss index 271a294814..32a8fafe43 100644 --- a/src/Card/Card.scss +++ b/src/Card/Card.scss @@ -1,29 +1,116 @@ @import "variables"; -@import "~bootstrap/scss/card"; +@import "card-bootstrap"; .pgn__card, .pgn__card-body { width: 100%; + border: 0; - &.is-muted { - background-color: $light-200; + %dark-variant-content { + color: $white; + + a { + color: $white; + } + } + + &.pgn__card-dark { + background-color: $card-bg-dark; + + @extend %dark-variant-content; + + .pgn__card-header { + @extend %dark-variant-content; + + .pgn__card-header-title, + .pgn__card-header-title-sm, + .pgn__card-header-title-md, + .pgn__card-header-subtitle, + .pgn__card-header-subtitle-sm, + .pgn__card-header-subtitle-md { + @extend %dark-variant-content; + } + } + + .pgn__card-section { + @extend %dark-variant-content; + + .pgn__card-section-title { + @extend %dark-variant-content; + } + } + + .pgn__card-footer, + .pgn__card-footer-text { + @extend %dark-variant-content; + } + } + + &.pgn__card-muted { + background-color: $card-bg-muted; } } a .pgn__card { color: $gray-700; display: inline-block; - margin-right: 100%; } .pgn__card-grid { .row > div[class*="col-"] { - margin-bottom: $card-grid-margin; + margin-bottom: $card-grid-margin-bottom; + } +} + +.pgn__card-grid, +.pgn__card-deck { + .row > div[class*="col-"] { display: flex; flex: 1 0 auto; } } +.pgn__card-deck { + position: relative; + margin-bottom: $card-deck-margin-bottom; + + &.pgn__card-deck-has-horizontal-scroll { + .pgn__card-deck-row { + overflow-x: scroll; + } + } + + .pgn__card-deck-row { + overflow: hidden; + flex-wrap: nowrap; + padding-top: $card-focus-border-offset; + padding-bottom: $card-focus-border-offset; + + &:focus-visible { + outline: $card-focus-border-width solid $card-border-focus-color; + border-radius: $card-focus-border-radius; + } + } +} + +.pgn__card-carousel { + .pgn__card-carousel-title { + margin-bottom: map-get($spacers, 2); + } + + .pgn__card-carousel-subtitle { + font-size: $font-size-sm; + margin-bottom: map-get($spacers, 2); + } + + .pgn__card-carousel-header { + display: flex; + align-items: center; + justify-content: space-between; + margin-bottom: map-get($spacers, 1); + } +} + .pgn__card-header { padding: 0 $card-spacer-x; display: flex; @@ -174,7 +261,7 @@ a .pgn__card { &.horizontal-stacked { flex-direction: column-reverse; - padding-top: $card-spacer-x - $card-footer-actions-gap; + padding-top: calc(#{$card-spacer-x} - #{$card-footer-actions-gap}); & > * { margin-top: $card-footer-actions-gap; @@ -240,9 +327,9 @@ a .pgn__card { .pgn__card-image-cap-loader { .react-loading-skeleton { - margin-bottom: -$loading-skeleton-spacer; + margin-bottom: calc(#{$loading-skeleton-spacer} * -1); position: relative; - top: -$loading-skeleton-spacer; + top: calc(#{$loading-skeleton-spacer} * -1); height: 100%; } } @@ -254,26 +341,58 @@ a .pgn__card { width: 100%; border-top-left-radius: $card-image-border-radius; border-top-right-radius: $card-image-border-radius; + display: none; + + &.show { + display: block; + } } .pgn__card-logo-cap { position: absolute; inset-inline-start: $card-logo-left-offset; - bottom: #{-$card-logo-bottom-offset}; + bottom: #{calc(#{$card-logo-bottom-offset} * -1)}; width: $card-logo-width; height: $card-logo-height; border-radius: $card-logo-border-radius; box-shadow: $level-1-box-shadow; - z-index: 1; padding: map_get($spacers, 2); background-color: $white; + display: none; + + &.show { + display: block; + } +} + +%pgn__card-focused { + outline: none; + + &::before { + content: ""; + position: absolute; + top: calc(-1 * #{$card-focus-border-offset}); + right: calc(-1 * #{$card-focus-border-offset}); + bottom: calc(-1 * #{$card-focus-border-offset}); + left: calc(-1 * #{$card-focus-border-offset}); + border: solid $card-focus-border-width $card-border-focus-color; + border-radius: $card-focus-border-radius; + } + + &.pgn__card-dark::before { + border: solid $card-focus-border-width $card-border-focus-color-dark; + } } .pgn__card { + outline: none; + @include pgn-box-shadow(1, "down"); &.clickable { - &:hover { + &:hover, + &:focus, + &.focus { cursor: pointer; @include pgn-box-shadow(2, "down"); @@ -281,9 +400,7 @@ a .pgn__card { &:focus, &.focus { - box-shadow: $level-1-box-shadow; - outline: none; - border-color: $card-border-focus-color; + @extend %pgn__card-focused; } } diff --git a/src/Card/CardCarousel/CardCarousel.jsx b/src/Card/CardCarousel/CardCarousel.jsx new file mode 100644 index 0000000000..a89e1c94ad --- /dev/null +++ b/src/Card/CardCarousel/CardCarousel.jsx @@ -0,0 +1,95 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { OverflowScroll } from '../../OverflowScroll'; +import CardCarouselProvider from './CardCarouselProvider'; +import CardCarouselHeader from './CardCarouselHeader'; +import CardCarouselItems from './CardCarouselItems'; + +function CardCarousel({ + ariaLabel, + children, + title, + subtitle, + columnSizes, + hasInteractiveChildren, + canScrollHorizontal, + disableOpacityMasks, + onScrollPrevious, + onScrollNext, + CardCarouselControls, +}) { + return ( + + +
+ + {children} +
+
+
+ ); +} + +CardCarousel.propTypes = { + /** The `Card` items for the `CardCarousel`. */ + children: PropTypes.node.isRequired, + /** Text describing the CardCarousel for screen readers */ + ariaLabel: PropTypes.string.isRequired, + /** An optional title. */ + title: PropTypes.node, + /** An optional subtitle. */ + subtitle: PropTypes.node, + /** Customize the responsive columnSizes used by the carousel. */ + columnSizes: PropTypes.shape({ + xs: PropTypes.number, + sm: PropTypes.number, + md: PropTypes.number, + lg: PropTypes.number, + xl: PropTypes.number, + }), + /** Whether the carousel has interactive children (e.g., clickable cards). */ + hasInteractiveChildren: PropTypes.bool, + /** Whether the carousel can be scrolled manually by users. */ + canScrollHorizontal: PropTypes.bool, + /** Whether the default opacity masks should be shown at the start/end, if applicable. */ + disableOpacityMasks: PropTypes.bool, + /** Callback function for when the user scrolls to the previous element. */ + onScrollPrevious: PropTypes.func, + /** Callback function for when the user scrolls to the next element. */ + onScrollNext: PropTypes.func, + /** Optional override for the default `CardCarouselControls` */ + CardCarouselControls: PropTypes.elementType, +}; + +CardCarousel.defaultProps = { + title: undefined, + subtitle: undefined, + columnSizes: { + sm: 12, + lg: 6, + xl: 4, + }, + hasInteractiveChildren: false, + canScrollHorizontal: true, + disableOpacityMasks: false, + onScrollPrevious: undefined, + onScrollNext: undefined, + CardCarouselControls: undefined, +}; + +export default CardCarousel; diff --git a/src/Card/CardCarousel/CardCarouselControls.jsx b/src/Card/CardCarousel/CardCarouselControls.jsx new file mode 100644 index 0000000000..1cf9bc56dd --- /dev/null +++ b/src/Card/CardCarousel/CardCarouselControls.jsx @@ -0,0 +1,44 @@ +import React, { useContext } from 'react'; +import { useIntl } from 'react-intl'; +import { Stack, IconButton, Icon } from '../..'; +import { ArrowForward, ArrowBack } from '../../../icons'; +import { CardCarouselContext } from './CardCarouselProvider'; +import messages from './messages'; + +function CardCarouselControls() { + const { + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + } = useContext(CardCarouselContext); + + const intl = useIntl(); + + if (isScrolledToStart && isScrolledToEnd) { + return null; + } + + return ( +
+ + + + +
+ ); +} + +export default CardCarouselControls; diff --git a/src/Card/CardCarousel/CardCarouselHeader.jsx b/src/Card/CardCarousel/CardCarouselHeader.jsx new file mode 100644 index 0000000000..b6f93721f4 --- /dev/null +++ b/src/Card/CardCarousel/CardCarouselHeader.jsx @@ -0,0 +1,56 @@ +import React, { useContext, isValidElement } from 'react'; +import PropTypes from 'prop-types'; +import CardCarouselTitle from './CardCarouselTitle'; +import CardCarouselSubtitle from './CardCarouselSubtitle'; +import DefaultCardCarouselControls from './CardCarouselControls'; +import { CardCarouselContext } from './CardCarouselProvider'; + +const getFormattedTitle = (title) => { + if (!title) { + return null; + } + if (isValidElement(title)) { + return title; + } + return {title}; +}; + +const getFormattedSubtitle = (subtitle) => { + if (!subtitle) { + return null; + } + if (isValidElement(subtitle)) { + return subtitle; + } + return {subtitle}; +}; + +function CardCarouselHeader({ title, subtitle }) { + const { CardCarouselControls: customCardCarouselControls } = useContext(CardCarouselContext); + const CardCarouselControls = customCardCarouselControls || DefaultCardCarouselControls; + + const carouselTitle = getFormattedTitle(title); + const carouselSubtitle = getFormattedSubtitle(subtitle); + + return ( +
+
+ {carouselTitle} + {carouselSubtitle} +
+ +
+ ); +} + +CardCarouselHeader.propTypes = { + title: PropTypes.node, + subtitle: PropTypes.node, +}; + +CardCarouselHeader.defaultProps = { + title: undefined, + subtitle: undefined, +}; + +export default CardCarouselHeader; diff --git a/src/Card/CardCarousel/CardCarouselItems.jsx b/src/Card/CardCarousel/CardCarouselItems.jsx new file mode 100644 index 0000000000..7f70d5cc1e --- /dev/null +++ b/src/Card/CardCarousel/CardCarouselItems.jsx @@ -0,0 +1,31 @@ +import React, { useContext } from 'react'; +import PropTypes from 'prop-types'; +import CardDeck from '../CardDeck'; +import { CardCarouselContext } from './CardCarouselProvider'; + +function CardCarouselItems({ children }) { + const { + columnSizes, + hasInteractiveChildren, + canScrollHorizontal, + setOverflowRef, + } = useContext(CardCarouselContext); + + return ( + + {children} + + ); +} + +CardCarouselItems.propTypes = { + children: PropTypes.node.isRequired, +}; + +export default CardCarouselItems; diff --git a/src/Card/CardCarousel/CardCarouselProvider.jsx b/src/Card/CardCarousel/CardCarouselProvider.jsx new file mode 100644 index 0000000000..8c34dab187 --- /dev/null +++ b/src/Card/CardCarousel/CardCarouselProvider.jsx @@ -0,0 +1,87 @@ +import React, { createContext, useContext, useMemo } from 'react'; +import PropTypes from 'prop-types'; +import { OverflowScrollContext } from '../..'; + +export const CardCarouselContext = createContext(); + +function CardCarouselProvider({ + columnSizes, + hasInteractiveChildren, + canScrollHorizontal, + children, + CardCarouselControls, +}) { + const { + overflowRef, + setOverflowRef, + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + } = useContext(OverflowScrollContext); + + const cardCarouselContextValue = useMemo(() => ({ + overflowRef, + setOverflowRef, + columnSizes, + hasInteractiveChildren, + canScrollHorizontal, + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + CardCarouselControls, + }), [ + overflowRef, + setOverflowRef, + columnSizes, + hasInteractiveChildren, + canScrollHorizontal, + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + CardCarouselControls, + ]); + + return ( + + {children} + + ); +} + +CardCarouselProvider.propTypes = { + children: PropTypes.node.isRequired, + /** + * An object containing the desired column size at each breakpoint, following a similar + * props API as ``react-bootstrap/Col`` + */ + columnSizes: PropTypes.shape({ + xs: PropTypes.number, + sm: PropTypes.number, + md: PropTypes.number, + lg: PropTypes.number, + xl: PropTypes.number, + }), + /** Whether the child `Card` components are interactive/focusable. If not, a `tabindex="0"` is + * added to be a11y-compliant */ + hasInteractiveChildren: PropTypes.bool, + /** Whether the `CardDeck` supports horizontal scrolling when there are overflow children */ + canScrollHorizontal: PropTypes.bool, + /** Optional override for the default `CardCarouselControls` */ + CardCarouselControls: PropTypes.elementType, +}; + +CardCarouselProvider.defaultProps = { + columnSizes: { + sm: 12, + lg: 6, + xl: 4, + }, + hasInteractiveChildren: false, + canScrollHorizontal: true, + CardCarouselControls: undefined, +}; + +export default CardCarouselProvider; diff --git a/src/Card/CardCarousel/CardCarouselSubtitle.jsx b/src/Card/CardCarousel/CardCarouselSubtitle.jsx new file mode 100644 index 0000000000..85369d2f90 --- /dev/null +++ b/src/Card/CardCarousel/CardCarouselSubtitle.jsx @@ -0,0 +1,25 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +function CardCarouselSubtitle({ children, as, className }) { + const Component = as || 'p'; + return ( + + {children} + + ); +} + +CardCarouselSubtitle.propTypes = { + children: PropTypes.node.isRequired, + as: PropTypes.oneOfType([PropTypes.string, PropTypes.elementType]), + className: PropTypes.string, +}; + +CardCarouselSubtitle.defaultProps = { + as: undefined, + className: undefined, +}; + +export default CardCarouselSubtitle; diff --git a/src/Card/CardCarousel/CardCarouselTitle.jsx b/src/Card/CardCarousel/CardCarouselTitle.jsx new file mode 100644 index 0000000000..a7ac7ff0b9 --- /dev/null +++ b/src/Card/CardCarousel/CardCarouselTitle.jsx @@ -0,0 +1,25 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import classNames from 'classnames'; + +function CardCarouselTitle({ children, as, className }) { + const Component = as || 'h2'; + return ( + + {children} + + ); +} + +CardCarouselTitle.propTypes = { + children: PropTypes.node.isRequired, + as: PropTypes.oneOfType([PropTypes.string, PropTypes.elementType]), + className: PropTypes.string, +}; + +CardCarouselTitle.defaultProps = { + as: undefined, + className: undefined, +}; + +export default CardCarouselTitle; diff --git a/src/Card/CardCarousel/index.js b/src/Card/CardCarousel/index.js new file mode 100644 index 0000000000..ecf602ee9f --- /dev/null +++ b/src/Card/CardCarousel/index.js @@ -0,0 +1,3 @@ +import CardCarousel from './CardCarousel'; + +export default CardCarousel; diff --git a/src/Card/CardCarousel/messages.js b/src/Card/CardCarousel/messages.js new file mode 100644 index 0000000000..a4a4d66894 --- /dev/null +++ b/src/Card/CardCarousel/messages.js @@ -0,0 +1,16 @@ +import { defineMessages } from 'react-intl'; + +const messages = defineMessages({ + scrollToPrevious: { + id: 'pgn.CardCarousel.scrollToPrevious', + defaultMessage: 'Scroll to previous', + description: 'Accessibility text describing the action for navigating a scrollable carousel to the previous element', + }, + scrollToNext: { + id: 'pgn.CardCarousel.scrollToNext', + defaultMessage: 'Scroll to next', + description: 'Accessibility text describing the action for navigating a scrollable carousel to the next element', + }, +}); + +export default messages; diff --git a/src/Card/CardCarousel/tests/CardCarousel.test.jsx b/src/Card/CardCarousel/tests/CardCarousel.test.jsx new file mode 100644 index 0000000000..f4d0fb21b9 --- /dev/null +++ b/src/Card/CardCarousel/tests/CardCarousel.test.jsx @@ -0,0 +1,113 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import renderer from 'react-test-renderer'; +import { v4 as uuidv4 } from 'uuid'; +import { IntlProvider } from 'react-intl'; +import CardCarousel from '../CardCarousel'; +import Card from '../..'; +import { OverflowScroll, OverflowScrollContext } from '../../../OverflowScroll'; + +jest.mock('../../../OverflowScroll', () => ({ + ...jest.requireActual('../../../OverflowScroll'), + OverflowScroll: jest.fn(), +})); + +// eslint-disable-next-line react/prop-types +OverflowScroll.mockImplementation(({ children }) => { + const overflowRef = { current: document.createElement('div') }; + const contextValue = { + overflowRef, + isScrolledToStart: true, + isScrolledToEnd: false, + scrollToPrevious: jest.fn(), + scrollToNext: jest.fn(), + }; + + return ( + +
{children}
+
+ ); +}); + +function ExampleCard(props) { + return ( + + + + Card title + + This is a wider card with supporting text below as a natural lead-in to + additional content. This card has even longer content than the first to + show that equal height action. + + + Last updated 3 mins ago} /> + + ); +} + +function getCardContent({ cardCount = 5, ...cardProps } = {}) { + return Array.from({ length: cardCount }).map(() => ); +} + +function CardCarouselWrapper({ children, ...rest }) { + return ( + + + {children} + + + ); +} + +CardCarouselWrapper.propTypes = { + children: PropTypes.node.isRequired, + ariaLabel: PropTypes.string, +}; + +CardCarouselWrapper.defaultProps = { + ariaLabel: 'example card carousel', +}; + +describe('', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('renders default card carousel', () => { + const cardContent = getCardContent(); + const tree = renderer.create(( + + {cardContent} + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('renders card carousel with title and subtitles', () => { + const cardContent = getCardContent(); + const tree = renderer.create(( + + {cardContent} + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('renders card carousel with custom title and subtitles elements', () => { + const cardContent = getCardContent(); + const tree = renderer.create(( + Example Title} + subtitle={

Example subtitle

} + > + {cardContent} +
+ )).toJSON(); + expect(tree).toMatchSnapshot(); + }); +}); diff --git a/src/Card/CardCarousel/tests/CardCarouselControls.test.jsx b/src/Card/CardCarousel/tests/CardCarouselControls.test.jsx new file mode 100644 index 0000000000..0a8c63c66c --- /dev/null +++ b/src/Card/CardCarousel/tests/CardCarouselControls.test.jsx @@ -0,0 +1,114 @@ +import React from 'react'; +import PropTypes from 'prop-types'; +import { render, screen } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; +import renderer from 'react-test-renderer'; +import { IntlProvider } from 'react-intl'; +import { CardCarouselContext } from '../CardCarouselProvider'; +import CardCarouselControls from '../CardCarouselControls'; + +const mockScrollToPrevious = jest.fn(); +const mockScrollToNext = jest.fn(); +const defaultCardCarouselContextValue = { + isScrolledToStart: false, + isScrolledToEnd: false, + scrollToPrevious: mockScrollToPrevious, + scrollToNext: mockScrollToNext, +}; + +function CardCarouselControlsWrapper({ + cardCarouselContextValue, + ...rest +}) { + return ( + + + + + + ); +} + +CardCarouselControlsWrapper.propTypes = { + cardCarouselContextValue: PropTypes.shape(), +}; + +CardCarouselControlsWrapper.defaultProps = { + cardCarouselContextValue: defaultCardCarouselContextValue, +}; + +describe('', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('renders with disabled previous control when scrolled to start', () => { + const contextValue = { + ...defaultCardCarouselContextValue, + isScrolledToStart: true, + }; + const tree = renderer.create(( + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('renders with disabled next control when scrolled to end', () => { + const contextValue = { + ...defaultCardCarouselContextValue, + isScrolledToEnd: true, + }; + const tree = renderer.create(( + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('renders with enabled controls when not scrolled to start/end', () => { + const contextValue = { + ...defaultCardCarouselContextValue, + isScrolledToStart: false, + isScrolledToEnd: false, + }; + const tree = renderer.create(( + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('renders without controls when both previous/next controls would be disabled', () => { + const contextValue = { + ...defaultCardCarouselContextValue, + isScrolledToStart: true, + isScrolledToEnd: true, + }; + const tree = renderer.create(( + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('handles scroll to previous click', () => { + const contextValue = { + ...defaultCardCarouselContextValue, + isScrolledToStart: false, + }; + render(( + + )); + userEvent.click(screen.getByLabelText('Scroll to previous')); + expect(mockScrollToPrevious).toHaveBeenCalledTimes(1); + }); + + it('handles scroll to next click', () => { + const contextValue = { + ...defaultCardCarouselContextValue, + isScrolledToEnd: false, + }; + render(( + + )); + userEvent.click(screen.getByLabelText('Scroll to next')); + expect(mockScrollToNext).toHaveBeenCalledTimes(1); + }); +}); diff --git a/src/Card/CardCarousel/tests/__snapshots__/CardCarousel.test.jsx.snap b/src/Card/CardCarousel/tests/__snapshots__/CardCarousel.test.jsx.snap new file mode 100644 index 0000000000..0d1de6664a --- /dev/null +++ b/src/Card/CardCarousel/tests/__snapshots__/CardCarousel.test.jsx.snap @@ -0,0 +1,1026 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` renders card carousel with custom title and subtitles elements 1`] = ` +
+
+
+
+

+ Example Title +

+

+ Example subtitle +

+
+
+
+ + +
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+
+`; + +exports[` renders card carousel with title and subtitles 1`] = ` +
+
+
+
+

+ Example Title +

+

+ Example subtitle. +

+
+
+
+ + +
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+
+`; + +exports[` renders default card carousel 1`] = ` +
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+
+`; diff --git a/src/Card/CardCarousel/tests/__snapshots__/CardCarouselControls.test.jsx.snap b/src/Card/CardCarousel/tests/__snapshots__/CardCarouselControls.test.jsx.snap new file mode 100644 index 0000000000..dcbcfb563d --- /dev/null +++ b/src/Card/CardCarousel/tests/__snapshots__/CardCarouselControls.test.jsx.snap @@ -0,0 +1,222 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` renders with disabled next control when scrolled to end 1`] = ` +
+
+ + +
+
+`; + +exports[` renders with disabled previous control when scrolled to start 1`] = ` +
+
+ + +
+
+`; + +exports[` renders with enabled controls when not scrolled to start/end 1`] = ` +
+
+ + +
+
+`; + +exports[` renders without controls when both previous/next controls would be disabled 1`] = `null`; diff --git a/src/Card/CardContext.jsx b/src/Card/CardContext.jsx index c3152bc3cc..82da46c3a5 100644 --- a/src/Card/CardContext.jsx +++ b/src/Card/CardContext.jsx @@ -4,10 +4,13 @@ import PropTypes from 'prop-types'; const CardContext = createContext({}); function CardContextProvider({ - orientation, children, isLoading, + orientation, + children, + isLoading, + variant, }) { return ( - + {children} ); @@ -20,12 +23,15 @@ CardContextProvider.propTypes = { isLoading: PropTypes.bool, /** Specifies content of the component. */ children: PropTypes.node, + /** Specifies `Card` style variant */ + variant: PropTypes.oneOf(['light', 'dark', 'muted']), }; CardContextProvider.defaultProps = { orientation: 'vertical', isLoading: false, children: null, + variant: 'light', }; export { CardContextProvider }; diff --git a/src/Card/CardDeck.jsx b/src/Card/CardDeck.jsx new file mode 100644 index 0000000000..1a9ec0c133 --- /dev/null +++ b/src/Card/CardDeck.jsx @@ -0,0 +1,97 @@ +import React, { Children, useMemo } from 'react'; +import classNames from 'classnames'; +import PropTypes from 'prop-types'; +import BaseCardDeck from 'react-bootstrap/CardDeck'; +import Row from 'react-bootstrap/Row'; +import Col from 'react-bootstrap/Col'; +import { useOverflowScrollItems } from '..'; + +export const CARD_DECK_ITEM_CLASS_NAME = 'pgn__card-deck-card-item'; + +const CardDeck = React.forwardRef(({ + className, + children, + columnSizes, + hasInteractiveChildren, + canScrollHorizontal, + hasOverflowScrollItems, +}, ref) => { + const cards = useMemo( + () => Children.map(Children.toArray(children), child => ( + + {child} + + )), + [children, columnSizes], + ); + const overflowCardDeckItems = useOverflowScrollItems(cards); + + const cardDeckChildren = useMemo(() => { + if (hasOverflowScrollItems) { + return overflowCardDeckItems; + } + return cards; + }, [hasOverflowScrollItems, overflowCardDeckItems, cards]); + + return ( +
+ + {cardDeckChildren} + +
+ ); +}); + +CardDeck.propTypes = { + /** The class name for the CardDeck component */ + className: PropTypes.string, + /** The Card components to organize */ + children: PropTypes.node.isRequired, + /** + * An object containing the desired column size at each breakpoint, following a similar + * props API as ``react-bootstrap/Col`` + */ + columnSizes: PropTypes.shape({ + xs: PropTypes.number, + sm: PropTypes.number, + md: PropTypes.number, + lg: PropTypes.number, + xl: PropTypes.number, + }), + /** Whether the child `Card` components are interactive/focusable. If not, a `tabindex="0"` is + * added to be a11y-compliant */ + hasInteractiveChildren: PropTypes.bool, + /** Whether the `CardDeck` supports horizontal scrolling when there are overflow children */ + canScrollHorizontal: PropTypes.bool, + /** Whether the children of CardDeck should be processed by `useOverflowScrollItems` to give + * each child a known/stable CSS classname */ + hasOverflowScrollItems: PropTypes.bool, +}; + +CardDeck.defaultProps = { + className: undefined, + columnSizes: { + sm: 12, + lg: 6, + xl: 4, + }, + hasInteractiveChildren: false, + canScrollHorizontal: true, + hasOverflowScrollItems: false, +}; + +CardDeck.Deprecated = BaseCardDeck; + +export default CardDeck; diff --git a/src/Card/CardFooter.jsx b/src/Card/CardFooter.jsx index 2cb673507d..ec2fca5dff 100644 --- a/src/Card/CardFooter.jsx +++ b/src/Card/CardFooter.jsx @@ -42,7 +42,7 @@ const CardFooter = React.forwardRef(({ CardFooter.propTypes = { /** Specifies contents of the component. */ - children: PropTypes.node.isRequired, + children: PropTypes.node, /** Specifies class name to append to the base element. */ className: PropTypes.string, /** Optional node to display near actions. Should be either a plain text or an element containing text (e.g. link). */ @@ -58,6 +58,7 @@ CardFooter.propTypes = { }; CardFooter.defaultProps = { + children: null, className: undefined, textElement: undefined, isStacked: false, diff --git a/src/Card/CardImageCap.jsx b/src/Card/CardImageCap.jsx index 36984d6e5b..dc87c1bff3 100644 --- a/src/Card/CardImageCap.jsx +++ b/src/Card/CardImageCap.jsx @@ -1,8 +1,9 @@ -import React, { useContext } from 'react'; +import React, { useContext, useState } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; import Skeleton from 'react-loading-skeleton'; import CardContext from './CardContext'; +import cardSrcFallbackImg from './fallback-default.png'; const SKELETON_HEIGHT_VALUE = 140; const LOGO_SKELETON_HEIGHT_VALUE = 41; @@ -22,6 +23,8 @@ const CardImageCap = React.forwardRef(({ className, }, ref) => { const { orientation, isLoading } = useContext(CardContext); + const [showImageCap, setShowImageCap] = useState(false); + const [showLogoCap, setShowLogoCap] = useState(false); const wrapperClassName = `pgn__card-wrapper-image-cap ${orientation}`; if (isLoading) { @@ -44,26 +47,39 @@ const CardImageCap = React.forwardRef(({ ); } - const handleSrcFallback = (event, altSrc) => { + const handleSrcFallback = (event, altSrc, imageKey) => { const { currentTarget } = event; - if (currentTarget.src !== altSrc) { - currentTarget.src = altSrc; + + if (!altSrc || currentTarget.src.endsWith(altSrc)) { + if (imageKey === 'imageCap') { + currentTarget.src = cardSrcFallbackImg; + } else { + setShowLogoCap(false); + } + + return; } + + currentTarget.src = altSrc; }; return (
- handleSrcFallback(event, fallbackSrc)} - alt={srcAlt} - /> + {!!src && ( + handleSrcFallback(event, fallbackSrc, 'imageCap')} + onLoad={() => setShowImageCap(true)} + alt={srcAlt} + /> + )} {!!logoSrc && ( handleSrcFallback(event, fallbackLogoSrc)} + onError={(event) => handleSrcFallback(event, fallbackLogoSrc, 'logoCap')} + onLoad={() => setShowLogoCap(true)} alt={logoAlt} /> )} @@ -100,7 +116,7 @@ CardImageCap.propTypes = { CardImageCap.defaultProps = { src: undefined, - fallbackSrc: undefined, + fallbackSrc: cardSrcFallbackImg, logoSrc: undefined, fallbackLogoSrc: undefined, className: undefined, diff --git a/src/Card/CardSection.jsx b/src/Card/CardSection.jsx index 210d53832d..d5cc2c35a7 100644 --- a/src/Card/CardSection.jsx +++ b/src/Card/CardSection.jsx @@ -45,7 +45,7 @@ CardSection.propTypes = { /** Specifies class name to append to the base element. */ className: PropTypes.string, /** Specifies contents of the component. */ - children: PropTypes.node.isRequired, + children: PropTypes.node, /** Specifies title of the `Section`. */ title: PropTypes.node, /** Specifies node to render on the bottom right of the `Section` (i.e. `ActionRow`). */ @@ -59,6 +59,7 @@ CardSection.propTypes = { }; CardSection.defaultProps = { + children: null, className: undefined, title: undefined, actions: undefined, diff --git a/src/Card/README.md b/src/Card/README.md index 220a0a1424..6e2fb3ec7d 100644 --- a/src/Card/README.md +++ b/src/Card/README.md @@ -35,7 +35,7 @@ This component uses a `Card` from react-bootstrap as a base component and extend return ( { + const [cardVariant, setCardVariant] = useState('light'); const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth }); return ( - - - + {/* start example form block */} + - - This is a card section. It can contain anything but usually text, a list, or list of links. Multiple sections have a card divider between them. - - - - - + {/* end example form block */} + + + + + + This is a card section. It can contain anything but usually text, a list, or list of links. Multiple sections have a card divider between them. + + + + + + )} ``` -## Clickable variant +## Clickable card You use `isClickable` prop to add additional `hover` and `focus` styling to the `Card`. @@ -89,7 +102,7 @@ You use `isClickable` prop to add additional `hover` and `focus` styling to the return ( @@ -244,16 +257,15 @@ Add ``size="sm"`` for smaller header content and actions. } - muted > - This is a muted variant. + This is another section variant. @@ -348,7 +360,7 @@ Note that `Card.Footer` has a separate `orientation` prop which will override th return ( {/* end example form block */} @@ -512,7 +524,7 @@ Note that in the example below, the content of `Card` is wrapped inside `Card.Bo return ( @@ -551,7 +563,7 @@ Note that in the example below, the content of `Card` is wrapped inside `Card.Bo return ( @@ -585,8 +597,8 @@ Note that in the example below, the content of `Card` is wrapped inside `Card.Bo )} ``` - -## With Fallback Image +## Fallback Image +### With Fallback custom Image You can specify `fallbackSrc` image to show in case your main `src` fails to load. A fallback source is available for both the main `ImageCap` component image and the logo. @@ -598,20 +610,49 @@ A fallback source is available for both the main `ImageCap` component image and return ( - This is a card section. It can contain anything but usually text, a list, or list of links. - Multiple sections have a card divider between them. + This is a card section. It can contain anything but usually text, a list, or list of links. + Multiple sections have a card divider between them. - + + + +)} +``` + +### With default Fallback Image + +The default fallback image will be displayed if `fallbackSrc` is not specified. + +```jsx live +() => { + const isExtraSmall = useMediaQuery({maxWidth: breakpoints.small.maxWidth}); + + return ( + + + + + This is a card section. It can contain anything but usually text, a list, or list of links. + Multiple sections have a card divider between them. + + + )} @@ -627,7 +668,7 @@ A fallback source is available for both the main `ImageCap` component image and return ( @@ -650,8 +691,8 @@ A fallback source is available for both the main `ImageCap` component image and return ( - - Last updated 3 mins ago - + Last updated 3 mins ago} /> - - Last updated 3 mins ago - + Last updated 3 mins ago} /> - - Last updated 3 mins ago - + Last updated 3 mins ago} /> - - Last updated 3 mins ago - + Last updated 3 mins ago} /> - - Last updated 3 mins ago - + Last updated 3 mins ago} /> - - Last updated 3 mins ago - + Last updated 3 mins ago} /> ``` -## CardDeck (Deprecated) +## CardDeck -This component gives any child Card components equal height with an appropriate gutter between cards. However, -it is meant to be used as a single horizontal row of Cards, not as a grid. See CardGrid for more details. +Displays child `Card` components in a horizontal row with equal height and width, with an appropriate gutter between cards. The width of each child `Card` component is determined by the (optional) `columnSizes` prop. If any child `Card` components overflow beyond the parent's width, they will be hidden but accessible via scrolling horizontally or keyboard navigation. -**Note**: this component is deprecated and is going to be removed soon. +For accessibility, if the child `Card` components are interactive (e.g., `isClickable`), pass the `hasInteractiveChildren` prop so the `CardDeck` itself isn't focusable. ```jsx live - - - - - - This is a wider card with supporting text below as a natural lead-in to - additional content. This card has even longer content than the first to - show that equal height action. - - - Last updated 3 mins ago - - - - - - - This is a wider card with supporting text below as a natural lead-in to - additional content. This content is a little bit longer. - - - Last updated 3 mins ago - - - - - - - This is a wider card with supporting text below as a natural lead-in to - additional content. This card has even longer content than the first to - show that equal height action. - - - Last updated 3 mins ago - - - -``` \ No newline at end of file +() => { + const [hasInteractiveChildren, setHasInteractiveChildren] = useState('false'); + + const CardComponent = () => ( + + + + + + + + ); + + return ( + <> + {/* start example form block */} + + {/* end example form block */} + + + + + + + + + + ); +} +``` + +### CardDeck.Deprecated + +Gives any child `Card` components equal height with an appropriate gutter between cards. Each child `Card` component's width will be adjusted (e.g., become more narrow) to ensure all `Card` components fit within its parent's width. + +Note: This component is a pass-thru from `react-bootstrap`. + +```jsx live +() => { + const CardComponent = () => ( + + + + + + + + ); + + return ( + + + + + + ) +} +``` + +## CardCarousel + +Extends `CardDeck` to support navigating between any overflow `Card` components via left and right `IconButton` components as a scrollable carousel. + +Includes support for an optional `title` and `subtitle`. You may rely on the default styles for the titles (e.g., if passing strings) or alternatively you may also pass custom HTML and JSX. + +```jsx live +() => { + const [canScrollHorizontal, setCanScrollHorizontal] = useState('true'); + const [disableOpacityMasks, setDisableOpacityMasks] = useState('false'); + const [hasOverflowCards, setHasOverflowCards] = useState('true'); + + const CardComponent = () => ( + + + + + + + + ); + + const cardItems = useMemo(() => { + if (hasOverflowCards === 'true') { + return Array.from({ length: 8 }).map(() => ); + } + return Array.from({ length: 2 }).map(() => ); + }, [hasOverflowCards]); + + return ( + <> + {/* start example form block */} + + {/* end example form block */} + + Recommended for you} + subtitle="The following content was picked just for you." + canScrollHorizontal={canScrollHorizontal === 'true'} + disableOpacityMasks={disableOpacityMasks === 'true'} + onScrollPrevious={() => { console.log('onScrollPrevious'); } } + onScrollNext={() => { console.log('onScrollNext'); } } + > + {cardItems} + + + ); +} +``` diff --git a/src/Card/_variables.scss b/src/Card/_variables.scss index 20ed7f7a8b..b79936f841 100644 --- a/src/Card/_variables.scss +++ b/src/Card/_variables.scss @@ -1,47 +1,56 @@ -// Cards - -$card-spacer-y: .75rem !default; -$card-spacer-x: 1.25rem !default; -$card-border-width: $border-width !default; -$card-border-radius: $border-radius !default; -$card-border-color: rgba($black, .125) !default; -$card-border-focus-color: rgba($black, .5) !default; -$card-inner-border-radius: subtract($card-border-radius, $card-border-width) !default; -$card-cap-bg: rgba($black, .03) !default; -$card-cap-color: null !default; -$card-height: null !default; -$card-color: null !default; -$card-bg: $white !default; - -$card-img-overlay-padding: 1.25rem !default; - -$card-group-margin: calc($grid-gutter-width / 2) !default; -$card-deck-margin: $card-group-margin !default; -$card-grid-margin: $card-group-margin !default; - -$card-columns-count: 3 !default; -$card-columns-gap: 1.25rem !default; -$card-columns-margin: $card-spacer-y !default; - -$card-divider-bg: $light-400 !default; -$card-divider-margin-y: $card-spacer-y !default; - -$card-footer-actions-gap: .5rem !default; - -$card-logo-left-offset: 1.5rem !default; -$card-logo-bottom-offset: 1rem !default; -$card-logo-left-offset-horizontal: .4375rem !default; -$card-logo-bottom-offset-horizontal: .4375rem !default; - -$card-logo-width: 7.25rem !default; -$card-logo-height: 4.125rem !default; - -$card-image-border-radius: .3125rem !default; -$card-logo-border-radius: .25rem !default; - -$card-footer-text-font-size: $x-small-font-size; - -$card-image-horizontal-max-width: 240px; -$card-image-horizontal-min-width: $card-image-horizontal-max-width; -$card-image-vertical-max-height: 140px; -$loading-skeleton-spacer: .313rem; +// Card + +$card-spacer-y: var(--pgn-spacing-card-spacer-y) !default; +$card-spacer-x: var(--pgn-spacing-card-spacer-x) !default; +$card-border-width: var(--pgn-size-card-border-width) !default; +$card-border-radius: var(--pgn-size-card-border-radius-base) !default; +$card-border-color: var(--pgn-color-card-border-base) !default; +$card-border-focus-color: var(--pgn-color-card-border-focus-base) !default; +$card-border-focus-color-dark: var(--pgn-color-card-border-focus-dark) !default; +$card-cap-bg: var(--pgn-card-cap-bg) !default; +$card-cap-color: var(--pgn-card-cap-color) !default; +$card-height: var(--pgn-card-height-base) !default; +$card-bg-dark: var(--pgn-color-card-bg-dark) !default; +$card-bg-muted: var(--pgn-color-card-bg-muted) !default; + +// TODO: Need to deleted this variable after refactoring Card component +// stylelint-disable-next-line max-line-length +$card-inner-border-radius: calc(#{var(--pgn-size-card-border-radius-base)} - #{var(--pgn-size-card-border-width)}) !default; +$card-color: var(--pgn-color-card-base) !default; +$card-bg: var(--pgn-color-card-bg-base) !default; + +$card-group-margin: var(--pgn-spacing-card-margin-group) !default; +$card-deck-margin: var(--pgn-spacing-card-margin-deck) !default; +$card-grid-margin: var(--pgn-spacing-card-margin-grid) !default; +$card-deck-margin-bottom: var(--pgn-spacing-card-margin-deck-bottom) !default; +$card-grid-margin-bottom: var(--pgn-spacing-card-margin-grid-bottom) !default; + +$card-columns-count: var(--pgn-spacing-card-columns-count) !default; +$card-columns-gap: var(--pgn-spacing-card-columns-gap) !default; +$card-columns-margin: var(--pgn-spacing-card-columns-margin) !default; + +$card-divider-bg: var(--pgn-color-card-divider-bg) !default; + +$card-footer-actions-gap: var(--pgn-spacing-card-footer-action-gap) !default; + +$card-logo-left-offset: var(--pgn-spacing-card-logo-left-offset-base) !default; +$card-logo-bottom-offset: var(--pgn-spacing-card-logo-bottom-offset-base) !default; +$card-logo-left-offset-horizontal: var(--pgn-spacing-card-logo-left-offset-horizontal) !default; +$card-logo-bottom-offset-horizontal: var(--pgn-spacing-card-logo-bottom-offset-horizontal) !default; + +$card-logo-width: var(--pgn-size-card-logo-width) !default; +$card-logo-height: var(--pgn-size-card-logo-height) !default; + +$card-image-border-radius: var(--pgn-size-card-border-radius-image) !default; +$card-logo-border-radius: var(--pgn-size-card-border-radius-logo) !default; + +$card-footer-text-font-size: var(--pgn-typography-footer-text-font-size) !default; + +$card-image-horizontal-max-width: var(--pgn-size-card-image-horizontal-width-max) !default; +$card-image-horizontal-min-width: var(--pgn-size-card-image-horizontal-width-min) !default; +$card-image-vertical-max-height: var(--pgn-size-card-image-vertical-max-height) !default; +$loading-skeleton-spacer: var(--pgn-spacing-card-loading-skeleton-spacer) !default; + +$card-focus-border-offset: var(--pgn-spacing-card-focus-border-offset) !default; +$card-focus-border-width: var(--pgn-size-card-focus-border-width) !default; +$card-focus-border-radius: var(--pgn-size-card-focus-border-radius) !default; diff --git a/src/Card/card-bootstrap.scss b/src/Card/card-bootstrap.scss new file mode 100644 index 0000000000..eb2cdf5aae --- /dev/null +++ b/src/Card/card-bootstrap.scss @@ -0,0 +1,166 @@ +.card { + display: flex; + flex-direction: column; + min-width: 0; + word-wrap: break-word; + background-color: $card-bg; + background-clip: border-box; + border: $card-border-width solid $card-border-color; + position: relative; + + @include border-radius($card-border-radius); + + > hr { + margin-right: 0; + margin-left: 0; + } + + > .list-group { + border-top: inherit; + border-bottom: inherit; + + &:first-child { + border-top-width: 0; + + @include border-top-radius($card-inner-border-radius); + } + + &:last-child { + border-bottom-width: 0; + + @include border-bottom-radius($card-inner-border-radius); + } + } + + > .card-header + .list-group, + > .list-group + .card-footer { + border-top: 0; + } +} + +// TODO: This selector is not used in Paragon. +// It is necessary to delete it and the existing design token (`$card-color`). +.card-body { + flex: 1 1 auto; + min-height: 1px; + padding: $card-spacer-x; + color: $card-color; +} + +// Card deck +.card-deck { + .card { + margin-bottom: $card-deck-margin; + } + + @include media-breakpoint-up(sm) { + display: flex; + flex-flow: row wrap; + margin-right: calc(#{$card-deck-margin} * -1); + margin-left: calc(#{$card-deck-margin} * -1); + + .card { + flex: 1 0 0%; + margin-right: $card-deck-margin; + margin-bottom: 0; // Override the default + margin-left: $card-deck-margin; + } + } +} + +// Card groups +.card-group { + > .card { + margin-bottom: $card-group-margin; + } + + @include media-breakpoint-up(sm) { + display: flex; + flex-flow: row wrap; + + > .card { + flex: 1 0 0%; + margin-bottom: 0; + + + .card { + margin-left: 0; + border-left: 0; + } + + // Handle rounded corners + @if $enable-rounded { + &:not(:last-child) { + @include border-right-radius(0); + + .card-img-top, + .card-header { + border-top-right-radius: 0; + } + + .card-img-bottom, + .card-footer { + border-bottom-right-radius: 0; + } + } + + &:not(:first-child) { + @include border-left-radius(0); + + .card-img-top, + .card-header { + border-top-left-radius: 0; + } + + .card-img-bottom, + .card-footer { + border-bottom-left-radius: 0; + } + } + } + } + } +} + +// Columns +.card-columns { + .card { + margin-bottom: $card-columns-margin; + } + + @include media-breakpoint-up(sm) { + column-count: $card-columns-count; + column-gap: $card-columns-gap; + orphans: 1; + widows: 1; + + .card { + display: inline-block; + width: 100%; + } + } +} + +// Accordion +.accordion { + overflow-anchor: none; + + > .card { + overflow: hidden; + + &:not(:last-of-type) { + border-bottom: 0; + + @include border-bottom-radius(0); + } + + &:not(:first-of-type) { + @include border-top-radius(0); + } + + > .card-header { + @include border-radius(0); + + margin-bottom: calc(#{$card-border-width} * -1); + } + } +} diff --git a/src/Card/fallback-default.png b/src/Card/fallback-default.png new file mode 100644 index 0000000000..b18d751d26 Binary files /dev/null and b/src/Card/fallback-default.png differ diff --git a/src/Card/index.jsx b/src/Card/index.jsx index 37daca5fc9..463a81aa22 100644 --- a/src/Card/index.jsx +++ b/src/Card/index.jsx @@ -10,6 +10,9 @@ import CardFooter from './CardFooter'; import CardImageCap from './CardImageCap'; import CardBody from './CardBody'; import CardStatus from './CardStatus'; +import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps'; + +export const CARD_VARIANTS = ['light', 'dark', 'muted']; const Card = React.forwardRef(({ orientation, @@ -17,24 +20,34 @@ const Card = React.forwardRef(({ className, isClickable, muted, + variant, ...props -}, ref) => ( - - - -)); +}, ref) => { + const resolvedVariant = muted ? 'muted' : variant; + + return ( + + + + ); +}); export { default as CardColumns } from 'react-bootstrap/CardColumns'; -export { default as CardDeck } from 'react-bootstrap/CardDeck'; +export { default as CardDeck } from './CardDeck'; +export { default as CardCarousel } from './CardCarousel/CardCarousel'; export { default as CardImg } from 'react-bootstrap/CardImg'; export { default as CardGroup } from 'react-bootstrap/CardGroup'; export { default as CardGrid } from './CardGrid'; @@ -49,7 +62,9 @@ Card.propTypes = { isClickable: PropTypes.bool, /** Specifies loading state. */ isLoading: PropTypes.bool, - /** Specifies whether to display `Card` in muted styling. */ + /** Specifies `Card` style variant. */ + variant: PropTypes.oneOf(CARD_VARIANTS), + /** **Deprecated**. Specifies whether `Card` uses `muted` variant. Use `variant="muted"` instead. */ muted: PropTypes.bool, }; @@ -58,16 +73,24 @@ Card.defaultProps = { className: undefined, orientation: 'vertical', isClickable: false, - muted: false, + variant: 'light', isLoading: false, }; -Card.Status = CardStatus; -Card.Header = CardHeader; -Card.Divider = CardDivider; -Card.Section = CardSection; -Card.Footer = CardFooter; -Card.ImageCap = CardImageCap; -Card.Context = CardContext; -Card.Body = CardBody; -export default Card; +const CardWithDeprecatedProp = withDeprecatedProps(Card, 'Card', { + muted: { + deprType: DeprTypes.REMOVED, + message: 'Use "variant" prop instead, i.e. variant="muted"', + }, +}); + +CardWithDeprecatedProp.Status = CardStatus; +CardWithDeprecatedProp.Header = CardHeader; +CardWithDeprecatedProp.Divider = CardDivider; +CardWithDeprecatedProp.Section = CardSection; +CardWithDeprecatedProp.Footer = CardFooter; +CardWithDeprecatedProp.ImageCap = CardImageCap; +CardWithDeprecatedProp.Context = CardContext; +CardWithDeprecatedProp.Body = CardBody; + +export default CardWithDeprecatedProp; diff --git a/src/Card/tests/CardBody.test.jsx b/src/Card/tests/CardBody.test.jsx index 05f44a9649..346b24b69c 100644 --- a/src/Card/tests/CardBody.test.jsx +++ b/src/Card/tests/CardBody.test.jsx @@ -3,6 +3,7 @@ import { mount } from 'enzyme'; import renderer from 'react-test-renderer'; import CardBody from '../CardBody'; +import Card from '../index'; describe('correct rendering', () => { it('renders CardBody element', () => { @@ -18,6 +19,11 @@ describe('correct rendering', () => { expect(body.hasClass('pgn__card-body')).toBe(true); }); + it('renders correct variant', () => { + const wrapper = mount().find('div'); + expect(wrapper.hasClass('pgn__card-dark')).toBe(true); + }); + it('renders body with custom className', () => { const className = 'my-class-name'; const body = mount().find('div'); diff --git a/src/Card/tests/CardContext.test.jsx b/src/Card/tests/CardContext.test.jsx index 924e25ab35..833b1fba72 100644 --- a/src/Card/tests/CardContext.test.jsx +++ b/src/Card/tests/CardContext.test.jsx @@ -1,5 +1,5 @@ import React from 'react'; -import { shallow } from 'enzyme'; +import { mount } from 'enzyme'; import renderer from 'react-test-renderer'; import { CardContextProvider } from '../CardContext'; @@ -14,7 +14,7 @@ describe('correct rendering', () => { }); it('renders a context with correct props', () => { - const wrapper = shallow(( + const wrapper = mount(( )); const contextProvider = wrapper.find(CardContextProvider); diff --git a/src/Card/tests/CardDeck.test.jsx b/src/Card/tests/CardDeck.test.jsx new file mode 100644 index 0000000000..d6740ff675 --- /dev/null +++ b/src/Card/tests/CardDeck.test.jsx @@ -0,0 +1,65 @@ +import React from 'react'; +import renderer from 'react-test-renderer'; +import { v4 as uuidv4 } from 'uuid'; +import CardDeck from '../CardDeck'; +import Card from '../index'; + +function ExampleCard(props) { + return ( + + + + Card title + + This is a wider card with supporting text below as a natural lead-in to + additional content. This card has even longer content than the first to + show that equal height action. + + + Last updated 3 mins ago} /> + + ); +} + +function getCardContent({ cardCount = 5, ...cardProps } = {}) { + return Array.from({ length: cardCount }).map(() => ); +} + +describe('', () => { + it('renders default columnSizes', () => { + const cardContent = getCardContent(); + const tree = renderer.create(( + + {cardContent} + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('renders with controlled columnSizes', () => { + const cardContent = getCardContent(); + const tree = renderer.create(( + + {cardContent} + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); + + it('has tabIndex="-1" when `hasInteractiveChildren` is true', () => { + const cardContent = getCardContent({ isClickable: true }); + const tree = renderer.create(( + + {cardContent} + + )).toJSON(); + expect(tree).toMatchSnapshot(); + }); +}); diff --git a/src/Card/tests/CardGrid.test.jsx b/src/Card/tests/CardGrid.test.jsx index 65b8b0afe6..2331e892b3 100644 --- a/src/Card/tests/CardGrid.test.jsx +++ b/src/Card/tests/CardGrid.test.jsx @@ -40,6 +40,7 @@ describe('', () => { xs: 12, md: 6, lg: 4, + xl: 3, }} > {cardContent} diff --git a/src/Card/tests/CardImageCap.test.jsx b/src/Card/tests/CardImageCap.test.jsx index 36d942ed06..d9b49dd51e 100644 --- a/src/Card/tests/CardImageCap.test.jsx +++ b/src/Card/tests/CardImageCap.test.jsx @@ -92,12 +92,34 @@ describe('', () => { ); const srcImg = screen.getByAltText('Src alt text'); expect(srcImg.src).toEqual('http://src.image/'); + fireEvent.load(srcImg); fireEvent.error(srcImg); expect(srcImg.src).toEqual('http://src.image.fallback/'); const logoImg = screen.getByAltText('Logo alt text'); expect(logoImg.src).toEqual('http://logo.image/'); + fireEvent.load(srcImg); fireEvent.error(logoImg); expect(logoImg.src).toEqual('http://logo.image.fallback/'); }); + + it('hiding component if it isn`t fallbackLogoSrc and logoSrc don`t work', () => { + render(); + + const logoImg = screen.getByAltText('Logo alt text'); + fireEvent.load(logoImg); + expect(logoImg.className).toEqual('pgn__card-logo-cap show'); + fireEvent.error(logoImg); + expect(logoImg.className).toEqual('pgn__card-logo-cap'); + }); + + it('hiding component if it isn`t fallbackSrc and src don`t work', () => { + render(); + + const srcImg = screen.getByAltText('Src alt text'); + fireEvent.load(srcImg); + fireEvent.error(srcImg); + // test-file-stub is what our fileMock.js returns for all images + expect(srcImg.src.endsWith('test-file-stub')).toEqual(true); + }); }); diff --git a/src/Card/tests/CardStatus.test.jsx b/src/Card/tests/CardStatus.test.jsx index 2d917ed488..a65ed5b496 100644 --- a/src/Card/tests/CardStatus.test.jsx +++ b/src/Card/tests/CardStatus.test.jsx @@ -18,17 +18,17 @@ describe('correct rendering', () => { }); it('renders body with custom className', () => { const className = 'my-class-name'; - const status = mount(); + const status = mount(Text); expect(status.find('.my-class-name').length).toBeGreaterThan(0); }); it('renders with correct variant', () => { - const variant = 'dark'; - const status = mount(); - expect(status.find('.pgn__card-status__dark').length).toBeGreaterThan(0); + const variant = 'primary'; + const status = mount(Text); + expect(status.find('.pgn__card-status__primary').length).toBeGreaterThan(0); }); it('renders with icon', () => { const icon = WarningFilled; - const status = mount(); + const status = mount(Text); expect(status.find('.pgn__icon').length).toBeGreaterThan(0); }); }); diff --git a/src/Card/tests/__snapshots__/CardDeck.test.jsx.snap b/src/Card/tests/__snapshots__/CardDeck.test.jsx.snap new file mode 100644 index 0000000000..068a29a98a --- /dev/null +++ b/src/Card/tests/__snapshots__/CardDeck.test.jsx.snap @@ -0,0 +1,757 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` has tabIndex="-1" when \`hasInteractiveChildren\` is true 1`] = ` +
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+`; + +exports[` renders default columnSizes 1`] = ` +
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+`; + +exports[` renders with controlled columnSizes 1`] = ` +
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+
+ +
+
+
+
+
+
+ This is a wider card with supporting text below as a natural lead-in to additional content. This card has even longer content than the first to show that equal height action. +
+
+
+
+ + Last updated 3 mins ago + +
+
+
+
+
+
+`; diff --git a/src/Card/tests/__snapshots__/CardGrid.test.jsx.snap b/src/Card/tests/__snapshots__/CardGrid.test.jsx.snap index 4c4f74d480..78c1a01d52 100644 --- a/src/Card/tests/__snapshots__/CardGrid.test.jsx.snap +++ b/src/Card/tests/__snapshots__/CardGrid.test.jsx.snap @@ -8,11 +8,11 @@ exports[` Controlled Rendering renders with controlled columnSizes 1 className="row" >
Controlled Rendering renders with controlled columnSizes 1
@@ -65,8 +66,8 @@ exports[` Uncontrolled Rendering renders default columnSizes 1`] = ` className="col-xl-4 col-lg-6 col-sm-12" >
Uncontrolled Rendering renders default columnSizes 1`] = `
diff --git a/src/Card/tests/__snapshots__/CardImageCap.test.jsx.snap b/src/Card/tests/__snapshots__/CardImageCap.test.jsx.snap index 73a507720a..dd7703d575 100644 --- a/src/Card/tests/__snapshots__/CardImageCap.test.jsx.snap +++ b/src/Card/tests/__snapshots__/CardImageCap.test.jsx.snap @@ -8,6 +8,7 @@ exports[` renders with scr prop and srcAlt 1`] = ` alt="Alt text" className="pgn__card-image-cap" onError={[Function]} + onLoad={[Function]} src="http://fake.image" />
@@ -20,6 +21,7 @@ exports[` renders with scr prop in horizontal orientation 1`] =
@@ -32,11 +34,13 @@ exports[` renders with src and logoSrc prop in horizontal orient
@@ -49,12 +53,14 @@ exports[` renders with src, logoSrc and logoAlt props 1`] = ` Logo alt
diff --git a/src/Carousel/Carousel.scss b/src/Carousel/Carousel.scss index f2aad61197..060291e5eb 100644 --- a/src/Carousel/Carousel.scss +++ b/src/Carousel/Carousel.scss @@ -1,2 +1,2 @@ @import "variables"; -@import "~bootstrap/scss/carousel"; +@import "carousel-bootstrap"; diff --git a/src/Carousel/README.md b/src/Carousel/README.md index 5f344dbaa8..ebca5a7478 100644 --- a/src/Carousel/README.md +++ b/src/Carousel/README.md @@ -28,7 +28,7 @@ notes: | First slide @@ -39,7 +39,7 @@ notes: | Third slide @@ -51,7 +51,7 @@ notes: | Third slide diff --git a/src/Carousel/_variables.scss b/src/Carousel/_variables.scss index 6ee4508d9a..7b7ee22c14 100644 --- a/src/Carousel/_variables.scss +++ b/src/Carousel/_variables.scss @@ -1,27 +1,22 @@ -// Carousel +$carousel-control-color: var(--pgn-color-carousel-control-base) !default; +$carousel-control-width: var(--pgn-size-carousel-control-width-base) !default; +$carousel-control-opacity: var(--pgn-color-carousel-control-opacity-base) !default; +$carousel-control-hover-opacity: var(--pgn-color-carousel-control-opacity-hover) !default; +$carousel-control-transition: var(--pgn-transition-carousel-control) !default; -$carousel-control-color: $white !default; -$carousel-control-width: 15% !default; -$carousel-control-opacity: .5 !default; -$carousel-control-hover-opacity: .9 !default; -$carousel-control-transition: opacity .15s ease !default; +$carousel-indicator-width: var(--pgn-size-carousel-indicator-width) !default; +$carousel-indicator-height: var(--pgn-size-carousel-indicator-height-base) !default; +$carousel-indicator-hit-area-height: var(--pgn-size-carousel-indicator-height-area-hit) !default; +$carousel-indicator-spacer: var(--pgn-spacing-carousel-indicator-spacer) !default; +$carousel-indicator-active-bg: var(--pgn-color-carousel-indicator-active-bg) !default; +$carousel-indicator-transition: var(--pgn-transition-carousel-indicator) !default; -$carousel-indicator-width: 30px !default; -$carousel-indicator-height: 3px !default; -$carousel-indicator-hit-area-height: 10px !default; -$carousel-indicator-spacer: 3px !default; -$carousel-indicator-active-bg: $white !default; -$carousel-indicator-transition: opacity .6s ease !default; +$carousel-caption-width: var(--pgn-size-carousel-caption-width) !default; +$carousel-caption-color: var(--pgn-color-carousel-caption) !default; -$carousel-caption-width: 70% !default; -$carousel-caption-color: $white !default; - -$carousel-control-icon-width: 20px !default; - -$carousel-control-prev-icon-bg: str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3e%3c/svg%3e"), "#", "%23") !default; -$carousel-control-next-icon-bg: str-replace(url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='#{$carousel-control-color}' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3e%3c/svg%3e"), "#", "%23") !default; - -$carousel-transition-duration: .6s !default; +$carousel-control-icon-width: var(--pgn-size-carousel-control-width-icon) !default; +$carousel-control-prev-icon-bg: var(--pgn-content-carousel-control-bg-prev-icon) !default; +$carousel-control-next-icon-bg: var(--pgn-content-carousel-control-bg-next-icon) !default; // Define transform transition first if using multiple transitions (e.g., `transform 2s ease, opacity .5s ease-out`) -$carousel-transition: transform $carousel-transition-duration ease-in-out !default; +$carousel-transition: var(--pgn-transition-carousel-base) !default; diff --git a/src/Carousel/carousel-bootstrap.scss b/src/Carousel/carousel-bootstrap.scss new file mode 100644 index 0000000000..98352c3ed3 --- /dev/null +++ b/src/Carousel/carousel-bootstrap.scss @@ -0,0 +1,179 @@ +.carousel { + position: relative; +} + +.carousel.pointer-event { + touch-action: pan-y; +} + +.carousel-inner { + position: relative; + width: 100%; + overflow: hidden; + + @include clearfix(); +} + +.carousel-item { + position: relative; + display: none; + float: left; + width: 100%; + margin-right: -100%; + backface-visibility: hidden; + transition: $carousel-transition; +} + +.carousel-item.active, +.carousel-item-next, +.carousel-item-prev { + display: block; +} + +.carousel-item-next:not(.carousel-item-left), +.active.carousel-item-right { + transform: translateX(100%); +} + +.carousel-item-prev:not(.carousel-item-right), +.active.carousel-item-left { + transform: translateX(-100%); +} + +// Alternate transitions +.carousel-fade { + .carousel-item { + opacity: 0; + transition-property: opacity; + transform: none; + } + + .carousel-item.active, + .carousel-item-next.carousel-item-left, + .carousel-item-prev.carousel-item-right { + z-index: 1; + opacity: 1; + } + + .active.carousel-item-left, + .active.carousel-item-right { + z-index: 0; + opacity: 0; + transition: opacity 0s $carousel-transition; + } +} + + +// Left/right controls for nav +.carousel-control-prev, +.carousel-control-next { + position: absolute; + top: 0; + bottom: 0; + z-index: 1; + display: flex; + align-items: center; + justify-content: center; + width: $carousel-control-width; + padding: 0; + color: $carousel-control-color; + text-align: center; + background: none; + border: 0; + opacity: $carousel-control-opacity; + transition: $carousel-control-transition; + + @include hover-focus() { + color: var(--pgn-carousel-control-color); + text-decoration: none; + outline: 0; + opacity: $carousel-control-hover-opacity; + } +} + +.carousel-control-prev { + left: 0; + + @if $enable-gradients { + // TODO needs a decision + background-image: linear-gradient(90deg, rgba($black, .25), rgba($black, .001)); + } +} + +.carousel-control-next { + right: 0; + + @if $enable-gradients { + // TODO needs a decision + background-image: linear-gradient(270deg, rgba($black, .25), rgba($black, .001)); + } +} + +// Icons for within +.carousel-control-prev-icon, +.carousel-control-next-icon { + display: inline-block; + width: $carousel-control-icon-width; + height: $carousel-control-icon-width; + background: 50% / 100% 100% no-repeat; +} + +.carousel-control-prev-icon { + background-image: escape-svg($carousel-control-prev-icon-bg); +} + +.carousel-control-next-icon { + background-image: escape-svg($carousel-control-next-icon-bg); +} + +// Optional indicator pips +// +// Add an ordered list with the following class and add a list item for each +// slide your carousel holds. +.carousel-indicators { + position: absolute; + right: 0; + bottom: 0; + left: 0; + z-index: 15; + display: flex; + justify-content: center; + padding-left: 0; + margin-right: $carousel-control-width; + margin-left: $carousel-control-width; + list-style: none; + + li { + box-sizing: content-box; + flex: 0 1 auto; + width: $carousel-indicator-width; + height: $carousel-indicator-height; + margin-right: $carousel-indicator-spacer; + margin-left: $carousel-indicator-spacer; + text-indent: -999px; + cursor: pointer; + background-color: $carousel-indicator-active-bg; + background-clip: padding-box; + border-top: $carousel-indicator-hit-area-height solid transparent; + border-bottom: $carousel-indicator-hit-area-height solid transparent; + opacity: .5; + transition: $carousel-indicator-transition; + } + + .active { + opacity: 1; + } +} + +// Optional captions +.carousel-caption { + position: absolute; + right: calc((calc(100% - $carousel-caption-width)) * .5); + bottom: 20px; + left: calc((calc(100% - $carousel-caption-width)) * .5); + z-index: 10; + padding-top: 20px; + padding-bottom: 20px; + color: $carousel-caption-color; + text-align: center; +} diff --git a/src/CheckBox/CheckBox.test.jsx b/src/CheckBox/CheckBox.test.jsx deleted file mode 100644 index 9061375cc0..0000000000 --- a/src/CheckBox/CheckBox.test.jsx +++ /dev/null @@ -1,78 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; -import CheckBox from './index'; - -describe('', () => { - it('attributes are set correctly', () => { - const wrapper = mount(); - - expect(wrapper.find('[name="checkbox"]').exists()).toEqual(true); - expect(wrapper.find('[type="checkbox"]').exists()).toEqual(true); - expect(wrapper.find('[checked=false]').exists()).toEqual(true); - expect(wrapper.find('[aria-checked=false]').exists()).toEqual(true); - }); - - it('aria-label changes after click', () => { - const wrapper = mount(); - - expect(wrapper.find('[aria-checked=false]').exists()).toEqual(true); - - wrapper.find('[type="checkbox"]').simulate('change'); - expect(wrapper.find('[aria-checked=false]').exists()).toEqual(false); - expect(wrapper.find('[aria-checked=true]').exists()).toEqual(true); - - wrapper.find('[type="checkbox"]').simulate('change'); - expect(wrapper.find('[aria-checked=false]').exists()).toEqual(true); - expect(wrapper.find('[aria-checked=true]').exists()).toEqual(false); - }); - - it('check that callback function is triggered when clicked', () => { - const spy = jest.fn(); - const wrapper = mount(); - - expect(spy).toHaveBeenCalledTimes(0); - // check - wrapper.find('input').simulate('change', { target: { checked: true, type: 'checkbox' } }); - expect(spy).toHaveBeenCalledTimes(1); - expect(spy).toHaveBeenLastCalledWith(true, 'checkbox'); - // uncheck - wrapper.find('input').simulate('change', { target: { checked: false, type: 'checkbox' } }); - expect(spy).toHaveBeenCalledTimes(2); - expect(spy).toHaveBeenLastCalledWith(false, 'checkbox'); - }); - - it('checks if start state can be set to checked', () => { - const wrapper = mount(); - - expect(wrapper.find('[checked=true]').exists()).toEqual(true); - expect(wrapper.find('[aria-checked=true]').exists()).toEqual(true); - - wrapper.find('input').simulate('change'); - expect(wrapper.find('[checked=false]').exists()).toEqual(true); - expect(wrapper.find('[aria-checked=false]').exists()).toEqual(true); - }); - - it('checkbox can be disabled', () => { - const wrapper = mount(); - - expect(wrapper.props().disabled).toEqual(true); - - wrapper.find('input').simulate('change'); - expect(wrapper.props().disabled).toEqual(true); - }); - - it('overrides state value when props value changes', () => { - const wrapper = mount(); - expect(wrapper.find('[checked=true]').exists()).toEqual(true); - expect(wrapper.find('[aria-checked=true]').exists()).toEqual(true); - - wrapper.setProps({ - checked: false, - }); - - wrapper.update(); - - expect(wrapper.find('[checked=true]').exists()).toEqual(false); - expect(wrapper.find('[aria-checked=true]').exists()).toEqual(false); - }); -}); diff --git a/src/CheckBox/README.md b/src/CheckBox/README.md deleted file mode 100644 index b671e285b0..0000000000 --- a/src/CheckBox/README.md +++ /dev/null @@ -1,93 +0,0 @@ ---- -title: 'Checkbox' -type: 'component' -components: -- Check -categories: -- Forms (deprecated) -status: 'Deprecate Soon' -designStatus: 'TBD' -devStatus: 'To Do' -notes: | - Replaced by Input and ValidationFormGroup ---- - -## Basic usage - -```jsx live - -``` - -## Disabled - -```jsx live - -``` - -## Default checked - -```jsx live - -``` - -## Call a function - -```jsx live - console.log('the checkbox changed state')} -/> -``` - -## Controlled example - -```jsx live -class CheckBoxWrapper extends React.Component { - constructor(props) { - super(props); - - this.toggleCheckBox = this.toggleCheckBox.bind(this); - - this.state = { - checked: false, - }; - } - - toggleCheckBox() { - this.setState({ - checked: !this.state.checked, - }); - } - - render() { - return ( -
- - -
- ); - } -} -``` diff --git a/src/CheckBox/index.jsx b/src/CheckBox/index.jsx deleted file mode 100644 index 9a8565c434..0000000000 --- a/src/CheckBox/index.jsx +++ /dev/null @@ -1,80 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import asInput from '../asInput'; -import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps'; - -class Check extends React.Component { - constructor(props) { - super(props); - - this.onChange = this.onChange.bind(this); - - this.state = { - checked: props.checked || false, - }; - } - - /* eslint-disable react/no-did-update-set-state */ - componentDidUpdate(prevProps) { - if (prevProps.checked !== this.props.checked) { - this.setState({ - checked: this.props.checked, - }); - } - } - - onChange(event) { - this.setState(prevState => ({ - checked: !prevState.checked, - })); - this.props.onChange(event); - } - - render() { - const { - inputRef, - ...others - } = this.props; - return ( - - ); - } -} - -Check.propTypes = { - // eslint-disable-next-line max-len - /** (`Boolean`): `true` if the state should be checked, `false` otherwise. This prop can be used to manage the Checkbox more directly, overriding the default Checkbox checked state. */ - checked: PropTypes.bool, - /** (`Boolean`): `true` if the checkbox should be disabled, `false` otherwise */ - onChange: PropTypes.func, - /** function to be called when the checkbox changes state */ - inputRef: PropTypes.oneOfType([ - PropTypes.func, - PropTypes.shape({ current: PropTypes.instanceOf(PropTypes.element) }), - ]), -}; - -Check.defaultProps = { - checked: false, - onChange: () => {}, - inputRef: undefined, -}; - -const CheckBox = asInput(withDeprecatedProps(Check, 'Checkbox', { - className: { - deprType: DeprTypes.FORMAT, - expect: value => typeof value === 'string', - transform: value => (Array.isArray(value) ? value.join(' ') : value), - message: 'It should be a string.', - }, -}), 'checkbox', false); - -export default CheckBox; diff --git a/src/CheckBoxGroup/CheckBoxGroup.test.jsx b/src/CheckBoxGroup/CheckBoxGroup.test.jsx deleted file mode 100644 index 57f547d2b6..0000000000 --- a/src/CheckBoxGroup/CheckBoxGroup.test.jsx +++ /dev/null @@ -1,33 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; -import CheckBoxGroup from './index'; -import CheckBox from '../CheckBox'; - -describe('', () => { - it('correct number of children displayed in group', () => { - const checkBoxGroup = ( - - - - - - ); - const wrapper = mount(checkBoxGroup); - - expect(wrapper.find('[id="checkbox1"]').exists()).toEqual(true); - expect(wrapper.find('[id="checkbox2"]').exists()).toEqual(true); - expect(wrapper.find('[id="checkbox3"]').exists()).toEqual(true); - }); -}); diff --git a/src/CheckBoxGroup/README.md b/src/CheckBoxGroup/README.md deleted file mode 100644 index e22cf39a76..0000000000 --- a/src/CheckBoxGroup/README.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -title: 'CheckBoxGroup' -type: 'component' -components: -- CheckBoxGroup -categories: -- Forms (deprecated) -status: 'Deprecate Soon' -designStatus: 'To Do' -devStatus: 'To Do' -notes: | - Refactor to use Input component and refresh checkbox designs ---- - -## Basic Usage - -```jsx live - - - - - -``` diff --git a/src/CheckBoxGroup/index.jsx b/src/CheckBoxGroup/index.jsx deleted file mode 100644 index 8174524858..0000000000 --- a/src/CheckBoxGroup/index.jsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -function CheckBoxGroup(props) { - return ( -
- {props.children} -
- ); -} - -CheckBoxGroup.propTypes = { - // eslint-disable-next-line max-len - /** represents the CheckBox components defined within the CheckBoxGroup component and is not a specific named prop that needs to be passed in. At least one CheckBox must be defined within the group. Example: `` - */ - children: PropTypes.arrayOf(PropTypes.element).isRequired, -}; - -export default CheckBoxGroup; diff --git a/src/Chip/Chip.scss b/src/Chip/Chip.scss index c306c58b6a..664d6cfb72 100644 --- a/src/Chip/Chip.scss +++ b/src/Chip/Chip.scss @@ -1,11 +1,10 @@ @import "variables"; .pgn__chip { - background: $light-500; + background: var(--pgn-chip-bg, $light-500); border-radius: $chip-border-radius; display: inline-flex; margin: $chip-margin; - min-width: 0; box-sizing: border-box; .pgn__chip__label { @@ -78,15 +77,9 @@ } } - @each $color, $styles in $chip-theme-variants { - &.pgn__chip-#{$color} { - background: map-get($styles, "background"); - - * { - color: map-get($styles, "color"); - fill: map-get($styles, "color"); - } - } + * { + color: var(--pgn-chip-color, inherit); + fill: var(--pgn-chip-color, inherit); } &.disabled, @@ -100,3 +93,13 @@ } } } + +.pgn__chip-light { + --pgn-chip-color: #{$chip-light-color}; + --pgn-chip-bg: #{$chip-light-bg}; +} + +.pgn__chip-dark { + --pgn-chip-color: #{$chip-dark-color}; + --pgn-chip-bg: #{$chip-dark-bg}; +} diff --git a/src/Chip/README.md b/src/Chip/README.md index 7417825f61..9984b440fd 100644 --- a/src/Chip/README.md +++ b/src/Chip/README.md @@ -7,7 +7,7 @@ categories: - Buttonlike status: 'New' designStatus: 'Done' -devStatus: 'In progress' +devStatus: 'Done' notes: | --- @@ -23,7 +23,7 @@ notes: |
``` -## With icon before and after +## With Icon Before and After ```jsx live
@@ -47,3 +47,63 @@ notes: |
``` + +## `Chip` Carousel + +```jsx live + + + {({ + setOverflowRef, + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + }) => ( + <> +
+ + +
+
+ + New + New + New + New + New + New + New + New + New + New + New + New + New + New + New + New + New + New + New + New + +
+ + )} +
+
+``` diff --git a/src/Chip/_variables.scss b/src/Chip/_variables.scss index 90c2878e07..47250ad5d9 100644 --- a/src/Chip/_variables.scss +++ b/src/Chip/_variables.scss @@ -1,19 +1,14 @@ -$chip-padding-x: .5rem !default; -$chip-padding-y: .125rem !default; -$chip-padding-to-icon: 3px !default; -$chip-icon-padding: .25rem !default; -$chip-margin: .125rem !default; -$chip-border-radius: .25rem !default; -$chip-disable-opacity: .3 !default; -$chip-icon-size: 1.25rem !default; +$chip-padding-x: var(--pgn-spacing-chip-padding-x) !default; +$chip-padding-y: var(--pgn-spacing-chip-padding-y) !default; +$chip-padding-to-icon: var(--pgn-spacing-chip-padding-to-icon) !default; +$chip-icon-padding: var(--pgn-spacing-chip-padding-icon) !default; +$chip-margin: var(--pgn-spacing-chip-margin) !default; +$chip-border-radius: var(--pgn-size-chip-border-radius) !default; +$chip-disable-opacity: var(--pgn-other-chip-opacity-disabled) !default; +$chip-icon-size: var(--pgn-size-chip-icon) !default; -$chip-theme-variants: ( - "light": ( - "background": $light-500, - "color": $black, - ), - "dark": ( - "background": $dark-200, - "color": $white, - ) -) !default; +$chip-light-bg: var(--pgn-color-chip-bg-light) !default; +$chip-light-color: var(--pgn-color-chip-text-light) !default; + +$chip-dark-bg: var(--pgn-color-chip-bg-dark) !default; +$chip-dark-color: var(--pgn-color-chip-text-dark) !default; diff --git a/src/Chip/index.tsx b/src/Chip/index.tsx index 80d92f8ca3..1ee0b672ec 100644 --- a/src/Chip/index.tsx +++ b/src/Chip/index.tsx @@ -17,10 +17,11 @@ export interface IChip { iconAfter?: React.ReactElement | Function, onIconBeforeClick?: KeyboardEventHandler & MouseEventHandler, onIconAfterClick?: KeyboardEventHandler & MouseEventHandler, - onLabelClick?: KeyboardEventHandler & MouseEventHandler, disabled?: boolean, } +export const CHIP_PGN_CLASS = 'pgn__chip'; + const Chip = React.forwardRef(({ children, className, @@ -29,13 +30,12 @@ const Chip = React.forwardRef(({ iconAfter, onIconBeforeClick, onIconAfterClick, - onLabelClick, disabled, ...props }: IChip, ref: ForwardedRef) => (
)}
{children}
@@ -85,6 +88,8 @@ Chip.propTypes = { * `import { Check } from '@edx/paragon/icons';` */ iconBefore: PropTypes.oneOfType([PropTypes.element, PropTypes.func]), + /** A click handler for the `Chip` icon before. */ + onIconBeforeClick: PropTypes.func, /** * An icon component to render before after the content. * Example import of a Paragon icon component: @@ -102,7 +107,6 @@ Chip.defaultProps = { disabled: false, iconBefore: undefined, iconAfter: undefined, - onLabelClick: undefined, onIconBeforeClick: undefined, onIconAfterClick: undefined, }; diff --git a/src/CloseButton/_variables.scss b/src/CloseButton/_variables.scss index 3ce0a0d790..051f2e54fc 100644 --- a/src/CloseButton/_variables.scss +++ b/src/CloseButton/_variables.scss @@ -1,6 +1,6 @@ // Close -$close-font-size: $font-size-base * 1.5 !default; -$close-font-weight: $font-weight-bold !default; -$close-color: $black !default; -$close-text-shadow: 0 1px 0 $white !default; +$close-font-size: var(--pgn-typography-close-button-font-size) !default; +$close-font-weight: var(--pgn-typography-close-button-font-weight) !default; +$close-color: var(--pgn-color-close-button) !default; +$close-text-shadow: var(--pgn-elevation-close-button-text-shadow) !default; diff --git a/src/Code/_variables.scss b/src/Code/_variables.scss index a6790b97ba..a331ee65d3 100644 --- a/src/Code/_variables.scss +++ b/src/Code/_variables.scss @@ -1,17 +1,17 @@ // Code -$code-font-size: 87.5% !default; -$code-color: #E83E8C !default; +$code-font-size: var(--pgn-typography-code-font-size) !default; +$code-color: var(--pgn-color-code-base) !default; -$kbd-box-shadow: inset 0 -.1rem 0 rgba($black, .25) !default; -$nested-kbd-font-weight: $font-weight-bold !default; +$kbd-box-shadow: var(--pgn-elevation-code-kbd-box-shadow) !default; +$nested-kbd-font-weight: var(--pgn-typography-code-kbd-nested-font-weight) !default; // HTML Keyboard Input element () styles -$kbd-padding-y: .2rem !default; -$kbd-padding-x: .4rem !default; -$kbd-font-size: $code-font-size !default; -$kbd-color: $white !default; -$kbd-bg: theme-color("gray", "hover") !default; +$kbd-padding-y: var(--pgn-spacing-code-kbd-padding-y) !default; +$kbd-padding-x: var(--pgn-spacing-code-kbd-padding-x) !default; +$kbd-font-size: var(--pgn-typography-code-kbd-font-size) !default; +$kbd-color: var(--pgn-color-code-kbd-base) !default; +$kbd-bg: var(--pgn-color-code-kbd-bg) !default; -$pre-color: theme-color("gray", "dark-text") !default; -$pre-scrollable-max-height: 340px !default; +$pre-color: var(--pgn-color-code-pre) !default; +$pre-scrollable-max-height: var(--pgn-size-code-pre-scrollable-max-height) !default; diff --git a/src/Collapsible/_variables.scss b/src/Collapsible/_variables.scss index 19b10836b7..492dfd259d 100644 --- a/src/Collapsible/_variables.scss +++ b/src/Collapsible/_variables.scss @@ -1,12 +1,12 @@ // Collapsible -$collapsible-card-spacer-y: .5rem !default; -$collapsible-card-spacer-x: .5rem !default; -$collapsible-card-spacer-y-lg: $card-spacer-y !default; -$collapsible-card-spacer-x-lg: $card-spacer-x !default; -$collapsible-card-body-spacer-left: .75rem !default; -$collapsible-card-spacer-icon: 2.5rem !default; +$collapsible-card-spacer-y: var(--pgn-spacing-collapsible-card-spacer-y-base) !default; +$collapsible-card-spacer-x: var(--pgn-spacing-collapsible-card-spacer-x-base) !default; +$collapsible-card-spacer-y-lg: var(--pgn-spacing-collapsible-card-spacer-y-lg) !default; +$collapsible-card-spacer-x-lg: var(--pgn-spacing-collapsible-card-spacer-x-lg) !default; +$collapsible-card-body-spacer-left: var(--pgn-spacing-collapsible-card-spacer-left-body) !default; +$collapsible-card-spacer-icon: var(--pgn-spacing-collapsible-card-spacer-icon) !default; -$collapsible-basic-spacer-y: .5rem !default; -$collapsible-basic-spacer-x: .5rem !default; -$collapsible-basic-spacer-icon: .625rem !default; +$collapsible-basic-spacer-y: var(--pgn-spacing-collapsible-card-spacer-basic-y) !default; +$collapsible-basic-spacer-x: var(--pgn-spacing-collapsible-card-spacer-basic-x) !default; +$collapsible-basic-spacer-icon: var(--pgn-spacing-collapsible-card-spacer-basic-icon) !default; diff --git a/src/Container/_variables.scss b/src/Container/_variables.scss index 64d6f892c5..50a32cb7ec 100644 --- a/src/Container/_variables.scss +++ b/src/Container/_variables.scss @@ -1,5 +1,5 @@ -$max-width-xs: 464px !default; -$max-width-sm: 708px !default; -$max-width-md: 952px !default; -$max-width-lg: 1192px !default; -$max-width-xl: 1440px !default; +$max-width-xs: var(--pgn-size-container-max-width-xs) !default; +$max-width-sm: var(--pgn-size-container-max-width-sm) !default; +$max-width-md: var(--pgn-size-container-max-width-md) !default; +$max-width-lg: var(--pgn-size-container-max-width-lg) !default; +$max-width-xl: var(--pgn-size-container-max-width-xl) !default; diff --git a/src/DataTable/CardView.jsx b/src/DataTable/CardView.jsx index d5dcb7be6c..75955ec725 100644 --- a/src/DataTable/CardView.jsx +++ b/src/DataTable/CardView.jsx @@ -1,44 +1,137 @@ -import React from 'react'; +import React, { useContext } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; +import { v4 as uuidv4 } from 'uuid'; +import DataTableContext from './DataTableContext'; import { useRows } from './hooks'; -import { CardGrid } from '..'; +import { selectColumn } from './utils/getVisibleColumns'; +import { CardGrid, Card } from '..'; + +function CardItem({ + row, + prepareRow, + isSelectable, + SelectionComponent, + CardComponent, + selectionPlacement, +}) { + prepareRow(row); + const { isSelected } = row; + + if (isSelectable && SelectionComponent) { + return ( +
+ + +
+ ); + } + + return ; +} + +function DefaultSkeletonCardComponent() { + return ( + + + + + + ); +} + +export const DEFAULT_SKELETON_CARD_COUNT = 8; function CardView({ - columnSizes, CardComponent, className, + columnSizes, + CardComponent, + className, + selectionPlacement, + SkeletonCardComponent = DefaultSkeletonCardComponent, + skeletonCardCount, }) { const { getTableProps, prepareRow, displayRows, } = useRows(); + const { + isSelectable, + manualSelectColumn, + isLoading, + } = useContext(DataTableContext); - const renderCards = () => displayRows.map((row) => { - prepareRow(row); - return ( - - ); - }); + // use the same component for card selection that is used for row selection + // otherwise view switching might break if row selection uses component that supports backend filtering / sorting + const SelectionComponent = manualSelectColumn?.Cell || selectColumn.Cell; if (!getTableProps) { return null; } + if (isLoading) { + return ( + + {[...new Array(skeletonCardCount)].map(() => )} + + ); + } + return ( - {renderCards()} + {displayRows.map((row) => ( + + ))} ); } +CardItem.defaultProps = { + SelectionComponent: undefined, +}; + +CardItem.propTypes = { + row: PropTypes.shape({ + getToggleRowSelectedProps: PropTypes.func, + isSelected: PropTypes.bool, + }).isRequired, + prepareRow: PropTypes.func.isRequired, + isSelectable: PropTypes.bool.isRequired, + CardComponent: PropTypes.func.isRequired, + SelectionComponent: PropTypes.func, + selectionPlacement: PropTypes.oneOf(['right', 'left']).isRequired, +}; + CardView.defaultProps = { columnSizes: { xs: 12, lg: 6, xl: 4, }, - className: '', + className: undefined, + selectionPlacement: 'right', + SkeletonCardComponent: undefined, + skeletonCardCount: 8, }; CardView.propTypes = { @@ -58,6 +151,12 @@ CardView.propTypes = { /** Your card component must be individualized to your table. * It will be called with props from the "row" of data it will display */ CardComponent: PropTypes.func.isRequired, + /** If the Cards are selectable this prop determines from which side of the Card to show selection component. */ + selectionPlacement: PropTypes.oneOf(['left', 'right']), + /** Overrides default skeleton card component for loading state in CardView */ + SkeletonCardComponent: PropTypes.func, + /** Customize the number of loading skeleton cards to display in CardView */ + skeletonCardCount: PropTypes.number, }; export default CardView; diff --git a/src/DataTable/CollapsibleButtonGroup.jsx b/src/DataTable/CollapsibleButtonGroup.jsx index fced75f8ea..2fc6a34623 100644 --- a/src/DataTable/CollapsibleButtonGroup.jsx +++ b/src/DataTable/CollapsibleButtonGroup.jsx @@ -79,7 +79,7 @@ function CollapsibleButtonGroup({ placement="bottom-end" isOpen={isOverflowMenuOpen} > -
+
{dropdownActions.map(cloneAction)} @@ -87,7 +87,7 @@ function CollapsibleButtonGroup({ )} -
+
{visibleActions.map(cloneAction)}
diff --git a/src/DataTable/DataTable.scss b/src/DataTable/DataTable.scss index 5b99718898..c0f89c54c6 100644 --- a/src/DataTable/DataTable.scss +++ b/src/DataTable/DataTable.scss @@ -1,13 +1,4 @@ -$data-table-background-color: $white !default; -$data-table-border: 1px solid $gray-200 !default; -$data-table-box-shadow: $box-shadow-sm !default; -$data-table-padding-x: .75rem !default; -$data-table-padding-y: .75rem !default; -$data-table-padding-small: .5rem !default; -$data-table-cell-padding: .5rem .75rem !default; -$data-table-footer-position: center !default; -$data-table-pagination-dropdown-max-height: 60vh !default; -$data-table-pagination-dropdown-min-width: 6rem !default; +@import "variables"; .pgn__data-table-wrapper { font-size: $font-size-sm; @@ -34,7 +25,7 @@ $data-table-pagination-dropdown-min-width: 6rem !default; .pgn__table-actions { display: flex; - .pgn__datatable__visible-actions { + .pgn__data-table__visible-actions { margin-inline-start: map_get($spacers, 2); .btn { @@ -88,7 +79,7 @@ $data-table-pagination-dropdown-min-width: 6rem !default; left: 0; width: 100%; height: 100%; - background-color: rgba($white, .7); + background-color: $data-table-is-loading-bg; z-index: 1; } } @@ -137,12 +128,12 @@ $data-table-pagination-dropdown-min-width: 6rem !default; th { background-color: $light-300; - padding: $data-table-cell-padding; + padding: $data-table-head-cell-padding; text-align: start; } td { - padding: $table-cell-padding; + padding: $data-table-cell-padding; line-height: 24px; text-align: start; } @@ -197,7 +188,7 @@ $data-table-pagination-dropdown-min-width: 6rem !default; justify-content: space-between; padding: $data-table-padding-x $data-table-padding-y; align-items: center; - border-top: $data-table-border; + border-top: $data-table-border solid $data-table-border-color; .btn-icon .pgn__icon { [dir="rtl"] & { @@ -261,6 +252,10 @@ $data-table-pagination-dropdown-min-width: 6rem !default; .pgn__data-table-card-view { padding: 0 $data-table-padding-x; + + .pgn__data-table-card-view-default-skeleton-card-section { + margin-top: map_get($spacers, 2); + } } .pgn__data-table__action-btn { @@ -279,9 +274,46 @@ $data-table-pagination-dropdown-min-width: 6rem !default; z-index: 2; } -.pgn__datatable__overflow-actions-menu { - background: #FFFFFF; +.pgn__data-table__overflow-actions-menu { + background: $white; padding: map_get($spacers, 2); box-shadow: $level-1-box-shadow; border-radius: 4px; } + +.pgn__data-table__selectable-card { + display: flex; + align-items: flex-start; + flex-grow: 1; + + > :first-child { + height: 100%; // ensure Card stretches full height of column + } + + &.is-selected { + > :first-child { + @extend %pgn__card-focused; + } + } + + &.selection-right { + > :first-child { + margin-right: map_get($spacers, 2); + + [dir="rtl"] & { + margin-left: map_get($spacers, 2); + margin-right: 0; + } + } + } + + &.selection-left { + flex-direction: row-reverse; + } +} + +.pgn__data-table__controlled-select { + display: flex; + align-content: center; + padding: map_get($spacers, 1); +} diff --git a/src/DataTable/README.md b/src/DataTable/README.md index c8a7420f14..e54f70805b 100644 --- a/src/DataTable/README.md +++ b/src/DataTable/README.md @@ -51,6 +51,11 @@ for more information. ```jsx live { const [currentView, setCurrentView] = useState('card'); const togglePlacement = 'left'; // 'bottom' is the only other supported value + + const ExampleCard = ({ className, original }) => { + const { name, color, famous_for: famousFor } = original; + + return ( + + + + +
+
Color
+
{color}
+
Famous For
+
{famousFor}
+
+
+
+ ); + }; + // memoize data, otherwise the filters will get reset after switching view const data = useMemo(() => [ { @@ -335,6 +360,7 @@ See ``dataViewToggleOptions`` props documentation for all supported props. return ( setCurrentView(val), @@ -342,13 +368,12 @@ See ``dataViewToggleOptions`` props documentation for all supported props. }} isSortable defaultColumnValues={{ Filter: TextFilter }} - itemCount={7} + itemCount={3} data={data} columns={[ { Header: 'Name', accessor: 'name', - }, { Header: 'Famous For', @@ -385,7 +410,7 @@ See ``dataViewToggleOptions`` props documentation for all supported props. {/* which kind of body content to show */} - { currentView === "card" && } + { currentView === "card" && } { currentView === "list" && } @@ -1039,6 +1064,166 @@ a responsive grid of cards. }; ``` +### Customizing number of Cards shown per row +Use `columnSizes` prop of `CardView` component to define how many `Cards` are shown per row at each breakpoint. + +`columnSizes` is an object containing the desired column size at each breakpoint. The example below shows 1 `Card` per row at `xs` breakpoint, 2 `Cards` at `sm` and `md`, and 4 `Cards` at `lg` and higher. You can read more about the API at https://react-bootstrap.netlify.app/layout/grid/. + +```jsx live +() => { + const columnSizes = { xs: 12, sm: 6, lg: 3 }; + + const ExampleCard = ({ className, original }) => { + const { name, color, famous_for: famousFor } = original; + + return ( + + + + + +
+
Color
+
{color}
+
Famous For
+
{famousFor}
+
+
+
+
+ ); + }; + + return ( + + + + + + ); +}; +``` + +### Horizontal view +You can also display `Cards` with horizontal view. If the table is selectable control position of selection checkbox with `selectionPlacement` prop, accepts `right` or `left` positions (relative to the `Card`). + +```jsx live +() => { + const columnSizes = { xs: 12 }; + + const ExampleCard = ({ className, original }) => { + const { name, color, famous_for: famousFor } = original; + + return ( + + + + + +
+
Color
+
{color}
+
Famous For
+
{famousFor}
+
+
+
+
+ ); + }; + + return ( + + + + + + ); +}; +``` + ## Sidebar Filter For a more desktop friendly view, you can move filters into a sidebar by providing ``showFiltersInSidebar`` prop, try it out! diff --git a/src/DataTable/SmartStatus.jsx b/src/DataTable/SmartStatus.jsx index d457e80d92..0eb575cf15 100644 --- a/src/DataTable/SmartStatus.jsx +++ b/src/DataTable/SmartStatus.jsx @@ -8,21 +8,26 @@ const SMART_STATUS_CLASS = 'pgn__smart-status'; function SmartStatus() { const { - state, selectedFlatRows, SelectionStatusComponent, FilterStatusComponent, RowStatusComponent, showFiltersInSidebar, + state, + SelectionStatusComponent, + FilterStatusComponent, + RowStatusComponent, + showFiltersInSidebar, } = useContext(DataTableContext); - const numSelectedRows = selectedFlatRows?.length; + const { selectedRowIds } = state; + const numSelectedRows = Object.keys(selectedRowIds || {}).length; const SelectionStatus = SelectionStatusComponent || SelectionStatusDefault; const FilterStatus = FilterStatusComponent || FilterStatusDefault; const RowStatus = RowStatusComponent || RowStatusDefault; - if (selectedFlatRows && numSelectedRows > 0) { + if (numSelectedRows > 0) { return ( ); } - if (state?.filters && state.filters.length > 0 && !showFiltersInSidebar) { + if (state?.filters?.length > 0 && !showFiltersInSidebar) { return ( - {children} + {children || ( + <> + + + + + )}
); } @@ -26,14 +35,8 @@ TableFooter.propTypes = { }; TableFooter.defaultProps = { - children: ( - <> - - - - - ), - className: null, + children: null, + className: undefined, }; export default TableFooter; diff --git a/src/DataTable/_variables.scss b/src/DataTable/_variables.scss new file mode 100644 index 0000000000..733b247cd1 --- /dev/null +++ b/src/DataTable/_variables.scss @@ -0,0 +1,13 @@ +$data-table-background-color: var(--pgn-color-data-table-bg-base) !default; +$data-table-border-color: var(--pgn-color-data-table-border) !default; +$data-table-border: var(--pgn-size-data-table-border) !default; +$data-table-box-shadow: var(--pgn-elevation-data-table-box-shadow) !default; +$data-table-padding-x: var(--pgn-spacing-data-table-padding-x) !default; +$data-table-padding-y: var(--pgn-spacing-data-table-padding-y) !default; +$data-table-padding-small: var(--pgn-spacing-data-table-padding-small) !default; +$data-table-head-cell-padding: var(--pgn-spacing-data-table-padding-head-cell) !default; +$data-table-cell-padding: var(--pgn-spacing-data-table-padding-cell) !default; +$data-table-footer-position: var(--pgn-spacing-data-table-footer-position) !default; +$data-table-pagination-dropdown-max-height: var(--pgn-size-data-table-dropdown-pagination-max-height) !default; +$data-table-pagination-dropdown-min-width: var(--pgn-size-data-table-dropdown-pagination-min-width) !default; +$data-table-is-loading-bg: var(--pgn-color-data-table-bg-is-loading) !default; diff --git a/src/DataTable/dataviews.mdx b/src/DataTable/dataviews.mdx index 9ef15c7f77..ab72712afe 100644 --- a/src/DataTable/dataviews.mdx +++ b/src/DataTable/dataviews.mdx @@ -341,7 +341,7 @@ const MiyazakiCard = ({ className, original }) => { return ( - +
Director
{director}
diff --git a/src/DataTable/filters/TextFilter.jsx b/src/DataTable/filters/TextFilter.jsx index 07cfaeabe2..14d143c6bb 100644 --- a/src/DataTable/filters/TextFilter.jsx +++ b/src/DataTable/filters/TextFilter.jsx @@ -1,6 +1,6 @@ import React, { useRef } from 'react'; import PropTypes from 'prop-types'; -import { Form, FormLabel, Input } from '../..'; +import { Form, FormLabel, FormControl } from '../..'; import { newId } from '../../utils'; const formatHeaderForLabel = (header) => { @@ -24,7 +24,7 @@ function TextFilter({ return ( {inputText} - (defaultColumnValues), [defaultColumnValues], ); - const tableOptions = useMemo(() => ({ - columns, - data, - defaultColumn, - manualFilters, - manualPagination, - manualSortBy, - initialState, - ...initialTableOptions, - }), [columns, data, defaultColumn, manualFilters, manualPagination, initialState, initialTableOptions, manualSortBy]); + const tableOptions = useMemo(() => { + const updatedTableOptions = { + stateReducer: (newState, action) => { + switch (action.type) { + // Note: we override the `toggleAllRowsSelected` action + // from react-table because it only clears the selections on the + // currently visible page; it does not clear the `selectedRowIds` + // as we would expect for selections on different pages. Instead, we + // force `selectedRowIds` to be cleared when `toggleAllRowsSelected(false)` + // is called. + case 'toggleAllRowsSelected': { + if (action.value) { + return newState; + } + return { + ...newState, + selectedRowIds: {}, + }; + } + default: + return newState; + } + }, + ...initialTableOptions, + }; + return { + columns, + data, + defaultColumn, + manualFilters, + manualPagination, + manualSortBy, + initialState, + ...updatedTableOptions, + }; + }, [columns, data, defaultColumn, manualFilters, manualPagination, initialState, initialTableOptions, manualSortBy]); const [selections, selectionsDispatch] = useReducer(selectionsReducer, initialSelectionsState); @@ -107,17 +134,30 @@ function DataTable({ // Use the state and functions returned from useTable to build your UI const instance = useTable(...tableArgs); - // Call ``fetchData`` whenever the state of the table changes (e.g., page change, sort or filter applied) but ignore - // any state changes to current row selections as we don't want to re-fetch data whenever row(s) are selected. - const tableStateWithoutSelections = { ...instance.state }; - delete tableStateWithoutSelections.selectedRowIds; + const { + pageSize: tableStatePageSize, + pageIndex: tableStatePageIndex, + sortBy: tableStateSortBy, + filters: tableStateFilters, + selectedRowIds: tableStateSelectedRowIds, + } = instance.state; useEffect(() => { if (fetchData) { - fetchData(tableStateWithoutSelections); + fetchData({ + pageSize: tableStatePageSize, + pageIndex: tableStatePageIndex, + sortBy: tableStateSortBy, + filters: tableStateFilters, + }); } - // eslint-disable-next-line react-hooks/exhaustive-deps - }, [fetchData, JSON.stringify(tableStateWithoutSelections)]); + }, [fetchData, tableStatePageSize, tableStatePageIndex, tableStateSortBy, tableStateFilters]); + + useMountedLayoutEffect(() => { + if (onSelectedRowsChanged) { + onSelectedRowsChanged(tableStateSelectedRowIds); + } + }, [tableStateSelectedRowIds, onSelectedRowsChanged]); const selectionActions = useSelectionActions(instance, controlledTableSelections); @@ -133,6 +173,9 @@ function DataTable({ renderRowSubComponent, disableElevation, isLoading, + isSelectable, + isPaginated, + manualSelectColumn, ...selectionProps, ...selectionActions, ...props, @@ -192,6 +235,7 @@ DataTable.defaultProps = { renderRowSubComponent: undefined, isExpandable: false, isLoading: false, + onSelectedRowsChanged: undefined, }; DataTable.propTypes = { @@ -263,6 +307,7 @@ DataTable.propTypes = { pageIndex: requiredWhen(PropTypes.number, 'isPaginated'), filters: requiredWhen(PropTypes.arrayOf(PropTypes.shape()), 'manualFilters'), sortBy: requiredWhen(PropTypes.arrayOf(PropTypes.shape()), 'manualSortBy'), + selectedRowIds: PropTypes.shape(), }), /** Table options passed to react-table's useTable hook. Will override some options passed in to DataTable, such as: data, columns, defaultColumn, manualFilters, manualPagination, manualSortBy, and initialState */ @@ -350,13 +395,16 @@ DataTable.propTypes = { * actions section. Only 'left' and 'bottom' are supported */ togglePlacement: PropTypes.string, }), - /** remove the default box shadow on the component */ + /** Remove the default box shadow on the component */ disableElevation: PropTypes.bool, /** A function that will render contents of expanded row, accepts `row` as a prop. */ renderRowSubComponent: PropTypes.func, /** Indicates whether table supports expandable rows. */ isExpandable: PropTypes.bool, + /** Indicates whether the table should show loading states. */ isLoading: PropTypes.bool, + /** Callback function called when row selections change. */ + onSelectedRowsChanged: PropTypes.func, }; DataTable.BulkActions = BulkActions; diff --git a/src/DataTable/selection/BaseSelectionStatus.jsx b/src/DataTable/selection/BaseSelectionStatus.jsx index dbdf0a544a..6d8a43610c 100644 --- a/src/DataTable/selection/BaseSelectionStatus.jsx +++ b/src/DataTable/selection/BaseSelectionStatus.jsx @@ -13,13 +13,15 @@ function BaseSelectionStatus({ className, clearSelectionText, numSelectedRows, + numSelectedRowsOnPage, onSelectAll, onClear, selectAllText, allSelectedText, selectedText, }) { - const { itemCount } = useContext(DataTableContext); + const { itemCount, isPaginated, state } = useContext(DataTableContext); + const hasAppliedFilters = state?.filters?.length > 0; const isAllRowsSelected = numSelectedRows === itemCount; const intlAllSelectedText = allSelectedText || ( ); - const intlSelectedText = selectedText || ( + + const defaultSelectedText = isPaginated || hasAppliedFilters ? ( + + ) : ( ); + + const intlSelectedText = selectedText || defaultSelectedText; + return (
{isAllRowsSelected ? intlAllSelectedText : intlSelectedText} @@ -92,6 +105,8 @@ BaseSelectionStatus.propTypes = { clearSelectionText: PropTypes.oneOfType([PropTypes.string, PropTypes.element]), /** Count of selected rows in the table. */ numSelectedRows: PropTypes.number.isRequired, + /** Count of selected rows on the current page */ + numSelectedRowsOnPage: PropTypes.number.isRequired, /** A handler for 'Select all' button. */ onSelectAll: PropTypes.func.isRequired, /** A handler for 'Clear selection' button. */ diff --git a/src/DataTable/selection/ControlledSelect.jsx b/src/DataTable/selection/ControlledSelect.jsx index a9fec2235f..8eb702255e 100644 --- a/src/DataTable/selection/ControlledSelect.jsx +++ b/src/DataTable/selection/ControlledSelect.jsx @@ -30,7 +30,7 @@ function ControlledSelect({ row }) { const updatedProps = useConvertIndeterminateProp(row.getToggleRowSelectedProps()); return ( -
+
+
{ if (isEntireTableSelected) { const selectedRowIds = getRowIds(selectedRows); - const unselectedPageRows = getUnselectedPageRows(selectedRowIds, rows); - if (unselectedPageRows?.length) { + const unselectedPageRows = getUnselectedPageRows(selectedRowIds, page); + if (unselectedPageRows.length) { dispatch(setSelectedRowsAction(unselectedPageRows, itemCount)); } } }, - [isEntireTableSelected, selectedRows, itemCount, rows, dispatch], + [isEntireTableSelected, selectedRows, itemCount, page, dispatch], ); const numSelectedRows = isEntireTableSelected ? itemCount : selectedRows.length; + const numSelectedRowsOnPage = (page || []).filter(r => r.isSelected).length; const selectionStatusProps = { className, numSelectedRows, + numSelectedRowsOnPage, clearSelectionText, onSelectAll: () => dispatch(setSelectAllRowsAllPagesAction()), onClear: () => dispatch(clearSelectionAction()), diff --git a/src/DataTable/selection/SelectionStatus.jsx b/src/DataTable/selection/SelectionStatus.jsx index 7bbbab3d3c..7cb42a6c97 100644 --- a/src/DataTable/selection/SelectionStatus.jsx +++ b/src/DataTable/selection/SelectionStatus.jsx @@ -3,13 +3,18 @@ import PropTypes from 'prop-types'; import DataTableContext from '../DataTableContext'; import BaseSelectionStatus from './BaseSelectionStatus'; +import { useRows } from '../hooks'; function SelectionStatus({ className, clearSelectionText }) { - const { toggleAllRowsSelected, selectedFlatRows } = useContext(DataTableContext); - const numSelectedRows = selectedFlatRows.length; + const { toggleAllRowsSelected, state } = useContext(DataTableContext); + const { displayRows } = useRows(); + const { selectedRowIds } = state; + const numSelectedRows = Object.keys(selectedRowIds || {}).length; + const numSelectedRowsOnPage = displayRows.filter(r => r.isSelected).length; const selectionStatusProps = { className, numSelectedRows, + numSelectedRowsOnPage, clearSelectionText, onSelectAll: () => toggleAllRowsSelected(true), onClear: () => toggleAllRowsSelected(false), diff --git a/src/DataTable/selection/data/helpers.js b/src/DataTable/selection/data/helpers.js index e72cb3e43c..5cff88bd24 100644 --- a/src/DataTable/selection/data/helpers.js +++ b/src/DataTable/selection/data/helpers.js @@ -1,5 +1,5 @@ -export const getUnselectedPageRows = (selectedRowsIds, currentRows) => { - const unselectedPageRows = currentRows.filter(row => !selectedRowsIds.includes(row.id)); +export const getUnselectedPageRows = (selectedRowsIds, currentPageRows = []) => { + const unselectedPageRows = currentPageRows.filter(row => !selectedRowsIds.includes(row.id)); return unselectedPageRows; }; diff --git a/src/DataTable/selection/tests/ControlledSelectionStatus.test.jsx b/src/DataTable/selection/tests/ControlledSelectionStatus.test.jsx index 1f97f60711..cd2bdf2022 100644 --- a/src/DataTable/selection/tests/ControlledSelectionStatus.test.jsx +++ b/src/DataTable/selection/tests/ControlledSelectionStatus.test.jsx @@ -20,7 +20,7 @@ const instance = { }, jest.fn(), ], - rows: [{ id: 1 }, { id: 2 }, { id: 5 }], + page: [{ id: 1 }, { id: 2 }, { id: 5 }], }; // eslint-disable-next-line react/prop-types @@ -96,7 +96,7 @@ describe('', () => { />, ); expect(dispatchSpy).toHaveBeenCalledTimes(1); - const action = setSelectedRowsAction(instance.rows, instance.itemCount); + const action = setSelectedRowsAction(instance.page, instance.itemCount); expect(dispatchSpy).toHaveBeenCalledWith(action); }); }); diff --git a/src/DataTable/selection/tests/SelectionStatus.test.jsx b/src/DataTable/selection/tests/SelectionStatus.test.jsx index 0938522b98..5d655ba1e0 100644 --- a/src/DataTable/selection/tests/SelectionStatus.test.jsx +++ b/src/DataTable/selection/tests/SelectionStatus.test.jsx @@ -11,9 +11,18 @@ import { } from '../data/constants'; const instance = { - selectedFlatRows: [1, 2, 3, 4], + // represents how `react-table` passes the row data for the current page + page: [1, 2, 3, 4], toggleAllRowsSelected: () => {}, itemCount: 101, + state: { + selectedRowIds: { + 1: true, + 2: true, + 3: true, + 4: true, + }, + }, }; // eslint-disable-next-line react/prop-types @@ -30,18 +39,24 @@ function SelectionStatusWrapper({ value, props = {} }) { describe('', () => { it('Shows the number of rows selected', () => { const wrapper = mount(); - expect(wrapper.text()).toContain(instance.selectedFlatRows.length.toString()); + expect(wrapper.text()).toContain(instance.page.length.toString()); }); it('Shows that all rows are selected', () => { + const selectedRowIds = {}; + [...new Array(101)].forEach((_, index) => { + selectedRowIds[index] = true; + }); + const value = { + ...instance, + state: { + ...instance.state, + selectedRowIds, + }, + }; const wrapper = mount( - , + , ); expect(wrapper.text()).toContain('All 101'); - }); - it('does not show select all button if all rows are selected', () => { - const wrapper = mount( - , - ); const button = wrapper.find(`button.${SELECT_ALL_TEST_ID}`); expect(button.length).toEqual(0); }); @@ -56,8 +71,16 @@ describe('', () => { expect(toggleAllRowsSpy).toHaveBeenCalledWith(true); }); it('does not render the clear selection button if there are no selected rows', () => { + const value = { + ...instance, + page: [], + state: { + ...instance.state, + selectedRowIds: {}, + }, + }; const wrapper = mount( - , + , ); expect(wrapper.find(CLEAR_SELECTION_TEST_ID).length).toEqual(0); }); diff --git a/src/DataTable/tests/CardView.test.jsx b/src/DataTable/tests/CardView.test.jsx new file mode 100644 index 0000000000..46d4b6c381 --- /dev/null +++ b/src/DataTable/tests/CardView.test.jsx @@ -0,0 +1,99 @@ +import React from 'react'; +import { render, screen } from '@testing-library/react'; +import '@testing-library/jest-dom'; +import { selectColumn } from '../utils/getVisibleColumns'; +import CardView, { DEFAULT_SKELETON_CARD_COUNT } from '../CardView'; +import DataTableContext from '../DataTableContext'; + +const instance = { + isSelectable: false, + rows: [ + { + id: '1', + name: 'Name 1', + isSelected: false, + getToggleRowSelectedProps: () => ({ indeterminate: false, title: 'Toggle Row Selected' }), + }, + { + id: '2', + name: 'Name 2', + isSelected: true, + getToggleRowSelectedProps: () => ({ + indeterminate: false, + title: 'Toggle Row Selected', + checked: true, + onChange: () => {}, + }), + }, + ], + getTableProps: () => {}, + prepareRow: (row) => row, + visibleColumns: [{ + Header: 'Name', + accessor: 'name', + }], +}; + +const loadingInstance = { + ...instance, + isLoading: true, +}; + +const selectableInstance = { + ...instance, + isSelectable: true, + visibleColumns: [ + selectColumn, + { + Header: 'Name', + accessor: 'name', + }, + ], +}; + +// eslint-disable-next-line react/prop-types +function Card({ name }) { + return
{name}
; +} + +// eslint-disable-next-line react/prop-types +function CardViewWrapper({ value = instance, ...props }) { + return ( + + + + ); +} + +describe('', () => { + it('renders nothing if Table is empty', async () => { + const { container } = render(); + expect(container).toBeEmptyDOMElement(); + }); + + it('renders cards without selection component if DataTable is not selectable', async () => { + render(); + + expect(screen.queryByText('Name 1')).toBeInTheDocument(); + expect(screen.queryByText('Name 2')).toBeInTheDocument(); + + expect(screen.queryByTitle('Toggle Row Selected')).not.toBeInTheDocument(); + }); + + it('renders cards with selection component if DataTable is selectable', async () => { + render(); + + expect(screen.queryByText('Name 1')).toBeInTheDocument(); + expect(screen.queryByText('Name 2')).toBeInTheDocument(); + + const selectionComponents = screen.queryAllByTitle('Toggle Row Selected'); + expect(selectionComponents.length).toEqual(2); + expect(selectionComponents[0]).not.toBeChecked(); + expect(selectionComponents[1]).toBeChecked(); + }); + + it('renders card loading state', () => { + render(); + expect(screen.queryAllByTestId('default-skeleton-card-component')).toHaveLength(DEFAULT_SKELETON_CARD_COUNT); + }); +}); diff --git a/src/DataTable/tests/DataTable.test.jsx b/src/DataTable/tests/DataTable.test.jsx index c4f4025e81..5f55ab2d17 100644 --- a/src/DataTable/tests/DataTable.test.jsx +++ b/src/DataTable/tests/DataTable.test.jsx @@ -1,8 +1,11 @@ import React, { useContext } from 'react'; +import { render, screen } from '@testing-library/react'; +import userEvent from '@testing-library/user-event'; import { act } from 'react-dom/test-utils'; import { mount } from 'enzyme'; import * as reactTable from 'react-table'; import { IntlProvider } from 'react-intl'; +import '@testing-library/jest-dom'; import DataTable from '..'; import TableControlBar from '../TableControlBar'; @@ -30,37 +33,44 @@ const additionalColumns = [ const props = { data: [ { + uuid: '1', name: 'Lil Bub', color: 'brown tabby', famous_for: 'weird tongue', }, { + uuid: '2', name: 'Grumpy Cat', color: 'siamese', famous_for: 'serving moods', }, { + uuid: '3', name: 'Smoothie', color: 'orange tabby', famous_for: 'modeling', }, { + uuid: '4', name: 'Maru', color: 'brown tabby', famous_for: 'being a lovable oaf', }, { + uuid: '5', name: 'Keyboard Cat', color: 'orange tabby', famous_for: 'piano virtuoso', }, { + uuid: '6', name: 'Long Cat', color: 'russian white', famous_for: 'being loooooooooooooooooooooooooooooooooooooooooooooooooooooong', }, { + uuid: '7', name: 'Zeno', color: 'brown tabby', famous_for: 'getting halfway there', @@ -82,6 +92,9 @@ const props = { }, ], itemCount: 7, + initialTableOptions: { + getRowId: row => row.uuid, + }, }; const emptyTestText = 'We love bears'; @@ -193,7 +206,7 @@ describe('', () => { // TODO: test that useTable is called with the correct arguments when isPaginated, isFilterable, isSelectable are used // TODO: test that fetchData is called correctly - describe('controlled table selections', () => { + describe('[legacy] controlled table selections', () => { it('passes initial controlledTableSelections to context', () => { const wrapper = mount( @@ -245,4 +258,75 @@ describe('', () => { expect(contextValue.selectedFlatRows).toEqual([selectedRow]); }); }); + + describe('controlled table selections', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('calls onSelectedRowsChanged when selected rows are updated', () => { + const mockOnSelectedRowsChange = jest.fn(); + const propsWithSelection = { + ...props, + isSelectable: true, + onSelectedRowsChanged: mockOnSelectedRowsChange, + }; + render(); + + // select first row + userEvent.click(screen.getAllByTestId('datatable-select-column-checkbox-cell')[0]); + expect(mockOnSelectedRowsChange).toHaveBeenCalledTimes(1); + expect(mockOnSelectedRowsChange).toHaveBeenCalledWith( + expect.objectContaining({ + 1: true, + }), + ); + + // select third row + userEvent.click(screen.getAllByTestId('datatable-select-column-checkbox-cell')[2]); + expect(mockOnSelectedRowsChange).toHaveBeenCalledTimes(2); + expect(mockOnSelectedRowsChange).toHaveBeenCalledWith( + expect.objectContaining({ + 1: true, + 3: true, + }), + ); + + // unselect third row + userEvent.click(screen.getAllByTestId('datatable-select-column-checkbox-cell')[2]); + expect(mockOnSelectedRowsChange).toHaveBeenCalledTimes(3); + expect(mockOnSelectedRowsChange).toHaveBeenCalledWith( + expect.objectContaining({ + 1: true, + }), + ); + }); + + it('deselects all rows across all pages when `toggleAllRowsSelected(false)` is called', () => { + const mockOnSelectedRowsChange = jest.fn(); + const propsWithSelection = { + ...props, + isPaginated: true, + isSelectable: true, + onSelectedRowsChanged: mockOnSelectedRowsChange, + selectedFlatRows: [{ + id: '1', + }], + initialState: { + pageIndex: 0, + pageSize: 2, + selectedRowIds: { + 1: true, + // because `pageSize` is 2, a row id of 3 selects first row on 2nd page + 3: true, + }, + }, + }; + render(); + userEvent.click(screen.getByText('Clear selection')); + + expect(mockOnSelectedRowsChange).toHaveBeenCalledTimes(1); + expect(mockOnSelectedRowsChange).toHaveBeenCalledWith({}); + }); + }); }); diff --git a/src/DataTable/tests/SmartStatus.test.jsx b/src/DataTable/tests/SmartStatus.test.jsx index aef05b7221..368d74f519 100644 --- a/src/DataTable/tests/SmartStatus.test.jsx +++ b/src/DataTable/tests/SmartStatus.test.jsx @@ -37,8 +37,17 @@ function SmartStatusWrapper({ value, props }) { describe('', () => { it('Shows the selection status if rows are selected', () => { + const contextValue = { + ...instance, + state: { + selectedRowIds: { + 0: true, + 1: true, + }, + }, + }; const wrapper = mount( - , + , ); expect(wrapper.find(SelectionStatus)).toHaveLength(1); }); @@ -73,11 +82,17 @@ describe('', () => { function AltStatus() { return
{altStatusText}
; } - const wrapper = mount(); + const contextValue = { + ...instance, + SelectionStatusComponent: AltStatus, + state: { + selectedRowIds: { + 0: true, + 1: true, + }, + }, + }; + const wrapper = mount(); expect(wrapper.text()).toContain(altStatusText); }); it('shows an alternate row status', () => { diff --git a/src/DataTable/tests/TableFooter.test.jsx b/src/DataTable/tests/TableFooter.test.jsx index f9c898631a..e3fe43fc18 100644 --- a/src/DataTable/tests/TableFooter.test.jsx +++ b/src/DataTable/tests/TableFooter.test.jsx @@ -13,6 +13,7 @@ const footerInstance = { state: { pageIndex: 1 }, pageCount: 3, itemCount: 30, + RowStatusComponent: undefined, }; // eslint-disable-next-line react/prop-types @@ -40,4 +41,12 @@ describe('', () => { const wrapper = mount(
{leftText}
); expect(wrapper.text()).toContain(leftText); }); + it('uses custom RowStatus component, if provided', () => { + const dataTableContextValue = { + ...footerInstance, + RowStatusComponent: () =>

Hello world

, + }; + const wrapper = mount(); + expect(wrapper.text()).toContain('Hello world'); + }); }); diff --git a/src/DataTable/utils/getVisibleColumns.jsx b/src/DataTable/utils/getVisibleColumns.jsx index 2b2f5e0677..bda21b539a 100644 --- a/src/DataTable/utils/getVisibleColumns.jsx +++ b/src/DataTable/utils/getVisibleColumns.jsx @@ -22,8 +22,11 @@ export const selectColumn = { const updatedProps = useConvertIndeterminateProp(toggleRowsSelectedProps); return ( -
- +
+
); }, @@ -35,8 +38,11 @@ export const selectColumn = { const updatedProps = useConvertIndeterminateProp(row.getToggleRowSelectedProps()); return ( -
- +
+
); }, diff --git a/src/Dropdown/Dropdown.scss b/src/Dropdown/Dropdown.scss index cd3091a107..7982c3a2e2 100644 --- a/src/Dropdown/Dropdown.scss +++ b/src/Dropdown/Dropdown.scss @@ -38,10 +38,10 @@ } .dropdown-toggle::after { + content: ""; border: 0; border-style: solid; border-width: .15rem .15rem 0 0; - content: ""; height: .45rem; margin-inline-start: .5em; position: relative; diff --git a/src/Dropdown/README.md b/src/Dropdown/README.md index 014e8f672f..187fdfb182 100644 --- a/src/Dropdown/README.md +++ b/src/Dropdown/README.md @@ -11,9 +11,7 @@ categories: - Navigation status: 'Stable' designStatus: 'Done' -devStatus: 'TO DO' -notes: | - TODO: Remove subcomponent of deprecated implementation soon +devStatus: 'Done' ---

@@ -120,94 +118,3 @@ You can use `Dropdown.Toggle` with [IconButton](/components/iconbutton) componen ``` - -*** - -## Dropdown.Deprecated - -```jsx live - - - Search Engines - - - Google - DuckDuckGo - Yahoo - - -``` - -### with icon element - -```jsx live - - - - Search Engines - - - Google - DuckDuckGo - Yahoo - - -``` - -### (Deprecated) basic usage - -```jsx live - -``` - -### (Deprecated) menu items as elements - -```jsx live -Google, - DuckDuckGo, - Yahoo, - ]} -/> -``` - -### (Deprecated) with icon element - -```jsx live -} - menuItems={[ - { - label: 'Google', - href: 'https://google.com', - }, - { - label: 'DuckDuckGo', - href: 'https://duckduckgo.com', - }, - { - label: 'Yahoo', - href: 'https://yahoo.com', - }, - ]} -/> -``` diff --git a/src/Dropdown/_variables.scss b/src/Dropdown/_variables.scss index dfc4e9316f..ce24e03da5 100644 --- a/src/Dropdown/_variables.scss +++ b/src/Dropdown/_variables.scss @@ -2,32 +2,32 @@ // // Dropdown menu container and contents. -$dropdown-min-width: 18rem !default; -$dropdown-padding-x: 0 !default; -$dropdown-padding-y: .5rem !default; -$dropdown-spacer: .125rem !default; -$dropdown-font-size: $font-size-base !default; -$dropdown-color: $body-color !default; -$dropdown-bg: $white !default; -$dropdown-border-color: rgba($black, .15) !default; -$dropdown-border-radius: $border-radius !default; -$dropdown-border-width: $border-width !default; -$dropdown-inner-border-radius: calc(#{$dropdown-border-radius} - #{$dropdown-border-width}) !default; -$dropdown-divider-bg: theme-color("gray", "background") !default; -$dropdown-divider-margin-y: calc($spacer / 2) !default; -$dropdown-box-shadow: 0 .5rem 1rem rgba($black, .175) !default; +$dropdown-min-width: var(--pgn-size-dropdown-min-width) !default; +$dropdown-padding-x: var(--pgn-spacing-dropdown-padding-x-base) !default; +$dropdown-padding-y: var(--pgn-spacing-dropdown-padding-y-base) !default; +$dropdown-spacer: var(--pgn-spacing-dropdown-spacer) !default; +$dropdown-font-size: var(--pgn-typography-dropdown-font-size) !default; +$dropdown-color: var(--pgn-color-dropdown-text) !default; +$dropdown-bg: var(--pgn-color-dropdown-bg) !default; +$dropdown-border-color: var(--pgn-color-dropdown-border) !default; +$dropdown-border-radius: var(--pgn-size-dropdown-border-radius-base) !default; +$dropdown-border-width: var(--pgn-size-dropdown-border-width) !default; +$dropdown-inner-border-radius: var(--pgn-size-dropdown-border-radius-inner) !default; +$dropdown-divider-bg: var(--pgn-color-dropdown-divider-bg) !default; +$dropdown-divider-margin-y: var(--pgn-spacing-dropdown-divider-margin-y) !default; +$dropdown-box-shadow: var(--pgn-elevation-dropdown-box-shadow) !default; -$dropdown-link-color: theme-color("gray", "dark-text") !default; -$dropdown-link-hover-color: darken(theme-color("gray", "dark-text"), 5%) !default; -$dropdown-link-hover-bg: $light-300 !default; +$dropdown-link-color: var(--pgn-color-dropdown-link-base) !default; +$dropdown-link-hover-color: var(--pgn-color-dropdown-link-hover-base) !default; +$dropdown-link-hover-bg: var(--pgn-color-dropdown-link-hover-bg) !default; -$dropdown-link-active-color: $component-active-color !default; -$dropdown-link-active-bg: $component-active-bg !default; +$dropdown-link-active-color: var(--pgn-color-dropdown-link-active-base) !default; +$dropdown-link-active-bg: var(--pgn-color-dropdown-link-active-bg) !default; -$dropdown-link-disabled-color: theme-color("gray", "light-text") !default; +$dropdown-link-disabled-color: var(--pgn-color-dropdown-link-disabled) !default; -$dropdown-item-padding-y: .25rem !default; -$dropdown-item-padding-x: 1rem !default; +$dropdown-item-padding-y: var(--pgn-spacing-dropdown-padding-y-item) !default; +$dropdown-item-padding-x: var(--pgn-spacing-dropdown-padding-x-item) !default; -$dropdown-header-color: theme-color("gray", "light-text") !default; -$dropdown-header-padding: $dropdown-padding-y $dropdown-item-padding-x !default; +$dropdown-header-color: var(--pgn-color-dropdown-header) !default; +$dropdown-header-padding: var(--pgn-spacing-dropdown-padding-header) !default; diff --git a/src/Dropdown/deprecated/Dropdown.test.jsx b/src/Dropdown/deprecated/Dropdown.test.jsx deleted file mode 100644 index da4bb6d769..0000000000 --- a/src/Dropdown/deprecated/Dropdown.test.jsx +++ /dev/null @@ -1,214 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; -import renderer from 'react-test-renderer'; - -import Dropdown from './index'; -import Icon from '../../Icon'; - -const menuContent = ( - <> - - Search Engines - - - Google - DuckDuckGo - Yahoo - - -); - -const menuOpen = (isOpen, wrapper) => { - expect(wrapper.find('.dropdown').hasClass('show')).toEqual(isOpen); - expect(wrapper.find('button').prop('aria-expanded')).toEqual(isOpen); - expect(wrapper.find('[aria-hidden=false]').exists()).toEqual(isOpen); -}; - -describe('', () => { - describe('Rendering', () => { - it('renders the happy path', () => { - const tree = renderer.create(( - - {menuContent} - - )).toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it('renders when there is html content in the trigger button', () => { - const tree = renderer.create(( - - {menuContent} - - )).toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it('renders with custom menu content', () => { - const tree = renderer.create(( - - Custom Content - - )).toJSON(); - expect(tree).toMatchSnapshot(); - }); - }); - - describe('Mouse Interactions', () => { - const app = document.createElement('div'); - document.body.appendChild(app); - - const wrapper = mount({menuContent}, { attachTo: app }); - const menuTrigger = wrapper.find('button'); - const menuContainer = wrapper.find('.dropdown-menu'); - const menuItems = wrapper.find('.dropdown-menu a'); - - it('opens on trigger click', () => { - menuTrigger.simulate('click'); // Open - menuOpen(true, wrapper); - }); - - it('should focus on the first item after opening', () => { - expect(menuItems.first().is(':focus')).toBe(true); - }); - - it('does not close on click inside the menu', () => { - menuContainer.simulate('click'); // Do nothing - menuOpen(true, wrapper); - }); - - it('closes on trigger click', () => { - menuTrigger.simulate('click'); // Close - menuOpen(false, wrapper); - }); - - it('should focus on the trigger button after closing', () => { - expect(menuTrigger.is(':focus')).toBe(true); - }); - - it('closes on document click when open', () => { - menuTrigger.simulate('click'); // Open - menuOpen(true, wrapper); - document.dispatchEvent(new MouseEvent('click')); - wrapper.update(); // Let react re-render - menuOpen(false, wrapper); - }); - }); - - describe('Keyboard Interactions', () => { - // Note: menuContent has three items - const app = document.createElement('div'); - document.body.appendChild(app); - - const wrapper = mount({menuContent}, { attachTo: app }); - const menuTrigger = wrapper.find('button'); - const menuContainer = wrapper.find('.dropdown-menu'); - const menuItems = wrapper.find('.dropdown-menu a'); - - it('opens on click', () => { - menuTrigger.simulate('click'); // Open - menuOpen(true, wrapper); - }); - - it('should focus on the first item after opening', () => { - expect(menuItems.first().is(':focus')).toBe(true); - }); - - it('should focus the next item after ArrowDown keyDown', () => { - menuContainer.simulate('keyDown', { key: 'ArrowDown' }); - expect(menuItems.at(1).is(':focus')).toBe(true); - }); - - it('should focus the next item after Tab keyDown', () => { - menuContainer.simulate('keyDown', { key: 'Tab' }); - expect(menuItems.at(2).is(':focus')).toBe(true); - }); - - it('should loop focus to the first item after Tab keyDown on last item', () => { - menuContainer.simulate('keyDown', { key: 'Tab' }); - expect(menuItems.at(0).is(':focus')).toBe(true); - }); - - it('should loop focus to the last item after ArrowUp keyDown on first item', () => { - menuContainer.simulate('keyDown', { key: 'ArrowUp' }); - expect(menuItems.at(2).is(':focus')).toBe(true); - }); - - it('should focus the previous item after Shift + Tab keyDown', () => { - menuContainer.simulate('keyDown', { key: 'Tab', shiftKey: true }); - expect(menuItems.at(1).is(':focus')).toBe(true); - }); - - it('should close the menu on Escape keyDown', () => { - menuContainer.simulate('keyDown', { key: 'Escape' }); - menuOpen(false, wrapper); - }); - - it('should focus on the trigger button after closing', () => { - expect(menuTrigger.is(':focus')).toBe(true); - }); - }); - - describe('Backwards compatibility', () => { - it('renders the basic usage', () => { - const tree = renderer.create(( - - )).toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it('renders menu items as elements', () => { - const tree = renderer.create(( - Google, - DuckDuckGo, - Yahoo, - ]} - /> - )).toJSON(); - expect(tree).toMatchSnapshot(); - }); - - it('renders with icon element', () => { - const tree = renderer.create(( - } - menuItems={[ - { - label: 'Google', - href: 'https://google.com', - }, - { - label: 'DuckDuckGo', - href: 'https://duckduckgo.com', - }, - { - label: 'Yahoo', - href: 'https://yahoo.com', - }, - ]} - /> - )).toJSON(); - expect(tree).toMatchSnapshot(); - }); - }); -}); diff --git a/src/Dropdown/deprecated/DropdownButton.jsx b/src/Dropdown/deprecated/DropdownButton.jsx deleted file mode 100644 index c692aee437..0000000000 --- a/src/Dropdown/deprecated/DropdownButton.jsx +++ /dev/null @@ -1,52 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import classNames from 'classnames'; -// eslint-disable-next-line import/no-cycle -import { Consumer } from './index'; - -function DropdownButton({ children, className, ...other }) { - return ( - - {({ - buttonRef, - isOpen, - toggle, - triggerId, - }) => ( - - )} - - ); -} - -DropdownButton.propTypes = { - children: PropTypes.node, - className: PropTypes.string, -}; - -DropdownButton.defaultProps = { - children: undefined, - className: 'btn-light', -}; - -export default DropdownButton; diff --git a/src/Dropdown/deprecated/DropdownItem.jsx b/src/Dropdown/deprecated/DropdownItem.jsx deleted file mode 100644 index c83dad5d28..0000000000 --- a/src/Dropdown/deprecated/DropdownItem.jsx +++ /dev/null @@ -1,34 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import classNames from 'classnames'; - -function DropdownItem(props) { - const { - type, children, className, ...other - } = props; - return React.createElement( - type, - { - ...other, - className: classNames( - 'dropdown-item', - className, - ), - }, - children, - ); -} - -DropdownItem.propTypes = { - type: PropTypes.string, - children: PropTypes.node, - className: PropTypes.string, -}; - -DropdownItem.defaultProps = { - type: 'a', - children: undefined, - className: null, -}; - -export default DropdownItem; diff --git a/src/Dropdown/deprecated/DropdownMenu.jsx b/src/Dropdown/deprecated/DropdownMenu.jsx deleted file mode 100644 index 105b76b510..0000000000 --- a/src/Dropdown/deprecated/DropdownMenu.jsx +++ /dev/null @@ -1,50 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import classNames from 'classnames'; -// eslint-disable-next-line import/no-cycle -import { Consumer } from './index'; - -function DropdownMenu({ children, ...other }) { - return ( - - {({ - handleMenuKeyDown, - isOpen, - menuRef, - triggerId, - }) => ( - /* eslint-disable-next-line jsx-a11y/interactive-supports-focus */ -

{ - handleMenuKeyDown(e); - if (other.onKeyDown) { - other.onKeyDown(e); - } - }} - > - {children} -
- )} - - ); -} - -DropdownMenu.propTypes = { - children: PropTypes.node, -}; - -DropdownMenu.defaultProps = { - children: undefined, -}; - -export default DropdownMenu; diff --git a/src/Dropdown/deprecated/__snapshots__/Dropdown.test.jsx.snap b/src/Dropdown/deprecated/__snapshots__/Dropdown.test.jsx.snap deleted file mode 100644 index 0a859c5a74..0000000000 --- a/src/Dropdown/deprecated/__snapshots__/Dropdown.test.jsx.snap +++ /dev/null @@ -1,229 +0,0 @@ -// Jest Snapshot v1, https://goo.gl/fbAQLP - -exports[` Backwards compatibility renders menu items as elements 1`] = ` -
- - -
-`; - -exports[` Backwards compatibility renders the basic usage 1`] = ` -
- - -
-`; - -exports[` Backwards compatibility renders with icon element 1`] = ` -
- - -
-`; - -exports[` Rendering renders the happy path 1`] = ` -
- - -
-`; - -exports[` Rendering renders when there is html content in the trigger button 1`] = ` -
- - -
-`; - -exports[` Rendering renders with custom menu content 1`] = ` -
- Custom Content -
-`; diff --git a/src/Dropdown/deprecated/index.jsx b/src/Dropdown/deprecated/index.jsx deleted file mode 100644 index b8c1fed8a7..0000000000 --- a/src/Dropdown/deprecated/index.jsx +++ /dev/null @@ -1,222 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import classNames from 'classnames'; -// eslint-disable-next-line import/no-cycle -import DropdownButton from './DropdownButton'; -// eslint-disable-next-line import/no-cycle -import DropdownMenu from './DropdownMenu'; -import DropdownItem from './DropdownItem'; - -import withDeprecatedProps, { DeprTypes } from '../../withDeprecatedProps'; - -const { Provider, Consumer } = React.createContext(); - -class Dropdown extends React.Component { - // eslint-disable-next-line react/sort-comp - static idCounter = 0; // For creating unique ids - - constructor(props) { - super(props); - this.state = { - open: false, - }; - - // Used for aria labelling. Increment the id counter so the next id can be unique - this.uniqueId = Dropdown.idCounter; - Dropdown.idCounter += 1; - this.triggerId = `pgn__dropdown-trigger-${this.uniqueId}`; - - this.containerRef = React.createRef(); - this.menuRef = React.createRef(); - this.buttonRef = React.createRef(); - } - - componentDidUpdate(prevProps, prevState) { - if (prevState.open !== this.state.open) { - if (this.state.open) { - this.focusFirst(); - } else { - this.buttonRef.current.focus(); - } - } - } - - componentWillUnmount() { - document.removeEventListener('click', this.handleDocumentClick, true); - } - - getFocusableElements() { - const selector = 'button:not([disabled]), [href]:not([disabled]), input:not([disabled]), select:not([disabled]), textarea:not([disabled]), [tabindex]:not([tabindex="-1"]):not([disabled])'; - return Array.from(this.menuRef.current.querySelectorAll(selector)); - } - - handleDocumentClick = (e) => { - if (this.containerRef.current.contains(e.target) && this.containerRef.current !== e.target) { - return; - } - if (this.state.open) { - this.close(); - } - }; - - handleMenuKeyDown = (e) => { - switch (e.key) { - case 'ArrowUp': - e.preventDefault(); - this.focusPrevious(); - break; - case 'ArrowDown': - e.preventDefault(); - this.focusNext(); - break; - case 'Tab': - e.preventDefault(); - if (e.shiftKey) { - this.focusPrevious(); - } else { - this.focusNext(); - } - break; - case 'Escape': - e.stopPropagation(); - this.close(); - break; - default: - break; - } - }; - - toggle = () => { - if (this.state.open) { - this.close(); - } else { - this.open(); - } - }; - - close() { - document.removeEventListener('click', this.handleDocumentClick, true); - this.setState({ - open: false, - }); - } - - open() { - // adding event listener here so the user can close dropdown on click outside of the dropdown - document.addEventListener('click', this.handleDocumentClick, true); - this.setState({ - open: true, - }); - } - - focusFirst() { - const focusableElements = this.getFocusableElements(); - if (focusableElements.length) { focusableElements[0].focus(); } - } - - focusNext() { - const allFocusableElements = this.getFocusableElements(); - if (allFocusableElements.length === 0) { return; } - const activeIndex = allFocusableElements.indexOf(document.activeElement); - const nextIndex = (activeIndex + 1) % allFocusableElements.length; - allFocusableElements[nextIndex].focus(); - } - - focusPrevious() { - const allFocusableElements = this.getFocusableElements(); - if (allFocusableElements.length === 0) { return; } - const activeIndex = allFocusableElements.indexOf(document.activeElement); - const previousIndex = ((activeIndex - 1) + allFocusableElements.length) % allFocusableElements.length; - allFocusableElements[previousIndex].focus(); - } - - render() { - const { children, ...other } = this.props; - - return ( -
- - {children} - -
- ); - } -} - -Dropdown.propTypes = { - children: PropTypes.node.isRequired, -}; - -Dropdown.Item = DropdownItem; -Dropdown.Button = DropdownButton; -Dropdown.Menu = DropdownMenu; - -const DropdownWithDeprecatedProps = withDeprecatedProps(Dropdown, 'Dropdown', { - menuItems: { - deprType: DeprTypes.MOVED_AND_FORMAT, - message: 'They should be components sent as children.', - newName: 'children', - transform: (menuItems, allProps) => { - if (!Array.isArray(menuItems)) { return null; } - return ( - <> - - {React.isValidElement(allProps.iconElement) ? allProps.iconElement : null } - {allProps.title} - - - {menuItems.map((menuItem, i) => { - /* eslint-disable react/no-array-index-key */ - if (React.isValidElement(menuItem)) { - return React.cloneElement(menuItem, { - className: 'dropdown-item', - key: i, - }); - } - return {menuItem.label}; - /* eslint-enable react/no-array-index-key */ - })} - - - ); - }, - }, - title: { - deprType: DeprTypes.REMOVED, - message: 'It should be specified inside the Dropdown.Button component', - }, - buttonType: { - deprType: DeprTypes.REMOVED, - message: 'It should be specified as a className prop', - }, - iconElement: { - deprType: DeprTypes.REMOVED, - message: 'It should be specified inside the buttonContent prop.', - }, -}); - -DropdownWithDeprecatedProps.propTypes = Dropdown.propTypes; -DropdownWithDeprecatedProps.defaultProps = Dropdown.defaultProps; -DropdownWithDeprecatedProps.Item = Dropdown.Item; -DropdownWithDeprecatedProps.Button = Dropdown.Button; -DropdownWithDeprecatedProps.Menu = Dropdown.Menu; - -export { Provider, Consumer }; -export default DropdownWithDeprecatedProps; diff --git a/src/Dropdown/index.jsx b/src/Dropdown/index.jsx index e1eebd64f0..88f10fad20 100644 --- a/src/Dropdown/index.jsx +++ b/src/Dropdown/index.jsx @@ -5,7 +5,6 @@ import BaseDropdown from 'react-bootstrap/Dropdown'; import DropdownMenu from 'react-bootstrap/DropdownMenu'; import BaseDropdownItem from 'react-bootstrap/DropdownItem'; import BaseDropdownToggle from 'react-bootstrap/DropdownToggle'; -import DropdownDeprecated from './deprecated'; import { Button, IconButton, @@ -136,7 +135,6 @@ Dropdown.Item.defaultProps = { className: undefined, }; -Dropdown.Deprecated = DropdownDeprecated; Dropdown.Toggle = DropdownToggle; Dropdown.Menu = DropdownMenu; Dropdown.Header = BaseDropdown.Header; diff --git a/src/Dropzone/Dropzone.scss b/src/Dropzone/Dropzone.scss index e804efeff4..5c892fda89 100644 --- a/src/Dropzone/Dropzone.scss +++ b/src/Dropzone/Dropzone.scss @@ -6,24 +6,24 @@ align-items: center; min-height: 200px; padding: $dropzone-padding; - border: $dropzone-border-default; + border: $dropzone-border-default dashed $dropzone-border-color-default; box-sizing: border-box; cursor: pointer; &:hover { - border: $dropzone-border-hover; + border: $dropzone-border-hover solid $dropzone-border-color-hover; } &:focus { - border: $dropzone-border-focus; + border: $dropzone-border-focus solid $dropzone-border-color-focus; } &.pgn__dropzone-validation-error { - border: $dropzone-border-error; + border: $dropzone-border-error solid $dropzone-border-color-error; } &.pgn__dropzone-active { - border: $dropzone-border-active; + border: $dropzone-border-active solid $dropzone-border-color-active; } } diff --git a/src/Dropzone/_variables.scss b/src/Dropzone/_variables.scss index ee7caed6a4..6a107a5088 100644 --- a/src/Dropzone/_variables.scss +++ b/src/Dropzone/_variables.scss @@ -1,9 +1,14 @@ -$dropzone-padding: 1.5rem !default; -$dropzone-border-default: 1px dashed $gray-500 !default; -$dropzone-border-hover: 2px solid $info-300 !default; -$dropzone-border-focus: 2px solid $info-300 !default; -$dropzone-border-active: 2px solid $primary-500 !default; -$dropzone-border-error: 2px solid $danger-300 !default; -$dropzone-error-wrapper-color: $danger-500 !default; -$dropzone-restriction-msg-font-size: $x-small-font-size !default; -$dropzone-restriction-msg-color: $gray-500 !default; +$dropzone-padding: var(--pgn-spacing-dropzone-padding) !default; +$dropzone-border-default: var(--pgn-spacing-dropzone-border-base) !default; +$dropzone-border-hover: var(--pgn-spacing-dropzone-border-hover) !default; +$dropzone-border-focus: var(--pgn-spacing-dropzone-border-focus) !default; +$dropzone-border-active: var(--pgn-spacing-dropzone-border-active) !default; +$dropzone-border-error: var(--pgn-spacing-dropzone-border-error) !default; +$dropzone-error-wrapper-color: var(--pgn-color-dropzone-error-wrapper) !default; +$dropzone-restriction-msg-font-size: var(--pgn-typography-dropzone-restriction-msg-font-size) !default; +$dropzone-restriction-msg-color: var(--pgn-color-dropzone-restriction-msg) !default; +$dropzone-border-color-default: var(--pgn-color-dropzone-border-base) !default; +$dropzone-border-color-hover: var(--pgn-color-dropzone-border-hover) !default; +$dropzone-border-color-focus: var(--pgn-color-dropzone-border-focus) !default; +$dropzone-border-color-active: var(--pgn-color-dropzone-border-active) !default; +$dropzone-border-color-error: var(--pgn-color-dropzone-border-error) !default; diff --git a/src/Dropzone/tests/__snapshots__/DefaultContent.test.jsx.snap b/src/Dropzone/tests/__snapshots__/DefaultContent.test.jsx.snap index f28f6f9725..5494d592d4 100644 --- a/src/Dropzone/tests/__snapshots__/DefaultContent.test.jsx.snap +++ b/src/Dropzone/tests/__snapshots__/DefaultContent.test.jsx.snap @@ -10,6 +10,7 @@ Array [ > diff --git a/src/Dropzone/tests/__snapshots__/Dropzone.test.jsx.snap b/src/Dropzone/tests/__snapshots__/Dropzone.test.jsx.snap index a42fd297d6..8fa5c7e687 100644 --- a/src/Dropzone/tests/__snapshots__/Dropzone.test.jsx.snap +++ b/src/Dropzone/tests/__snapshots__/Dropzone.test.jsx.snap @@ -38,6 +38,7 @@ exports[` successfully renders 1`] = ` > successfully renders 1`] = ` > diff --git a/src/Fieldset/Fieldset.scss b/src/Fieldset/Fieldset.scss deleted file mode 100644 index 5e039319ad..0000000000 --- a/src/Fieldset/Fieldset.scss +++ /dev/null @@ -1,12 +0,0 @@ -.paragon-fieldset { - margin-bottom: $spacer * 1.5; - - .form-control { - height: auto; - } - - fieldset legend { - width: auto; - margin-bottom: 0; - } -} diff --git a/src/Fieldset/Fieldset.test.jsx b/src/Fieldset/Fieldset.test.jsx deleted file mode 100644 index d852268a00..0000000000 --- a/src/Fieldset/Fieldset.test.jsx +++ /dev/null @@ -1,105 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; - -import Fieldset from './index'; -import newId from '../utils/newId'; -import ValidationMessage from '../ValidationMessage'; -import Variant from '../utils/constants'; - -const dangerVariant = { - status: Variant.status.DANGER, -}; -const id = 'input1'; -const legend = 'A Fieldset'; -const invalidMessage = 'This is invalid!'; -const children = 'Input goes here'; -const variant = { - status: Variant.status.INFO, -}; -const variantIconDescription = 'Error'; - -const baseProps = { - className: '', - id, - isValid: true, - legend, - invalidMessage, - variant, - variantIconDescription, -}; - -const mockedNextId = 'fieldset1'; - -// Cannot reference variables inside of a jest mock function: https://github.com/facebook/jest/issues/2567 -jest.mock('../utils/newId', () => jest.fn().mockReturnValue('fieldset1')); - -describe('Fieldset', () => { - let wrapper; - - beforeEach(() => { - const props = { - ...baseProps, - }; - wrapper = mount(
{children}
); - }); - it('renders', () => { - const fieldset = wrapper.find('fieldset.form-control'); - expect(fieldset.exists()).toEqual(true); - expect(fieldset.hasClass('is-invalid-nodanger')).toEqual(true); - expect(fieldset.prop('aria-describedby')).toEqual(`error-${id}`); - const legendElem = fieldset.find('legend'); - expect(legendElem.text()).toEqual(legend); - expect(fieldset.text()).toEqual(legend + children); - const feedback = wrapper.find(ValidationMessage); - expect(feedback.prop('id')).toEqual(`error-${id}`); - }); - it('renders with auto-generated id if not specified', () => { - const props = { - ...baseProps, - id: undefined, - }; - wrapper = mount(
); - const feedback = wrapper.find(ValidationMessage); - expect(feedback.prop('id')).toEqual('error-fieldset1'); - }); - it('renders invalidMessage when isValid is false', () => { - wrapper.setProps({ isValid: false }); - const feedback = wrapper.find(ValidationMessage); - expect(feedback.prop('invalidMessage')).toEqual(invalidMessage); - }); - it('renders with danger variant when isValid is false and variant is DANGER', () => { - wrapper.setProps({ isValid: false, variant: dangerVariant }); - const feedback = wrapper.find(ValidationMessage); - expect(feedback.hasClass('invalid-feedback-nodanger')).toEqual(false); - expect(feedback.prop('variantIconDescription')).toEqual(variantIconDescription); - expect(feedback.prop('invalidMessage')).toEqual(invalidMessage); - expect(feedback.prop('variant')).toEqual(dangerVariant); - }); - it('receives new id when a valid one is passed to props', () => { - const nextId = 'new-id'; - let fieldset = wrapper.find('fieldset.form-control'); - let feedback = wrapper.find(ValidationMessage); - expect(fieldset.prop('aria-describedby')).toEqual(`error-${id}`); - expect(feedback.prop('id')).toEqual(`error-${id}`); - - wrapper.setProps({ id: nextId }); - fieldset = wrapper.find('fieldset.form-control'); - feedback = wrapper.find(ValidationMessage); - expect(fieldset.prop('aria-describedby')).toEqual(`error-${nextId}`); - expect(feedback.prop('id')).toEqual(`error-${nextId}`); - }); - it('auto-generates new id when an invalid one is passed to props', () => { - const nextId = ''; - let fieldset = wrapper.find('fieldset.form-control'); - let feedback = wrapper.find(ValidationMessage); - expect(fieldset.prop('aria-describedby')).toEqual(`error-${id}`); - expect(feedback.prop('id')).toEqual(`error-${id}`); - - wrapper.setProps({ id: nextId }); - expect(newId).toHaveBeenCalledWith('fieldset'); - fieldset = wrapper.find('fieldset.form-control'); - feedback = wrapper.find(ValidationMessage); - expect(fieldset.prop('aria-describedby')).toEqual(`error-${mockedNextId}`); - expect(feedback.prop('id')).toEqual(`error-${mockedNextId}`); - }); -}); diff --git a/src/Fieldset/README.md b/src/Fieldset/README.md deleted file mode 100644 index e180bf1e64..0000000000 --- a/src/Fieldset/README.md +++ /dev/null @@ -1,146 +0,0 @@ ---- -title: 'Fieldset' -type: 'component' -components: -- Fieldset -categories: -- Forms (deprecated) -status: 'Deprecate Soon' -designStatus: 'TBD' -devStatus: 'To Do' -notes: | - Unneeded. Used in one place (studio-frontend/src/components/EditImageModal/index.jsx) ---- - -## basic usage - -```jsx live -
-
- - -
-
-``` - -## invalid - -```jsx live -
-
- - -
-
-``` - -## invalid with danger theme - -```jsx live -
-
- - -
-
-``` - -## Validated Form - -```jsx live -class ValidatedForm extends React.Component { - constructor(props) { - super(props); - this.firstInputRef = null; - this.secondInputRef = null; - - this.state = { - isValid: true, - }; - - this.handleSubmit = this.handleSubmit.bind(this); - } - - handleSubmit(event) { - if ( - this.firstInputRef.value.length === 0 && - this.secondInputRef.value.length === 0 - ) { - this.setState({ - isValid: false, - }); - } else { - this.setState({ - isValid: true, - }); - } - event.preventDefault(); - } - - render() { - return ( -
-
- { - this.firstInputRef = ref; - }} - /> - { - this.secondInputRef = ref; - }} - /> -
- -
- ); - } -} -``` diff --git a/src/Fieldset/index.jsx b/src/Fieldset/index.jsx deleted file mode 100644 index 56905a46d0..0000000000 --- a/src/Fieldset/index.jsx +++ /dev/null @@ -1,106 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; -import classNames from 'classnames'; - -import newId from '../utils/newId'; - -import ValidationMessage from '../ValidationMessage/index'; -import Variant from '../utils/constants'; - -const inputProps = { - legend: PropTypes.oneOfType([PropTypes.string, PropTypes.element]).isRequired, - - children: PropTypes.node, - className: PropTypes.string, - id: PropTypes.string, - isValid: PropTypes.bool, - invalidMessage: PropTypes.oneOfType([PropTypes.string, PropTypes.element]), - variant: PropTypes.shape({ - status: PropTypes.oneOf(Object.keys(Variant.status).map(k => Variant.status[k])), - }), - variantIconDescription: PropTypes.oneOfType([PropTypes.string, PropTypes.element]), -}; - -const defaultProps = { - children: null, - className: undefined, - id: '', - isValid: true, - invalidMessage: '', - variant: { - status: Variant.status.INFO, - }, - variantIconDescription: '', -}; - -class Fieldset extends React.Component { - constructor(props) { - super(props); - this.state = { id: props.id || newId('fieldset') }; - } - - static getDerivedStateFromProps(nextProps, prevState) { - if (nextProps.id !== prevState.id) { - return { id: nextProps.id || newId('fieldset') }; - } - - return null; - } - - getVariantClassName() { - const { variant } = this.props; - let className; - - switch (variant.status) { - case Variant.status.INFO: - className = 'is-invalid-nodanger'; - break; - default: - break; - } - - return className; - } - - render() { - const { - className, - children, - variantIconDescription, - invalidMessage, - isValid, - legend, - variant, - } = this.props; - const errorId = `error-${this.state.id}`; - return ( -
-
- {legend} - {children} -
- -
- ); - } -} - -Fieldset.propTypes = inputProps; -Fieldset.defaultProps = defaultProps; - -export default Fieldset; diff --git a/src/Figure/README.md b/src/Figure/README.md index b9020b241c..9e318c4658 100644 --- a/src/Figure/README.md +++ b/src/Figure/README.md @@ -23,7 +23,7 @@ notes: |
Nulla vitae elit libero, a pharetra augue mollis interdum. diff --git a/src/Form/README.md b/src/Form/README.md index c7ec6f7ac5..6970340abf 100644 --- a/src/Form/README.md +++ b/src/Form/README.md @@ -75,17 +75,8 @@ notes: | - - + Check this switch
+ disabled switch
@@ -103,7 +94,7 @@ notes: | - + Check me out
} - /> - {'@example.com'}
} - /> - {'$'}
} - inputGroupAppend={
{'.00'}
} - /> - Go - )} - /> - - -
, - , - ]} - /> - - -
- } - /> - -``` diff --git a/src/InputText/index.jsx b/src/InputText/index.jsx deleted file mode 100644 index 3ad326611e..0000000000 --- a/src/InputText/index.jsx +++ /dev/null @@ -1,49 +0,0 @@ -import React from 'react'; -import PropTypes from 'prop-types'; - -import asInput from '../asInput'; -import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps'; - -function Text(props) { - const { - className, - inputRef, - type, - ...others - } = props; - - return ( - - ); -} - -Text.propTypes = { - className: PropTypes.string, - inputRef: PropTypes.oneOfType([ - PropTypes.func, - PropTypes.shape({ current: PropTypes.instanceOf(PropTypes.element) }), - ]), - type: PropTypes.string, -}; - -Text.defaultProps = { - className: undefined, - inputRef: undefined, - type: 'text', -}; - -const InputText = asInput(withDeprecatedProps(Text, 'InputText', { - className: { - deprType: DeprTypes.FORMAT, - expect: value => typeof value === 'string', - transform: value => (Array.isArray(value) ? value.join(' ') : value), - message: 'It should be a string.', - }, -})); - -export default InputText; diff --git a/src/ListBox/ListBox.test.jsx b/src/ListBox/ListBox.test.jsx deleted file mode 100644 index c5aa4911fa..0000000000 --- a/src/ListBox/ListBox.test.jsx +++ /dev/null @@ -1,169 +0,0 @@ -import React from 'react'; -import { shallow } from 'enzyme'; - -import ListBox from './index'; -import ListBoxOption from '../ListBoxOption'; - -describe('ListBox', () => { - const listBox = ( - - test1 - test2 - test3 - - ); - - let wrapper; - - describe('rendering', () => { - it('should have null aria-activedescendant attribute by default', () => { - wrapper = shallow(listBox); - - expect(wrapper.prop('aria-activedescendant')).toEqual(null); - }); - - it('should have correct aria-activedescendant attribute when selectedOptionIndex state is non-null', () => { - wrapper = shallow(listBox); - - const selectedOptionIndex = 1; - - wrapper.setState({ - selectedOptionIndex, - }); - - expect(wrapper.prop('aria-activedescendant')).toEqual(`list-box-option-${selectedOptionIndex}`); - }); - - it('selectedOptionIndex prop should override selectedOptionIndex state', () => { - wrapper = shallow(listBox); - - wrapper.setState({ - selectedOptionIndex: 1, - }); - - const selectedOptionIndex = 2; - - wrapper.setProps({ - selectedOptionIndex, - }); - - expect(wrapper.prop('aria-activedescendant')).toEqual(`list-box-option-${selectedOptionIndex}`); - }); - - it('should render a div by default', () => { - wrapper = shallow(listBox); - expect(wrapper.find('div')).toHaveLength(1); - }); - - it('should render an HTML element when passed tag prop is an HTML element', () => { - wrapper = shallow(listBox); - - wrapper.setProps({ - tag: 'li', - }); - - expect(wrapper.find('div')).toHaveLength(0); - expect(wrapper.find('li')).toHaveLength(1); - }); - - it('should have correct default classNames', () => { - wrapper = shallow(listBox); - - expect(wrapper.prop('className')).toEqual(expect.stringContaining('list-group')); - }); - - it('should have listbox role', () => { - wrapper = shallow(listBox); - - expect(wrapper.prop('role')).toEqual('listbox'); - }); - - it('should have 0 tabIndex', () => { - wrapper = shallow(listBox); - - expect(wrapper.prop('tabIndex')).toEqual(0); - }); - }); - describe('behavior', () => { - it('should select first ListBoxOption on focus if not ListBoxOption selected', () => { - wrapper = shallow(listBox); - - wrapper.simulate('focus'); - expect(wrapper.state('selectedOptionIndex')).toEqual(0); - }); - - it('should not select first ListBoxOption on focus if ListBoxOption selected', () => { - wrapper = shallow(listBox); - - wrapper.setState({ - selectedOptionIndex: 1, - }); - - wrapper.simulate('focus'); - expect(wrapper.state('selectedOptionIndex')).toEqual(1); - }); - - it('should select next ListBoxOption on down arrow key', () => { - wrapper = shallow(listBox); - - wrapper.simulate('focus'); - wrapper.simulate('keyDown', { key: 'ArrowDown', preventDefault() { } }); - - expect(wrapper.state('selectedOptionIndex')).toEqual(1); - }); - - it('should not select next ListBoxOption on down arrow key if at end of list', () => { - wrapper = shallow(listBox); - - wrapper.simulate('focus'); - - wrapper.setState({ - selectedOptionIndex: 2, - }); - - wrapper.simulate('keyDown', { key: 'ArrowDown', preventDefault() { } }); - - expect(wrapper.state('selectedOptionIndex')).toEqual(2); - }); - - it('should select previous ListBoxOption on up arrow key', () => { - wrapper = shallow(listBox); - - wrapper.simulate('focus'); - - wrapper.setState({ - selectedOptionIndex: 1, - }); - - wrapper.simulate('keyDown', { key: 'ArrowUp', preventDefault() { } }); - - expect(wrapper.state('selectedOptionIndex')).toEqual(0); - }); - - it('should not select previous ListBoxOption on up arrow key if at start of list', () => { - wrapper = shallow(listBox); - - wrapper.simulate('focus'); - wrapper.simulate('keyDown', { key: 'ArrowUp', preventDefault() { } }); - - expect(wrapper.state('selectedOptionIndex')).toEqual(0); - }); - - it('should not change ListBoxOption selection on non supported key', () => { - wrapper = shallow(listBox); - - wrapper.simulate('focus'); - wrapper.simulate('keyDown', { key: 'leftArrow', preventDefault() { } }); - - expect(wrapper.state('selectedOptionIndex')).toEqual(0); - }); - - it('should update state when child\'s onSelect is called', () => { - wrapper = shallow(listBox); - - wrapper.find(ListBoxOption).at(1).dive().simulate('mouseDown'); - - expect(wrapper.state('selectedOptionIndex')).toEqual(1); - }); - }); -}); diff --git a/src/ListBox/README.md b/src/ListBox/README.md deleted file mode 100644 index b65b121db6..0000000000 --- a/src/ListBox/README.md +++ /dev/null @@ -1,185 +0,0 @@ ---- -title: 'ListBox' -type: 'component' -components: -- ListBox -- ListBoxOption -categories: -- Forms (deprecated) -status: 'Deprecate Soon' -designStatus: 'TBD' -devStatus: 'To Do' -notes: 'Not used anywhere in code on Github. Consult design.' ---- - -## basic usage - -```jsx live - - - Apple - - - Orange - - - Strawberry - - - Banana - - -``` - -## using tag prop - -```jsx live - -
This is an ordered list!
- - - Apple - - -
Orange
-
- - Strawberry - - - Banana - -
-
-``` - -## using onSelect prop - -```jsx live -class ListBoxWrapperForOnSelect extends React.Component { - constructor(props) { - super(props); - - this.onSelect = this.onSelect.bind(this); - - this.state = { - selectedOption: null, - selectedOptionIndex: null, - }; - - this.fruits = { - Apple: '🍎', - Orange: '🍊', - Strawberry: '🍓', - Banana: '🍌', - }; - } - - onSelect(option, index) { - this.setState({ - selectedOption: option, - selectedOptionIndex: index, - }); - } - - getSelectedFruitEmoji(fruit) { - return fruit ? this.fruits[fruit] : ''; - } - - render() { - const children = Object.keys(this.fruits).map((fruit, index) => ( - this.onSelect(fruit, index)} - style={{ textAlign: 'center' }} - > - {fruit} - - )); - - return ( - - - Selected Fruit: - {this.state.selectedOptionIndex === undefined ? ( - none - ) : ( - - {this.getSelectedFruitEmoji(this.state.selectedOption)} - - )} - - - {children} - - - ); - } -} -``` - -## using selectedOptionIndex prop - -```jsx live -class ListBoxWrapperForSelectedOptionIndex extends React.Component { - constructor(props) { - super(props); - - this.onSelect = this.onSelect.bind(this); - this.onButtonClick = this.onButtonClick.bind(this); - - this.state = { - reset: true, - }; - - this.fruits = Object.keys({ - Apple: '🍎', - Orange: '🍊', - Strawberry: '🍓', - Banana: '🍌', - }); - } - - onButtonClick() { - this.setState({ - reset: true, - }); - } - - onSelect() { - this.setState({ - reset: false, - }); - } - - render() { - const children = this.fruits.map(fruit => ( - - {fruit} - - )); - - return ( - - - - {children} - - - ); - } -} -``` diff --git a/src/ListBox/index.jsx b/src/ListBox/index.jsx deleted file mode 100644 index 1e9fd93d99..0000000000 --- a/src/ListBox/index.jsx +++ /dev/null @@ -1,115 +0,0 @@ -/* eslint-disable max-len */ -import classNames from 'classnames'; -import PropTypes from 'prop-types'; -import React from 'react'; -import { nonNegativeInteger } from '../utils/propTypes'; - -export default class ListBox extends React.Component { - constructor(props) { - super(props); - - this.onFocus = this.onFocus.bind(this); - this.onKeyDown = this.onKeyDown.bind(this); - - this.state = { - selectedOptionIndex: null, - }; - } - - static getDerivedStateFromProps(nextProps, prevState) { - const { selectedOptionIndex } = nextProps; - - if (selectedOptionIndex !== prevState.selectedOptionIndex - && selectedOptionIndex !== undefined) { - return { selectedOptionIndex }; - } - - return null; - } - - onFocus() { - // if no ListBoxOption is selected, select first ListBoxOption on ListBox focus - if (!this.state.selectedOptionIndex) { - this.setState({ - selectedOptionIndex: 0, - }); - } - } - - onKeyDown(e) { - switch (e.key) { - case 'ArrowDown': { - // prevent scrolling entire modal body with arrow keys - e.preventDefault(); - if (this.state.selectedOptionIndex < React.Children.count(this.props.children) - 1) { - this.setState(state => ({ - selectedOptionIndex: state.selectedOptionIndex + 1, - })); - } - break; - } - case 'ArrowUp': { - // prevent scrolling entire modal body with arrow keys - e.preventDefault(); - - if (this.state.selectedOptionIndex > 0) { - this.setState(state => ({ - selectedOptionIndex: state.selectedOptionIndex - 1, - })); - } - break; - } - default: - } - } - - renderChildren() { - return React.Children.map(this.props.children, (child, index) => React.cloneElement(child, { - index, - isSelected: index === this.state.selectedOptionIndex, - onSelect: () => { this.setState({ selectedOptionIndex: index }); child.props.onSelect(); }, - })); - } - - render() { - const { - children, - className, - selectedOptionIndex, - tag, - ...other - } = this.props; - - return React.createElement( - this.props.tag, - { - 'aria-activedescendant': this.state.selectedOptionIndex === null ? null : `list-box-option-${this.state.selectedOptionIndex}`, - className: classNames(['list-group', this.props.className]), - onFocus: this.onFocus, - onKeyDown: this.onKeyDown, - role: 'listbox', - tabIndex: 0, - ...other, - }, - this.renderChildren(), - ); - } -} - -ListBox.propTypes = { - /** specifies the ListBoxOption component(s) that will be displayed within the ListBox element. You can pass in one or more ListBoxOption components. - */ - children: PropTypes.node.isRequired, - /** specifies Bootstrap class names to apply to the ListBox component. The default is an empty string. */ - className: PropTypes.string, - /** Although the ListBox component keeps track of which ListBoxOption is selected, `selectedOptionIndex` provides a mechanism for an override, if necessary. An example would be to clear the selectedOption when moving between views. Note that override is not permanent and that clicking on a ListBoxOption or interacting with the ListBox with the keyboard will change the selected ListBoxOption relative to the original override. The default is undefined. */ - selectedOptionIndex: nonNegativeInteger, - /** used to specify the element type of the rendered ListBox component. The default is div. Example alternatives include ol, ul, span, etc. */ - tag: PropTypes.string, -}; - -ListBox.defaultProps = { - className: undefined, - selectedOptionIndex: undefined, - tag: 'div', -}; diff --git a/src/ListBoxOption/ListBoxOption.test.jsx b/src/ListBoxOption/ListBoxOption.test.jsx deleted file mode 100644 index 8dcbe6cb32..0000000000 --- a/src/ListBoxOption/ListBoxOption.test.jsx +++ /dev/null @@ -1,133 +0,0 @@ -import React from 'react'; -import { shallow } from 'enzyme'; - -import ListBoxOption from './index'; - -describe('ListBoxOption', () => { - const listBoxOptionChild = 'test'; - const listBoxOption = ( - {listBoxOptionChild} - ); - - let wrapper; - - describe('rendering', () => { - it('should have false aria-selected attribute by default', () => { - wrapper = shallow(listBoxOption); - - expect(wrapper.prop('aria-selected')).toEqual(false); - }); - - it('should have false aria-selected attribute when isSelected prop is false', () => { - wrapper = shallow(listBoxOption); - - wrapper.setProps({ - isSelected: false, - }); - - expect(wrapper.prop('aria-selected')).toEqual(false); - }); - - it('should have true aria-selected attribute when isSelected prop is true', () => { - wrapper = shallow(listBoxOption); - - wrapper.setProps({ - isSelected: true, - }); - - expect(wrapper.prop('aria-selected')).toEqual(true); - }); - - it('should render a div by default', () => { - wrapper = shallow(listBoxOption); - - expect(wrapper.find('div')).toHaveLength(1); - }); - - it('should render an HTML element when tag prop is an HTML element', () => { - wrapper = shallow(listBoxOption); - - wrapper.setProps({ - tag: 'li', - }); - - expect(wrapper.find('div')).toHaveLength(0); - expect(wrapper.find('li')).toHaveLength(1); - }); - - it('should have correct default classNames', () => { - wrapper = shallow(listBoxOption); - - expect(wrapper.prop('className')).toEqual(expect.stringContaining('list-group-item')); - expect(wrapper.prop('className')).toEqual(expect.stringContaining('list-group-item-action')); - }); - - it('should not have active className by default', () => { - wrapper = shallow(listBoxOption); - - expect(wrapper.prop('className')).not.toEqual(expect.stringContaining('active')); - }); - - it('should have correct default id', () => { - wrapper = shallow(listBoxOption); - - expect(wrapper.prop('id')).toBeNull(); - }); - - it('should have correct id when index prop is a number', () => { - wrapper = shallow(listBoxOption); - - const index = 1; - - wrapper.setProps({ - index, - }); - - expect(wrapper.prop('id')).toEqual(`list-box-option-${index}`); - }); - - it('should have option role', () => { - wrapper = shallow(listBoxOption); - - expect(wrapper.prop('role')).toEqual('option'); - }); - - it('should have active className when isSelected prop is true', () => { - wrapper = shallow(listBoxOption); - - wrapper.setProps({ - isSelected: true, - }); - - expect(wrapper.prop('className')).toEqual(expect.stringContaining('active')); - }); - }); - describe('behavior', () => { - it('should call onSelect on mouse down', () => { - wrapper = shallow(listBoxOption); - const onSelectSpy = jest.fn(); - - wrapper.setProps({ - onSelect: onSelectSpy, - }); - - wrapper.simulate('mouseDown'); - expect(onSelectSpy).toHaveBeenCalledTimes(1); - }); - - it('should call onSelect when receiving new isSelected prop', () => { - wrapper = shallow(listBoxOption); - const onSelectSpy = jest.fn(); - - wrapper.setProps({ - onSelect: onSelectSpy, - }); - - wrapper.setProps({ - isSelected: true, - }); - - expect(onSelectSpy).toHaveBeenCalledTimes(1); - }); - }); -}); diff --git a/src/ListBoxOption/index.jsx b/src/ListBoxOption/index.jsx deleted file mode 100644 index ea207921eb..0000000000 --- a/src/ListBoxOption/index.jsx +++ /dev/null @@ -1,78 +0,0 @@ -import React from 'react'; -import classNames from 'classnames'; -import PropTypes from 'prop-types'; - -export default class ListBoxOption extends React.Component { - constructor(props) { - super(props); - - this.onMouseDown = this.onMouseDown.bind(this); - } - - componentDidUpdate(prevProps) { - if (this.props.isSelected && !prevProps.isSelected) { - this.props.onSelect(); - } - } - - /** - * onMouseDown is used instead of onClick because onClick triggers the focus - * event before click event. This focus event bubbles up to the parent - * (since onFocus bubbles in React), which triggers the ListBox's onFocus function. - * This function will select the first ListBoxOption if one is not selected, and this - * causes the user to see the first option selected before their desired option is selected - * when the click event is fired shortly thereafter. The mouseDown event occurs before the - * focus event, which prevents this behavior. - */ - onMouseDown() { - this.props.onSelect(); - } - - render() { - const { - children, - className, - index, - isSelected, - tag, - ...other - } = this.props; - - return React.createElement( - this.props.tag, - { - 'aria-selected': isSelected, - className: classNames( - 'list-group-item', - 'list-group-item-action', - { - active: this.props.isSelected, - }, - className, - ), - id: index === undefined ? null : `list-box-option-${index}`, - onMouseDown: this.onMouseDown, - role: 'option', - ...other, - }, - children, - ); - } -} - -ListBoxOption.propTypes = { - children: PropTypes.node.isRequired, - className: PropTypes.string, - index: PropTypes.number, - isSelected: PropTypes.bool, - tag: PropTypes.string, - onSelect: PropTypes.func, -}; - -ListBoxOption.defaultProps = { - className: undefined, - index: undefined, - isSelected: false, - tag: 'div', - onSelect: () => { }, -}; diff --git a/src/Menu/Menu.scss b/src/Menu/Menu.scss index 57da20ed96..aa9ef32c67 100644 --- a/src/Menu/Menu.scss +++ b/src/Menu/Menu.scss @@ -1,3 +1,5 @@ +@import "variables"; + .pgn__menu-item { display: flex; align-items: center; @@ -20,13 +22,12 @@ font-size: $btn-font-size; height: 48px; border-radius: 0; - $hover-border: transparent; .pgn__menu-item-content-spacer { flex-grow: 1; } - @include hover { + &:hover { text-decoration: none; color: $btn-tertiary-color; border-color: $hover-border; @@ -39,11 +40,6 @@ opacity: $btn-disabled-opacity; } - $background: $btn-tertiary-bg; - $border: transparent; - $active-background: $btn-tertiary-active-bg; - $active-border: transparent; - &:not(:disabled):not(.disabled):active, &:not(:disabled):not(.disabled).active, .show > &.dropdown-toggle { @@ -103,7 +99,7 @@ box-sizing: border-box; color: $dark; - @include hover { + &:hover { color: $white; background: $primary; border: 1px solid $white; diff --git a/src/Menu/_variables.scss b/src/Menu/_variables.scss new file mode 100644 index 0000000000..b3d25eb569 --- /dev/null +++ b/src/Menu/_variables.scss @@ -0,0 +1,4 @@ +$border: var(--pgn-color-menu-border-base) !default; +$active-background: var(--pgn-color-menu-bg-active) !default; +$active-border: var(--pgn-color-menu-border-active) !default; +$hover-border: var(--pgn-color-menu-border-hover) !default; diff --git a/src/Modal/Modal.scss b/src/Modal/Modal.scss index 6d8aae5209..dc71dd2182 100644 --- a/src/Modal/Modal.scss +++ b/src/Modal/Modal.scss @@ -1,5 +1,4 @@ @import "variables"; -@import "~bootstrap/scss/modal"; @import "ModalDialog"; .pgn__hidden-scroll-padding-right { @@ -49,71 +48,6 @@ } } -// Bootstrap modal styles - -.modal.show { - position: fixed; - background-color: transparent; - max-height: 100%; - width: 100%; - - &:focus { - .modal-dialog { - box-shadow: $btn-focus-box-shadow; - } - } -} - -.modal.is-ie11 { - // fix browser that likes to do things its own way - overflow-y: scroll; - height: auto; - - .modal-content { - height: auto; - max-height: none; - } -} - -.modal-backdrop { - background-color: rgba(0, 0, 0, .3); - - // Fade for backdrop - &.fade { opacity: 0; } - &.show { opacity: 1; } -} - -.modal-dialog { - height: 100%; - margin: auto; - padding: calc($spacer / 2); - - @media (min-width: map-get($grid-breakpoints, "sm")) { - padding: $spacer; - } -} - -.modal-content { - max-height: calc(100vh - (#{$spacer} * 2)); - - &:focus { - outline: 1px dotted; - outline: 5px auto -webkit-focus-ring-color; - } -} - -.modal-header { - flex: 0 0 auto; -} - -.modal-body { - overflow: auto; -} - -.modal-footer { - flex: 0 0 auto; -} - .pgn__modal-popup__arrow { position: absolute; width: 1rem; @@ -129,7 +63,7 @@ } &::before { - border-top-color: rgba($black, 20%); + border-top-color: rgba(0, 0, 0, .2); } } diff --git a/src/Modal/Modal.test.jsx b/src/Modal/Modal.test.jsx deleted file mode 100644 index 6f7c5499ec..0000000000 --- a/src/Modal/Modal.test.jsx +++ /dev/null @@ -1,277 +0,0 @@ -import React from 'react'; -import { mount, shallow } from 'enzyme'; - -import Modal from './index'; -import { Button } from '..'; -import Variant from '../utils/constants'; - -const modalOpen = (isOpen, wrapper) => { - expect(wrapper.find('.modal').hasClass('d-block')).toEqual(isOpen); - expect(wrapper.find('.modal-backdrop').exists()).toEqual(isOpen); - expect(wrapper.find('.modal').hasClass('show')).toEqual(isOpen); - expect(wrapper.find('.modal').hasClass('fade')).toEqual(!isOpen); - expect(wrapper.state('open')).toEqual(isOpen); -}; -const title = 'Modal title'; -const body = 'Modal body'; -const defaultProps = { - title, - body, - open: true, - onClose: () => { }, -}; -const closeText = 'GO AWAY!'; - -let wrapper; - -describe('', () => { - describe('correct rendering', () => { - const buttons = [ - Blue button!, - { - label: 'Red button!', - buttonType: 'danger', - }, - Green button!, - ]; - - it('renders default buttons', () => { - wrapper = mount(); - const modalTitle = wrapper.find('.modal-title'); - const modalBody = wrapper.find('.modal-body'); - - expect(modalTitle.text()).toEqual(title); - expect(modalBody.text()).toEqual(body); - expect(wrapper.find('button')).toHaveLength(2); - }); - - it('renders custom buttons', () => { - wrapper = mount(); - expect(wrapper.find('button')).toHaveLength(buttons.length + 2); - }); - - it('renders Warning Variant', () => { - wrapper = mount(); - - const modalBody = wrapper.find('.modal-body'); - expect(modalBody.childAt(0).hasClass('container-fluid')).toEqual(true); - expect(modalBody.find('p').text()).toEqual(body); - - const icon = modalBody.find('Icon'); - expect(icon.hasClass('fa')).toEqual(true); - expect(icon.hasClass('fa-exclamation-triangle')).toEqual(true); - expect(icon.hasClass('fa-3x')).toEqual(true); - expect(icon.hasClass('text-warning')).toEqual(true); - }); - - it('renders invalid Variant properly', () => { - wrapper = mount(); - const modalTitle = wrapper.find('.modal-title'); - const modalBody = wrapper.find('.modal-body'); - - expect(modalTitle.text()).toEqual(title); - expect(modalBody.text()).toEqual(body); - expect(wrapper.find('button')).toHaveLength(2); - }); - - it('render of the header close button is optional', () => { - wrapper = mount(); - const modalHeader = wrapper.find('.modal-header'); - const modalFooter = wrapper.find('.modal-footer'); - - expect(modalHeader.find('button')).toHaveLength(0); - expect(modalFooter.find('button')).toHaveLength(1); - expect(wrapper.find('button')).toHaveLength(1); - }); - - it('render of the default footer close button is optional', () => { - wrapper = mount(); - const modalHeader = wrapper.find('.modal-header'); - const modalFooter = wrapper.find('.modal-footer'); - - expect(modalHeader.find('button')).toHaveLength(1); - expect(modalFooter.find('button')).toHaveLength(0); - expect(wrapper.find('button')).toHaveLength(1); - }); - - it('renders custom close button string', () => { - wrapper = mount(); - const modalFooter = wrapper.find('.modal-footer'); - const closeButton = modalFooter.find('button'); - expect(closeButton).toHaveLength(1); - expect(closeButton.text()).toEqual(closeText); - }); - - it('renders custom close button element', () => { - const closeElem = {closeText}; - wrapper = mount(); - const modalFooter = wrapper.find('.modal-footer'); - const closeButton = modalFooter.find('button'); - - expect(closeButton).toHaveLength(1); - expect(closeButton.children()).toHaveLength(1); - expect(closeButton.find('.is-close-text')).toHaveLength(1); - expect(closeButton.text()).toEqual(closeText); - }); - - it('renders with IE11-specific styling when IE11 is detected', () => { - const { MSInputMethodContext } = global; - const { documentMode } = global.document; - - // mimic IE11 - global.MSInputMethodContext = true; - global.document.documentMode = true; - wrapper = mount(); - const modal = wrapper.find('.modal'); - expect(modal.hasClass('is-ie11')).toEqual(true); - - global.MSInputMethodContext = MSInputMethodContext; - global.document.documentMode = documentMode; - }); - - it('renders without IE11-specific styling when IE11 is not detected', () => { - const { MSInputMethodContext } = global; - const { documentMode } = global.document; - - // mimic non-IE11 browser - global.MSInputMethodContext = false; - global.document.documentMode = false; - wrapper = mount(); - const modal = wrapper.find('.modal'); - expect(modal.hasClass('is-ie11')).toEqual(false); - - global.MSInputMethodContext = MSInputMethodContext; - global.document.documentMode = documentMode; - }); - }); - - describe('props received correctly', () => { - beforeEach(() => { - // This is a gross hack to suppress error logs in the invalid parentSelector test - jest.spyOn(console, 'error'); - global.console.error.mockImplementation(() => { }); - }); - - afterEach(() => { - global.console.error.mockRestore(); - }); - - it('component receives props', () => { - wrapper = mount(); - - modalOpen(false, wrapper); - wrapper.setProps({ open: true }); - wrapper.update(); - modalOpen(true, wrapper); - }); - - it('component receives props and ignores prop change', () => { - wrapper = mount(); - - modalOpen(true, wrapper); - wrapper.setProps({ title: 'Changed modal title' }); - wrapper.update(); - modalOpen(true, wrapper); - }); - - it('throws an error when an invalid parentSelector prop is passed', () => { - expect(() => { - wrapper = shallow(); - }).toThrow('Modal received invalid parentSelector: this-selector-does-not-exist, no matching element found'); - }); - }); - - describe('close functions properly', () => { - beforeEach(() => { - wrapper = mount(); - }); - - it('closes when x button pressed', () => { - modalOpen(true, wrapper); - wrapper.find('button').at(0).simulate('click'); - modalOpen(false, wrapper); - }); - - it('closes when Close button pressed', () => { - modalOpen(true, wrapper); - wrapper.find('button').at(1).simulate('click'); - modalOpen(false, wrapper); - }); - - it('calls callback function on close', () => { - const spy = jest.fn(); - - wrapper = mount(); - - expect(spy).toHaveBeenCalledTimes(0); - - // press X button - wrapper.find('button').at(0).simulate('click'); - expect(spy).toHaveBeenCalledTimes(1); - }); - - it('reopens after closed', () => { - modalOpen(true, wrapper); - wrapper.find('button').at(0).simulate('click'); - modalOpen(false, wrapper); - wrapper.setProps({ open: true }); - wrapper.update(); - modalOpen(true, wrapper); - }); - }); - - describe('focus changes correctly', () => { - let buttons; - - beforeEach(() => { - wrapper = mount(); - - buttons = wrapper.find('button'); - }); - - it('has correct initial focus', () => { - expect(buttons.at(0).html()).toEqual(document.activeElement.outerHTML); - }); - - it('has reset focus after close and reopen', () => { - expect(buttons.at(0).html()).toEqual(document.activeElement.outerHTML); - wrapper.setProps({ open: false }); - wrapper.update(); - modalOpen(false, wrapper); - wrapper.setProps({ open: true }); - wrapper.update(); - modalOpen(true, wrapper); - expect(buttons.at(0).html()).toEqual(document.activeElement.outerHTML); - }); - - it('has focus on input in modal body', () => { - wrapper = mount(( -
} - /> - )); - expect(wrapper.find('input').html()).toEqual(document.activeElement.outerHTML); - }); - - it('has focus on `.modal-content` when nothing else is tabbable', () => { - wrapper = mount(( - - )); - expect(wrapper.find('.modal-content').html()).toEqual(document.activeElement.outerHTML); - }); - }); -}); diff --git a/src/Modal/README.md b/src/Modal/README.md deleted file mode 100644 index 5bb1f607aa..0000000000 --- a/src/Modal/README.md +++ /dev/null @@ -1,148 +0,0 @@ ---- -title: 'Modal' -type: 'component' -components: -- Modal -categories: -- Overlays -status: 'Deprecate soon' -designStatus: 'Done' -devStatus: 'To Do' -notes: | - Replaced by ModalDialog. ---- - -## Example Usage - -```jsx live -class ModalWrapper extends React.Component { - constructor(props) { - super(props); - - this.openModal = this.openModal.bind(this); - this.resetModalWrapperState = this.resetModalWrapperState.bind(this); - - this.state = { open: false }; - } - - openModal() { - this.setState({ open: true }); - } - - resetModalWrapperState() { - this.setState({ open: false }); - } - - render() { - return ( -
- -

Enter your e-mail address to receive free cat facts!

- -
- } - parentSelector={this.props.parentSelector} - onClose={this.resetModalWrapperState} - buttons={[ - - ]} - /> - -
- ); - } -} -``` - -## configurable buttons - -```jsx -Blue button!, - { - label: 'Red button!', - buttonType: 'danger', - }, - , - ]} - onClose={() => {}} -/> -``` - -## configurable title and body - -```jsx -Dark button! - ]} - onClose={() => {}} -/> -``` - -## configurable buttons that perform actions - -```jsx - - Click me and check the console! - , - ]} - onClose={() => {}} -/> -``` - -## configurable close button string - -```jsx - {}} -/> -``` - -## configurable close button element - -```jsx - - } - onClose={() => {}} -/> -``` \ No newline at end of file diff --git a/src/Modal/_ModalDialog.scss b/src/Modal/_ModalDialog.scss index b1f6b7e213..a7ecb12bfb 100644 --- a/src/Modal/_ModalDialog.scss +++ b/src/Modal/_ModalDialog.scss @@ -129,7 +129,9 @@ .pgn__modal-body { flex-grow: 1; - padding: $modal-inner-padding $modal-inner-padding calc(#{$modal-inner-padding} / 2); + padding: + $modal-inner-padding + $modal-inner-padding calc(#{$modal-inner-padding} / 2); overflow: auto; position: relative; @@ -140,10 +142,10 @@ display: block; height: 20px; position: sticky; - top: -$modal-inner-padding; - margin-top: -$modal-inner-padding; - margin-left: -$modal-inner-padding; - margin-right: -$modal-inner-padding; + top: calc($modal-inner-padding * -1); + margin-top: calc($modal-inner-padding * -1); + margin-left: calc($modal-inner-padding * -1); + margin-right: calc($modal-inner-padding * -1); opacity: .5; z-index: 2; } @@ -162,9 +164,9 @@ height: 20px; position: sticky; bottom: calc(#{$modal-inner-padding} / 2 * -1); - margin-bottom: -$modal-inner-padding-bottom; - margin-left: -$modal-inner-padding; - margin-right: -$modal-inner-padding; + margin-bottom: calc($modal-inner-padding-bottom * -1); + margin-left: calc($modal-inner-padding * -1); + margin-right: calc($modal-inner-padding * -1); opacity: .5; } diff --git a/src/Modal/_variables.scss b/src/Modal/_variables.scss index 65637fdc79..69d7d4dcc1 100644 --- a/src/Modal/_variables.scss +++ b/src/Modal/_variables.scss @@ -1,50 +1,33 @@ // Modals // Padding applied to the modal body -$modal-inner-padding: 1.5rem !default; -$modal-inner-padding-bottom: .7rem !default; - -// Margin between elements in footer, must be lower than or equal to 2 * $modal-inner-padding -$modal-footer-margin-between: .5rem !default; - -$modal-dialog-margin: 1.5rem !default; -$modal-dialog-margin-y-sm-up: 1.75rem !default; - -$modal-title-line-height: $line-height-base !default; - -$modal-content-color: null !default; -$modal-content-bg: $white !default; -$modal-content-border-color: rgba($black, .2) !default; -$modal-content-border-width: 0 !default; -$modal-content-border-radius: $border-radius-lg !default; -$modal-content-inner-border-radius: subtract($modal-content-border-radius, $modal-content-border-width) !default; -$modal-content-box-shadow-xs: 0 .25rem .5rem rgba($black, .5) !default; -$modal-content-box-shadow-sm-up: 0 10px 20px rgba($black, .15), 0 8px 20px rgba($black, .15) !default; - -$modal-backdrop-bg: $black !default; -$modal-backdrop-opacity: .5 !default; -$modal-header-border-color: $border-color !default; -$modal-footer-border-color: $modal-header-border-color !default; -$modal-header-border-width: $modal-content-border-width !default; -$modal-footer-border-width: $modal-header-border-width !default; -$modal-header-padding-y: 1rem !default; -$modal-header-padding-x: 1.5rem !default; -$modal-close-container-top: .625rem !default; - -// Keep this for backwards compatibility -$modal-header-padding: $modal-header-padding-y $modal-header-padding-x !default; -$modal-footer-padding-y: 1rem !default; -$modal-footer-padding-x: 1.5rem !default; - -// Keep this for backwards compatibility -$modal-footer-padding: $modal-footer-padding-y $modal-footer-padding-x !default; - -$modal-xl: 1140px !default; -$modal-lg: 800px !default; -$modal-md: 500px !default; -$modal-sm: 400px !default; - -$modal-fade-transform: translate(0, -50px) !default; -$modal-show-transform: none !default; -$modal-transition: transform .3s ease-out !default; -$modal-scale-transform: scale(1.02) !default; +$modal-inner-padding: var(--pgn-spacing-modal-inner-padding-base) !default; +$modal-inner-padding-bottom: var(--pgn-spacing-modal-inner-padding-bottom) !default; + +$modal-dialog-margin: var(--pgn-spacing-modal-dialog-margin) !default; + +$modal-content-bg: var(--pgn-color-modal-content-bg) !default; +$modal-content-border-color: var(--pgn-color-modal-content-border) !default; +$modal-content-border-width: var(--pgn-size-modal-content-border-width) !default; +$modal-content-border-radius: var(--pgn-size-modal-content-border-radius) !default; + +// stylelint-disable-next-line max-line-length +$modal-content-inner-border-radius: calc(#{var(--pgn-size-modal-content-border-radius)} - #{var(--pgn-size-modal-content-border-width)}) !default; + +$modal-content-box-shadow-sm-up: var(--pgn-elevation-modal-content-box-shadow-sm-up) !default; + +$modal-backdrop-bg: var(--pgn-color-modal-backdrop-bg) !default; +$modal-backdrop-opacity: var(--pgn-other-modal-opacity) !default; +$modal-header-padding-y: var(--pgn-spacing-modal-header-padding-y) !default; + +$modal-close-container-top: var(--pgn-spacing-dropdown-close-container-top) !default; + +$modal-header-padding: var(--pgn-spacing-modal-header-padding-base) !default; +$modal-footer-padding-y: var(--pgn-spacing-modal-footer-padding-y) !default; + +$modal-footer-padding: var(--pgn-spacing-modal-footer-padding-base) !default; + +$modal-xl: var(--pgn-size-modal-xl) !default; +$modal-lg: var(--pgn-size-modal-lg) !default; +$modal-md: var(--pgn-size-modal-md) !default; +$modal-sm: var(--pgn-size-modal-sm) !default; diff --git a/src/Modal/index.jsx b/src/Modal/index.jsx deleted file mode 100644 index 8b0b6acf52..0000000000 --- a/src/Modal/index.jsx +++ /dev/null @@ -1,307 +0,0 @@ -/* eslint-disable max-len */ -import React from 'react'; -import ReactDOM from 'react-dom'; -import classNames from 'classnames'; -import PropTypes from 'prop-types'; -import { FocusOn } from 'react-focus-on'; -import { tabbable } from 'tabbable'; - -import { Close } from '../../icons'; -import { Button } from '..'; -import Icon from '../Icon'; -import newId from '../utils/newId'; -import Variant from '../utils/constants'; - -class Modal extends React.Component { - constructor(props) { - super(props); - - this.close = this.close.bind(this); - - this.headerId = newId(); - this.modalBodyRef = React.createRef(); - - if (typeof document !== 'undefined') { - this.el = document.createElement('div'); - // Sets true for IE11, false otherwise: https://stackoverflow.com/a/22082397/6620612 - this.isIE11 = !!global.MSInputMethodContext && !!document.documentMode; - } - - this.state = { - open: props.open, - }; - } - - componentDidMount() { - const { parentSelector } = this.props; - this.parentElement = document.querySelector(parentSelector); - if (this.parentElement === null) { - throw new Error(`Modal received invalid parentSelector: ${parentSelector}, no matching element found`); - } - this.parentElement.appendChild(this.el); - } - - componentDidUpdate(prevProps, prevState) { - const { open } = this.props; - if (open !== prevProps.open || open !== prevState.open) { - // eslint-disable-next-line react/no-did-update-set-state - this.setState({ open }); - } - } - - componentWillUnmount() { - ReactDOM.unmountComponentAtNode(this.parentElement); - } - - getVariantIconClassName() { - const { variant } = this.props; - let variantIconClassName; - - switch (variant.status) { - case Variant.status.WARNING: - variantIconClassName = classNames( - 'fa', - 'fa-exclamation-triangle', - 'fa-3x', - `text-${variant.status.toLowerCase()}`, - ); - break; - default: - break; - } - - return variantIconClassName; - } - - getVariantGridBody(body) { - const { variant } = this.props; - - return ( -
-
-
-
- {body} -
-
-
- -
-
-
- ); - } - - getTabbableBodyElements() { - if (this.modalBodyRef?.current) { - return tabbable(this.modalBodyRef.current); - } - return []; - } - - isValidVariantStatus() { - const { variant } = this.props; - return Object.values(Variant.status).includes(variant.status); - } - - close(e) { - if (e) { - e.stopPropagation(); - } - - this.setState({ open: false }); - this.props.onClose(); - } - - renderButtons() { - return this.props.buttons.map((button) => { - // button is either a React component that we want clone or a set of props - if (React.isValidElement(button)) { - return React.cloneElement(button, { - key: button.props.children, - }); - } - - const { label, ...buttonProps } = button; - - return ( - - {label} - - ); - }); - } - - renderBody() { - let { body } = this.props; - - if (typeof body === 'string') { - body =

{body}

; - } - - if (this.isValidVariantStatus()) { - body = this.getVariantGridBody(body); - } - - return body; - } - - renderModal() { - const { open } = this.state; - const { - dialogClassName, - renderDefaultCloseButton, - renderHeaderCloseButton, - buttons, - closeText, - title, - } = this.props; - - const hasTabbableElements = ( - renderDefaultCloseButton - || renderHeaderCloseButton - || buttons.length > 0 - || this.getTabbableBodyElements().length > 0 - ); - const renderModalFooter = renderDefaultCloseButton || buttons.length > 0; - - return ( - <> -
-
-
- -
-
-

{title}

- {renderHeaderCloseButton && ( - - - - )} -
-
- {this.renderBody()} -
- {renderModalFooter && ( -
- {renderDefaultCloseButton && ( - - )} - {this.renderButtons()} -
- )} -
-
-
-
- - ); - } - - render() { - if (!this.el) { - return null; - } - - return ReactDOM.createPortal( - this.renderModal(), - this.el, - ); - } -} - -Modal.propTypes = { - /** specifies whether the modal renders open or closed on the initial render. It defaults to false. */ - open: PropTypes.bool, - /** is the selector for an element in the dom which the modal should be rendered under. It uses querySelector to find the first element that matches that selector, and then creates a react portal to a div underneath the parent element. - */ - parentSelector: PropTypes.string, - /** a string or an element that is rendered inside of the modal title, above the modal body. */ - title: PropTypes.oneOfType([PropTypes.string, PropTypes.element]).isRequired, - /** a string or an element that is rendered inside of the modal body, between the title and the footer. */ - body: PropTypes.oneOfType([PropTypes.string, PropTypes.element]).isRequired, - /** an array of either elements or shapes that take the form of the buttonPropTypes. See the [buttonPropTypes](https://github.com/openedx/paragon/blob/master/src/Button/index.jsx#L40) for a list of acceptable props to pass as part of a button. */ - buttons: PropTypes.arrayOf(PropTypes.oneOfType([ - PropTypes.element, - PropTypes.shape({}), // TODO: Only accept nodes in the future - ])), - /** specifies the display text of the default Close button. It defaults to "Close". */ - closeText: PropTypes.oneOfType([PropTypes.string, PropTypes.element]), - /** a function that is called on close. It can be used to perform actions upon closing of the modal, such as restoring focus to the previous logical focusable element. */ - onClose: PropTypes.func.isRequired, - variant: PropTypes.shape({ - status: PropTypes.string, - }), - /** specifies whether the default close button is rendered in the footer. It defaults to true. */ - renderDefaultCloseButton: PropTypes.bool, - /** specifies whether a close button is rendered in the modal header. It defaults to true. */ - renderHeaderCloseButton: PropTypes.bool, - /** - * Specifies optional classes to add to the element with the '.modal-dialog' class. See Bootstrap documentation for possible classes. Some options: modal-lg, modal-sm, modal-dialog-centered - */ - dialogClassName: PropTypes.string, -}; - -Modal.defaultProps = { - open: false, - parentSelector: 'body', - buttons: [], - closeText: 'Close', - variant: {}, - renderDefaultCloseButton: true, - renderHeaderCloseButton: true, - dialogClassName: undefined, -}; - -export default Modal; diff --git a/src/Modal/marketing-modal.mdx b/src/Modal/marketing-modal.mdx index 9a03196bf4..f08657d708 100644 --- a/src/Modal/marketing-modal.mdx +++ b/src/Modal/marketing-modal.mdx @@ -35,7 +35,7 @@ The ``MarketingModal`` is a preconfigured `ModalDialog` that accepts an image an heroNode={( diff --git a/src/Modal/modal-dialog.mdx b/src/Modal/modal-dialog.mdx index 76bdbc302c..58f272ae4a 100644 --- a/src/Modal/modal-dialog.mdx +++ b/src/Modal/modal-dialog.mdx @@ -114,7 +114,7 @@ label for the dialog element. > diff --git a/src/Nav/Nav.scss b/src/Nav/Nav.scss index 48b8e6680e..a90f6ce3b0 100644 --- a/src/Nav/Nav.scss +++ b/src/Nav/Nav.scss @@ -41,7 +41,7 @@ border-bottom: $nav-tabs-border-width solid $nav-tabs-border-color; .nav-link { - margin-bottom: -$nav-tabs-border-width; + margin-bottom: calc($nav-tabs-border-width * -1); border-top: $nav-tabs-border-width solid transparent; border-bottom: $nav-tabs-border-width solid transparent; border-left: none; @@ -70,7 +70,7 @@ .dropdown-menu { // Make dropdown border overlap tab border - margin-top: -$nav-tabs-border-width; + margin-top: calc($nav-tabs-border-width * -1); // Remove the top rounded corners here since there is a hard edge above the menu @include border-top-radius(0); diff --git a/src/Nav/_variables.scss b/src/Nav/_variables.scss index 668909b664..02d6b8f005 100644 --- a/src/Nav/_variables.scss +++ b/src/Nav/_variables.scss @@ -1,23 +1,23 @@ // Navs -$nav-link-padding-y: .5rem !default; -$nav-link-padding-x: 1rem !default; -$nav-link-color: $gray-700 !default; -$nav-link-disabled-color: $gray-300 !default; -$nav-link-font-weight: 500 !default; +$nav-link-padding-y: var(--pgn-spacing-nav-link-padding-y) !default; +$nav-link-padding-x: var(--pgn-spacing-nav-link-padding-x) !default; +$nav-link-color: var(--pgn-color-nav-link-text-base) !default; +$nav-link-disabled-color: var(--pgn-color-nav-link-text-disabled) !default; +$nav-link-font-weight: var(--pgn-typography-nav-link-font-weight) !default; -$nav-tabs-border-color: $light-400 !default; -$nav-tabs-border-width: 2px !default; -$nav-tabs-border-radius: 0 !default; -$nav-tabs-link-hover-border-color: transparent transparent $nav-tabs-border-color !default; -$nav-tabs-link-hover-bg: $light-400 !default; -$nav-tabs-link-active-color: $primary-500 !default; -$nav-tabs-link-active-bg: $body-bg !default; -$nav-tabs-link-active-border-color: transparent transparent $primary-500 !default; +$nav-tabs-border-color: var(--pgn-color-nav-tabs-border) !default; +$nav-tabs-border-width: var(--pgn-size-nav-tabs-border-width) !default; +$nav-tabs-border-radius: var(--pgn-size-nav-tabs-border-radius) !default; +$nav-tabs-link-hover-border-color: var(--pgn-border-color-nav-tabs-link-border-hover) !default; +$nav-tabs-link-hover-bg: var(--pgn-color-nav-tabs-link-hover-bg) !default; +$nav-tabs-link-active-color: var(--pgn-color-nav-tabs-link-active-text) !default; +$nav-tabs-link-active-bg: var(--pgn-color-nav-tabs-link-active-bg) !default; +$nav-tabs-link-active-border-color: var(--pgn-border-color-nav-tabs-link-border-active) !default; -$nav-pills-border-radius: $border-radius !default; -$nav-pills-link-active-color: $component-active-color !default; -$nav-pills-link-active-bg: $component-active-bg !default; +$nav-pills-border-radius: var(--pgn-size-nav-pills-border-radius) !default; +$nav-pills-link-active-color: var(--pgn-color-nav-pills-link-active-text) !default; +$nav-pills-link-active-bg: var(--pgn-color-nav-pills-link-active-bg) !default; -$nav-divider-color: theme-color("gray", "background") !default; -$nav-divider-margin-y: calc($spacer / 2) !default; +$nav-divider-color: var(--pgn-color-nav-divider) !default; +$nav-divider-margin-y: var(--pgn-spacing-nav-divider-margin-y) !default; diff --git a/src/Navbar/_variables.scss b/src/Navbar/_variables.scss index ad0fd8830a..6ba4f3aade 100644 --- a/src/Navbar/_variables.scss +++ b/src/Navbar/_variables.scss @@ -1,40 +1,40 @@ // Navbar -$navbar-padding-y: calc($spacer / 2) !default; -$navbar-padding-x: $spacer !default; +$navbar-padding-y: var(--pgn-spacing-navbar-padding-y) !default; +$navbar-padding-x: var(--pgn-spacing-navbar-padding-x-base) !default; -$navbar-nav-link-padding-x: .5rem !default; +$navbar-nav-link-padding-x: var(--pgn-spacing-navbar-padding-x-nav-link) !default; -$navbar-brand-font-size: $font-size-lg !default; +$navbar-brand-font-size: var(--pgn-typography-navbar-brand-font-size) !default; // Compute the navbar-brand padding-y so the navbar-brand will have the same height as navbar-text and nav-link -// The default for $nav-link-padding-y is .5rem. Copied here for modularization -$nav-link-height: $font-size-base * $line-height-base + .5rem * 2 !default; -$navbar-brand-height: $navbar-brand-font-size * $line-height-base !default; -$navbar-brand-padding-y: calc(($nav-link-height - $navbar-brand-height) / 2) !default; - -$navbar-toggler-padding-y: .25rem !default; -$navbar-toggler-padding-x: .75rem !default; -$navbar-toggler-font-size: $font-size-lg !default; -$navbar-toggler-border-radius: $btn-border-radius !default; - -$navbar-nav-scroll-max-height: 75vh !default; - -$navbar-dark-color: rgba($white, .5) !default; -$navbar-dark-hover-color: rgba($white, .75) !default; -$navbar-dark-active-color: $white !default; -$navbar-dark-disabled-color: rgba($white, .25) !default; -$navbar-dark-toggler-icon-bg: str-replace(url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='#{$navbar-dark-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"), "#", "%23") !default; -$navbar-dark-toggler-border-color: rgba($white, .1) !default; - -$navbar-light-color: rgba($black, .5) !default; -$navbar-light-hover-color: rgba($black, .7) !default; -$navbar-light-active-color: rgba($black, .9) !default; -$navbar-light-disabled-color: rgba($black, .3) !default; -$navbar-light-toggler-icon-bg: str-replace(url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='#{$navbar-light-color}' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"), "#", "%23") !default; -$navbar-light-toggler-border-color: rgba($black, .1) !default; - -$navbar-light-brand-color: $navbar-light-active-color !default; -$navbar-light-brand-hover-color: $navbar-light-active-color !default; -$navbar-dark-brand-color: $navbar-dark-active-color !default; -$navbar-dark-brand-hover-color: $navbar-dark-active-color !default; +// The default for var(--pgn-nav-link-padding-y) is .5rem. Copied here for modularization +$nav-link-height: var(--pgn-typography-navbar-nav-link-height) !default; +$navbar-brand-height: var(--pgn-size-navbar-brand-height) !default; +$navbar-brand-padding-y: var(--pgn-spacing-navbar-brand-padding-y) !default; + +$navbar-toggler-padding-y: var(--pgn-spacing-navbar-toggler-padding-y) !default; +$navbar-toggler-padding-x: var(--pgn-spacing-navbar-toggler-padding-x) !default; +$navbar-toggler-font-size: var(--pgn-typography-navbar-toggler-font-size) !default; +$navbar-toggler-border-radius: var(--pgn-size-navbar-toggler-border-radius) !default; + +$navbar-nav-scroll-max-height: var(--pgn-size-navbar-nav-scroll-max-height) !default; + +$navbar-dark-color: var(--pgn-color-navbar-dark-text) !default; +$navbar-dark-hover-color: var(--pgn-color-navbar-dark-hover) !default; +$navbar-dark-active-color: var(--pgn-color-navbar-dark-active) !default; +$navbar-dark-disabled-color: var(--pgn-color-navbar-dark-disabled) !default; +$navbar-dark-toggler-icon-bg: var(--pgn-content-navbar-toggler-dark-icon-bg) !default; +$navbar-dark-toggler-border-color: var(--pgn-color-navbar-dark-toggler-border) !default; + +$navbar-light-color: var(--pgn-color-navbar-light-text) !default; +$navbar-light-hover-color: var(--pgn-color-navbar-light-hover) !default; +$navbar-light-active-color: var(--pgn-color-navbar-light-active) !default; +$navbar-light-disabled-color: var(--pgn-color-navbar-light-disabled) !default; +$navbar-light-toggler-icon-bg: var(--pgn-content-navbar-toggler-light-icon-bg) !default; +$navbar-light-toggler-border-color: var(--pgn-color-navbar-light-toggler-border) !default; + +$navbar-light-brand-color: var(--pgn-color-navbar-light-brand-text) !default; +$navbar-light-brand-hover-color: var(--pgn-color-navbar-light-brand-hover) !default; +$navbar-dark-brand-color: var(--pgn-color-navbar-dark-brand-text) !default; +$navbar-dark-brand-hover-color: var(--pgn-color-navbar-dark-brand-hover) !default; diff --git a/src/OverflowScroll/OverflowScroll.jsx b/src/OverflowScroll/OverflowScroll.jsx new file mode 100644 index 0000000000..d5d217d5b4 --- /dev/null +++ b/src/OverflowScroll/OverflowScroll.jsx @@ -0,0 +1,85 @@ +import React, { useState, useMemo } from 'react'; +import PropTypes from 'prop-types'; +import { useOverflowScroll } from './data'; +import OverflowScrollContext from './OverflowScrollContext'; +import OverflowScrollItems from './OverflowScrollItems'; + +function OverflowScroll({ + ariaLabel, + children, + childQuerySelector, + hasInteractiveChildren, + disableScroll, + disableOpacityMasks, + onScrollPrevious, + onScrollNext, +}) { + const [overflowRef, setOverflowRef] = useState(); + + const { + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + } = useOverflowScroll({ + childQuerySelector, + hasInteractiveChildren, + disableScroll, + disableOpacityMasks, + onScrollPrevious, + onScrollNext, + overflowRef, + }); + + const contextValue = useMemo(() => ({ + overflowRef, + setOverflowRef, + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + }), [ + overflowRef, + setOverflowRef, + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + ]); + + return ( +
+ + {children} + +
+ ); +} + +OverflowScroll.Items = OverflowScrollItems; + +OverflowScroll.propTypes = { + ariaLabel: PropTypes.string.isRequired, + children: PropTypes.node.isRequired, + childQuerySelector: PropTypes.string, + hasInteractiveChildren: PropTypes.bool, + disableScroll: PropTypes.bool, + disableOpacityMasks: PropTypes.bool, + onScrollPrevious: PropTypes.func, + onScrollNext: PropTypes.func, +}; + +OverflowScroll.defaultProps = { + childQuerySelector: undefined, + disableScroll: false, + hasInteractiveChildren: false, + disableOpacityMasks: false, + onScrollPrevious: undefined, + onScrollNext: undefined, +}; + +export default OverflowScroll; diff --git a/src/OverflowScroll/OverflowScroll.mdx b/src/OverflowScroll/OverflowScroll.mdx new file mode 100644 index 0000000000..a453973e5e --- /dev/null +++ b/src/OverflowScroll/OverflowScroll.mdx @@ -0,0 +1,90 @@ +--- +title: 'OverflowScroll' +type: 'component' +components: +- OverflowScroll +categories: +- Content +status: 'New' +designStatus: 'Done' +devStatus: 'Done' +notes: '' +--- + +A set of React components that encapsulates the logic from [`useOverflowScroll`](/components/overflowscroll/useoverflowscroll) for building carousel-like UI components: +* `OverflowScroll` +* `OverflowScroll.Items` + +## Sample Usage + +The following example demonstrates how to use `OverflowScroll` and `OverflowScroll.Items` to build carousel-like UI components. + +```jsx live +() => { + const ExampleItem = ({ className }) => ( +
+ Item +
+ ); + + const OverflowScrollContent = () => { + const { overflowRef, setOverflowRef } = useContext(OverflowScrollContext); + return ( +
+ {items} +
+ ); + }; + + const OverflowScrollControls = () => { + const { + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + } = useContext(OverflowScrollContext); + + return ( +
+ + +
+ ); + }; + + const itemCount = 20; + const items = useMemo(() => Array.from({ length: itemCount }).map((index) => { + if (index !== itemCount - 1) { + return ; + } + // last element, no right margin + return ; + }), [itemCount]); + + return ( + + + + + ); +}; +``` diff --git a/src/OverflowScroll/OverflowScroll.scss b/src/OverflowScroll/OverflowScroll.scss new file mode 100644 index 0000000000..9132fb6059 --- /dev/null +++ b/src/OverflowScroll/OverflowScroll.scss @@ -0,0 +1 @@ +@import "variables"; diff --git a/src/OverflowScroll/OverflowScrollContext.jsx b/src/OverflowScroll/OverflowScrollContext.jsx new file mode 100644 index 0000000000..270085ae7d --- /dev/null +++ b/src/OverflowScroll/OverflowScrollContext.jsx @@ -0,0 +1,5 @@ +import { createContext } from 'react'; + +const OverflowScrollContext = createContext(); + +export default OverflowScrollContext; diff --git a/src/OverflowScroll/OverflowScrollItems.jsx b/src/OverflowScroll/OverflowScrollItems.jsx new file mode 100644 index 0000000000..5a99950ad0 --- /dev/null +++ b/src/OverflowScroll/OverflowScrollItems.jsx @@ -0,0 +1,13 @@ +import PropTypes from 'prop-types'; +import { useOverflowScrollItems } from './data'; + +function OverflowScrollItems({ children }) { + const overflowScrollChildren = useOverflowScrollItems(children); + return overflowScrollChildren; +} + +OverflowScrollItems.propTypes = { + children: PropTypes.node.isRequired, +}; + +export default OverflowScrollItems; diff --git a/src/OverflowScroll/_variables.scss b/src/OverflowScroll/_variables.scss new file mode 100644 index 0000000000..5acf448d1b --- /dev/null +++ b/src/OverflowScroll/_variables.scss @@ -0,0 +1,5 @@ +.pgn__overflow-scroll-overflow-container { + --pgn-overflow-scroll-opacity-mask-transparent: rgba(0, 0, 0, .4); +} + +$overflow-scroll-opacity-mask-transparent: var(--pgn-overflow-scroll-opacity-mask-transparent) !default; diff --git a/src/OverflowScroll/data/constants.js b/src/OverflowScroll/data/constants.js new file mode 100644 index 0000000000..5f353df934 --- /dev/null +++ b/src/OverflowScroll/data/constants.js @@ -0,0 +1,3 @@ +/* eslint-disable import/prefer-default-export */ + +export const OVERFLOW_SCROLL_ITEM_CLASS = 'pgn__overflow-scroll-item'; diff --git a/src/OverflowScroll/data/getChildrenElements.js b/src/OverflowScroll/data/getChildrenElements.js new file mode 100644 index 0000000000..d3f9701092 --- /dev/null +++ b/src/OverflowScroll/data/getChildrenElements.js @@ -0,0 +1,33 @@ +import { OVERFLOW_SCROLL_ITEM_CLASS } from './constants'; + +/** + * Gets the children elements matching the given CSS query selector. + * + * @param {object} args + * @param {HTMLElement} args.element Parent element to search within. + * @param {string} args.childQuerySelector Optional CSS query selector to find child elements within the parent element. + * + * @returns List of children elements within the provided element matching the given CSS query selector. + */ +const getChildrenElements = ({ + element, + childQuerySelector, +}) => { + if (!element) { + return []; + } + + // attempt to use the specified `childQuerySelector`, otherwise fallback + // to using the default `OVERFLOW_SCROLL_ITEM_CLASS` + const actualChildQuerySelector = childQuerySelector || `.${OVERFLOW_SCROLL_ITEM_CLASS}`; + const matchingElements = [...element.querySelectorAll(actualChildQuerySelector)]; + + if (matchingElements.length === 0 && process.env.NODE_ENV === 'development') { + // eslint-disable-next-line no-console + console.warn(`No matching elements found for CSS selector: ${actualChildQuerySelector}`); + } + + return matchingElements; +}; + +export default getChildrenElements; diff --git a/src/OverflowScroll/data/getOverflowElementScrollLeft.js b/src/OverflowScroll/data/getOverflowElementScrollLeft.js new file mode 100644 index 0000000000..43bf80a81f --- /dev/null +++ b/src/OverflowScroll/data/getOverflowElementScrollLeft.js @@ -0,0 +1,14 @@ +/** + * Calculates the `scrollLeft` position of the overflow container element. + * + * @param {object} overflowRef A React ref object. + * @returns The scroll left position of the overflow container element. + */ +const getOverflowElementScrollLeft = (overflowRef) => { + if (!overflowRef) { + return 0; + } + return Math.abs(Math.round(overflowRef.scrollLeft)); +}; + +export default getOverflowElementScrollLeft; diff --git a/src/OverflowScroll/data/index.js b/src/OverflowScroll/data/index.js new file mode 100644 index 0000000000..8b227fc29f --- /dev/null +++ b/src/OverflowScroll/data/index.js @@ -0,0 +1,7 @@ +export * from './constants'; + +export { default as useOverflowScroll } from './useOverflowScroll'; +export { default as useOverflowScrollActions } from './useOverflowScrollActions'; +export { default as useOverflowScrollElementAttributes } from './useOverflowScrollElementAttributes'; +export { default as useOverflowScrollEventListeners } from './useOverflowScrollEventListeners'; +export { default as useOverflowScrollItems } from './useOverflowScrollItems'; diff --git a/src/OverflowScroll/data/tests/getChildrenElements.test.js b/src/OverflowScroll/data/tests/getChildrenElements.test.js new file mode 100644 index 0000000000..cb59811e72 --- /dev/null +++ b/src/OverflowScroll/data/tests/getChildrenElements.test.js @@ -0,0 +1,51 @@ +import getChildrenElements from '../getChildrenElements'; + +describe('getChildrenElements', () => { + it('returns the desired child elements', () => { + const exampleClassName = 'child-item'; + const element = document.createElement('div'); + + const createAndAppendChild = (className = exampleClassName) => { + const childElement = document.createElement('div'); + childElement.classList.add(className); + element.appendChild(childElement); + }; + + createAndAppendChild(); + createAndAppendChild(); + createAndAppendChild(); + createAndAppendChild('no-op'); + + const args = { + element, + childQuerySelector: `.${exampleClassName}`, + }; + + const result = getChildrenElements(args); + expect(result).toHaveLength(3); + result.forEach((resultElement) => { + expect(resultElement.classList.contains(exampleClassName)).toBeTruthy(); + }); + }); + + it('returns 0 child elements when none match query selector', () => { + const element = document.createElement('div'); + + const createAndAppendChild = () => { + const childElement = document.createElement('div'); + element.appendChild(childElement); + }; + + createAndAppendChild(); + createAndAppendChild(); + createAndAppendChild(); + + const args = { + element, + childQuerySelector: '.not-found-404', + }; + + const result = getChildrenElements(args); + expect(result).toHaveLength(0); + }); +}); diff --git a/src/OverflowScroll/data/tests/useOverflowScroll.test.jsx b/src/OverflowScroll/data/tests/useOverflowScroll.test.jsx new file mode 100644 index 0000000000..9240f8fcbe --- /dev/null +++ b/src/OverflowScroll/data/tests/useOverflowScroll.test.jsx @@ -0,0 +1,95 @@ +import React from 'react'; +import { renderHook } from '@testing-library/react-hooks/dom'; +import { act } from '@testing-library/react'; +import useOverflowScroll from '../useOverflowScroll'; +import useOverflowScrollActions from '../useOverflowScrollActions'; +import getChildrenElements from '../getChildrenElements'; + +jest.mock('../useOverflowScrollEventListeners'); +jest.mock('../useOverflowScrollElementAttributes'); + +const mockScrollToPrevious = jest.fn(); +const mockScrollToNext = jest.fn(); +jest.mock('../useOverflowScrollActions'); +useOverflowScrollActions.mockImplementation(({ + onScrollPrevious, + onScrollNext, +}) => ({ + scrollToPrevious: mockScrollToPrevious.mockImplementation(() => { + onScrollPrevious(); + }), + scrollToNext: mockScrollToNext.mockImplementation(() => { + onScrollNext(); + }), +})); + +jest.mock('../getChildrenElements'); +getChildrenElements.mockReturnValue([document.createElement('div')]); + +jest.spyOn(React, 'useRef').mockReturnValue({ + current: document.createElement('div'), +}); + +describe('useOverflowScroll', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('returns correct object properties', () => { + const { result } = renderHook(() => useOverflowScroll({ + childQuerySelector: '.example-item', + })); + const actualReturnedValue = result.current; + expect(actualReturnedValue).toEqual( + expect.objectContaining({ + isScrolledToStart: true, + isScrolledToEnd: true, + scrollToPrevious: expect.any(Function), + scrollToNext: expect.any(Function), + activeChildElementIndex: 0, + }), + ); + }); + + it('increments active child element index on scrollToPrevious and scrollToNext', async () => { + getChildrenElements.mockReturnValue([ + document.createElement('div'), + document.createElement('div'), + ]); + + const mockOnScrollPrevious = jest.fn(); + const mockOnScrollNext = jest.fn(); + const { result } = renderHook(() => useOverflowScroll({ + childQuerySelector: '.example-item', + onScrollPrevious: mockOnScrollPrevious, + onScrollNext: mockOnScrollNext, + })); + const { scrollToPrevious, scrollToNext } = result.current; + + act(() => { + scrollToNext(); + }); + + expect(mockScrollToNext).toBeCalledTimes(1); + expect(mockOnScrollNext).toBeCalledTimes(1); + + expect(result.current).toEqual( + expect.objectContaining({ + activeChildElementIndex: 1, + }), + ); + + act(() => { + scrollToPrevious(); + }); + + expect(mockScrollToPrevious).toBeCalledTimes(1); + expect(mockOnScrollPrevious).toBeCalledTimes(1); + + expect(result.current).toEqual( + expect.objectContaining({ + activeChildElementIndex: 0, + }), + ); + }); +}); diff --git a/src/OverflowScroll/data/tests/useOverflowScrollActions.test.jsx b/src/OverflowScroll/data/tests/useOverflowScrollActions.test.jsx new file mode 100644 index 0000000000..a03e07731e --- /dev/null +++ b/src/OverflowScroll/data/tests/useOverflowScrollActions.test.jsx @@ -0,0 +1,117 @@ +import { renderHook } from '@testing-library/react-hooks/dom'; +import { act } from 'react-test-renderer'; +import useOverflowScrollActions from '../useOverflowScrollActions'; + +const divElement = document.createElement('div'); +const mockRef = divElement; + +const mockScrollTo = jest.fn(); +Element.prototype.scrollTo = mockScrollTo; + +const mockOnScrollPrevious = jest.fn(); +const mockOnScrollNext = jest.fn(); + +const baseArgs = { + overflowRef: mockRef, + childrenElements: [ + document.createElement('div'), + document.createElement('div'), + document.createElement('div'), + ], + onScrollPrevious: mockOnScrollPrevious, + onScrollNext: mockOnScrollNext, + activeChildElementIndex: 0, +}; + +describe('useOverflowScrollActions', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('returns correct object properties', () => { + const args = {}; + const { result } = renderHook(() => useOverflowScrollActions(args)); + expect(result.current).toEqual( + expect.objectContaining({ + scrollToPrevious: expect.any(Function), + scrollToNext: expect.any(Function), + }), + ); + }); + + it('handles scrollToPrevious when previous child element is at start', async () => { + const { result } = renderHook(() => useOverflowScrollActions(baseArgs)); + const { scrollToPrevious } = result.current; + + act(() => { + scrollToPrevious(); + }); + + expect(mockOnScrollPrevious).toBeCalledTimes(1); + expect(mockOnScrollPrevious).toBeCalledWith( + expect.objectContaining({ + currentActiveChildElementIndex: 0, + }), + ); + expect(mockScrollTo).toBeCalledTimes(1); + }); + + it('handles scrollToPrevious when previous child element is NOT at start', async () => { + const args = { + ...baseArgs, + activeChildElementIndex: 2, + }; + const { result } = renderHook(() => useOverflowScrollActions(args)); + const { scrollToPrevious } = result.current; + + act(() => { + scrollToPrevious(); + }); + + expect(mockOnScrollPrevious).toBeCalledTimes(1); + expect(mockOnScrollPrevious).toBeCalledWith( + expect.objectContaining({ + currentActiveChildElementIndex: 1, + }), + ); + expect(mockScrollTo).toBeCalledTimes(1); + }); + + it('handles scrollToNext when next child element is at end', async () => { + const args = { + ...baseArgs, + activeChildElementIndex: 2, + }; + const { result } = renderHook(() => useOverflowScrollActions(args)); + const { scrollToNext } = result.current; + + act(() => { + scrollToNext(); + }); + + expect(mockOnScrollNext).toBeCalledTimes(1); + expect(mockOnScrollNext).toBeCalledWith( + expect.objectContaining({ + currentActiveChildElementIndex: 2, + }), + ); + expect(mockScrollTo).toBeCalledTimes(1); + }); + + it('handles scrollToNext when next child element is NOT at end', async () => { + const { result } = renderHook(() => useOverflowScrollActions(baseArgs)); + const { scrollToNext } = result.current; + + act(() => { + scrollToNext(); + }); + + expect(mockOnScrollNext).toBeCalledTimes(1); + expect(mockOnScrollNext).toBeCalledWith( + expect.objectContaining({ + currentActiveChildElementIndex: 1, // by default, it starts at 0 + }), + ); + expect(mockScrollTo).toBeCalledTimes(1); + }); +}); diff --git a/src/OverflowScroll/data/tests/useOverflowScrollElementAttributes.test.jsx b/src/OverflowScroll/data/tests/useOverflowScrollElementAttributes.test.jsx new file mode 100644 index 0000000000..051b484bb6 --- /dev/null +++ b/src/OverflowScroll/data/tests/useOverflowScrollElementAttributes.test.jsx @@ -0,0 +1,136 @@ +import { renderHook } from '@testing-library/react-hooks/dom'; +import useOverflowScrollElementAttributes, { + OVERFLOW_SCROLL_OVERFLOW_CONTAINER_CLASS, + OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START, + OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_END, + OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START_END, +} from '../useOverflowScrollElementAttributes'; + +const divElement = document.createElement('div'); +const mockRef = divElement; + +const baseArgs = { + overflowRef: mockRef, + hasInteractiveChildren: false, + disableScroll: false, + disableOpacityMasks: false, + isScrolledToStart: false, + isScrolledToEnd: false, +}; + +describe('useOverflowScrollElementAttributes', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('returns correct base object properties', () => { + renderHook(() => useOverflowScrollElementAttributes(baseArgs)); + const overflowRefStyles = global.getComputedStyle(baseArgs.overflowRef); + const hasOverflowClass = baseArgs.overflowRef.classList.contains(OVERFLOW_SCROLL_OVERFLOW_CONTAINER_CLASS); + + // class name + expect(hasOverflowClass).toBeTruthy(); + + // styles + const positionStyle = overflowRefStyles.getPropertyValue('position'); + expect(positionStyle).toEqual('relative'); + const overflowXStyle = overflowRefStyles.getPropertyValue('overflow-x'); + expect(overflowXStyle).toEqual('scroll'); + const maskImageStyle = overflowRefStyles.getPropertyValue('mask-image'); + expect(maskImageStyle).toBeTruthy(); + const webkitMaskImageStyle = overflowRefStyles.getPropertyValue('webkit-mask-image'); + expect(webkitMaskImageStyle).toBeTruthy(); + + // a11y + expect(baseArgs.overflowRef.tabIndex).toEqual(0); + }); + + it('tabIndex={-1} if `hasInteractiveChildren` is true', () => { + const args = { + ...baseArgs, + hasInteractiveChildren: true, + }; + renderHook(() => useOverflowScrollElementAttributes(args)); + expect(baseArgs.overflowRef.tabIndex).toEqual(-1); + }); + + it('applies `overflow-x: hidden` on the overflow container element when `disableScroll=true`', () => { + const args = { + ...baseArgs, + disableScroll: true, + }; + renderHook(() => useOverflowScrollElementAttributes(args)); + const overflowRefStyles = global.getComputedStyle(baseArgs.overflowRef); + const overflowXStyle = overflowRefStyles.getPropertyValue('overflow-x'); + expect(overflowXStyle).toEqual('hidden'); + }); + + it('disables the opacity mask styles on overflow container element when `disableOpacityMasks=true`', () => { + const args = { + ...baseArgs, + disableOpacityMasks: true, + }; + renderHook(() => useOverflowScrollElementAttributes(args)); + const overflowRefStyles = global.getComputedStyle(baseArgs.overflowRef); + const maskImageStyle = overflowRefStyles.getPropertyValue('mask-image'); + expect(maskImageStyle).toBeFalsy(); + const webkitMaskImageStyle = overflowRefStyles.getPropertyValue('webkit-mask-image'); + expect(webkitMaskImageStyle).toBeFalsy(); + }); + + it('only shows the end opacity mask styles on overflow container element when `isScrolledToStart=true` and `isScrolledToEnd=false`', () => { + const args = { + ...baseArgs, + isScrolledToStart: true, + isScrolledToEnd: false, + }; + renderHook(() => useOverflowScrollElementAttributes(args)); + const overflowRefStyles = global.getComputedStyle(baseArgs.overflowRef); + const maskImageStyle = overflowRefStyles.getPropertyValue('mask-image'); + expect(maskImageStyle).toEqual(OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_END); + const webkitMaskImageStyle = overflowRefStyles.getPropertyValue('webkit-mask-image'); + expect(webkitMaskImageStyle).toEqual(OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_END); + }); + + it('only shows the start opacity mask styles on overflow container element when `isScrolledToStart=false` and `isScrolledToEnd=true`', () => { + const args = { + ...baseArgs, + isScrolledToStart: false, + isScrolledToEnd: true, + }; + renderHook(() => useOverflowScrollElementAttributes(args)); + const overflowRefStyles = global.getComputedStyle(baseArgs.overflowRef); + const maskImageStyle = overflowRefStyles.getPropertyValue('mask-image'); + expect(maskImageStyle).toEqual(OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START); + const webkitMaskImageStyle = overflowRefStyles.getPropertyValue('webkit-mask-image'); + expect(webkitMaskImageStyle).toEqual(OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START); + }); + + it('shows both start/end opacity mask styles on overflow container element when `isScrolledToStart=true` and `isScrolledToEnd=false`', () => { + const args = { + ...baseArgs, + isScrolledToStart: false, + isScrolledToEnd: false, + }; + renderHook(() => useOverflowScrollElementAttributes(args)); + const overflowRefStyles = global.getComputedStyle(baseArgs.overflowRef); + const maskImageStyle = overflowRefStyles.getPropertyValue('mask-image'); + expect(maskImageStyle).toEqual(OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START_END); + const webkitMaskImageStyle = overflowRefStyles.getPropertyValue('webkit-mask-image'); + expect(webkitMaskImageStyle).toEqual(OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START_END); + }); + + it('shows no opacity mask styles on overflow container element when `isScrolledToStart=true` and `isScrolledToEnd=true`', () => { + const args = { + ...baseArgs, + isScrolledToStart: true, + isScrolledToEnd: true, + }; + renderHook(() => useOverflowScrollElementAttributes(args)); + const overflowRefStyles = global.getComputedStyle(baseArgs.overflowRef); + const maskImageStyle = overflowRefStyles.getPropertyValue('mask-image'); + expect(maskImageStyle).toBeFalsy(); + const webkitMaskImageStyle = overflowRefStyles.getPropertyValue('webkit-mask-image'); + expect(webkitMaskImageStyle).toBeFalsy(); + }); +}); diff --git a/src/OverflowScroll/data/tests/useOverflowScrollEventListeners.test.jsx b/src/OverflowScroll/data/tests/useOverflowScrollEventListeners.test.jsx new file mode 100644 index 0000000000..ecc6f9dd24 --- /dev/null +++ b/src/OverflowScroll/data/tests/useOverflowScrollEventListeners.test.jsx @@ -0,0 +1,107 @@ +import { renderHook } from '@testing-library/react-hooks/dom'; +import { act } from '@testing-library/react'; +import useOverflowScrollEventListeners from '../useOverflowScrollEventListeners'; + +const divElement = document.createElement('div'); +const mockRef = divElement; + +const createDivWithLink = () => { + const element = document.createElement('div'); + const childLink = document.createElement('a'); + childLink.setAttribute('href', 'https://edx.org'); + element.appendChild(childLink); + return element; +}; + +const mockOnActiveChildElementIndexChange = jest.fn(); +const baseArgs = { + overflowRef: mockRef, + childrenElements: [ + createDivWithLink(), + createDivWithLink(), + ], + activeChildElementIndex: 0, + onActiveChildElementIndexChange: mockOnActiveChildElementIndexChange, + disableScroll: false, +}; + +describe('useOverflowScrollElementAttributes', () => { + beforeEach(() => { + jest.clearAllMocks(); + }); + + it('handles mousedown and mouseup events', () => { + const { result } = renderHook(() => useOverflowScrollEventListeners(baseArgs)); + + const { handleMouseDownEvent } = result.current; + act(() => { + handleMouseDownEvent(); + }); + expect(result.current.isOverflowElementMouseDown).toBeTruthy(); + + const { handleMouseUpEvent } = result.current; + act(() => { + handleMouseUpEvent(); + }); + expect(result.current.isOverflowElementMouseDown).toBeFalsy(); + }); + + it('handles keydown and keyup events', () => { + const { result } = renderHook(() => useOverflowScrollEventListeners(baseArgs)); + const { + updateActiveChildElementOnKeyDown, + updateActiveChildElementOnKeyUp, + } = result.current; + + const eventArrowLeft = { key: 'ArrowLeft' }; + const eventArrowRight = { key: 'ArrowRight' }; + + // mock initial scrolling + baseArgs.overflowRef.scrollLeft = 25; + + // ArrowRight + act(() => { + updateActiveChildElementOnKeyDown(eventArrowRight); + // mock some right scrolling + baseArgs.overflowRef.scrollLeft = 50; + updateActiveChildElementOnKeyUp(eventArrowRight); + }); + expect(result.current.previousOverflowScrollLeft).toEqual(25); + + // ArrowLeft + act(() => { + updateActiveChildElementOnKeyDown(eventArrowLeft); + // mock some right scrolling + baseArgs.overflowRef.scrollLeft = 25; + updateActiveChildElementOnKeyUp(eventArrowLeft); + }); + expect(result.current.previousOverflowScrollLeft).toEqual(50); + }); + + it('handles focusin event', () => { + const focusedChildElementIndex = 1; + Object.defineProperty(document, 'activeElement', { + value: baseArgs.childrenElements[focusedChildElementIndex], + }); + + const { result } = renderHook(() => useOverflowScrollEventListeners(baseArgs)); + const { updateActiveChildElementOnFocusIn } = result.current; + + act(() => { + updateActiveChildElementOnFocusIn(); + }); + + expect(mockOnActiveChildElementIndexChange).toBeCalledTimes(1); + expect(mockOnActiveChildElementIndexChange).toBeCalledWith(focusedChildElementIndex); + }); + + it('handles wheel event', () => { + const { result } = renderHook(() => useOverflowScrollEventListeners(baseArgs)); + const { updateActiveChildElementOnWheel } = result.current; + + const wheelEvent = { deltaX: 25 }; + act(() => { + updateActiveChildElementOnWheel(wheelEvent); + }); + }); +}); diff --git a/src/OverflowScroll/data/useOverflowScroll.js b/src/OverflowScroll/data/useOverflowScroll.js new file mode 100644 index 0000000000..d2b96fd1b4 --- /dev/null +++ b/src/OverflowScroll/data/useOverflowScroll.js @@ -0,0 +1,167 @@ +import { + useCallback, + useEffect, + useState, +} from 'react'; +import useOverflowScrollActions from './useOverflowScrollActions'; +import useOverflowScrollElementAttributes from './useOverflowScrollElementAttributes'; +import useOverflowScrollEventListeners from './useOverflowScrollEventListeners'; +import getChildrenElements from './getChildrenElements'; +import getOverflowElementScrollLeft from './getOverflowElementScrollLeft'; + +/** + * A headless React hook that encapsulates the logic for supporting + * carousel-like UI components. + * + * @param {object} args + * @param {HTMLElement} args.overflowRef A reference to the underlying overflow + * container element, created with a callback ref. + * @param {string} args.childQuerySelector A CSS query selector to find all + * child elements within the overflow container. + * @param {function} args.onScrollPrevious An optional callback function for when `scrollToPrevious` is called. + * @param {function} args.onScrollNext An optional callback function for when `scrollToNext` is called. + * @param {boolean} args.hasInteractiveChildren Whether the child elements within + * the overflow container are interactive. If false, the overflow container will + * automatically become focusable for a11y. + * @param {boolean} args.disableScroll Whether users can scroll within the overflow container. + * @param {boolean} args.disableOpacityMasks Whether the start/end opacity masks should be shown, when applicable. + * @param {string} args.scrollAnimationBehavior Optional override for the scroll behavior. See https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollTo for + * more details. + * + * @returns {object} An object with the following properties: + * - overflowRef + * - scrollToPrevious + * - scrollToNext + * - isScrolledToStart + * - isScrolledToEnd + * - activeChildElementIndex + */ +const useOverflowScroll = ({ + overflowRef, + childQuerySelector, + onScrollPrevious, + onScrollNext, + hasInteractiveChildren = false, + disableScroll = false, + disableOpacityMasks = false, + scrollAnimationBehavior = 'smooth', +}) => { + const [isScrolledToStart, setIsScrolledToStart] = useState(true); + const [isScrolledToEnd, setIsScrolledToEnd] = useState(true); + + const [currentScrollLeft, setCurrentScrollLeft] = useState(0); + + const childrenElements = getChildrenElements({ + element: overflowRef, + childQuerySelector, + }); + + useEffect(() => { + if (!overflowRef) { + return; + } + + const currentChildElements = getChildrenElements({ + element: overflowRef, + childQuerySelector, + }); + const childElementOffsetWidth = currentChildElements.reduce( + (sumWidth, childElement) => sumWidth + childElement.offsetWidth, + 0, + ); + const firstChildElementOffsetLeft = Math.max(childrenElements[0]?.offsetLeft, 0); + + // 1. is scrolled start? + if (currentScrollLeft <= firstChildElementOffsetLeft) { + setIsScrolledToStart(true); + } else { + setIsScrolledToStart(false); + } + + // 1. is not enough content to need scrolling to the right? + // 2. is scrolled to end? + const overflowScrollLeft = getOverflowElementScrollLeft(overflowRef); + const canScrollRight = childElementOffsetWidth > overflowRef.getBoundingClientRect().width || false; + const isScrolledRightMax = ( + overflowScrollLeft >= overflowRef.scrollWidth - overflowRef.clientWidth + ); + + if (!canScrollRight || isScrolledRightMax) { + setIsScrolledToEnd(true); + } else { + setIsScrolledToEnd(false); + } + }, [overflowRef, childQuerySelector, isScrolledToStart, isScrolledToEnd, currentScrollLeft, childrenElements]); + + const [activeChildElementIndex, setActiveChildElementIndex] = useState(0); + + const onActiveChildElementIndexChange = useCallback((index) => { + setActiveChildElementIndex(index); + }, []); + + const onOverflowElementScrollLeftChange = useCallback((scrollLeft) => { + setCurrentScrollLeft(scrollLeft); + }, []); + + useOverflowScrollEventListeners({ + overflowRef, + childrenElements, + activeChildElementIndex, + onActiveChildElementIndexChange, + disableScroll, + onOverflowElementScrollLeftChange, + }); + + useOverflowScrollElementAttributes({ + overflowRef, + hasInteractiveChildren, + disableScroll, + disableOpacityMasks, + isScrolledToStart, + isScrolledToEnd, + }); + + /** + * Handles when the user scrolls to the previous element, updating + * the active child element index. + */ + const handleScrollPrevious = useCallback(() => { + setActiveChildElementIndex(s => Math.max(s - 1, 0)); + if (onScrollPrevious) { + onScrollPrevious(); + } + }, [onScrollPrevious]); + + /** + * Handles when the user scrolls to the next element, updating + * the active child element index. + */ + const handleScrollNext = useCallback(() => { + setActiveChildElementIndex(s => Math.min(s + 1, childrenElements.length - 1)); + if (onScrollNext) { + onScrollNext(); + } + }, [childrenElements, onScrollNext]); + + const { + scrollToPrevious, + scrollToNext, + } = useOverflowScrollActions({ + overflowRef, + activeChildElementIndex, + childrenElements, + scrollAnimationBehavior, + onScrollPrevious: handleScrollPrevious, + onScrollNext: handleScrollNext, + }); + + return { + scrollToPrevious, + scrollToNext, + isScrolledToStart, + isScrolledToEnd, + activeChildElementIndex, + }; +}; + +export default useOverflowScroll; diff --git a/src/OverflowScroll/data/useOverflowScrollActions.js b/src/OverflowScroll/data/useOverflowScrollActions.js new file mode 100644 index 0000000000..d1cb313b61 --- /dev/null +++ b/src/OverflowScroll/data/useOverflowScrollActions.js @@ -0,0 +1,97 @@ +import { useCallback } from 'react'; + +/** + * Calculates the `offsetLeft` position relative to the overflow container. + * + * @param {HTMLElement} element A HTML element + * @returns The `offsetLeft` property of an element, if given. + */ +const calculateOffsetLeft = element => element?.offsetLeft || 0; + +const useOverflowScrollActions = ({ + overflowRef, + activeChildElementIndex, + childrenElements, + scrollAnimationBehavior = 'smooth', + onScrollPrevious, + onScrollNext, +}) => { + /** + * A helper function to scroll to the previous element in the overflow container. + */ + const scrollToPrevious = useCallback(() => { + if (!overflowRef) { + return; + } + const getPreviousChildElement = (previousChildElementIndex) => { + // return the first element if the overflow container reached the beginning + if (previousChildElementIndex <= 0) { + return childrenElements[0]; + } + // otherwise return the previous element + return childrenElements[previousChildElementIndex]; + }; + + const previousChildElementIndex = activeChildElementIndex - 1; + const previousChildElement = getPreviousChildElement(previousChildElementIndex); + const calculatedOffsetLeft = calculateOffsetLeft(previousChildElement); + overflowRef.scrollTo({ + left: calculatedOffsetLeft, + behavior: scrollAnimationBehavior, + }); + const currentActiveChildElementIndex = previousChildElementIndex <= 0 ? 0 : previousChildElementIndex; + onScrollPrevious({ + currentActiveChildElementIndex, + }); + }, [ + overflowRef, + childrenElements, + activeChildElementIndex, + scrollAnimationBehavior, + onScrollPrevious, + ]); + + /** + * A helper function to scroll to the next element in the overflow container. + */ + const scrollToNext = useCallback(() => { + if (!overflowRef) { + return; + } + const childElementCount = childrenElements.length; + const lastChildElementIndex = childElementCount - 1; + const nextChildElementIndex = activeChildElementIndex + 1; + const isNextChildIndexAtEnd = nextChildElementIndex >= lastChildElementIndex; + + const getNextChildElement = () => { + // return the last element if the overflow container reached the end + if (isNextChildIndexAtEnd) { + return childrenElements[lastChildElementIndex]; + } + // otherwise return the next element + return childrenElements[nextChildElementIndex]; + }; + + const nextChildElement = getNextChildElement(); + const calculatedOffsetLeft = calculateOffsetLeft(nextChildElement); + overflowRef.scrollTo({ + left: calculatedOffsetLeft, + behavior: scrollAnimationBehavior, + }); + const currentActiveChildElementIndex = isNextChildIndexAtEnd ? lastChildElementIndex : nextChildElementIndex; + onScrollNext({ currentActiveChildElementIndex }); + }, [ + overflowRef, + activeChildElementIndex, + scrollAnimationBehavior, + childrenElements, + onScrollNext, + ]); + + return { + scrollToPrevious, + scrollToNext, + }; +}; + +export default useOverflowScrollActions; diff --git a/src/OverflowScroll/data/useOverflowScrollElementAttributes.js b/src/OverflowScroll/data/useOverflowScrollElementAttributes.js new file mode 100644 index 0000000000..7f2c84c9e0 --- /dev/null +++ b/src/OverflowScroll/data/useOverflowScrollElementAttributes.js @@ -0,0 +1,114 @@ +import { useEffect } from 'react'; + +export const OVERFLOW_SCROLL_OVERFLOW_CONTAINER_CLASS = 'pgn__overflow-scroll-overflow-container'; + +export const OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START = 'linear-gradient(to right, var(--pgn-overflow-scroll-opacity-mask-transparent) 0%, black 10%'; +export const OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_END = 'linear-gradient(to right, black 90%, var(--pgn-overflow-scroll-opacity-mask-transparent) 100%'; +export const OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START_END = 'linear-gradient(to right, var(--pgn-overflow-scroll-opacity-mask-transparent) 0%, black 10%, black 90%, var(--pgn-overflow-scroll-opacity-mask-transparent) 100%)'; + +/** + * Given the ref the overflow container element, adds the following: + * - Paragon-specific CSS class name for internal styles + * + * - a11y Attributes: + * - `tabIndex: -1` (hasInteractiveChildren = false) OR `tabIndex: 0` (hasInteractiveChildren = true) + * + * - CSS Styles: + * - `position: relative` + * - `overflow-x: scroll` (disableScroll = false) OR `overflow-x: hidden` (disableScroll = true) + * + * @param {object} args Options + * @param {React.Ref} args.overflowRef Ref for the overflow container element + * @param {boolean} args.hasInteractiveChildren Whether the overflow container element + * has interactive children (e.g., clickable cards). + * @param {boolean} args.disableScroll Whether the overflow container's manual scroll behavior is disabled. + * @param {boolean} args.disableOpacityMasks Whether opacity masks at the start/end are enabled. + * @param {boolean} args.isScrolledToStart Whether the overflow container is scrolled to the start. + * @param {boolean} args.isScrolledToEnd Whether the overflow container is scrolled to the end. + */ +const useOverflowScrollElementAttributes = ({ + overflowRef, + hasInteractiveChildren, + disableScroll, + disableOpacityMasks, + isScrolledToStart, + isScrolledToEnd, +}) => { + /** + * Once the overflow container element is known, check to see if it already has the necessary + * a11y attributes and CSS styles to support the overflow scrolling behavior. + */ + useEffect(() => { + if (!overflowRef) { + return; + } + + // a11y + if (hasInteractiveChildren && overflowRef.tabIndex !== '-1') { + overflowRef.tabIndex = '-1'; + } + if (!hasInteractiveChildren && overflowRef.tabIndex !== '0') { + overflowRef.tabIndex = '0'; + } + + // styles + const overflowRefStyles = global.getComputedStyle(overflowRef); + const positionStyle = overflowRefStyles.getPropertyValue('position'); + const overflowXStyle = overflowRefStyles.getPropertyValue('overflow-x'); + const hasOverflowClass = overflowRef.classList.contains(OVERFLOW_SCROLL_OVERFLOW_CONTAINER_CLASS); + + // class name + if (!hasOverflowClass) { + overflowRef.classList.add(OVERFLOW_SCROLL_OVERFLOW_CONTAINER_CLASS); + } + + if (positionStyle !== 'relative') { + overflowRef.style.position = 'relative'; + } + if (disableScroll && overflowXStyle !== 'hidden') { + overflowRef.style.overflowX = 'hidden'; + } + if (!disableScroll && overflowXStyle !== 'scroll') { + overflowRef.style.overflowX = 'scroll'; + } + + if (disableOpacityMasks) { + overflowRef.style.removeProperty('mask-image'); + overflowRef.style.removeProperty('webkit-mask-image'); + } else { + const getMaskImageStyleValue = () => { + // TODO: make the `mask-image` property (optionally) extensible/customizable (e.g., passed as a prop) + if (isScrolledToStart && !isScrolledToEnd) { + return OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_END; + } + if (!isScrolledToStart && isScrolledToEnd) { + return OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START; + } + + if (!isScrolledToStart && !isScrolledToEnd) { + return OVERFLOW_SCROLL_OVERFLOW_OPACITY_MASK_GRADIENT_START_END; + } + + // no opacity mask required + return undefined; + }; + const maskImageStyleValue = getMaskImageStyleValue(); + if (maskImageStyleValue) { + overflowRef.style.maskImage = maskImageStyleValue; + overflowRef.style.webkitMaskImage = maskImageStyleValue; + } else { + overflowRef.style.removeProperty('mask-image'); + overflowRef.style.removeProperty('webkit-mask-image'); + } + } + }, [ + overflowRef, + hasInteractiveChildren, + disableScroll, + disableOpacityMasks, + isScrolledToStart, + isScrolledToEnd, + ]); +}; + +export default useOverflowScrollElementAttributes; diff --git a/src/OverflowScroll/data/useOverflowScrollEventListeners.js b/src/OverflowScroll/data/useOverflowScrollEventListeners.js new file mode 100644 index 0000000000..fb35688e5b --- /dev/null +++ b/src/OverflowScroll/data/useOverflowScrollEventListeners.js @@ -0,0 +1,225 @@ +import { useCallback, useEffect, useState } from 'react'; +import getOverflowElementScrollLeft from './getOverflowElementScrollLeft'; + +/** + * A React hook that adds and deletes event listeners on the `overflowRef` container element. + * + * @param {object} args + * @param {object} args.overflowRef The ref of the overflow container. + * @param {array} args.childrenElements A list of child DOM elements + * @param {number} args.activeChildElementIndex The current index of the child element considered to be "active" + * @param {function} args.onActiveChildElementIndexChange Callback function for when the active child element + * index changes + * @param {boolean} args.disableScroll Whether scrolling is disabled + */ +const useOverflowScrollEventListeners = ({ + overflowRef, + childrenElements, + activeChildElementIndex, + onActiveChildElementIndexChange, + disableScroll, + onOverflowElementScrollLeftChange, +}) => { + const [isOverflowElementMouseDown, setIsOverflowElementMouseDown] = useState(false); + const [previousOverflowScrollLeft, setPreviousOverflowScrollLeft] = useState(0); + + /** + * Determines which child element should be deemed the new `activeChildElementIndex`, as triggered by a particular + * event, e.g. `wheel`, `scroll`, `focusin`, `keyup` + */ + const updateActiveChildElementIndex = useCallback(({ isScrollingLeft }) => { + const getScrollOffsetLeft = (element) => { + if (isScrollingLeft) { + return element.offsetLeft; + } + return element.offsetLeft + element.offsetWidth; + }; + + for (let index = 0; index < childrenElements.length; index++) { + const childElement = childrenElements[index]; + const childElementScrollOffsetLeft = getScrollOffsetLeft(childElement); + if (childElementScrollOffsetLeft > getOverflowElementScrollLeft(overflowRef)) { + if (index !== activeChildElementIndex) { + onActiveChildElementIndexChange(index); + } + break; + } + } + }, [activeChildElementIndex, childrenElements, overflowRef, onActiveChildElementIndexChange]); + + /** + * Determines which child element should be flagged as active based on the + * user's scroll position within the overflow container element. + * + * This ensures the overflow container scrolls to an appropriate child element + * based on where the user's current scroll position resides. + */ + const updateActiveChildElementOnWheel = useCallback((event) => { + if (!overflowRef?.current || disableScroll) { + return; + } + const isScrollingLeft = event.deltaX < 0; + updateActiveChildElementIndex({ isScrollingLeft }); + }, [overflowRef, disableScroll, updateActiveChildElementIndex]); + + /** + * Determines which child element should be flagged as active based on + * which element within the overflow container currently has the user's focus. + */ + const updateActiveChildElementOnFocusIn = useCallback(() => { + if (!overflowRef || overflowRef === document.activeElement) { + return; + } + for (let i = 0; i < childrenElements.length; i++) { + const element = childrenElements[i]; + const elementHasActiveElement = element.contains(document.activeElement); + if (elementHasActiveElement && i !== activeChildElementIndex) { + onActiveChildElementIndexChange(i); + break; + } + } + }, [overflowRef, activeChildElementIndex, childrenElements, onActiveChildElementIndexChange]); + + /** + * When the `scroll` event is fired and the user is actively performing a `mousedown` event on + * the overflow container element: + * - Determine whether scrolling is happening to the left or right. + * - Update the active child element index based on the current scroll position + */ + const handleScrollEvent = useCallback(() => { + const overflowElementScrollLeft = getOverflowElementScrollLeft(overflowRef); + onOverflowElementScrollLeftChange(overflowElementScrollLeft); + + if (!isOverflowElementMouseDown) { + return; + } + + const isScrollingLeft = overflowElementScrollLeft < previousOverflowScrollLeft; + updateActiveChildElementIndex({ isScrollingLeft }); + setPreviousOverflowScrollLeft(overflowElementScrollLeft); + }, [ + isOverflowElementMouseDown, + overflowRef, + updateActiveChildElementIndex, + previousOverflowScrollLeft, + onOverflowElementScrollLeftChange, + ]); + + /** + * When mousedown event is fired: + * - set previous overflow container scroll left position + * - set `isOverflowElementMouseDown=true` + */ + const handleMouseDownEvent = useCallback(() => { + const overflowElementScrollLeft = getOverflowElementScrollLeft(overflowRef); + setPreviousOverflowScrollLeft(overflowElementScrollLeft); + setIsOverflowElementMouseDown(true); + }, [overflowRef]); + + /** + * When mouseup event is fired, reset to `isOverflowElementMouseDown=false`. + */ + const handleMouseUpEvent = useCallback(() => { + setIsOverflowElementMouseDown(false); + }, []); + + /** + * When keydown event is fired, set previous overflow container scroll left position + */ + const updateActiveChildElementOnKeyDown = useCallback((e) => { + if (e.key === 'ArrowLeft' || e.key === 'ArrowRight') { + const overflowElementScrollLeft = getOverflowElementScrollLeft(overflowRef); + setPreviousOverflowScrollLeft(overflowElementScrollLeft); + } + }, [overflowRef]); + + /** + * When keyup event is fired, update the active child element in the overflow container + * based on the new scroll position + */ + const updateActiveChildElementOnKeyUp = useCallback((e) => { + if (e.key === 'ArrowLeft' || e.key === 'ArrowRight') { + const isScrollingLeft = overflowRef.scrollLeft < previousOverflowScrollLeft; + updateActiveChildElementIndex({ isScrollingLeft }); + } + }, [overflowRef, previousOverflowScrollLeft, updateActiveChildElementIndex]); + + /** + * Adds/removes event listeners for the following events: + * - `wheel` + * - `focusin` + * - `mousedown` + * - `mouseup` + * - `keydown` + * - `keyup` + * - `scroll` + * + * These event listeners ensure the `activeChildElementIndex` state value is updated as the + * user manually scrolls within overflow container and/or the user moves focus to another child + * element within the overflow container. By doing so, clicking the previous/next controls scroll + * to an appropriate element. + */ + useEffect(() => { + if (!overflowRef) { + return undefined; + } + + const overflowRefCopy = overflowRef; + + overflowRefCopy.addEventListener('focusin', updateActiveChildElementOnFocusIn); + overflowRefCopy.addEventListener('keydown', updateActiveChildElementOnKeyDown); + overflowRefCopy.addEventListener('keyup', updateActiveChildElementOnKeyUp); + + // we must handle the `scroll` event even when `disableScroll` is true because the `mousedown` and `mouseup` + // events trigger a scroll. + overflowRefCopy.addEventListener('scroll', handleScrollEvent); + + if (!disableScroll) { + overflowRefCopy.addEventListener('wheel', updateActiveChildElementOnWheel); + overflowRefCopy.addEventListener('mousedown', handleMouseDownEvent); + overflowRefCopy.addEventListener('mouseup', handleMouseUpEvent); + } + + return () => { + if (!overflowRef) { + return; + } + + overflowRefCopy.removeEventListener('focusin', updateActiveChildElementOnFocusIn); + overflowRefCopy.removeEventListener('keydown', updateActiveChildElementOnKeyDown); + overflowRefCopy.removeEventListener('keyup', updateActiveChildElementOnKeyUp); + overflowRefCopy.removeEventListener('scroll', handleScrollEvent); + + if (!disableScroll) { + overflowRefCopy?.removeEventListener('wheel', updateActiveChildElementOnWheel); + overflowRefCopy?.removeEventListener('mousedown', handleMouseDownEvent); + overflowRefCopy?.removeEventListener('mouseup', handleMouseUpEvent); + } + }; + }, [ + overflowRef, + disableScroll, + updateActiveChildElementOnWheel, + updateActiveChildElementOnFocusIn, + updateActiveChildElementOnKeyDown, + updateActiveChildElementOnKeyUp, + handleScrollEvent, + handleMouseUpEvent, + handleMouseDownEvent, + ]); + + return { + updateActiveChildElementIndex, + updateActiveChildElementOnWheel, + updateActiveChildElementOnFocusIn, + handleScrollEvent, + handleMouseDownEvent, + handleMouseUpEvent, + updateActiveChildElementOnKeyDown, + updateActiveChildElementOnKeyUp, + isOverflowElementMouseDown, + previousOverflowScrollLeft, + }; +}; + +export default useOverflowScrollEventListeners; diff --git a/src/OverflowScroll/data/useOverflowScrollItems.js b/src/OverflowScroll/data/useOverflowScrollItems.js new file mode 100644 index 0000000000..b2f0113084 --- /dev/null +++ b/src/OverflowScroll/data/useOverflowScrollItems.js @@ -0,0 +1,21 @@ +import { useMemo, Children, cloneElement } from 'react'; +import classNames from 'classnames'; +import { OVERFLOW_SCROLL_ITEM_CLASS } from './constants'; + +/** + * Adds the `OVERFLOW_SCROLL_ITEM_CLASS` class to each child element in the given `children`. + * + * @param {JSX.Element} children The children representing the items in the overflow container. + * @returns A copy of the passed children, with a class name added to each child. + */ +const useOverflowScrollItems = (children) => { + const childrenWithOverflowScrollClassName = useMemo( + () => Children.map(Children.toArray(children), child => cloneElement(child, { + className: classNames(OVERFLOW_SCROLL_ITEM_CLASS, child.props.className), + })), + [children], + ); + return childrenWithOverflowScrollClassName; +}; + +export default useOverflowScrollItems; diff --git a/src/OverflowScroll/index.js b/src/OverflowScroll/index.js new file mode 100644 index 0000000000..8b0463a89b --- /dev/null +++ b/src/OverflowScroll/index.js @@ -0,0 +1,6 @@ +export { default as OverflowScroll } from './OverflowScroll'; +export { default as OverflowScrollContext } from './OverflowScrollContext'; +export { + useOverflowScroll, + useOverflowScrollItems, +} from './data'; diff --git a/src/OverflowScroll/tests/OverflowScroll.test.jsx b/src/OverflowScroll/tests/OverflowScroll.test.jsx new file mode 100644 index 0000000000..f919caf87c --- /dev/null +++ b/src/OverflowScroll/tests/OverflowScroll.test.jsx @@ -0,0 +1,20 @@ +import React from 'react'; +import renderer from 'react-test-renderer'; +import OverflowScroll from '../OverflowScroll'; + +describe('', () => { + it('renders OverflowScroll', () => { + const tree = renderer.create(( + + +
item
+
item
+
item
+
item
+
item
+
+
+ )).toJSON(); + expect(tree).toMatchSnapshot(); + }); +}); diff --git a/src/OverflowScroll/tests/__snapshots__/OverflowScroll.test.jsx.snap b/src/OverflowScroll/tests/__snapshots__/OverflowScroll.test.jsx.snap new file mode 100644 index 0000000000..093fc53d50 --- /dev/null +++ b/src/OverflowScroll/tests/__snapshots__/OverflowScroll.test.jsx.snap @@ -0,0 +1,35 @@ +// Jest Snapshot v1, https://goo.gl/fbAQLP + +exports[` renders OverflowScroll 1`] = ` +
+
+ item +
+
+ item +
+
+ item +
+
+ item +
+
+ item +
+
+`; diff --git a/src/OverflowScroll/useOverflowScroll.mdx b/src/OverflowScroll/useOverflowScroll.mdx new file mode 100644 index 0000000000..463f0dcf7a --- /dev/null +++ b/src/OverflowScroll/useOverflowScroll.mdx @@ -0,0 +1,100 @@ +--- +title: 'useOverflowScroll' +type: 'hook' +categories: +- Hooks +status: 'New' +designStatus: 'Done' +devStatus: 'Done' +notes: '' +--- + +A headless React hook that may be used as the foundation for building carousel-like UI components. + +## Sample Usage + +The following example demonstrates how to use `useOverflowScroll` to build a carousel-like UI component. + +```jsx live +() => { + const [overflowRef, setOverflowRef] = useState(); + + const { + isScrolledToStart, + isScrolledToEnd, + scrollToPrevious, + scrollToNext, + } = useOverflowScroll({ + childQuerySelector: '.example-item', + overflowRef, + }); + + const ExampleItem = ({ className }) => ( +
+ Item +
+ ); + const itemCount = 20; + const items = useMemo(() => Array.from({ length: itemCount }).map((index) => { + if (index !== itemCount - 1) { + return ; + } + // last element, no right margin + return ; + }), []); + + return ( + <> +
+ + +
+
+ {items} +
+ + ); +}; +``` + +The hook accepts the following options: +* `childQuerySelector`. A CSS query selector that can be used to find the child elements within the overflow container. +* `onScrollPrevious`. Supports a callback function when user scrolls to the previous element via a control. +* `onScrollNext`. Supports a callback function when user scrolls to the next element via a control. +* `hasInteractiveChildren`. Whether the child elements are interactive (e.g., clickable cards). +* `disableScroll`. An optional flag to disable the scroll behavior for the overflow container. +* `disableOpacityMasks`. An optional flag to disable the opacity masks at the start/end of the overflow container (if applicable). +* `scrollAnimationBehavior`. Allows overriding the default scroll behavior (e.g., "smooth", "instant", "auto"). + +The hook returns the following: +* Refs + * `overflowRef`. The ref to pass to your overflow container. Note that this element may receive style overrides for `position: relative;` and `overflow-x: scroll` (optionally). +* Behaviors + * `scrollToPrevious`. A click handler to scroll the overflow container to the previous element. + * `scrollToNext`. A click handler to scroll the overflow container to the next element. +* Scroll state + * `isScrolledToStart`. Whether the overflow container is scrolled to the start. + * `isScrolledToEnd`. Whether the overflow container is scrolled to the end. + * `activeChildElementIndex`. The index of the child element that is currently deemed to be "active", i.e. the child element used as the reference position for any `scrollToPrevious` or `scrollToNext` calls. + +See [`OverflowScroll`](/components/overflowscroll/overflowscroll) for React components that encapsulate the logic within `useOverflowScroll`. diff --git a/src/Overlay/index.jsx b/src/Overlay/index.jsx index 0aeb554e86..4fe0709595 100644 --- a/src/Overlay/index.jsx +++ b/src/Overlay/index.jsx @@ -1,7 +1,6 @@ import React from 'react'; import BaseOverlay from 'react-bootstrap/Overlay'; import BaseOverlayTrigger from 'react-bootstrap/OverlayTrigger'; -import Fade from 'react-bootstrap/Fade'; import PropTypes from 'prop-types'; const PLACEMENT_VARIANTS = [ @@ -89,7 +88,7 @@ Overlay.propTypes = { * Animate the entering and exiting of the Overlay. `true` will use the `` transition, * or a custom react-transition-group `` component can be provided. */ - transition: PropTypes.func, + transition: PropTypes.oneOfType([PropTypes.bool, PropTypes.elementType]), }; OverlayTrigger.propTypes = { @@ -145,7 +144,7 @@ Overlay.defaultProps = { rootCloseEvent: undefined, show: false, target: undefined, - transition: Fade, + transition: true, }; OverlayTrigger.defaultProps = { diff --git a/src/PageBanner/PageBanner.scss b/src/PageBanner/PageBanner.scss index 229dbda334..8abfddbd7f 100644 --- a/src/PageBanner/PageBanner.scss +++ b/src/PageBanner/PageBanner.scss @@ -14,30 +14,30 @@ // stylelint-disable-next-line selector-class-pattern .pgn__pageBanner__dark { background-color: $dark-500; - color: white; + color: $white; } // stylelint-disable-next-line selector-class-pattern .pgn__pageBanner__light { background-color: $light-400; - color: black; + color: $black; } // stylelint-disable-next-line selector-class-pattern .pgn__pageBanner__accentA { background-color: $accent-a; - color: black; + color: $black; } // stylelint-disable-next-line selector-class-pattern .pgn__pageBanner__accentB { background-color: $accent-b; - color: black; + color: $black; } // stylelint-disable-next-line selector-class-pattern .pgn__pageBanner__warning { background-color: $warning-100; - color: black; + color: $black; } // stylelint-disable-next-line selector-class-pattern diff --git a/src/Pagination/Pagination.scss b/src/Pagination/Pagination.scss index d1f634d917..1dce76af02 100644 --- a/src/Pagination/Pagination.scss +++ b/src/Pagination/Pagination.scss @@ -70,7 +70,12 @@ &.btn-primary:focus::before { border: $pagination-focus-border-width solid $pagination-focus-color; - @include button-size($btn-padding-y, $btn-padding-x, $btn-font-size, $btn-line-height, $btn-border-radius); + @include button-size( + $btn-padding-y, + $btn-padding-x, + $btn-font-size, + $btn-line-height, + $btn-border-radius); } div { diff --git a/src/Pagination/Pagination.test.jsx b/src/Pagination/Pagination.test.jsx index 50cdaa63a6..78046cf4b5 100644 --- a/src/Pagination/Pagination.test.jsx +++ b/src/Pagination/Pagination.test.jsx @@ -308,5 +308,23 @@ describe('', () => { expect(items.length).toEqual(2); }); + + it('renders chevrons and buttons disabled when pageCount is 1 || 0 for all variants', () => { + const variantTypes = ['default', 'secondary', 'reduced', 'minimal']; + // default + variantTypes.forEach((variantType) => { + for (let i = 0; i < 3; i++) { + props = { + ...baseProps, + variant: variantType, + pageCount: i, + }; + wrapper = mount(); + const disabled = wrapper.find('button[disabled=true]'); + expect(props.pageCount).toEqual(i); + expect(disabled.length).toEqual(i === 2 ? 1 : 2); + } + }); + }); }); }); diff --git a/src/Pagination/_variables.scss b/src/Pagination/_variables.scss index 1fc4c09c41..0b2d71580a 100644 --- a/src/Pagination/_variables.scss +++ b/src/Pagination/_variables.scss @@ -1,52 +1,48 @@ // Pagination -$pagination-padding-y: .625rem !default; -$pagination-padding-x: 1rem !default; -$pagination-padding-y-sm: .8rem !default; -$pagination-padding-x-sm: .6rem !default; -$pagination-padding-y-lg: .75rem !default; -$pagination-padding-x-lg: 1.5rem !default; -$pagination-margin-x: .5rem !default; -$pagination-margin-y: .5rem !default; -$pagination-line-height: 1.5rem !default; -$pagination-font-size-sm: .875rem !default; - -$pagination-icon-size: 1.375rem !default; -$pagination-icon-size-sm: 1rem !default; -$pagination-icon-width: 2.25rem !default; -$pagination-icon-height: 2.25rem !default; -$pagination-padding-icon: .5rem !default; -$pagination-toggle-border: .3125rem !default; -$pagination-toggle-border-sm: .25rem !default; -$pagination-secondary-height: 2.75rem !default; -$pagination-secondary-height-sm: 2.25rem !default; - -$pagination-color: $link-color !default; -$pagination-color-inverse: $white !default; -$pagination-bg: $white !default; -$pagination-border-width: $border-width !default; -$pagination-border-color: theme-color("gray", "border") !default; - -$pagination-focus-box-shadow: $input-btn-focus-box-shadow !default; -$pagination-focus-outline: 0 !default; -$pagination-focus-border-width: .125rem !default; -$pagination-focus-color: $primary-500 !default; -$pagination-focus-color-text: $black !default; - -$pagination-hover-color: $link-hover-color !default; -$pagination-hover-bg: theme-color("gray", "background") !default; -$pagination-hover-border-color: theme-color("gray", "border") !default; - -$pagination-active-color: $component-active-color !default; -$pagination-active-bg: $component-active-bg !default; -$pagination-active-border-color: $pagination-active-bg !default; - -$pagination-disabled-color: theme-color("gray", "light-text") !default; -$pagination-disabled-bg: $white !default; -$pagination-disabled-border-color: theme-color("gray", "disabled-border") !default; - -$pagination-border-radius-sm: $border-radius-sm !default; -$pagination-border-radius-lg: $border-radius-lg !default; - -$pagination-reduced-dropdown-max-height: 60vh !default; -$pagination-reduced-dropdown-min-width: 6rem !default; +$pagination-padding-y: var(--pgn-spacing-pagination-padding-y-base) !default; +$pagination-padding-x: var(--pgn-spacing-pagination-padding-x-base) !default; +$pagination-padding-y-sm: var(--pgn-spacing-pagination-padding-y-sm) !default; +$pagination-padding-x-sm: var(--pgn-spacing-pagination-padding-x-sm) !default; +$pagination-padding-y-lg: var(--pgn-spacing-pagination-padding-y-lg) !default; +$pagination-padding-x-lg: var(--pgn-spacing-pagination-padding-x-lg) !default; +$pagination-margin-x: var(--pgn-spacing-pagination-margin-x) !default; +$pagination-line-height: var(--pgn-typography-pagination-line-height) !default; +$pagination-font-size-sm: var(--pgn-typography-pagination-font-size-sm) !default; + +$pagination-icon-width: var(--pgn-size-pagination-icon-width) !default; +$pagination-icon-height: var(--pgn-size-pagination-icon-height) !default; +$pagination-toggle-border: var(--pgn-size-pagination-toggle-border-base) !default; +$pagination-toggle-border-sm: var(--pgn-size-pagination-toggle-border-sm) !default; +$pagination-secondary-height: var(--pgn-size-pagination-secondary-height-base) !default; +$pagination-secondary-height-sm: var(--pgn-size-pagination-secondary-height-sm) !default; + +$pagination-color: var(--pgn-color-pagination-text-base) !default; +$pagination-color-inverse: var(--pgn-color-pagination-text-inverse) !default; +$pagination-bg: var(--pgn-color-pagination-bg-base) !default; +$pagination-border-width: var(--pgn-size-pagination-border-width) !default; +$pagination-border-color: var(--pgn-color-pagination-border-base) !default; + +$pagination-focus-box-shadow: var(--pgn-elevation-pagination-focus-box-shadow) !default; +$pagination-focus-outline: var(--pgn-size-pagination-focus-outline) !default; +$pagination-focus-border-width: var(--pgn-size-pagination-focus-border-width) !default; +$pagination-focus-color: var(--pgn-color-pagination-focus-base) !default; +$pagination-focus-color-text: var(--pgn-color-pagination-focus-text) !default; + +$pagination-hover-color: var(--pgn-color-pagination-text-hover) !default; +$pagination-hover-bg: var(--pgn-color-pagination-bg-hover) !default; +$pagination-hover-border-color: var(--pgn-color-pagination-border-hover) !default; + +$pagination-active-color: var(--pgn-color-pagination-text-active) !default; +$pagination-active-bg: var(--pgn-color-pagination-bg-active) !default; +$pagination-active-border-color: var(--pgn-color-pagination-border-active) !default; + +$pagination-disabled-color: var(--pgn-color-pagination-text-disabled) !default; +$pagination-disabled-bg: var(--pgn-color-pagination-bg-disabled) !default; +$pagination-disabled-border-color: var(--pgn-color-pagination-border-disabled) !default; + +$pagination-border-radius-sm: var(--pgn-size-pagination-border-radius-sm) !default; +$pagination-border-radius-lg: var(--pgn-size-pagination-border-radius-lg) !default; + +$pagination-reduced-dropdown-max-height: var(--pgn-size-pagination-reduced-dropdown-max-height) !default; +$pagination-reduced-dropdown-min-width: var(--pgn-size-pagination-reduced-dropdown-min-width) !default; diff --git a/src/Pagination/index.jsx b/src/Pagination/index.jsx index 8b15f535e8..792d7559b0 100644 --- a/src/Pagination/index.jsx +++ b/src/Pagination/index.jsx @@ -31,6 +31,7 @@ const VARIANTS = { }; function ReducedPagination({ currentPage, pageCount, handlePageSelect }) { + if (pageCount <= 1) { return null; } return ( @@ -203,10 +204,11 @@ class Pagination extends React.Component { renderPreviousButton() { const { - buttonLabels, icons, variant, size, + buttonLabels, icons, variant, size, pageCount, } = this.props; const { currentPage } = this.state; const isFirstPage = currentPage === 1; + const isDisabled = isFirstPage || pageCount === 0; const previousPage = isFirstPage ? null : currentPage - 1; const iconSize = (variant !== VARIANTS.reduced && size !== 'small') || variant === VARIANTS.minimal; @@ -220,7 +222,7 @@ class Pagination extends React.Component { className={classNames( 'page-item', { - disabled: isFirstPage, + disabled: isDisabled, }, )} > @@ -230,10 +232,10 @@ class Pagination extends React.Component { @@ -42,6 +43,7 @@ CheckpointActionRow.defaultProps = { onDismiss: () => {}, onEnd: () => {}, showDismissButton: undefined, + index: 0, }; CheckpointActionRow.propTypes = { @@ -61,6 +63,8 @@ CheckpointActionRow.propTypes = { onEnd: PropTypes.func, /** Enforces visibility of the dismiss button under all circumstances */ showDismissButton: PropTypes.bool, + /** Allows visibility of last index value for onEnd checkpoint compatibility */ + index: PropTypes.number, }; export default CheckpointActionRow; diff --git a/src/ProductTour/ProductTour.test.jsx b/src/ProductTour/ProductTour.test.jsx index 00f1aac9ca..3d189fff23 100644 --- a/src/ProductTour/ProductTour.test.jsx +++ b/src/ProductTour/ProductTour.test.jsx @@ -13,11 +13,15 @@ describe('', () => {
...
...
...
+
...
); const handleDismiss = jest.fn(); const handleEnd = jest.fn(); + const handleEscape = jest.fn(); + const customOnEnd = jest.fn(); const customOnDismiss = jest.fn(); + const customOnAdvance = jest.fn(); const disabledTourData = { advanceButtonText: 'Next', @@ -67,7 +71,7 @@ describe('', () => { { target: '#target-3', title: 'Checkpoint 4', - endButtonText: 'Override end', + endButtonText: 'End', }, ], }; @@ -162,11 +166,13 @@ describe('', () => { fireEvent.click(advanceButton3); // Click the end button - const endButton = screen.getByRole('button', { name: 'Override end' }); + const endButton = screen.getByRole('button', { name: 'End' }); fireEvent.click(endButton); // Verify no Checkpoints have rendered expect(screen.queryByRole('dialog')).not.toBeInTheDocument(); + expect(handleEnd).toHaveBeenCalledTimes(1); + expect(customOnEnd).not.toHaveBeenCalled(); }); it('onClick of escape key disables tour', () => { @@ -203,6 +209,7 @@ describe('', () => { endButtonText: 'Okay', onDismiss: handleDismiss, onEnd: handleEnd, + onEscape: handleEscape, tourId: 'enabledTour', startingIndex: 2, checkpoints: [ @@ -221,14 +228,16 @@ describe('', () => { target: '#target-3', title: 'Checkpoint 3', onDismiss: customOnDismiss, + onAdvance: customOnAdvance, advanceButtonText: 'Override advance', dismissButtonText: 'Override dismiss', }, { - target: '#target-3', + target: '#target-4', title: 'Checkpoint 4', endButtonText: 'Override end', + onEnd: customOnEnd, }, ], }; @@ -255,8 +264,12 @@ describe('', () => { , ); expect(screen.getByRole('button', { name: 'Override advance' })).toBeInTheDocument(); + const advanceButton = screen.getByRole('button', { name: 'Override advance' }); + fireEvent.click(advanceButton); + expect(screen.queryByRole('button', { name: 'Override advance' })).not.toBeInTheDocument(); + expect(customOnAdvance).toHaveBeenCalledTimes(1); + expect(screen.getByText('Checkpoint 4')).toBeInTheDocument(); }); - it('applies override for dismissButtonText', () => { render( <> @@ -268,8 +281,21 @@ describe('', () => { ); expect(screen.getByRole('button', { name: 'Override dismiss' })).toBeInTheDocument(); }); - - it('applies override for endButtonText', () => { + it('calls customHandleDismiss onClick of dismiss button', () => { + render( + <> + + {targets} + , + ); + const dismissButton = screen.getByRole('button', { name: 'Override dismiss' }); + fireEvent.click(dismissButton); + expect(customOnDismiss).toHaveBeenCalledTimes(1); + expect(screen.queryByRole('dialog')).not.toBeInTheDocument(); + }); + it('calls customHandleOnEnd onClick of end button', () => { render( <> ', () => { ); const advanceButton = screen.getByRole('button', { name: 'Override advance' }); fireEvent.click(advanceButton); - expect(screen.getByRole('button', { name: 'Override end' })).toBeInTheDocument(); + expect(screen.getByText('Checkpoint 4')).toBeInTheDocument(); + const endButton = screen.getByRole('button', { name: 'Override end' }); + fireEvent.click(endButton); + expect(handleEnd).toBeCalledTimes(1); + expect(customOnEnd).toHaveBeenCalledTimes(1); + expect(screen.queryByText('Checkpoint 4')).not.toBeInTheDocument(); }); - - it('calls customHandleDismiss onClick of dismiss button', () => { + it('calls onEscape on escape button key press', () => { render( <> ', () => { {targets} , ); - const dismissButton = screen.getByRole('button', { name: 'Override dismiss' }); - fireEvent.click(dismissButton); - - expect(customOnDismiss).toHaveBeenCalledTimes(1); - expect(screen.queryByRole('dialog')).not.toBeInTheDocument(); + expect(screen.getByText('Checkpoint 3')).toBeInTheDocument(); + const container = screen.getByRole('dialog'); + fireEvent.keyDown(container, { + key: 'Escape', + code: 'Escape', + keyCode: 27, + charCode: 27, + }); + expect(handleEscape).toHaveBeenCalledTimes(1); + expect(screen.queryByText('Checkpoint 3')).not.toBeInTheDocument(); }); }); diff --git a/src/ProductTour/README.md b/src/ProductTour/README.md index 98b11bc4bf..ca4f38ddd4 100644 --- a/src/ProductTour/README.md +++ b/src/ProductTour/README.md @@ -52,6 +52,10 @@ The checkpoint objects themselves have additional props that can override the pr placement: 'bottom', target: '#checkpoint-3', title: 'Third checkpoint', + onEnd: () => { + console.log('Ended the third checkpoint'); + setIsTourEnabled(false); + } // Additional logic for the onEnd callback to be called on the last checkpoint } ], }; diff --git a/src/ProductTour/_variables.scss b/src/ProductTour/_variables.scss index 73635c8120..f8a23086b8 100644 --- a/src/ProductTour/_variables.scss +++ b/src/ProductTour/_variables.scss @@ -1,15 +1,22 @@ // Checkpoints -$checkpoint-background-color: $light-300 !default; +$checkpoint-background-color: var(--pgn-color-product-tour-checkpoint-bg) !default; -$checkpoint-body-color: $gray-700; +$checkpoint-body-color: var(--pgn-color-product-tour-checkpoint-body) !default; -$checkpoint-border-color: $brand !default; -$checkpoint-border-width: 8px !default; +$checkpoint-border-color: var(--pgn-color-product-tour-checkpoint-border) !default; +$checkpoint-border-width: var(--pgn-size-product-tour-checkpoint-width-border) !default; -$checkpoint-breadcrumb-color: $primary !default; +$checkpoint-breadcrumb-color: var(--pgn-color-product-tour-checkpoint-breadcrumb) !default; -$checkpoint-arrow-width: 15px !default; -$checkpoint-max-width: 480px !default; +$checkpoint-arrow-width: var(--pgn-size-product-tour-checkpoint-width-arrow) !default; +$checkpoint-max-width: var(--pgn-size-product-tour-checkpoint-width-max) !default; -$checkpoint-z-index: 1060 !default; +$checkpoint-z-index: var(--pgn-elevation-product-tour-checkpoint-zindex) !default; + +$checkpoint-arrow-border-bottom: var(--pgn-size-product-tour-checkpoint-arrow-bottom) !default; +$checkpoint-arrow-border-top: var(--pgn-size-product-tour-checkpoint-arrow-top) !default; +$checkpoint-arrow-border-transparent: var(--pgn-size-product-tour-checkpoint-arrow-transparent) !default; +$checkpoint-box-shadow-color: var(--pgn-color-product-tour-checkpoint-box-shadow) !default; +$checkpoint-arrow-border-color-top: var(--pgn-color-product-tour-checkpoint-arrow-border-top) !default; +$checkpoint-arrow-border-color-transparent: var(--pgn-color-product-tour-checkpoint-arrow-border-transparent) !default; diff --git a/src/ProductTour/index.jsx b/src/ProductTour/index.jsx index 7d1e55b609..9f04535e56 100644 --- a/src/ProductTour/index.jsx +++ b/src/ProductTour/index.jsx @@ -81,16 +81,26 @@ const ProductTour = React.forwardRef(({ tours }, ref) => { } setCurrentCheckpointData(null); }; - - const handleEnd = () => { + /* eslint-disable */ + /** + * Takes the final checkpoint array index value and looks for an existing onEnd callback. + * + * If an onEnd callback exist on checkpointIndex value and it is the final checkpoint + * in the array, the onEnd callback will be called for the parent, and individual onEnd object. + * + * @param {Integer} checkpointIndex + */ + /* eslint-enable */ + const handleEnd = (checkpointIndex) => { setIndex(0); setIsTourEnabled(false); - if (onEnd) { - onEnd(); + if (prunedCheckpoints[checkpointIndex].onEnd) { + prunedCheckpoints[checkpointIndex].onEnd(); + } else if (onEnd) { + onEnd(prunedCheckpoints[checkpointIndex]); } setCurrentCheckpointData(null); }; - return ( console.log('blurred')} - onChange={() => console.log('onChange')} - onClick={() => console.log('onClick')} - onFocus={() => console.log('onFocus')} - onKeyDown={() => console.log('onKeyDown')} -> - First Value - Second Value - Third Value - -``` - -## selected minimal usage - -```jsx live - console.log('blurred')} - onChange={() => console.log('onChange')} - onClick={() => console.log('onClick')} - onFocus={() => console.log('onFocus')} - onKeyDown={() => console.log('onKeyDown')} - selectedIndex={1} -> - First Value - Second Value - Third Value - -``` diff --git a/src/RadioButtonGroup/RadioButtonGroup.test.jsx b/src/RadioButtonGroup/RadioButtonGroup.test.jsx deleted file mode 100644 index 4d45d3b475..0000000000 --- a/src/RadioButtonGroup/RadioButtonGroup.test.jsx +++ /dev/null @@ -1,209 +0,0 @@ -import React from 'react'; -import { shallow, mount } from 'enzyme'; - -import RadioButtonGroup, { RadioButton } from './index'; - -describe('', () => { - const text = 'text'; - const index = 0; - const isChecked = false; - const name = 'name'; - const onBlur = () => {}; - const onClick = () => {}; - const onFocus = () => {}; - const onKeyDown = () => {}; - const value = 'value'; - const props = { - index, - isChecked, - name, - onBlur, - onClick, - onFocus, - onKeyDown, - value, - }; - - describe('correct rendering', () => { - it('renders RadioButton', () => { - const wrapper = shallow({text}); - - expect(wrapper.type()).toEqual('div'); - expect(wrapper.find('input')).toHaveLength(1); - - const radioButton = wrapper.find('input').at(0); - expect(radioButton.prop('type')).toEqual('radio'); - expect(radioButton.prop('name')).toEqual(name); - expect(radioButton.prop('value')).toEqual(value); - expect(radioButton.prop('defaultChecked')).toEqual(isChecked); - expect(radioButton.prop('aria-checked')).toEqual(isChecked); - expect(radioButton.prop('data-index')).toEqual(index); - expect(wrapper.find('div').text()).toEqual(text); - }); - }); - - describe('event handlers correctly triggered', () => { - let spy; - - beforeEach(() => { - spy = jest.fn(); - }); - - it('should fire onBlur', () => { - const wrapper = mount(); - expect(spy).toHaveBeenCalledTimes(0); - wrapper.find('input').at(0).simulate('blur'); - expect(spy).toHaveBeenCalledTimes(1); - }); - - it('should fire onClick', () => { - const wrapper = mount(); - expect(spy).toHaveBeenCalledTimes(0); - wrapper.find('input').at(0).simulate('click'); - expect(spy).toHaveBeenCalledTimes(1); - }); - - it('should fire onFocus', () => { - const wrapper = mount(); - expect(spy).toHaveBeenCalledTimes(0); - wrapper.find('input').at(0).simulate('focus'); - expect(spy).toHaveBeenCalledTimes(1); - }); - - it('should fire onKeyDown', () => { - const wrapper = mount(); - expect(spy).toHaveBeenCalledTimes(0); - wrapper.find('input').at(0).simulate('keydown'); - expect(spy).toHaveBeenCalledTimes(1); - }); - }); -}); - -describe('', () => { - const firstText = 'firstText'; - const secondText = 'secondText'; - const name = 'name'; - const label = 'label'; - const onBlur = () => {}; - const onChange = () => {}; - const onClick = () => {}; - const onFocus = () => {}; - const onKeyDown = () => {}; - const firstValue = 'firstValue'; - const secondValue = 'secondValue'; - const props = { - name, - label, - onBlur, - onChange, - onClick, - onFocus, - onKeyDown, - }; - - describe('renders correctly', () => { - it('renders RadioButtonGroup', () => { - const radioButtonGroup = ( - - {firstText} - {secondText} - - ); - const wrapper = shallow(radioButtonGroup); - - wrapper.find(RadioButton).forEach((button, index) => { - expect(button.prop('name')).toEqual(name); - expect(button.prop('isChecked')).toEqual(false); - expect(button.prop('onBlur')).toEqual(onBlur); - expect(button.prop('onClick')).toEqual(onClick); - expect(button.prop('onFocus')).toEqual(onFocus); - expect(button.prop('onKeyDown')).toEqual(onKeyDown); - expect(button.prop('index')).toEqual(index); - - let value = firstValue; - if (index === 1) { - value = secondValue; - } - expect(button.prop('value')).toEqual(value); - }); - - const radioButtonGroupDiv = wrapper.find('div'); - expect(radioButtonGroupDiv.prop('role')).toEqual('radiogroup'); - expect(radioButtonGroupDiv.prop('aria-label')).toEqual(label); - expect(radioButtonGroupDiv.prop('tabIndex')).toEqual(-1); - }); - }); - - describe('updates state when onChange event is fired', () => { - let spy; - - const index = 7; - - beforeEach(() => { - spy = jest.fn(); - }); - - it('changes state when checked event and target has attribute', () => { - const event = { - target: { - checked: true, - hasAttribute: () => true, - getAttribute: () => index, - }, - }; - const radioButtonGroup = ( - - {firstText} - {secondText} - - ); - - const wrapper = mount(radioButtonGroup); - wrapper.simulate('change', event); - expect(spy).toHaveBeenCalledTimes(1); - expect(wrapper.state('selectedIndex')).toEqual(index); - }); - - it('does not change state if event target is not checked', () => { - const event = { - target: { - checked: false, - hasAttribute: () => true, - getAttribute: () => index, - }, - }; - const radioButtonGroup = ( - - {firstText} - {secondText} - - ); - - const wrapper = mount(radioButtonGroup); - wrapper.simulate('change', event); - expect(spy).toHaveBeenCalledTimes(1); - expect(wrapper.state('selectedIndex')).toEqual(undefined); - }); - - it('does not change state if event target is checked but data-attribute does not exist', () => { - const event = { - target: { - checked: false, - hasAttribute: () => false, - getAttribute: () => index, - }, - }; - const radioButtonGroup = ( - - {firstText} - {secondText} - - ); - - const wrapper = mount(radioButtonGroup); - wrapper.simulate('change', event); - expect(spy).toHaveBeenCalledTimes(1); - expect(wrapper.state('selectedIndex')).toEqual(undefined); - }); - }); -}); diff --git a/src/RadioButtonGroup/index.jsx b/src/RadioButtonGroup/index.jsx deleted file mode 100644 index 5760deaee4..0000000000 --- a/src/RadioButtonGroup/index.jsx +++ /dev/null @@ -1,185 +0,0 @@ -/* eslint-disable react/no-multi-comp, max-classes-per-file, max-len */ -import React from 'react'; -import PropTypes from 'prop-types'; - -class RadioButton extends React.PureComponent { - constructor(props) { - super(props); - - const { - onBlur, - onClick, - onFocus, - onKeyDown, - } = props; - - this.onBlur = onBlur.bind(this); - this.onClick = onClick.bind(this); - this.onFocus = onFocus.bind(this); - this.onKeyDown = onKeyDown.bind(this); - } - - render() { - const { - children, - index, - isChecked, - name, - value, - ...other - } = this.props; - - return ( -
- {children} -
- ); - } -} - -class RadioButtonGroup extends React.Component { - constructor(props) { - super(); - // Bind the method to the component context - this.renderChildren = this.renderChildren.bind(this); - this.onChange = this.onChange.bind(this); - - this.state = { - selectedIndex: props.selectedIndex, - }; - } - - onChange(event) { - if (event.target.checked && event.target.hasAttribute('data-index')) { - this.setState({ - selectedIndex: parseInt(event.target.getAttribute('data-index'), 10), - }); - } - - this.props.onChange(event); - } - - renderChildren() { - const { - children, - name, - onBlur, - onClick, - onFocus, - onKeyDown, - } = this.props; - - return React.Children.map((children), (child, index) => React.cloneElement(child, { - name, - value: child.props.value, - isChecked: index === this.state.selectedIndex, - onBlur, - onClick, - onFocus, - onKeyDown, - index, - })); - } - - render() { - const { - children, - label, - name, - onBlur, - onChange, - onClick, - onFocus, - onKeyDown, - selectedIndex, - ...other - } = this.props; - - return ( -
- {this.renderChildren()} -
- ); - } -} - -RadioButton.defaultProps = { - children: undefined, - index: undefined, - isChecked: false, - name: undefined, - onBlur: () => {}, - onClick: () => {}, - onFocus: () => {}, - onKeyDown: () => {}, -}; - -RadioButton.propTypes = { - children: PropTypes.oneOfType([ - PropTypes.string, - PropTypes.number, - PropTypes.bool, - ]), - index: PropTypes.number, - isChecked: PropTypes.bool, - name: PropTypes.string, - onBlur: PropTypes.func, - onClick: PropTypes.func, - onFocus: PropTypes.func, - onKeyDown: PropTypes.func, - value: PropTypes.oneOfType([ - PropTypes.string, - PropTypes.number, - PropTypes.bool, - ]).isRequired, -}; - -RadioButtonGroup.defaultProps = { - onBlur: () => {}, - onChange: () => {}, - onClick: () => {}, - onFocus: () => {}, - onKeyDown: () => {}, - selectedIndex: undefined, -}; - -RadioButtonGroup.propTypes = { - children: PropTypes.arrayOf(PropTypes.element).isRequired, - /** specifies the `aria-label` value for the `RadioButtonGroup` */ - label: PropTypes.string.isRequired, - /** specifies the `name` value for the `RadioButtonGroup` so that no more than one `RadioButton` can be selected at any given time */ - name: PropTypes.string.isRequired, - /** specifies the callback for the `onBlur` event for each `RadioButton` within the group. The default value is a no-op function. */ - onBlur: PropTypes.func, - /** specifies the callback for the onChange event for each RadioButton within the group. The default value is a no-op function. */ - onChange: PropTypes.func, - /** specifies the callback for the `onClick` event for each `RadioButton` within the group. The default value is a no-op function. */ - onClick: PropTypes.func, - /** specifies the callback for the `onFocus` event for each `RadioButton` within the group. The default value is a no-op function. */ - onFocus: PropTypes.func, - /** specifies the callback for the `onKeyDown` event for each `RadioButton` within the group. The default value is a no-op function. */ - onKeyDown: PropTypes.func, - /** specifies which `RadioButton` is initially selected. The default value is `undefined` which signifies that no `RadioButton` is initially selected. */ - selectedIndex: PropTypes.number, -}; - -export { RadioButtonGroup as default, RadioButton }; diff --git a/src/Scrollable/Scrollable.scss b/src/Scrollable/Scrollable.scss index f2b2ec5a26..cf3e5fcd45 100644 --- a/src/Scrollable/Scrollable.scss +++ b/src/Scrollable/Scrollable.scss @@ -1,3 +1,5 @@ +@import "variables"; + .pgn__scrollable-body { display: flex; flex-direction: column; @@ -9,7 +11,7 @@ &::before { content: ""; background-color: transparent; - box-shadow: 5px 0 7px 2px rgba(0, 0, 0, .55); + box-shadow: 5px 0 7px 2px $scrollable-body-box-shadow; display: block; height: 2px; position: sticky; @@ -21,7 +23,7 @@ &::after { content: ""; background-color: transparent; - box-shadow: 5px 0 7px 2px rgba(0, 0, 0, .55); + box-shadow: 5px 0 7px 2px $scrollable-body-box-shadow; display: block; height: 2px; position: sticky; diff --git a/src/Scrollable/_variables.scss b/src/Scrollable/_variables.scss new file mode 100644 index 0000000000..0f2854240f --- /dev/null +++ b/src/Scrollable/_variables.scss @@ -0,0 +1 @@ +$scrollable-body-box-shadow: var(--pgn-elevation-scrollable-body-box-shadow) !default; diff --git a/src/SearchField/SearchField.scss b/src/SearchField/SearchField.scss index e07d39aa64..0f40638d7c 100644 --- a/src/SearchField/SearchField.scss +++ b/src/SearchField/SearchField.scss @@ -85,11 +85,11 @@ border: none; .btn-primary { - background: map-get($search-btn-variants, "light"); + background: $search-btn-primary-bg; } .btn-brand { - background: map-get($search-btn-variants, "dark"); + background: $search-btn-brand-bg; } &.has-focus { @@ -108,11 +108,11 @@ } .btn-primary { - background: map-get($search-btn-variants, "light"); + background: $search-btn-primary-bg; } .btn-brand { - background: map-get($search-btn-variants, "dark"); + background: $search-btn-brand-bg; } } } diff --git a/src/SearchField/SearchFieldInput.jsx b/src/SearchField/SearchFieldInput.jsx index bb1146c75d..d73ea8a2d3 100644 --- a/src/SearchField/SearchFieldInput.jsx +++ b/src/SearchField/SearchFieldInput.jsx @@ -1,7 +1,7 @@ import React, { useContext } from 'react'; import PropTypes from 'prop-types'; -import Input from '../Input'; +import { FormControl } from '../Form'; import { SearchFieldContext } from './SearchFieldAdvanced'; function SearchFieldInput(props) { @@ -10,7 +10,7 @@ function SearchFieldInput(props) { } = useContext(SearchFieldContext); return ( - with basic usage should match the snapshot 1`] = `"
"`; +exports[` with basic usage should match the snapshot 1`] = `"
"`; diff --git a/src/SearchField/_variables.scss b/src/SearchField/_variables.scss index ebbdad6ae5..846973b4c4 100644 --- a/src/SearchField/_variables.scss +++ b/src/SearchField/_variables.scss @@ -1,15 +1,12 @@ -$search-btn-variants: ( - "light": $primary-500, - "dark": $brand-500, -); -$search-border-radius: 0 !default; -$search-line-height: 1.5rem !default; -$search-border-color: $gray-500 !default; -$search-border-color-interaction: $black !default; -$search-border-width: .0625rem !default; -$search-border-width-interaction: .125rem !default; -$search-disabled-opacity: .3 !default; -$search-button-margin: .5rem !default; -$input-height-search: calc(#{$input-line-height * 1em} + #{$input-padding-y * 2}) !default; -$search-border-focus-color: $black !default; -$search-border-focus-width: .3125rem !default; +$search-border-radius: var(--pgn-size-search-field-border-radius) !default; +$search-border-color: var(--pgn-color-search-field-border-base) !default; +$search-border-color-interaction: var(--pgn-color-search-field-border-interaction) !default; +$search-border-width: var(--pgn-size-search-field-border-width-base) !default; +$search-disabled-opacity: var(--pgn-other-search-field-disabled-opacity) !default; +$search-button-margin: var(--pgn-spacing-search-field-margin-button) !default; +$input-height-search: var(--pgn-size-search-field-search-input-height) !default; +$search-border-focus-color: var(--pgn-color-search-field-border-focus) !default; +$search-border-focus-width: var(--pgn-size-search-field-border-width-focus) !default; + +$search-btn-primary-bg: var(--pgn-color-search-field-button-bg-primary) !default; +$search-btn-brand-bg: var(--pgn-color-search-field-button-bg-brand) !default; diff --git a/src/SelectableBox/README.md b/src/SelectableBox/README.md index 830c5dc56a..63c4ccc50c 100644 --- a/src/SelectableBox/README.md +++ b/src/SelectableBox/README.md @@ -35,32 +35,34 @@ As ``Checkbox`` const isExtraSmall = useMediaQuery({ maxWidth: breakpoints.extraSmall.maxWidth }); return ( - - -
-

It is my first SelectableBox

-

Swiss

-
-
- - Cheddar - - + -

Pepperjack

-
-
+ +
+

It is my first SelectableBox

+

Swiss

+
+
+ + Cheddar + + +

Pepperjack

+
+ +
); } ``` @@ -82,17 +84,17 @@ As ``Radio`` name="colors" columns={isExtraSmall ? 1 : 3} > - +

It is Red color

Select me

- +

Green

Leaves and grass

- +

Blue

The sky

@@ -131,7 +133,7 @@ As ``Checkbox`` with ``isIndeterminate`` onClick={handleCheckAllChange} inputHidden={false} type={type} - aria-label="checkbox" + aria-label="all options checkbox" > All the cheese
@@ -143,16 +145,16 @@ As ``Checkbox`` with ``isIndeterminate`` name="cheeses" columns={isExtraSmall ? 1 : 3} > - +

It is my first SelectableBox

Swiss

- + Cheddar - +

Pepperjack

diff --git a/src/SelectableBox/SelectableBox.scss b/src/SelectableBox/SelectableBox.scss index 2b3cac4ac3..105c8ea7b2 100644 --- a/src/SelectableBox/SelectableBox.scss +++ b/src/SelectableBox/SelectableBox.scss @@ -5,7 +5,7 @@ grid-auto-rows: 1fr; grid-gap: $selectable-box-space; - @for $i from $min-cols-number through $max-cols-number { + @for $i from 1 through 12 { &.pgn__selectable_box-set--#{$i} { grid-template-columns: repeat(#{$i}, 1fr); } @@ -23,6 +23,7 @@ box-shadow: $level-1-box-shadow; border-radius: $selectable-box-border-radius; text-align: start; + background: $white; &:focus-visible { outline: 1px solid $primary-700; diff --git a/src/SelectableBox/_variables.scss b/src/SelectableBox/_variables.scss index b7d4e114db..f9c8b29067 100644 --- a/src/SelectableBox/_variables.scss +++ b/src/SelectableBox/_variables.scss @@ -1,5 +1,3 @@ -$selectable-box-padding: 1rem !default; -$selectable-box-border-radius: .25rem !default; -$selectable-box-space: .75rem !default; -$min-cols-number: 1 !default; -$max-cols-number: 12 !default; +$selectable-box-padding: var(--pgn-spacing-selectable-box-padding) !default; +$selectable-box-border-radius: var(--pgn-spacing-selectable-box-border-radius) !default; +$selectable-box-space: var(--pgn-spacing-selectable-box-box-space) !default; diff --git a/src/Sheet/Sheet.scss b/src/Sheet/Sheet.scss index e5f5754440..fe14f92427 100644 --- a/src/Sheet/Sheet.scss +++ b/src/Sheet/Sheet.scss @@ -1,7 +1,9 @@ +@import "variables"; + .pgn__sheet-skrim { width: 100%; height: 100%; - background-color: rgba(196, 196, 196, .5); + background-color: $sheet-skrim-bg; position: fixed; top: 0; left: 0; @@ -15,12 +17,12 @@ %component-left { left: 0; - box-shadow: 8px 0 16px 0 rgba(0, 0, 0, .15); + box-shadow: 8px 0 16px 0 $sheet-skrim-component-box-shadow; } %component-right { right: 0; - box-shadow: -8px 0 16px 0 rgba(0, 0, 0, .15); + box-shadow: -8px 0 16px 0 $sheet-skrim-component-box-shadow; } .pgn__sheet-component-left { @@ -34,7 +36,7 @@ .pgn__sheet-component { position: fixed; padding: 1.25rem; - background-color: white; + background-color: $white; z-index: $zindex-sheet; &.pgn__sheet__dark { @@ -44,12 +46,12 @@ &.bottom { bottom: 0; - box-shadow: 0 -8px 16px 0 rgba(0, 0, 0, .15); + box-shadow: 0 -8px 16px 0 $sheet-skrim-component-box-shadow; } &.top { top: 0; - box-shadow: 0 8px 16px 0 rgba(0, 0, 0, .15); + box-shadow: 0 8px 16px 0 $sheet-skrim-component-box-shadow; } &.left { diff --git a/src/Sheet/_variables.scss b/src/Sheet/_variables.scss new file mode 100644 index 0000000000..ca87ddc8cd --- /dev/null +++ b/src/Sheet/_variables.scss @@ -0,0 +1,2 @@ +$sheet-skrim-bg: var(--pgn-color-sheet-skrim-bg) !default; +$sheet-skrim-component-box-shadow: var(--pgn-color-sheet-skrim-component-box-shadow) !default; diff --git a/src/Skeleton/README.md b/src/Skeleton/README.md index 1cf8a6279e..4114178891 100644 --- a/src/Skeleton/README.md +++ b/src/Skeleton/README.md @@ -73,7 +73,7 @@ you can also set the number of columns in the displayed ``Skeleton``. : some image}
diff --git a/src/Skeleton/Skeleton.scss b/src/Skeleton/Skeleton.scss new file mode 100644 index 0000000000..206346342b --- /dev/null +++ b/src/Skeleton/Skeleton.scss @@ -0,0 +1,3 @@ +.react-loading-skeleton { + z-index: unset; +} diff --git a/src/Spinner/_variables.scss b/src/Spinner/_variables.scss index ce9d97c7da..9568591e4b 100644 --- a/src/Spinner/_variables.scss +++ b/src/Spinner/_variables.scss @@ -1,9 +1,9 @@ // Spinners -$spinner-width: 2rem !default; -$spinner-height: $spinner-width !default; -$spinner-border-width: .25em !default; +$spinner-width: var(--pgn-size-spinner-base-width) !default; +$spinner-height: var(--pgn-size-spinner-base-height) !default; +$spinner-border-width: var(--pgn-size-spinner-base-border-width) !default; -$spinner-width-sm: 1rem !default; -$spinner-height-sm: $spinner-width-sm !default; -$spinner-border-width-sm: .2em !default; +$spinner-width-sm: var(--pgn-size-spinner-sm-width) !default; +$spinner-height-sm: var(--pgn-size-spinner-sm-height) !default; +$spinner-border-width-sm: var(--pgn-size-spinner-sm-border-width) !default; diff --git a/src/Stack/_variables.scss b/src/Stack/_variables.scss index 77a318bba6..91656b531d 100644 --- a/src/Stack/_variables.scss +++ b/src/Stack/_variables.scss @@ -1 +1 @@ -$stack-gap: 0 !default; +$stack-gap: var(--pgn-size-stack-gap) !default; diff --git a/src/Stack/index.jsx b/src/Stack/index.jsx index 602409a79b..0e7aa7af15 100644 --- a/src/Stack/index.jsx +++ b/src/Stack/index.jsx @@ -1,4 +1,4 @@ -import React from 'react'; +import React, { forwardRef } from 'react'; import PropTypes from 'prop-types'; import classNames from 'classnames'; @@ -7,24 +7,25 @@ const DIRECTION_VARIANTS = [ 'vertical', ]; -function Stack({ +const Stack = forwardRef(({ direction, gap, children, className, -}) { - return ( -
- {children} -
- ); -} + ...rest +}, ref) => ( +
+ {children} +
+)); Stack.propTypes = { /** Specifies the content of the `Stack`. */ diff --git a/src/StatusAlert/README.md b/src/StatusAlert/README.md deleted file mode 100644 index 81f0d7b590..0000000000 --- a/src/StatusAlert/README.md +++ /dev/null @@ -1,149 +0,0 @@ ---- -title: 'StatusAlert' -type: 'component' -components: -- StatusAlert -categories: -- Status & metadata -status: 'Deprecate Soon' -designStatus: 'Done' -devStatus: 'Done' -notes: | - Alert replaces this component ---- - -## basic usage - -```jsx live - {}} - open -/> -``` - -## success alert - -```jsx live - {}} - open -/> -``` - -## danger alert - -```jsx live - {}} - open -/> -``` - -## informational alert - -```jsx live - {}} - open -/> -``` - -## alert with a custom aria-label on the close button - -```jsx live - {}} - open - closeButtonAriaLabel="Dismiss this very specific information." -/> -``` - -## Non-dismissible alert - -```jsx live - -``` - -## alert invoked via a button - -```jsx live -class StatusAlertWrapper extends React.Component { - constructor(props) { - super(props); - - this.openStatusAlert = this.openStatusAlert.bind(this); - this.resetStatusAlertWrapperState = this.resetStatusAlertWrapperState.bind( - this, - ); - - this.state = { open: false }; - } - - openStatusAlert() { - this.setState({ open: true }); - } - - resetStatusAlertWrapperState() { - this.setState({ open: false }); - this.button.focus(); - } - - render() { - return ( -
- - -
- ); - } -} -``` - -## alert with a link - -```jsx live - - Love cats? - - Click me! - -
- } - onClose={() => {}} - open -/> -``` diff --git a/src/StatusAlert/StatusAlert.test.jsx b/src/StatusAlert/StatusAlert.test.jsx deleted file mode 100644 index dfe6a3083b..0000000000 --- a/src/StatusAlert/StatusAlert.test.jsx +++ /dev/null @@ -1,148 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; - -import StatusAlert from './index'; -import { Button } from '../index'; - -const statusAlertOpen = (isOpen, wrapper) => { - wrapper.update(); - expect(wrapper.find('.alert').hasClass('show')).toEqual(isOpen); - expect(wrapper.find('StatusAlert').state('open')).toEqual(isOpen); -}; -const dialog = 'Status Alert dialog'; -const defaultProps = { - dialog, - onClose: () => {}, - open: true, -}; - -let wrapper; - -describe('', () => { - describe('correct rendering', () => { - it('renders default view', () => { - wrapper = mount(); - const statusAlertDialog = wrapper.find('.alert-dialog'); - - expect(statusAlertDialog.text()).toEqual(dialog); - expect(wrapper.find('button')).toHaveLength(1); - }); - - it('renders non-dismissible view', () => { - wrapper = mount(); - const statusAlertDialog = wrapper.find('.alert-dialog'); - - expect(statusAlertDialog.text()).toEqual(dialog); - expect(wrapper.find('button')).toHaveLength(0); - }); - - it('renders custom aria-label view', () => { - const customLabel = 'Dismiss this alert post-haste!'; - wrapper = mount(); - const button = wrapper.find('button').at(0); - - expect(button.prop('aria-label')).toEqual(customLabel); - }); - }); - - describe('props received correctly', () => { - it('component receives props', () => { - wrapper = mount( {}} />); - - statusAlertOpen(false, wrapper); - wrapper.setProps({ open: true }); - statusAlertOpen(true, wrapper); - }); - - it('component receives props and ignores prop change', () => { - wrapper = mount(); - - statusAlertOpen(true, wrapper); - wrapper.setProps({ dialog: 'Changed alert dialog' }); - statusAlertOpen(true, wrapper); - }); - }); - - describe('close functions properly', () => { - beforeEach(() => { - wrapper = mount(); - }); - - it('closes when x button pressed', () => { - statusAlertOpen(true, wrapper); - wrapper.find('button').at(0).simulate('click'); - statusAlertOpen(false, wrapper); - }); - - it('closes when Enter key pressed', () => { - statusAlertOpen(true, wrapper); - wrapper.find('button').at(0).simulate('keyDown', { key: 'Enter' }); - statusAlertOpen(false, wrapper); - }); - - it('closes when Escape key pressed', () => { - statusAlertOpen(true, wrapper); - wrapper.find('button').at(0).simulate('keyDown', { key: 'Escape' }); - statusAlertOpen(false, wrapper); - }); - - it('calls callback function on close', () => { - const spy = jest.fn(); - - wrapper = mount(); - - expect(spy).toHaveBeenCalledTimes(0); - - // press X button - wrapper.find('button').at(0).simulate('click'); - expect(spy).toHaveBeenCalledTimes(1); - }); - }); - - describe('invalid keystrokes do nothing', () => { - beforeEach(() => { - const app = document.createElement('div'); - document.body.appendChild(app); - wrapper = mount(, { attachTo: app }); - }); - - it('does nothing on invalid keystroke q', () => { - const buttons = wrapper.find('button'); - - expect(buttons.at(0).html()).toEqual(document.activeElement.outerHTML); - statusAlertOpen(true, wrapper); - buttons.at(0).simulate('keyDown', { key: 'q' }); - expect(buttons.at(0).html()).toEqual(document.activeElement.outerHTML); - statusAlertOpen(true, wrapper); - }); - - it('does nothing on invalid keystroke + ctrl', () => { - const buttons = wrapper.find('button'); - - expect(buttons.at(0).html()).toEqual(document.activeElement.outerHTML); - statusAlertOpen(true, wrapper); - buttons.at(0).simulate('keyDown', { key: 'Tab', ctrlKey: true }); - expect(buttons.at(0).html()).toEqual(document.activeElement.outerHTML); - statusAlertOpen(true, wrapper); - }); - }); - describe('focus functions properly', () => { - it('focus function changes focus', () => { - const app = document.createElement('div'); - document.body.appendChild(app); - wrapper = mount( -
, - { attachTo: app }, - ); - const buttons = wrapper.find('button'); - - // move focus away from default StatusAlert xButton - buttons.at(0).simulate('click'); - expect(buttons.at(0).html()).toEqual(document.activeElement.outerHTML); - - const statusAlert = wrapper.find('StatusAlert').instance(); - statusAlert.focus(); - expect(buttons.at(1).html()).toEqual(document.activeElement.outerHTML); - }); - }); -}); diff --git a/src/StatusAlert/index.jsx b/src/StatusAlert/index.jsx deleted file mode 100644 index de82907b28..0000000000 --- a/src/StatusAlert/index.jsx +++ /dev/null @@ -1,142 +0,0 @@ -/* eslint-disable max-len */ -import React from 'react'; -import classNames from 'classnames'; -import PropTypes from 'prop-types'; -import isRequiredIf from 'react-proptype-conditional-require'; - -import { Button } from '..'; -import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps'; - -class StatusAlert extends React.Component { - constructor(props) { - super(props); - - this.close = this.close.bind(this); - this.handleKeyDown = this.handleKeyDown.bind(this); - this.renderDialog = this.renderDialog.bind(this); - - this.state = { - open: props.open, - }; - } - - componentDidMount() { - if (this.xButton) { - this.xButton.focus(); - } - } - - /* eslint-disable react/no-did-update-set-state */ - componentDidUpdate(prevProps, prevState) { - if (this.state.open && !prevState.open && this.xButton) { - this.xButton.focus(); - } - - if (this.props.open !== prevProps.open) { - this.setState({ open: this.props.open }); - } - } - - handleKeyDown(e) { - if (e.key === 'Enter' || e.key === 'Escape') { - e.preventDefault(); - this.close(); - } - } - - close() { - this.setState({ open: false }); - this.props.onClose(); - } - - // eslint-disable-next-line react/no-unused-class-component-methods - focus() { - if (this.xButton) { - this.xButton.focus(); - } - } - - renderDialog() { - const { dialog } = this.props; - - return ( -
- { dialog } -
- ); - } - - renderDismissible() { - const { closeButtonAriaLabel, dismissible } = this.props; - - return (dismissible) ? ( - { this.xButton = input; }} - onClick={this.close} - onKeyDown={this.handleKeyDown} - isClose - > - - - ) : null; - } - - render() { - const { alertType, className, dismissible } = this.props; - - return ( - - ); - } -} - -StatusAlert.propTypes = { - /** specifies the type of alert that is being diplayed. It defaults to "warning". See the other available [bootstrap](https://v4-alpha.getbootstrap.com/components/alerts/) options. */ - alertType: PropTypes.string, - /** is a string array that defines the classes to be used within the status alert. */ - className: PropTypes.string, - dialog: PropTypes.oneOfType([PropTypes.string, PropTypes.element]).isRequired, - /** specifies if the status alert will include the dismissible X button to close the alert. It defaults to true. */ - dismissible: PropTypes.bool, - /* eslint-disable react/require-default-props */ - closeButtonAriaLabel: PropTypes.string, - /** is a function that is called on close. It can be used to perform actions upon closing of the status alert, such as restoring focus to the previous logical focusable element. It is only required if `dismissible` is set to `true` and not required if the alert is not `dismissible`. */ - onClose: isRequiredIf(PropTypes.func, props => props.dismissible), - /** specifies whether the status alert renders open or closed on the initial render. It defaults to false. */ - open: PropTypes.bool, -}; - -StatusAlert.defaultProps = { - alertType: 'warning', - className: undefined, - closeButtonAriaLabel: 'Close', - dismissible: true, - open: false, -}; - -export default withDeprecatedProps(StatusAlert, 'StatusAlert', { - className: { - deprType: DeprTypes.FORMAT, - expect: value => typeof value === 'string', - transform: value => (Array.isArray(value) ? value.join(' ') : value), - message: 'It should be a string.', - }, -}); diff --git a/src/Sticky/_variables.scss b/src/Sticky/_variables.scss index 42c3b9041d..1a45452e9c 100644 --- a/src/Sticky/_variables.scss +++ b/src/Sticky/_variables.scss @@ -1,3 +1,3 @@ -$sticky-offset: 0 !default; -$sticky-shadow-top: 0 -.5rem 1rem rgba(0, 0, 0, .15), 0 -.25rem .625rem rgba(0, 0, 0, .15) !default; -$sticky-shadow-bottom: 0 .5rem 1rem rgba(0, 0, 0, .15), 0 .25rem .625rem rgba(0, 0, 0, .15) !default; +$sticky-offset: var(--pgn-spacing-sticky-offset) !default; +$sticky-shadow-top: var(--pgn-elevation-sticky-shadow-top) !default; +$sticky-shadow-bottom: var(--pgn-elevation-sticky-shadow-bottom) !default; diff --git a/src/Table/README.md b/src/Table/README.md deleted file mode 100644 index 77cafa2e19..0000000000 --- a/src/Table/README.md +++ /dev/null @@ -1,506 +0,0 @@ ---- -title: 'Table (Deprecated)' -type: 'component' -components: -- TableDeprecated -categories: -- Table -status: 'Deprecate soon' -designStatus: 'TBD' -devStatus: 'TBD' -notes: | - Potentially does too much work. Consider if should be multiple components: Table, TableHeader, SortableTable, etc. ---- - -## unstyled - -```jsx live - {}, - width: 'col-3', - }, - { - label: 'Famous For', - key: 'famous_for', - columnSortable: false, - onSort: () => {}, - width: 'col-6', - }, - { - label: 'Coat Color', - key: 'color', - columnSortable: false, - hideHeader: true, - onSort: () => {}, - width: 'col-3', - }, - ]} - caption="Famous Internet Cats" -/> -``` - -## table-striped - -```jsx live -
{}, - width: 'col-3', - }, - { - label: 'Famous For', - key: 'famous_for', - columnSortable: false, - onSort: () => {}, - width: 'col-6', - }, - { - label: 'Coat Color', - key: 'color', - columnSortable: false, - hideHeader: true, - onSort: () => {}, - width: 'col-3', - }, - ]} - caption="Famous Internet Cats" - className="table-striped" -/> -``` - -## default heading - -```jsx live -
{}, - width: 'col-3', - }, - { - label: 'Famous For', - key: 'famous_for', - columnSortable: false, - onSort: () => {}, - width: 'col-6', - }, - { - label: 'Coat Color', - key: 'color', - columnSortable: false, - hideHeader: true, - onSort: () => {}, - width: 'col-3', - }, - ]} - caption="Famous Internet Cats" - headingClassName={['thead-default']} -/> -``` - -## responsive - -```jsx live -
{}, - width: 'col-3', - }, - { - label: 'Famous For', - key: 'famous_for', - columnSortable: false, - onSort: () => {}, - width: 'col-6', - }, - { - label: 'Coat Color', - key: 'color', - columnSortable: false, - hideHeader: true, - onSort: () => {}, - width: 'col-3', - }, - ]} - caption="Famous Internet Cats" - className="table-responsive" -/> -``` - -## sortable - -```jsx live -() => { - const catData = [ - { - name: 'Lil Bub', - color: 'brown tabby', - famous_for: 'weird tongue', - }, - { - name: 'Grumpy Cat', - color: 'siamese', - famous_for: 'serving moods', - }, - { - name: 'Smoothie', - color: 'orange tabby', - famous_for: 'modeling', - }, - { - name: 'Maru', - color: 'brown tabby', - famous_for: 'being a lovable oaf', - }, - { - name: 'Keyboard Cat', - color: 'orange tabby', - famous_for: 'piano virtuoso', - }, - { - name: 'Long Cat', - color: 'russian white', - famous_for: - 'being loooooooooooooooooooooooooooooooooooooooooooooooooooooong', - }, - ]; - - const catColumns = [ - { - label: 'Name', - key: 'name', - columnSortable: true, - onSort: () => {}, - width: 'col-3', - }, - { - label: 'Famous For', - key: 'famous_for', - columnSortable: false, - onSort: () => {}, - width: 'col-6', - }, - { - label: 'Coat Color', - key: 'color', - columnSortable: false, - hideHeader: true, - onSort: () => {}, - width: 'col-3', - }, - ]; - - const sort = function sort(firstElement, secondElement, key, direction) { - const directionIsAsc = direction === 'asc'; - - if (firstElement[key] > secondElement[key]) { - return directionIsAsc ? 1 : -1; - } else if (firstElement[key] < secondElement[key]) { - return directionIsAsc ? -1 : 1; - } - return 0; - }; - - const catDataSortable = catData.slice(); - - return ( -
- sort(firstElement, secondElement, catColumns[0].key, 'desc'), - )} - columns={catColumns.map(column => ({ - ...column, - onSort(direction) { - catDataSortable.sort((firstElement, secondElement) => - sort(firstElement, secondElement, column.key, direction), - ); - }, - }))} - caption="Famous Internet Cats" - tableSortable - defaultSortedColumn={catColumns[0].key} - defaultSortDirection="desc" - /> - ); -}; -``` - -## fixed - -```jsx live -
{}, - width: 'col-3', - }, - { - label: 'Famous For', - key: 'famous_for', - columnSortable: false, - onSort: () => {}, - width: 'col-6', - }, - { - label: 'Coat Color', - key: 'color', - columnSortable: false, - hideHeader: true, - onSort: () => {}, - width: 'col-3', - }, - ]} - caption="Famous Internet Cats" - hasFixedColumnWidths -/> -``` - -## row header - -```jsx live -
{}, - width: 'col-3', - }, - { - label: 'Famous For', - key: 'famous_for', - columnSortable: false, - onSort: () => {}, - width: 'col-6', - }, - { - label: 'Coat Color', - key: 'color', - columnSortable: false, - hideHeader: true, - onSort: () => {}, - width: 'col-3', - }, - ]} - caption="Famous Internet Cats" - rowHeaderColumnKey="name" -/> -``` diff --git a/src/Table/Table.scss b/src/Table/Table.scss deleted file mode 100644 index 9ae065437f..0000000000 --- a/src/Table/Table.scss +++ /dev/null @@ -1,12 +0,0 @@ -@import "variables"; -@import "~bootstrap/scss/tables"; - -.btn-header { - padding: 0; - font-weight: $font-weight-bold; -} - -.table th, -.table td { - word-wrap: break-word; -} diff --git a/src/Table/Table.test.jsx b/src/Table/Table.test.jsx deleted file mode 100644 index 8529c005bd..0000000000 --- a/src/Table/Table.test.jsx +++ /dev/null @@ -1,375 +0,0 @@ -import React from 'react'; -import { mount } from 'enzyme'; - -import Table from './index'; - -const props = { - columns: [ - { key: 'num', label: 'Number' }, - { key: 'x2', label: 'Number * 2' }, - { key: 'sq', label: 'Number Squared' }, - { key: 'i', label: 'Imaginary Number' }, - ], - data: [ - { - sq: 1, num: 1, x2: 2, i: 'i', - }, - { - sq: 4, num: 2, x2: 4, i: '2i', - }, - { - sq: 9, num: 3, x2: 6, i: '3i', - }, - ], -}; - -const sortableColumnProps = { - num: { - columnSortable: true, - onSort: () => {}, - }, - x2: { - columnSortable: true, - onSort: () => {}, - }, - sq: { - columnSortable: false, - }, - i: { - columnSortable: false, - hideHeader: true, - }, -}; - -const sortableColumns = props.columns.map(column => ({ - ...column, - ...sortableColumnProps[column.key], -})); - -const sortableProps = { - columns: sortableColumns, - data: props.data, - tableSortable: true, - defaultSortedColumn: sortableColumns[0].key, - defaultSortDirection: 'desc', -}; - -const fixedColumnProps = { - num: { width: 'col-4' }, - x2: { width: 'col-2' }, - sq: { width: 'col-3' }, - i: { width: 'col-3' }, -}; - -const fixedColumns = props.columns.map(column => ({ - ...column, - ...fixedColumnProps[column.key], -})); - -const fixedProps = { - ...props, - columns: fixedColumns, - hasFixedColumnWidths: true, -}; - -const propsWithColWidths = { - ...props, - columns: fixedColumns, -}; - -describe('
', () => { - describe('renders', () => { - const wrapper = mount(
).find('Table'); - - it('with display columns in the right order', () => { - wrapper.find('th').forEach((th, i) => { - expect(th.text()).toEqual(props.columns[i].label); - }); - }); - - it('with data in the same order as the columns', () => { - wrapper.find('tr').at(1).find('td').forEach((td, i) => { - let parsed = Number(td.text()); - if (Number.isNaN(parsed)) { parsed = td.text(); } - expect(parsed).toEqual(props.data[0][props.columns[i].key]); - }); - }); - - it('with correct initial state', () => { - expect(wrapper.state('sortedColumn')).toEqual(''); - expect(wrapper.state('sortDirection')).toEqual(''); - }); - }); - - describe('that is non-sortable renders', () => { - const wrapper = mount(
).find('Table'); - - it('it sets column headers correctly even with hidden prop', () => { - const tableHeadings = wrapper.find('th'); - - let hiddenHeader; - - tableHeadings.forEach((th, i) => { - expect(th.text()).toEqual(sortableProps.columns[i].label); - if (sortableProps.columns[i].hideHeader) { - hiddenHeader = sortableProps.columns[i].label; - } - }); - expect(tableHeadings.find('span').text()).toEqual(hiddenHeader); - }); - - it('without sortable columns', () => { - const tableHeadings = wrapper.find('th'); - - tableHeadings.forEach((heading) => { - expect((heading).hasClass('sortable')).toEqual(false); - }); - }); - - it('without column buttons', () => { - const buttons = wrapper.find('button'); - expect(buttons).toHaveLength(0); - }); - - it('with correct initial state', () => { - expect(wrapper.state('sortedColumn')).toEqual(''); - expect(wrapper.state('sortDirection')).toEqual(''); - }); - }); - - describe('that is sortable and has mixed columns renders', () => { - let wrapper = mount(
).find('Table'); - - it('with sortable classname on correct headings', () => { - const tableHeadings = wrapper.find('th'); - - expect(tableHeadings).toHaveLength(sortableProps.columns.length); - expect(tableHeadings.at(0).hasClass('sortable')).toEqual(true); - expect(tableHeadings.at(1).hasClass('sortable')).toEqual(true); - expect(tableHeadings.at(2).hasClass('sortable')).toEqual(false); - }); - - it('with sr-only classname on correct headings', () => { - const srOnly = wrapper.find('.sr-only'); - - expect(srOnly).toHaveLength(sortableProps.columns.length - 1); - expect((srOnly).at(0).hasClass('sr-only')).toEqual(true); - expect((srOnly).at(1).hasClass('sr-only')).toEqual(true); - }); - - it('with correct initial sr-only text on correct headings', () => { - const headings = wrapper.find('.sr-only'); - - expect(headings.at(0).text()).toEqual(' sort descending'); - expect(headings.at(1).text()).toEqual(' click to sort'); - }); - - it('with correct initial state', () => { - expect(wrapper.find('Table').state('sortedColumn')).toEqual(sortableProps.defaultSortedColumn); - expect(wrapper.find('Table').state('sortDirection')).toEqual(sortableProps.defaultSortDirection); - }); - - wrapper = mount(
); - - it('with correct column buttons', () => { - const buttons = wrapper.find('button'); - expect(buttons).toHaveLength(2); - expect(buttons.at(0).hasClass('btn-header')).toBe(true); - expect(buttons.at(1).hasClass('btn-header')).toBe(true); - }); - - it('with correct initial sort icons', () => { - const buttons = wrapper.find('button'); - - expect(buttons.find('.fa')).toHaveLength(sortableProps.columns.length - 2); - expect(buttons.at(0).find('.fa-sort-desc')).toHaveLength(1); - expect(buttons.at(1).find('.fa-sort')).toHaveLength(1); - }); - }); - - describe('that is sortable and has mixed columns has behavior that', () => { - let wrapper; - let buttons; - let numSpy; - let x2Spy; - - beforeEach(() => { - wrapper = mount(
); - - buttons = wrapper.find('button'); - numSpy = jest.fn(); - x2Spy = jest.fn(); - - sortableProps.columns.find(column => (column.key === 'num')).onSort = numSpy; - sortableProps.columns.find(column => (column.key === 'x2')).onSort = x2Spy; - }); - - it('changes sort icons appropriately on click', () => { - buttons.at(0).simulate('click'); - buttons = wrapper.find('button'); - - expect(buttons.at(0).find('.fa')).toHaveLength(1); - expect(buttons.at(0).find('.fa-sort-asc')).toHaveLength(1); - expect(buttons.at(0).find('.fa-sort-desc')).toHaveLength(0); - expect(buttons.at(0).find('.fa-sort')).toHaveLength(0); - - expect(buttons.at(1).find('.fa')).toHaveLength(1); - expect(buttons.at(1).find('.fa-sort-asc')).toHaveLength(0); - expect(buttons.at(1).find('.fa-sort-desc')).toHaveLength(0); - expect(buttons.at(1).find('.fa-sort')).toHaveLength(1); - - buttons.at(1).simulate('click'); - buttons = wrapper.find('button'); - - expect(buttons.at(0).find('.fa')).toHaveLength(1); - expect(buttons.at(0).find('.fa-sort-asc')).toHaveLength(0); - expect(buttons.at(0).find('.fa-sort-desc')).toHaveLength(0); - expect(buttons.at(0).find('.fa-sort')).toHaveLength(1); - - expect(buttons.at(1).find('.fa')).toHaveLength(1); - expect(buttons.at(1).find('.fa-sort-asc')).toHaveLength(0); - expect(buttons.at(1).find('.fa-sort-desc')).toHaveLength(1); - expect(buttons.at(1).find('.fa-sort')).toHaveLength(0); - }); - - it('changes sr-only text appropriately on click', () => { - const headings = wrapper.find('.sr-only'); - - buttons.at(0).simulate('click'); - buttons = wrapper.find('button'); - - expect(headings.at(0).text()).toEqual(' sort ascending'); - expect(headings.at(1).text()).toEqual(' click to sort'); - - buttons.at(1).simulate('click'); - - expect(headings.at(0).text()).toEqual(' click to sort'); - expect(headings.at(1).text()).toEqual(' sort descending'); - }); - - it('changes state appropriately on click', () => { - buttons.at(0).simulate('click'); - buttons = wrapper.find('button'); - - expect(wrapper.find('Table').state('sortedColumn')).toEqual(sortableProps.defaultSortedColumn); - expect(wrapper.find('Table').state('sortDirection')).toEqual('asc'); - - buttons.at(0).simulate('click'); - buttons = wrapper.find('button'); - - expect(wrapper.find('Table').state('sortedColumn')).toEqual(sortableProps.defaultSortedColumn); - expect(wrapper.find('Table').state('sortDirection')).toEqual('desc'); - - buttons.at(1).simulate('click'); - buttons = wrapper.find('button'); - - expect(wrapper.find('Table').state('sortedColumn')).toEqual(sortableProps.columns[1].key); - expect(wrapper.find('Table').state('sortDirection')).toEqual('desc'); - }); - - it('calls onSort function correctly on click', () => { - expect(numSpy).toHaveBeenCalledTimes(0); - expect(x2Spy).toHaveBeenCalledTimes(0); - - buttons.at(0).simulate('click'); - buttons = wrapper.find('button'); - - expect(numSpy).toHaveBeenCalledTimes(1); - expect(x2Spy).toHaveBeenCalledTimes(0); - - expect(numSpy).toBeCalledWith('asc'); - - buttons.at(0).simulate('click'); - buttons = wrapper.find('button'); - - expect(numSpy).toHaveBeenCalledTimes(2); - expect(x2Spy).toHaveBeenCalledTimes(0); - - expect(numSpy).toBeCalledWith('desc'); - - buttons.at(1).simulate('click'); - buttons = wrapper.find('button'); - - expect(numSpy).toHaveBeenCalledTimes(2); - expect(x2Spy).toHaveBeenCalledTimes(1); - - expect(x2Spy).toBeCalledWith('desc'); - }); - }); - describe('that is fixed', () => { - const wrapper = mount(
); - - it('with col width classnames on headings', () => { - const tableHeadings = wrapper.find('th'); - - expect(tableHeadings).toHaveLength(fixedProps.columns.length); - expect(tableHeadings.at(0).hasClass('col-4')).toEqual(true); - expect(tableHeadings.at(1).hasClass('col-2')).toEqual(true); - expect(tableHeadings.at(2).hasClass('col-3')).toEqual(true); - }); - - it('with col width classnames on cells', () => { - const tableCells = wrapper.find('td'); - - expect(tableCells).toHaveLength(fixedProps.columns.length * fixedProps.data.length); - expect(tableCells.at(0).hasClass('col-4')).toEqual(true); - expect(tableCells.at(1).hasClass('col-2')).toEqual(true); - expect(tableCells.at(2).hasClass('col-3')).toEqual(true); - }); - it('with fixed-related classnames on head, body, and rows', () => { - const thead = wrapper.find('thead'); - const tbody = wrapper.find('tbody'); - const tr = wrapper.find('tr'); - - expect(thead.hasClass('d-inline')).toEqual(true); - expect(tbody.hasClass('d-inline')).toEqual(true); - expect(tr.at(0).hasClass('d-flex')).toEqual(true); - }); - }); - describe('that is not fixed with col widths', () => { - const wrapper = mount(
); - - it('with no col width classnames on headings', () => { - const tableHeadings = wrapper.find('th'); - - expect(tableHeadings).toHaveLength(fixedProps.columns.length); - expect(tableHeadings.at(0).hasClass('col-4')).toEqual(false); - expect(tableHeadings.at(1).hasClass('col-2')).toEqual(false); - expect(tableHeadings.at(2).hasClass('col-3')).toEqual(false); - }); - - it('with no col width classnames on cells', () => { - const tableCells = wrapper.find('td'); - - expect(tableCells).toHaveLength(fixedProps.columns.length * fixedProps.data.length); - expect(tableCells.at(0).hasClass('col-4')).toEqual(false); - expect(tableCells.at(1).hasClass('col-2')).toEqual(false); - expect(tableCells.at(2).hasClass('col-3')).toEqual(false); - }); - it('with no fixed-related classnames on head, body, and rows', () => { - const thead = wrapper.find('thead'); - const tbody = wrapper.find('tbody'); - const tr = wrapper.find('tr'); - - expect(thead.hasClass('d-inline')).toEqual(false); - expect(tbody.hasClass('d-inline')).toEqual(false); - expect(tr.at(0).hasClass('d-flex')).toEqual(false); - }); - }); - describe('renders row headers', () => { - const wrapper = mount(
); - - it('with the row header as th with row scope', () => { - wrapper.find('tbody').at(0).find('th').forEach((th) => { - expect(th.getElement().key).toEqual('num'); - expect(th.prop('scope')).toEqual('row'); - }); - }); - - it('with all other columns unchanged', () => { - wrapper.find('tbody').at(0).find('td').forEach((th) => { - expect(th.getElement().key).not.toEqual('num'); - }); - }); - }); -}); diff --git a/src/Table/_variables.scss b/src/Table/_variables.scss deleted file mode 100644 index a494d0a47a..0000000000 --- a/src/Table/_variables.scss +++ /dev/null @@ -1,34 +0,0 @@ -// Tables -// -// Customizes the `.table` component with basic values, each used across all table variations. - -$table-cell-padding: .75rem !default; -$table-cell-padding-sm: .3rem !default; - -$table-color: $body-color !default; -$table-bg: null !default; -$table-accent-bg: rgba($black, .05) !default; -$table-hover-color: $table-color !default; -$table-hover-bg: rgba($black, .075) !default; -$table-active-bg: $table-hover-bg !default; - -$table-border-width: $border-width !default; -$table-border-color: $border-color !default; - -$table-head-bg: theme-color("gray", "background") !default; -$table-head-color: theme-color("gray", "text") !default; - -$table-dark-color: $white !default; -$table-dark-bg: theme-color("gray", "hover") !default; -$table-dark-accent-bg: rgba($white, .05) !default; -$table-dark-hover-color: $table-dark-color !default; -$table-dark-hover-bg: rgba($white, .075) !default; -$table-dark-border-color: lighten($table-dark-bg, 7.5%) !default; -$table-dark-color: $white !default; - -$table-striped-order: odd !default; - -$table-caption-color: $text-muted !default; - -$table-bg-level: -9 !default; -$table-border-level: -6 !default; diff --git a/src/Table/index.jsx b/src/Table/index.jsx deleted file mode 100644 index 858c9ceb75..0000000000 --- a/src/Table/index.jsx +++ /dev/null @@ -1,261 +0,0 @@ -/* eslint-disable max-len */ -import React from 'react'; -import classNames from 'classnames'; -import isRequiredIf from 'react-proptype-conditional-require'; -import PropTypes from 'prop-types'; - -import { Button } from '..'; -import withDeprecatedProps, { DeprTypes } from '../withDeprecatedProps'; - -class Table extends React.Component { - constructor(props) { - super(props); - - this.state = { - sortedColumn: props.tableSortable ? this.props.defaultSortedColumn : '', - sortDirection: props.tableSortable ? this.props.defaultSortDirection : '', - }; - - this.onSortClick = this.onSortClick.bind(this); - } - - onSortClick(columnKey) { - let newDirection = 'desc'; - - if (this.state.sortedColumn === columnKey) { - newDirection = (this.state.sortDirection === 'desc' ? 'asc' : 'desc'); - } - - this.setState({ - sortedColumn: columnKey, - sortDirection: newDirection, - }); - - const currentlySortedColumn = this.props.columns.find(column => (columnKey === column.key)); - currentlySortedColumn.onSort(newDirection); - } - - getCaption() { - return this.props.caption && ( - - ); - } - - getSortButtonScreenReaderText(columnKey) { - let text; - - if (this.state.sortedColumn === columnKey) { - text = this.props.sortButtonsScreenReaderText[this.state.sortDirection]; - } else { - text = this.props.sortButtonsScreenReaderText.defaultText; - } - - return text; - } - - getSortIcon(sortDirection) { - const sortIconClassName = ['fa-sort', sortDirection].filter(n => n).join('-'); - - return ( - - ); - } - - getTableHeading(column) { - let heading; - if (this.props.tableSortable && column.columnSortable) { - heading = ( - - ); - } else if (column.hideHeader) { - heading = ({column.label}); - } else { - heading = column.label; - } - - return heading; - } - - getHeadings() { - return ( - - - {this.props.columns.map(col => ( - - ))} - - - ); - } - - getBody() { - return ( - - {this.props.data.map((row, i) => ( - // eslint-disable-next-line react/no-array-index-key - - {this.props.columns.map(({ key, width }) => ( - React.createElement( - (key === this.props.rowHeaderColumnKey) ? 'th' : 'td', - { - key, - className: classNames(this.props.hasFixedColumnWidths ? width : null), - scope: (key === this.props.rowHeaderColumnKey) ? 'row' : null, - }, - row[key], - ) - ))} - - ))} - - ); - } - - render() { - return ( -
{this.props.caption}
- {this.getTableHeading(col)} -
- {this.getCaption()} - {this.getHeadings()} - {this.getBody()} -
- ); - } -} - -Table.propTypes = { - caption: PropTypes.oneOfType([ - PropTypes.string, - PropTypes.element, - ]), - className: PropTypes.string, - /** specifies the order and contents of the table's columns and provides display strings for each column's heading. It is composed of an ordered array of objects. Each object contains the following keys: - -1. `label` (string or element; required) contains the display string for each column's heading. -2. `key` (string; required) maps that label to its corresponding datum for each row in `data`, to ensure table data are displayed in their appropriate columns. -3. `columnSortable` (boolean; optional) specifies at the column-level whether the column is sortable. If `columnSortable` is `true`, a sort button will be rendered in the column table heading. It is only required if `tableSortable` is set to `true`. -4. `onSort` (function; conditionally required) specifies what function is called when a sortable column is clicked. It is only required if the column's `columnSortable` is set to `true`. -5. `hideHeader` (boolean; optional) specifies at the column-level whether the column label is visible. A column that is sortable cannot have its label be hidden. -6. `width` (string; conditionally required) only if `hasFixedColumnWidths` is set to `true`, the `` elements' `class` attributes will be set to this value. This allows restricting columns to specific widths. See [Bootstrap's grid documentation](https://getbootstrap.com/docs/4.0/layout/grid/) for `col` class names that can be used. - -The order of objects in `columns` specifies the order of the columns in the table. */ - data: PropTypes.arrayOf(PropTypes.shape({})).isRequired, - /** specifies the order and contents of the table's columns and provides display strings for each column's heading. It is composed of an ordered array of objects. Each object contains the following keys: - -1. `label` (string or element; required) contains the display string for each column's heading. -2. `key` (string; required) maps that label to its corresponding datum for each row in `data`, to ensure table data are displayed in their appropriate columns. -3. `columnSortable` (boolean; optional) specifies at the column-level whether the column is sortable. If `columnSortable` is `true`, a sort button will be rendered in the column table heading. It is only required if `tableSortable` is set to `true`. -4. `onSort` (function; conditionally required) specifies what function is called when a sortable column is clicked. It is only required if the column's `columnSortable` is set to `true`. -5. `hideHeader` (boolean; optional) specifies at the column-level whether the column label is visible. A column that is sortable cannot have its label be hidden. -6. `width` (string; conditionally required) only if `hasFixedColumnWidths` is set to `true`, the `` elements' `class` attributes will be set to this value. This allows restricting columns to specific widths. See [Bootstrap's grid documentation](https://getbootstrap.com/docs/4.0/layout/grid/) for `col` class names that can be used. - -The order of objects in `columns` specifies the order of the columns in the table. */ - columns: PropTypes.arrayOf(PropTypes.shape({ - key: PropTypes.string.isRequired, - label: PropTypes.oneOfType([ - PropTypes.string, - PropTypes.element, - ]).isRequired, - columnSortable: isRequiredIf(PropTypes.bool, props => props.tableSortable), - onSort: isRequiredIf(PropTypes.func, props => props.columnSortable), - hideHeader: PropTypes.bool, - width: isRequiredIf(PropTypes.string, props => props.hasFixedColumnWidths), - })).isRequired, - /** Specifies Bootstrap class names to apply to the table heading. Options are detailed in [Bootstrap's docs](https://getbootstrap.com/docs/4.0/content/tables/#table-head-options). - */ - headingClassName: PropTypes.arrayOf(PropTypes.string), - /** Specifies whether the table is sortable. This setting supercedes column-level sortability, so if it is `false`, no sortable components will be rendered. */ - tableSortable: PropTypes.bool, - /** Specifies whether the table's columns have fixed widths. Every element in `columns` must define a `width` if this is `true`. - */ - hasFixedColumnWidths: PropTypes.bool, - /* eslint-disable react/require-default-props */ - /** Specifies the key of the column that is sorted by default. It is only required if `tableSortable` is set to `true`. */ - defaultSortedColumn: isRequiredIf(PropTypes.string, props => props.tableSortable), - /* eslint-disable react/require-default-props */ - /** Specifies the direction the `defaultSortedColumn` is sorted in by default; it will typically be either 'asc' or 'desc'. It is only required if `tableSortable` is set to `true`. */ - defaultSortDirection: isRequiredIf(PropTypes.string, props => props.tableSortable), - /** Specifies the screen reader only text that accompanies the sort buttons for sortable columns. It takes the form of an object containing the following keys: - -1. `asc`: (string) specifies the screen reader only text for sort buttons in the ascending state. -2. `desc`: (string) specifies the screen reader only text for sort buttons in the descending state. -3. `defaultText`: (string) specifies the screen reader only text for sort buttons that are not engaged. - -It is only required if `tableSortable` is set to `true`. - -Default: - -```javascript -{ - asc: 'sort ascending', - desc: 'sort descending', - defaultText: 'click to sort', -} -``` */ - sortButtonsScreenReaderText: isRequiredIf( - PropTypes.shape({ - asc: PropTypes.string, - desc: PropTypes.string, - defaultText: PropTypes.string, - }), - props => props.tableSortable, - ), - /** Specifies the key for the column that should act as a row header. Rather than rendering as `` elements, -cells in this column will render as `` */ - rowHeaderColumnKey: PropTypes.string, -}; - -Table.defaultProps = { - caption: null, - className: undefined, - headingClassName: [], - tableSortable: false, - hasFixedColumnWidths: false, - sortButtonsScreenReaderText: { - asc: 'sort ascending', - desc: 'sort descending', - defaultText: 'click to sort', - }, -}; - -export default withDeprecatedProps(Table, 'TableDeprecated', { - className: { - deprType: DeprTypes.FORMAT, - expect: value => typeof value === 'string', - transform: value => (Array.isArray(value) ? value.join(' ') : value), - message: 'It should be a string.', - }, -}); diff --git a/src/Tabs/README.md b/src/Tabs/README.md index 432b582cd8..a12c6e7bf4 100644 --- a/src/Tabs/README.md +++ b/src/Tabs/README.md @@ -8,9 +8,7 @@ categories: - Navigation status: 'Stable' designStatus: 'Done' -devStatus: 'TO DO' -notes: | - TODO: Remove subcomponent of deprecated implementation soon +devStatus: 'Done' ---

@@ -173,25 +171,3 @@ notes: | ``` - -*** - -## Tabs.Deprecated - -
- -### Basic usage - -```jsx live - -

Hello I am the first panel
-
Hello I am the second panel
-
Hello I am the third panel
- -``` diff --git a/src/Tabs/_variables.scss b/src/Tabs/_variables.scss index 1aa61d194a..e240db27f1 100644 --- a/src/Tabs/_variables.scss +++ b/src/Tabs/_variables.scss @@ -1,3 +1,3 @@ -$tab-notification-height: 1rem !default; -$tab-notification-width: 1rem !default; -$tab-notification-font-size: $font-size-xs !default; +$tab-notification-height: var(--pgn-size-tabs-notification-height) !default; +$tab-notification-width: var(--pgn-size-tabs-notification-width) !default; +$tab-notification-font-size: var(--pgn-typography-tabs-notification-font-size) !default; diff --git a/src/Tabs/deprecated/Tabs.scss b/src/Tabs/deprecated/Tabs.scss deleted file mode 100644 index 1ba525bc68..0000000000 --- a/src/Tabs/deprecated/Tabs.scss +++ /dev/null @@ -1,3 +0,0 @@ -.nav-tabs .nav-link { - background: transparent; -} diff --git a/src/Tabs/deprecated/Tabs.test.jsx b/src/Tabs/deprecated/Tabs.test.jsx deleted file mode 100644 index 854f2e2037..0000000000 --- a/src/Tabs/deprecated/Tabs.test.jsx +++ /dev/null @@ -1,43 +0,0 @@ -import React from 'react'; -import { shallow } from 'enzyme'; -import Tabs from './index'; - -const props = { - labels: [ - 'first', - 'second', - 'third', - ], - children: [ -
first
, -
second
, -
third
, - ], -}; - -const tabSelectedAtIndex = (index, wrapper) => { - wrapper.find('button').forEach((node, i) => { - expect(node.prop('aria-selected')).toEqual(i === index); - }); - - wrapper.find('.tab-pane').forEach((node, i) => { - expect(node.hasClass('active')).toEqual(i === index); - }); -}; - -describe('', () => { - it('renders with first tab selected', () => { - const wrapper = shallow(); - tabSelectedAtIndex(0, wrapper); - }); - - describe('switches tab selection', () => { - it('on click', () => { - const wrapper = shallow(); - wrapper.find('button').forEach((node, i) => { - node.simulate('click'); - tabSelectedAtIndex(i, wrapper); - }); - }); - }); -}); diff --git a/src/Tabs/deprecated/index.jsx b/src/Tabs/deprecated/index.jsx deleted file mode 100644 index 860e4290ff..0000000000 --- a/src/Tabs/deprecated/index.jsx +++ /dev/null @@ -1,117 +0,0 @@ -// TODO: @jaebradley fix these eslint errors -/* eslint-disable jsx-a11y/click-events-have-key-events */ -/* eslint-disable jsx-a11y/anchor-is-valid */ -/* eslint-disable max-len */ -import React from 'react'; -import classNames from 'classnames'; -import PropTypes from 'prop-types'; - -import newId from '../../utils/newId'; - -class Tabs extends React.Component { - constructor(props) { - super(props); - - this.toggle = this.toggle.bind(this); - this.state = { - activeTab: 0, - uuid: newId('tabInterface'), - }; - } - - toggle(tab) { - if (this.state.activeTab !== tab) { - this.setState({ - activeTab: tab, - }); - } - } - - genLabelId(index) { - return `tab-label-${this.state.uuid}-${index}`; - } - - genPanelId(index) { - return `tab-panel-${this.state.uuid}-${index}`; - } - - buildLabels() { - return this.props.labels.map((label, i) => { - const selected = this.state.activeTab === i; - const labelId = this.genLabelId(i); - - return ( -
  • - {/* eslint-disable-next-line react/button-has-type */} - -
  • - ); - }); - } - - buildPanels() { - return this.props.children.map((panel, i) => { - const selected = this.state.activeTab === i; - const panelId = this.genPanelId(i); - - return ( -
    - {panel} -
    - ); - }); - } - - render() { - const labels = this.buildLabels(); - const panels = this.buildPanels(); - - return ( -
    -
      - {labels} -
    -
    - {panels} -
    -
    - ); - } -} -// TODO: custom validator that ensures labels and panels are the same length -Tabs.propTypes = { - /** specifies the list of elements that will be displayed within each of the tabbed views. It is the content relevant to each label. Children should not be passed as Props, but should instead be nested between the opening and closing ` ` tags. */ - labels: PropTypes.arrayOf(PropTypes.node).isRequired, - /** specifies the list of headings that will appear on all of the tabs that will be created. - */ - children: PropTypes.arrayOf(PropTypes.element).isRequired, -}; - -export default Tabs; diff --git a/src/Tabs/index.jsx b/src/Tabs/index.jsx index 9c4d335860..bc59227c8e 100644 --- a/src/Tabs/index.jsx +++ b/src/Tabs/index.jsx @@ -2,7 +2,6 @@ import React, { useEffect, useMemo, useRef } from 'react'; import BaseTabs from 'react-bootstrap/Tabs'; import classNames from 'classnames'; import PropTypes from 'prop-types'; -import TabsDeprecated from './deprecated'; import Bubble from '../Bubble'; import Dropdown from '../Dropdown'; import useIndexOfLastVisibleChild from '../hooks/useIndexOfLastVisibleChild'; @@ -72,7 +71,7 @@ function Tabs({ const tabsChildren = useMemo(() => { const indexOfOverflowStart = indexOfLastVisibleChild + 1; const childrenList = React.Children.map(children, (child, index) => { - if (child?.type?.name !== 'Tab') { + if (child?.type?.name !== 'Tab' && process.env.NODE_ENV === 'development') { // eslint-disable-next-line no-console console.error( `Tabs children can only be of type Tab. ${children[index]} was passed instead.`, @@ -192,8 +191,6 @@ Tabs.defaultProps = { activeKey: undefined, }; -Tabs.Deprecated = TabsDeprecated; - export default Tabs; export { Tab }; export { default as TabContainer } from 'react-bootstrap/TabContainer'; diff --git a/src/TextArea/README.md b/src/TextArea/README.md deleted file mode 100644 index 4df2445e01..0000000000 --- a/src/TextArea/README.md +++ /dev/null @@ -1,63 +0,0 @@ ---- -title: 'TextArea' -type: 'component' -components: -- TextArea -categories: -- Forms (deprecated) -status: 'Deprecate Soon' -designStatus: 'TBD' -devStatus: 'To Do' -notes: | - Replaced by Input and ValidationFormGroup ---- - -## minimal usage - -```jsx live -