diff --git a/.eslintrc.json b/.eslintrc.json new file mode 100644 index 0000000..0872714 --- /dev/null +++ b/.eslintrc.json @@ -0,0 +1,29 @@ +{ + "env": { + "es2021": true, + "node": true + }, + "extends": [ + "standard", + "plugin:@typescript-eslint/recommended", + "plugin:security/recommended-legacy" + ], + "overrides": [], + "parser": "@typescript-eslint/parser", + "parserOptions": { + "ecmaVersion": "latest", + "sourceType": "module" + }, + "rules": { + "semi": ["error", "always"], + "no-unused-vars": "off", + "no-console": "off", + "@typescript-eslint/no-unused-vars": ["warn"], + "@typescript-eslint/no-var-requires": "off", + "space-before-function-paren": "off", + "security/detect-non-literal-fs-filename": "off", + "security/detect-non-literal-require": "off", + "security/detect-non-literal-regexp": "off", + "indent": "off" + } +} diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml new file mode 100644 index 0000000..8aa8219 --- /dev/null +++ b/.github/workflows/codeql.yml @@ -0,0 +1,83 @@ +# For most projects, this workflow file will not need changing; you simply need +# to commit it to your repository. +# +# You may wish to alter this file to override the set of languages analyzed, +# or to provide custom queries or build logic. +# +# ******** NOTE ******** +# We have attempted to detect the languages in your repository. Please check +# the `language` matrix defined below to confirm you have the correct set of +# supported CodeQL languages. +# +name: 'CodeQL' + +on: + push: + branches: ['main'] + pull_request: + branches: ['main'] + schedule: + - cron: '21 12 * * 2' + +jobs: + analyze: + name: Analyze + # Runner size impacts CodeQL analysis time. To learn more, please see: + # - https://gh.io/recommended-hardware-resources-for-running-codeql + # - https://gh.io/supported-runners-and-hardware-resources + # - https://gh.io/using-larger-runners + # Consider using larger runners for possible analysis time improvements. + runs-on: ${{ (matrix.language == 'swift' && 'macos-latest') || 'ubuntu-latest' }} + timeout-minutes: ${{ (matrix.language == 'swift' && 120) || 360 }} + permissions: + # required for all workflows + security-events: write + + # only required for workflows in private repositories + actions: read + contents: read + + strategy: + fail-fast: false + matrix: + language: [] + # CodeQL supports [ 'c-cpp', 'csharp', 'go', 'java-kotlin', 'javascript-typescript', 'python', 'ruby', 'swift' ] + # Use only 'java-kotlin' to analyze code written in Java, Kotlin or both + # Use only 'javascript-typescript' to analyze code written in JavaScript, TypeScript or both + # Learn more about CodeQL language support at https://aka.ms/codeql-docs/language-support + + steps: + - name: Checkout repository + uses: actions/checkout@v4 + + # Initializes the CodeQL tools for scanning. + - name: Initialize CodeQL + uses: github/codeql-action/init@v3 + with: + languages: ${{ matrix.language }} + # If you wish to specify custom queries, you can do so here or in a config file. + # By default, queries listed here will override any specified in a config file. + # Prefix the list here with "+" to use these queries and those in the config file. + + # For more details on CodeQL's query packs, refer to: https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs + # queries: security-extended,security-and-quality + + # Autobuild attempts to build any compiled languages (C/C++, C#, Go, Java, or Swift). + # If this step fails, then you should remove it and run the build manually (see below) + - name: Autobuild + uses: github/codeql-action/autobuild@v3 + + # ℹī¸ Command-line programs to run using the OS shell. + # 📚 See https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsrun + + # If the Autobuild fails above, remove it and uncomment the following three lines. + # modify them (or add more) to build your code if your project, please refer to the EXAMPLE below for guidance. + + # - run: | + # echo "Run, Build Application using script" + # ./location_of_script_within_repo/buildscript.sh + + - name: Perform CodeQL Analysis + uses: github/codeql-action/analyze@v3 + with: + category: '/language:${{matrix.language}}' diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml new file mode 100644 index 0000000..eca6899 --- /dev/null +++ b/.github/workflows/node.js.yml @@ -0,0 +1,28 @@ +name: Node.js CI + +on: + pull_request: + branches: ['main'] + +jobs: + build: + name: Lint & Build + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [18.x, 19.x, 20.x, 21.x] + + steps: + - uses: actions/checkout@v4 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v4 + with: + node-version: ${{ matrix.node-version }} + cache: 'yarn' + - name: Install Dependencies + run: yarn install --frozen-lockfile + - name: Lint + run: yarn lint + - name: Build + run: yarn build diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..d90946f --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,74 @@ +name: Publish to Registry + +on: + release: + types: [created] + +jobs: + build: + name: Build & Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + - name: Use Node.js 21.0 + uses: actions/setup-node@v3 + with: + node-version: 21.0 + cache: 'yarn' + - name: Install Dependencies + run: yarn install --frozen-lockfile + - name: Lint + run: yarn lint + - name: Build + run: yarn build + + publish-npm: + name: Publish to NPM + needs: build + runs-on: ubuntu-latest + permissions: + contents: read + id-token: write + environment: + name: NPM + steps: + - uses: actions/checkout@v4 + - name: Use Node.js 21.0 + uses: actions/setup-node@v4 + with: + node-version: 21.0 + cache: 'yarn' + registry-url: https://registry.npmjs.org/ + - name: Install Dependencies + run: yarn install --frozen-lockfile + - name: Build + run: yarn build + - name: Publish + run: npm publish --provenance --access public + env: + NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} + + publish-github: + name: Publish to GitHub + needs: build + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - uses: actions/checkout@v4 + - name: Use Node.js 21.0 + uses: actions/setup-node@v4 + with: + node-version: 21.0 + cache: 'yarn' + registry-url: https://npm.pkg.github.com + scope: '@raresail' + - name: Install Dependencies + run: yarn install --frozen-lockfile + - name: Build + run: yarn build + - name: Publish + run: npm publish --access public + env: + NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} diff --git a/.gitignore b/.gitignore index c6bba59..8782b54 100644 --- a/.gitignore +++ b/.gitignore @@ -128,3 +128,5 @@ dist .yarn/build-state.yml .yarn/install-state.gz .pnp.* +.DS_Store +src/icons diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..e5e3804 --- /dev/null +++ b/.npmignore @@ -0,0 +1,2 @@ +src +post-build.icons.js diff --git a/.prettierrc b/.prettierrc new file mode 100644 index 0000000..e9c0f50 --- /dev/null +++ b/.prettierrc @@ -0,0 +1,4 @@ +{ + "trailingComma": "none", + "singleQuote": true +} diff --git a/.svgrrc.js b/.svgrrc.js new file mode 100644 index 0000000..de6c365 --- /dev/null +++ b/.svgrrc.js @@ -0,0 +1,14 @@ +const path = require('path'); + +module.exports = { + template: require('./templates/svg.js'), + typescript: true, + outDir: path.join('src', 'icons'), + memo: true, + icon: true, + svgProps: { + className: '{className}', + fill: "{'#000'}", + style: '{style}' + } +}; diff --git a/README.md b/README.md index b9cab06..457cadc 100644 --- a/README.md +++ b/README.md @@ -1 +1,56 @@ -# react-ionicons \ No newline at end of file +# @raresail/react-ionicons + +### The current version uses the ionicons version `7.3.0` + +This packages uses the svg icons from [ionic-team/ionicons](https://github.com/ionic-team/ionicons) and builds them as React Components to be used in the application + +### Usage + +Install the module + +```bash +npm install --save @raresail/react-ionicons; +``` + +```bash +yarn add @raresail/react-ionicons; +``` + +Import the icons + +```ts +import { AddCircleOutline } from '@raresail/react-ionicons'; +``` + +Use the icon, to change the size of the icon use the `font-size` property + +```tsx +function Component() { + return ( + + ); +} +``` + +### Properties + +| Name | Type | Default | +| ----------- | ------------- | -------- | +| svgProps | SVGProps | {} | +| style | CSSProperties | {} | +| strokeWidth | number | 32 or 16 | +| className | string | | +| color | string | #000 | diff --git a/package.json b/package.json new file mode 100644 index 0000000..d8482bb --- /dev/null +++ b/package.json @@ -0,0 +1,44 @@ +{ + "name": "@raresail/react-ionicons", + "version": "1.0.0", + "repository": "git@github.com:RaresAil/react-ionicons.git", + "author": "RaresAil ", + "license": "MIT", + "private": false, + "main": "dist/cjs/index.js", + "module": "dist/esm/index.js", + "types": "dist/index.d.ts", + "files": [ + "dist" + ], + "devDependencies": { + "@rollup/plugin-commonjs": "^25.0.7", + "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-terser": "^0.4.4", + "@rollup/plugin-typescript": "^11.1.6", + "@svgr/cli": "^8.1.0", + "@types/react": "^18.2.70", + "@typescript-eslint/eslint-plugin": "^6.13.2", + "@typescript-eslint/parser": "^6.13.2", + "eslint": "^8.55.0", + "eslint-config-standard": "^17.1.0", + "eslint-plugin-import": "^2.29.0", + "eslint-plugin-n": "^16.3.1", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-security": "^2.1.1", + "postcss": "^8.4.38", + "react": "^18.2.0", + "rimraf": "^5.0.5", + "rollup": "^4.13.0", + "rollup-plugin-dts": "^6.1.0", + "rollup-plugin-peer-deps-external": "^2.2.4", + "rollup-plugin-postcss": "^4.0.2", + "tslib": "^2.6.2", + "typescript": "^5.4.3" + }, + "scripts": { + "build:icons": "rimraf ./src/icons && svgr ./src/svg && node post-build-icons.js", + "build": "rimraf ./dist && yarn run build:icons && rollup -c --bundleConfigAsCjs", + "lint": "eslint src/**/*.ts" + } +} diff --git a/post-build-icons.js b/post-build-icons.js new file mode 100644 index 0000000..d4f48d2 --- /dev/null +++ b/post-build-icons.js @@ -0,0 +1,36 @@ +const fs = require('fs/promises'); +const path = require('path'); + +(async () => { + const iconsPath = path.join('src', 'icons'); + const icons = await fs.readdir(iconsPath, { + encoding: 'utf8' + }); + + await Promise.all( + icons.map(async (file) => { + const iconPath = path.join(iconsPath, file); + const content = await fs.readFile(iconPath, { + encoding: 'utf8' + }); + + await fs.writeFile( + iconPath, + content + .replace(/'#000'/gm, "color || '#000'") + .replace(/"#000"/gm, "{color || '#000'}") + .replace( + /strokeWidth={([0-9]+)}/gm, + 'strokeWidth={strokeWidth === undefined ? $1 : strokeWidth}' + ) + .replace( + /strokeWidth: ([0-9]+)/gm, + 'strokeWidth: strokeWidth === undefined ? $1 : strokeWidth' + ), + { + encoding: 'utf8' + } + ); + }) + ); +})(); diff --git a/rollup.config.js b/rollup.config.js new file mode 100644 index 0000000..4e7d749 --- /dev/null +++ b/rollup.config.js @@ -0,0 +1,43 @@ +// rollup.config.js +import resolve from '@rollup/plugin-node-resolve'; +import commonjs from '@rollup/plugin-commonjs'; +import typescript from '@rollup/plugin-typescript'; +import dts from 'rollup-plugin-dts'; +import terser from '@rollup/plugin-terser'; +import peerDepsExternal from 'rollup-plugin-peer-deps-external'; +import postcss from 'rollup-plugin-postcss'; + +const packageJson = require('./package.json'); + +export default [ + { + input: 'src/index.ts', + output: [ + { + file: packageJson.main, + format: 'cjs', + sourcemap: false + }, + { + file: packageJson.module, + format: 'esm', + sourcemap: false + } + ], + plugins: [ + peerDepsExternal(), + resolve(), + commonjs(), + typescript({ tsconfig: './tsconfig.json' }), + terser(), + postcss() + ], + external: ['react', 'react-dom'] + }, + { + input: 'src/index.ts', + output: [{ file: 'dist/index.d.ts', format: 'es' }], + plugins: [dts.default()], + external: [/\.css$/] + } +]; diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 0000000..838008a --- /dev/null +++ b/src/index.ts @@ -0,0 +1 @@ +export * from './icons'; diff --git a/src/svg/accessibility-outline.svg b/src/svg/accessibility-outline.svg new file mode 100644 index 0000000..499b826 --- /dev/null +++ b/src/svg/accessibility-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/accessibility-sharp.svg b/src/svg/accessibility-sharp.svg new file mode 100644 index 0000000..94442ae --- /dev/null +++ b/src/svg/accessibility-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/accessibility.svg b/src/svg/accessibility.svg new file mode 100644 index 0000000..f7b0b5a --- /dev/null +++ b/src/svg/accessibility.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/add-circle-outline.svg b/src/svg/add-circle-outline.svg new file mode 100644 index 0000000..4d0a78d --- /dev/null +++ b/src/svg/add-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/add-circle-sharp.svg b/src/svg/add-circle-sharp.svg new file mode 100644 index 0000000..f1398a0 --- /dev/null +++ b/src/svg/add-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/add-circle.svg b/src/svg/add-circle.svg new file mode 100644 index 0000000..37172b5 --- /dev/null +++ b/src/svg/add-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/add-outline.svg b/src/svg/add-outline.svg new file mode 100644 index 0000000..3469905 --- /dev/null +++ b/src/svg/add-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/add-sharp.svg b/src/svg/add-sharp.svg new file mode 100644 index 0000000..46dc715 --- /dev/null +++ b/src/svg/add-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/add.svg b/src/svg/add.svg new file mode 100644 index 0000000..3469905 --- /dev/null +++ b/src/svg/add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/airplane-outline.svg b/src/svg/airplane-outline.svg new file mode 100644 index 0000000..4cb9da7 --- /dev/null +++ b/src/svg/airplane-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/airplane-sharp.svg b/src/svg/airplane-sharp.svg new file mode 100644 index 0000000..55a7450 --- /dev/null +++ b/src/svg/airplane-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/airplane.svg b/src/svg/airplane.svg new file mode 100644 index 0000000..ef8e2ad --- /dev/null +++ b/src/svg/airplane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alarm-outline.svg b/src/svg/alarm-outline.svg new file mode 100644 index 0000000..f33a5d3 --- /dev/null +++ b/src/svg/alarm-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alarm-sharp.svg b/src/svg/alarm-sharp.svg new file mode 100644 index 0000000..ba9110e --- /dev/null +++ b/src/svg/alarm-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alarm.svg b/src/svg/alarm.svg new file mode 100644 index 0000000..1da536a --- /dev/null +++ b/src/svg/alarm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/albums-outline.svg b/src/svg/albums-outline.svg new file mode 100644 index 0000000..75a9f64 --- /dev/null +++ b/src/svg/albums-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/albums-sharp.svg b/src/svg/albums-sharp.svg new file mode 100644 index 0000000..9ae8e18 --- /dev/null +++ b/src/svg/albums-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/albums.svg b/src/svg/albums.svg new file mode 100644 index 0000000..cace219 --- /dev/null +++ b/src/svg/albums.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alert-circle-outline.svg b/src/svg/alert-circle-outline.svg new file mode 100644 index 0000000..e2b22ee --- /dev/null +++ b/src/svg/alert-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alert-circle-sharp.svg b/src/svg/alert-circle-sharp.svg new file mode 100644 index 0000000..98a02d0 --- /dev/null +++ b/src/svg/alert-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alert-circle.svg b/src/svg/alert-circle.svg new file mode 100644 index 0000000..06c58aa --- /dev/null +++ b/src/svg/alert-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alert-outline.svg b/src/svg/alert-outline.svg new file mode 100644 index 0000000..e087465 --- /dev/null +++ b/src/svg/alert-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alert-sharp.svg b/src/svg/alert-sharp.svg new file mode 100644 index 0000000..b628943 --- /dev/null +++ b/src/svg/alert-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/alert.svg b/src/svg/alert.svg new file mode 100644 index 0000000..e087465 --- /dev/null +++ b/src/svg/alert.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/american-football-outline.svg b/src/svg/american-football-outline.svg new file mode 100644 index 0000000..8d6db54 --- /dev/null +++ b/src/svg/american-football-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/american-football-sharp.svg b/src/svg/american-football-sharp.svg new file mode 100644 index 0000000..3f22fd7 --- /dev/null +++ b/src/svg/american-football-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/american-football.svg b/src/svg/american-football.svg new file mode 100644 index 0000000..ec602bd --- /dev/null +++ b/src/svg/american-football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/analytics-outline.svg b/src/svg/analytics-outline.svg new file mode 100644 index 0000000..ac3b0aa --- /dev/null +++ b/src/svg/analytics-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/analytics-sharp.svg b/src/svg/analytics-sharp.svg new file mode 100644 index 0000000..0da7996 --- /dev/null +++ b/src/svg/analytics-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/analytics.svg b/src/svg/analytics.svg new file mode 100644 index 0000000..a8f59ad --- /dev/null +++ b/src/svg/analytics.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/aperture-outline.svg b/src/svg/aperture-outline.svg new file mode 100644 index 0000000..7df8648 --- /dev/null +++ b/src/svg/aperture-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/aperture-sharp.svg b/src/svg/aperture-sharp.svg new file mode 100644 index 0000000..41ffc30 --- /dev/null +++ b/src/svg/aperture-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/aperture.svg b/src/svg/aperture.svg new file mode 100644 index 0000000..96b2284 --- /dev/null +++ b/src/svg/aperture.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/apps-outline.svg b/src/svg/apps-outline.svg new file mode 100644 index 0000000..fa050b4 --- /dev/null +++ b/src/svg/apps-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/apps-sharp.svg b/src/svg/apps-sharp.svg new file mode 100644 index 0000000..708cb4b --- /dev/null +++ b/src/svg/apps-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/apps.svg b/src/svg/apps.svg new file mode 100644 index 0000000..cf78572 --- /dev/null +++ b/src/svg/apps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/archive-outline.svg b/src/svg/archive-outline.svg new file mode 100644 index 0000000..9ea261a --- /dev/null +++ b/src/svg/archive-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/archive-sharp.svg b/src/svg/archive-sharp.svg new file mode 100644 index 0000000..e144f6c --- /dev/null +++ b/src/svg/archive-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/archive.svg b/src/svg/archive.svg new file mode 100644 index 0000000..65b4d5f --- /dev/null +++ b/src/svg/archive.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-back-circle-outline.svg b/src/svg/arrow-back-circle-outline.svg new file mode 100644 index 0000000..76f7eae --- /dev/null +++ b/src/svg/arrow-back-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-back-circle-sharp.svg b/src/svg/arrow-back-circle-sharp.svg new file mode 100644 index 0000000..1b593ea --- /dev/null +++ b/src/svg/arrow-back-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-back-circle.svg b/src/svg/arrow-back-circle.svg new file mode 100644 index 0000000..602fcdb --- /dev/null +++ b/src/svg/arrow-back-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-back-outline.svg b/src/svg/arrow-back-outline.svg new file mode 100644 index 0000000..0ad3b17 --- /dev/null +++ b/src/svg/arrow-back-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-back-sharp.svg b/src/svg/arrow-back-sharp.svg new file mode 100644 index 0000000..780f821 --- /dev/null +++ b/src/svg/arrow-back-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-back.svg b/src/svg/arrow-back.svg new file mode 100644 index 0000000..0ad3b17 --- /dev/null +++ b/src/svg/arrow-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-down-circle-outline.svg b/src/svg/arrow-down-circle-outline.svg new file mode 100644 index 0000000..c40a80d --- /dev/null +++ b/src/svg/arrow-down-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-down-circle-sharp.svg b/src/svg/arrow-down-circle-sharp.svg new file mode 100644 index 0000000..066a8cc --- /dev/null +++ b/src/svg/arrow-down-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-down-circle.svg b/src/svg/arrow-down-circle.svg new file mode 100644 index 0000000..efb7487 --- /dev/null +++ b/src/svg/arrow-down-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-down-left-box-outline.svg b/src/svg/arrow-down-left-box-outline.svg new file mode 100644 index 0000000..b1bb7df --- /dev/null +++ b/src/svg/arrow-down-left-box-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/arrow-down-left-box-sharp.svg b/src/svg/arrow-down-left-box-sharp.svg new file mode 100644 index 0000000..eb275dd --- /dev/null +++ b/src/svg/arrow-down-left-box-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-down-left-box.svg b/src/svg/arrow-down-left-box.svg new file mode 100644 index 0000000..93d8b37 --- /dev/null +++ b/src/svg/arrow-down-left-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-down-outline.svg b/src/svg/arrow-down-outline.svg new file mode 100644 index 0000000..9bf3a0c --- /dev/null +++ b/src/svg/arrow-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-down-right-box-outline.svg b/src/svg/arrow-down-right-box-outline.svg new file mode 100644 index 0000000..6cb4535 --- /dev/null +++ b/src/svg/arrow-down-right-box-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/arrow-down-right-box-sharp.svg b/src/svg/arrow-down-right-box-sharp.svg new file mode 100644 index 0000000..16f9741 --- /dev/null +++ b/src/svg/arrow-down-right-box-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-down-right-box.svg b/src/svg/arrow-down-right-box.svg new file mode 100644 index 0000000..75edd04 --- /dev/null +++ b/src/svg/arrow-down-right-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-down-sharp.svg b/src/svg/arrow-down-sharp.svg new file mode 100644 index 0000000..d1feacb --- /dev/null +++ b/src/svg/arrow-down-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-down.svg b/src/svg/arrow-down.svg new file mode 100644 index 0000000..9bf3a0c --- /dev/null +++ b/src/svg/arrow-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-forward-circle-outline.svg b/src/svg/arrow-forward-circle-outline.svg new file mode 100644 index 0000000..62a62a2 --- /dev/null +++ b/src/svg/arrow-forward-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-forward-circle-sharp.svg b/src/svg/arrow-forward-circle-sharp.svg new file mode 100644 index 0000000..c1254ea --- /dev/null +++ b/src/svg/arrow-forward-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-forward-circle.svg b/src/svg/arrow-forward-circle.svg new file mode 100644 index 0000000..aa56bb9 --- /dev/null +++ b/src/svg/arrow-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-forward-outline.svg b/src/svg/arrow-forward-outline.svg new file mode 100644 index 0000000..f8ef63f --- /dev/null +++ b/src/svg/arrow-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-forward-sharp.svg b/src/svg/arrow-forward-sharp.svg new file mode 100644 index 0000000..c33b937 --- /dev/null +++ b/src/svg/arrow-forward-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-forward.svg b/src/svg/arrow-forward.svg new file mode 100644 index 0000000..f8ef63f --- /dev/null +++ b/src/svg/arrow-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-redo-circle-outline.svg b/src/svg/arrow-redo-circle-outline.svg new file mode 100644 index 0000000..7c24f3a --- /dev/null +++ b/src/svg/arrow-redo-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-redo-circle-sharp.svg b/src/svg/arrow-redo-circle-sharp.svg new file mode 100644 index 0000000..6b5b3c7 --- /dev/null +++ b/src/svg/arrow-redo-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-redo-circle.svg b/src/svg/arrow-redo-circle.svg new file mode 100644 index 0000000..ca4d5fd --- /dev/null +++ b/src/svg/arrow-redo-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-redo-outline.svg b/src/svg/arrow-redo-outline.svg new file mode 100644 index 0000000..11f9aad --- /dev/null +++ b/src/svg/arrow-redo-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-redo-sharp.svg b/src/svg/arrow-redo-sharp.svg new file mode 100644 index 0000000..3f55bce --- /dev/null +++ b/src/svg/arrow-redo-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-redo.svg b/src/svg/arrow-redo.svg new file mode 100644 index 0000000..96fb02d --- /dev/null +++ b/src/svg/arrow-redo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-undo-circle-outline.svg b/src/svg/arrow-undo-circle-outline.svg new file mode 100644 index 0000000..3e22a7f --- /dev/null +++ b/src/svg/arrow-undo-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-undo-circle-sharp.svg b/src/svg/arrow-undo-circle-sharp.svg new file mode 100644 index 0000000..df00246 --- /dev/null +++ b/src/svg/arrow-undo-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-undo-circle.svg b/src/svg/arrow-undo-circle.svg new file mode 100644 index 0000000..4750772 --- /dev/null +++ b/src/svg/arrow-undo-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-undo-outline.svg b/src/svg/arrow-undo-outline.svg new file mode 100644 index 0000000..3075ac7 --- /dev/null +++ b/src/svg/arrow-undo-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-undo-sharp.svg b/src/svg/arrow-undo-sharp.svg new file mode 100644 index 0000000..ab9dd81 --- /dev/null +++ b/src/svg/arrow-undo-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-undo.svg b/src/svg/arrow-undo.svg new file mode 100644 index 0000000..a6be357 --- /dev/null +++ b/src/svg/arrow-undo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-up-circle-outline.svg b/src/svg/arrow-up-circle-outline.svg new file mode 100644 index 0000000..f2346f8 --- /dev/null +++ b/src/svg/arrow-up-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-up-circle-sharp.svg b/src/svg/arrow-up-circle-sharp.svg new file mode 100644 index 0000000..f0c890b --- /dev/null +++ b/src/svg/arrow-up-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-up-circle.svg b/src/svg/arrow-up-circle.svg new file mode 100644 index 0000000..cf7a5b5 --- /dev/null +++ b/src/svg/arrow-up-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-up-left-box-outline.svg b/src/svg/arrow-up-left-box-outline.svg new file mode 100644 index 0000000..e3d35a7 --- /dev/null +++ b/src/svg/arrow-up-left-box-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/arrow-up-left-box-sharp.svg b/src/svg/arrow-up-left-box-sharp.svg new file mode 100644 index 0000000..e0efc33 --- /dev/null +++ b/src/svg/arrow-up-left-box-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-up-left-box.svg b/src/svg/arrow-up-left-box.svg new file mode 100644 index 0000000..7a24655 --- /dev/null +++ b/src/svg/arrow-up-left-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-up-outline.svg b/src/svg/arrow-up-outline.svg new file mode 100644 index 0000000..60d3612 --- /dev/null +++ b/src/svg/arrow-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-up-right-box-outline.svg b/src/svg/arrow-up-right-box-outline.svg new file mode 100644 index 0000000..6d0c01d --- /dev/null +++ b/src/svg/arrow-up-right-box-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/arrow-up-right-box-sharp.svg b/src/svg/arrow-up-right-box-sharp.svg new file mode 100644 index 0000000..cd6152d --- /dev/null +++ b/src/svg/arrow-up-right-box-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-up-right-box.svg b/src/svg/arrow-up-right-box.svg new file mode 100644 index 0000000..cd82aac --- /dev/null +++ b/src/svg/arrow-up-right-box.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/arrow-up-sharp.svg b/src/svg/arrow-up-sharp.svg new file mode 100644 index 0000000..48a0739 --- /dev/null +++ b/src/svg/arrow-up-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/arrow-up.svg b/src/svg/arrow-up.svg new file mode 100644 index 0000000..60d3612 --- /dev/null +++ b/src/svg/arrow-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/at-circle-outline.svg b/src/svg/at-circle-outline.svg new file mode 100644 index 0000000..d21dc6a --- /dev/null +++ b/src/svg/at-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/at-circle-sharp.svg b/src/svg/at-circle-sharp.svg new file mode 100644 index 0000000..c29b264 --- /dev/null +++ b/src/svg/at-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/at-circle.svg b/src/svg/at-circle.svg new file mode 100644 index 0000000..e1c7ec6 --- /dev/null +++ b/src/svg/at-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/at-outline.svg b/src/svg/at-outline.svg new file mode 100644 index 0000000..7eb99a4 --- /dev/null +++ b/src/svg/at-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/at-sharp.svg b/src/svg/at-sharp.svg new file mode 100644 index 0000000..8d039a1 --- /dev/null +++ b/src/svg/at-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/at.svg b/src/svg/at.svg new file mode 100644 index 0000000..7eb99a4 --- /dev/null +++ b/src/svg/at.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/attach-outline.svg b/src/svg/attach-outline.svg new file mode 100644 index 0000000..4eb360f --- /dev/null +++ b/src/svg/attach-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/attach-sharp.svg b/src/svg/attach-sharp.svg new file mode 100644 index 0000000..ee74136 --- /dev/null +++ b/src/svg/attach-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/attach.svg b/src/svg/attach.svg new file mode 100644 index 0000000..4eb360f --- /dev/null +++ b/src/svg/attach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/backspace-outline.svg b/src/svg/backspace-outline.svg new file mode 100644 index 0000000..360ca30 --- /dev/null +++ b/src/svg/backspace-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/backspace-sharp.svg b/src/svg/backspace-sharp.svg new file mode 100644 index 0000000..985d9cd --- /dev/null +++ b/src/svg/backspace-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/backspace.svg b/src/svg/backspace.svg new file mode 100644 index 0000000..311e395 --- /dev/null +++ b/src/svg/backspace.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-add-outline.svg b/src/svg/bag-add-outline.svg new file mode 100644 index 0000000..1428298 --- /dev/null +++ b/src/svg/bag-add-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-add-sharp.svg b/src/svg/bag-add-sharp.svg new file mode 100644 index 0000000..c1850f7 --- /dev/null +++ b/src/svg/bag-add-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-add.svg b/src/svg/bag-add.svg new file mode 100644 index 0000000..cae5b3d --- /dev/null +++ b/src/svg/bag-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-check-outline.svg b/src/svg/bag-check-outline.svg new file mode 100644 index 0000000..8bcad53 --- /dev/null +++ b/src/svg/bag-check-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-check-sharp.svg b/src/svg/bag-check-sharp.svg new file mode 100644 index 0000000..ae7a67a --- /dev/null +++ b/src/svg/bag-check-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-check.svg b/src/svg/bag-check.svg new file mode 100644 index 0000000..18e7dc3 --- /dev/null +++ b/src/svg/bag-check.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-handle-outline.svg b/src/svg/bag-handle-outline.svg new file mode 100644 index 0000000..d629756 --- /dev/null +++ b/src/svg/bag-handle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-handle-sharp.svg b/src/svg/bag-handle-sharp.svg new file mode 100644 index 0000000..4b480cd --- /dev/null +++ b/src/svg/bag-handle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-handle.svg b/src/svg/bag-handle.svg new file mode 100644 index 0000000..ba21d0b --- /dev/null +++ b/src/svg/bag-handle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-outline.svg b/src/svg/bag-outline.svg new file mode 100644 index 0000000..2199739 --- /dev/null +++ b/src/svg/bag-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-remove-outline.svg b/src/svg/bag-remove-outline.svg new file mode 100644 index 0000000..096a71f --- /dev/null +++ b/src/svg/bag-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-remove-sharp.svg b/src/svg/bag-remove-sharp.svg new file mode 100644 index 0000000..d53c566 --- /dev/null +++ b/src/svg/bag-remove-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-remove.svg b/src/svg/bag-remove.svg new file mode 100644 index 0000000..14feeb4 --- /dev/null +++ b/src/svg/bag-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag-sharp.svg b/src/svg/bag-sharp.svg new file mode 100644 index 0000000..e53b644 --- /dev/null +++ b/src/svg/bag-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bag.svg b/src/svg/bag.svg new file mode 100644 index 0000000..c81822c --- /dev/null +++ b/src/svg/bag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/balloon-outline.svg b/src/svg/balloon-outline.svg new file mode 100644 index 0000000..a98aef4 --- /dev/null +++ b/src/svg/balloon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/balloon-sharp.svg b/src/svg/balloon-sharp.svg new file mode 100644 index 0000000..a7c83a0 --- /dev/null +++ b/src/svg/balloon-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/balloon.svg b/src/svg/balloon.svg new file mode 100644 index 0000000..c381bf0 --- /dev/null +++ b/src/svg/balloon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ban-outline.svg b/src/svg/ban-outline.svg new file mode 100644 index 0000000..5003eeb --- /dev/null +++ b/src/svg/ban-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ban-sharp.svg b/src/svg/ban-sharp.svg new file mode 100644 index 0000000..9425740 --- /dev/null +++ b/src/svg/ban-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ban.svg b/src/svg/ban.svg new file mode 100644 index 0000000..8a46c95 --- /dev/null +++ b/src/svg/ban.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bandage-outline.svg b/src/svg/bandage-outline.svg new file mode 100644 index 0000000..3bf0d67 --- /dev/null +++ b/src/svg/bandage-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bandage-sharp.svg b/src/svg/bandage-sharp.svg new file mode 100644 index 0000000..1776e3f --- /dev/null +++ b/src/svg/bandage-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bandage.svg b/src/svg/bandage.svg new file mode 100644 index 0000000..3cdcc3f --- /dev/null +++ b/src/svg/bandage.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bar-chart-outline.svg b/src/svg/bar-chart-outline.svg new file mode 100644 index 0000000..ed4586b --- /dev/null +++ b/src/svg/bar-chart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bar-chart-sharp.svg b/src/svg/bar-chart-sharp.svg new file mode 100644 index 0000000..ab87a42 --- /dev/null +++ b/src/svg/bar-chart-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bar-chart.svg b/src/svg/bar-chart.svg new file mode 100644 index 0000000..e971430 --- /dev/null +++ b/src/svg/bar-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/barbell-outline.svg b/src/svg/barbell-outline.svg new file mode 100644 index 0000000..b091214 --- /dev/null +++ b/src/svg/barbell-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/barbell-sharp.svg b/src/svg/barbell-sharp.svg new file mode 100644 index 0000000..4871cf4 --- /dev/null +++ b/src/svg/barbell-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/barbell.svg b/src/svg/barbell.svg new file mode 100644 index 0000000..acc8ddf --- /dev/null +++ b/src/svg/barbell.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/barcode-outline.svg b/src/svg/barcode-outline.svg new file mode 100644 index 0000000..3bb4772 --- /dev/null +++ b/src/svg/barcode-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/barcode-sharp.svg b/src/svg/barcode-sharp.svg new file mode 100644 index 0000000..70cc5a2 --- /dev/null +++ b/src/svg/barcode-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/barcode.svg b/src/svg/barcode.svg new file mode 100644 index 0000000..febd054 --- /dev/null +++ b/src/svg/barcode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/baseball-outline.svg b/src/svg/baseball-outline.svg new file mode 100644 index 0000000..fbe217e --- /dev/null +++ b/src/svg/baseball-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/baseball-sharp.svg b/src/svg/baseball-sharp.svg new file mode 100644 index 0000000..1730473 --- /dev/null +++ b/src/svg/baseball-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/baseball.svg b/src/svg/baseball.svg new file mode 100644 index 0000000..7f501a4 --- /dev/null +++ b/src/svg/baseball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/basket-outline.svg b/src/svg/basket-outline.svg new file mode 100644 index 0000000..3d5b2ce --- /dev/null +++ b/src/svg/basket-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/basket-sharp.svg b/src/svg/basket-sharp.svg new file mode 100644 index 0000000..c650eff --- /dev/null +++ b/src/svg/basket-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/basket.svg b/src/svg/basket.svg new file mode 100644 index 0000000..f20e017 --- /dev/null +++ b/src/svg/basket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/basketball-outline.svg b/src/svg/basketball-outline.svg new file mode 100644 index 0000000..d35ce47 --- /dev/null +++ b/src/svg/basketball-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/basketball-sharp.svg b/src/svg/basketball-sharp.svg new file mode 100644 index 0000000..b2954a5 --- /dev/null +++ b/src/svg/basketball-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/basketball.svg b/src/svg/basketball.svg new file mode 100644 index 0000000..b2954a5 --- /dev/null +++ b/src/svg/basketball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-charging-outline.svg b/src/svg/battery-charging-outline.svg new file mode 100644 index 0000000..ec7c329 --- /dev/null +++ b/src/svg/battery-charging-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-charging-sharp.svg b/src/svg/battery-charging-sharp.svg new file mode 100644 index 0000000..1c9ff77 --- /dev/null +++ b/src/svg/battery-charging-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-charging.svg b/src/svg/battery-charging.svg new file mode 100644 index 0000000..ec7c329 --- /dev/null +++ b/src/svg/battery-charging.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-dead-outline.svg b/src/svg/battery-dead-outline.svg new file mode 100644 index 0000000..2f6964d --- /dev/null +++ b/src/svg/battery-dead-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-dead-sharp.svg b/src/svg/battery-dead-sharp.svg new file mode 100644 index 0000000..56fa070 --- /dev/null +++ b/src/svg/battery-dead-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-dead.svg b/src/svg/battery-dead.svg new file mode 100644 index 0000000..2f6964d --- /dev/null +++ b/src/svg/battery-dead.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-full-outline.svg b/src/svg/battery-full-outline.svg new file mode 100644 index 0000000..8a95617 --- /dev/null +++ b/src/svg/battery-full-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-full-sharp.svg b/src/svg/battery-full-sharp.svg new file mode 100644 index 0000000..19a70e1 --- /dev/null +++ b/src/svg/battery-full-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-full.svg b/src/svg/battery-full.svg new file mode 100644 index 0000000..8a95617 --- /dev/null +++ b/src/svg/battery-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-half-outline.svg b/src/svg/battery-half-outline.svg new file mode 100644 index 0000000..79a2b55 --- /dev/null +++ b/src/svg/battery-half-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-half-sharp.svg b/src/svg/battery-half-sharp.svg new file mode 100644 index 0000000..5ee4591 --- /dev/null +++ b/src/svg/battery-half-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/battery-half.svg b/src/svg/battery-half.svg new file mode 100644 index 0000000..79a2b55 --- /dev/null +++ b/src/svg/battery-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/beaker-outline.svg b/src/svg/beaker-outline.svg new file mode 100644 index 0000000..4df4cf5 --- /dev/null +++ b/src/svg/beaker-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/beaker-sharp.svg b/src/svg/beaker-sharp.svg new file mode 100644 index 0000000..92e1e04 --- /dev/null +++ b/src/svg/beaker-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/beaker.svg b/src/svg/beaker.svg new file mode 100644 index 0000000..f56f034 --- /dev/null +++ b/src/svg/beaker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bed-outline.svg b/src/svg/bed-outline.svg new file mode 100644 index 0000000..1862849 --- /dev/null +++ b/src/svg/bed-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bed-sharp.svg b/src/svg/bed-sharp.svg new file mode 100644 index 0000000..7336c91 --- /dev/null +++ b/src/svg/bed-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bed.svg b/src/svg/bed.svg new file mode 100644 index 0000000..49a47a8 --- /dev/null +++ b/src/svg/bed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/beer-outline.svg b/src/svg/beer-outline.svg new file mode 100644 index 0000000..b958774 --- /dev/null +++ b/src/svg/beer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/beer-sharp.svg b/src/svg/beer-sharp.svg new file mode 100644 index 0000000..89124c2 --- /dev/null +++ b/src/svg/beer-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/beer.svg b/src/svg/beer.svg new file mode 100644 index 0000000..b74099a --- /dev/null +++ b/src/svg/beer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bicycle-outline.svg b/src/svg/bicycle-outline.svg new file mode 100644 index 0000000..f5e1f5b --- /dev/null +++ b/src/svg/bicycle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bicycle-sharp.svg b/src/svg/bicycle-sharp.svg new file mode 100644 index 0000000..c64920d --- /dev/null +++ b/src/svg/bicycle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bicycle.svg b/src/svg/bicycle.svg new file mode 100644 index 0000000..bd5bbe9 --- /dev/null +++ b/src/svg/bicycle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/binoculars-outline.svg b/src/svg/binoculars-outline.svg new file mode 100644 index 0000000..062e4fd --- /dev/null +++ b/src/svg/binoculars-outline.svg @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/src/svg/binoculars-sharp.svg b/src/svg/binoculars-sharp.svg new file mode 100644 index 0000000..9a1d8ed --- /dev/null +++ b/src/svg/binoculars-sharp.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/binoculars.svg b/src/svg/binoculars.svg new file mode 100644 index 0000000..5857753 --- /dev/null +++ b/src/svg/binoculars.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/bluetooth-outline.svg b/src/svg/bluetooth-outline.svg new file mode 100644 index 0000000..5959cd1 --- /dev/null +++ b/src/svg/bluetooth-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bluetooth-sharp.svg b/src/svg/bluetooth-sharp.svg new file mode 100644 index 0000000..fdb8c81 --- /dev/null +++ b/src/svg/bluetooth-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bluetooth.svg b/src/svg/bluetooth.svg new file mode 100644 index 0000000..5d350b5 --- /dev/null +++ b/src/svg/bluetooth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/boat-outline.svg b/src/svg/boat-outline.svg new file mode 100644 index 0000000..f6cf5b6 --- /dev/null +++ b/src/svg/boat-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/boat-sharp.svg b/src/svg/boat-sharp.svg new file mode 100644 index 0000000..3b91fbc --- /dev/null +++ b/src/svg/boat-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/boat.svg b/src/svg/boat.svg new file mode 100644 index 0000000..f4bc154 --- /dev/null +++ b/src/svg/boat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/body-outline.svg b/src/svg/body-outline.svg new file mode 100644 index 0000000..bbfdd3c --- /dev/null +++ b/src/svg/body-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/body-sharp.svg b/src/svg/body-sharp.svg new file mode 100644 index 0000000..06f86ee --- /dev/null +++ b/src/svg/body-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/body.svg b/src/svg/body.svg new file mode 100644 index 0000000..78e2241 --- /dev/null +++ b/src/svg/body.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bonfire-outline.svg b/src/svg/bonfire-outline.svg new file mode 100644 index 0000000..041edd3 --- /dev/null +++ b/src/svg/bonfire-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bonfire-sharp.svg b/src/svg/bonfire-sharp.svg new file mode 100644 index 0000000..b3e6088 --- /dev/null +++ b/src/svg/bonfire-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bonfire.svg b/src/svg/bonfire.svg new file mode 100644 index 0000000..5f87ad7 --- /dev/null +++ b/src/svg/bonfire.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/book-outline.svg b/src/svg/book-outline.svg new file mode 100644 index 0000000..28f4ebc --- /dev/null +++ b/src/svg/book-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/book-sharp.svg b/src/svg/book-sharp.svg new file mode 100644 index 0000000..b88bc2b --- /dev/null +++ b/src/svg/book-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/book.svg b/src/svg/book.svg new file mode 100644 index 0000000..24f21c3 --- /dev/null +++ b/src/svg/book.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bookmark-outline.svg b/src/svg/bookmark-outline.svg new file mode 100644 index 0000000..f9a9349 --- /dev/null +++ b/src/svg/bookmark-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bookmark-sharp.svg b/src/svg/bookmark-sharp.svg new file mode 100644 index 0000000..b92c721 --- /dev/null +++ b/src/svg/bookmark-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bookmark.svg b/src/svg/bookmark.svg new file mode 100644 index 0000000..cbdbac8 --- /dev/null +++ b/src/svg/bookmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bookmarks-outline.svg b/src/svg/bookmarks-outline.svg new file mode 100644 index 0000000..54327b5 --- /dev/null +++ b/src/svg/bookmarks-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bookmarks-sharp.svg b/src/svg/bookmarks-sharp.svg new file mode 100644 index 0000000..e170c28 --- /dev/null +++ b/src/svg/bookmarks-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bookmarks.svg b/src/svg/bookmarks.svg new file mode 100644 index 0000000..b712e89 --- /dev/null +++ b/src/svg/bookmarks.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bowling-ball-outline.svg b/src/svg/bowling-ball-outline.svg new file mode 100644 index 0000000..500f76b --- /dev/null +++ b/src/svg/bowling-ball-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bowling-ball-sharp.svg b/src/svg/bowling-ball-sharp.svg new file mode 100644 index 0000000..f8e78d3 --- /dev/null +++ b/src/svg/bowling-ball-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bowling-ball.svg b/src/svg/bowling-ball.svg new file mode 100644 index 0000000..2b796b4 --- /dev/null +++ b/src/svg/bowling-ball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/briefcase-outline.svg b/src/svg/briefcase-outline.svg new file mode 100644 index 0000000..f5d89ac --- /dev/null +++ b/src/svg/briefcase-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/briefcase-sharp.svg b/src/svg/briefcase-sharp.svg new file mode 100644 index 0000000..653404b --- /dev/null +++ b/src/svg/briefcase-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/briefcase.svg b/src/svg/briefcase.svg new file mode 100644 index 0000000..ae1aa9c --- /dev/null +++ b/src/svg/briefcase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/browsers-outline.svg b/src/svg/browsers-outline.svg new file mode 100644 index 0000000..a373b72 --- /dev/null +++ b/src/svg/browsers-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/browsers-sharp.svg b/src/svg/browsers-sharp.svg new file mode 100644 index 0000000..d123d79 --- /dev/null +++ b/src/svg/browsers-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/browsers.svg b/src/svg/browsers.svg new file mode 100644 index 0000000..8423e0e --- /dev/null +++ b/src/svg/browsers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/brush-outline.svg b/src/svg/brush-outline.svg new file mode 100644 index 0000000..a48cf95 --- /dev/null +++ b/src/svg/brush-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/brush-sharp.svg b/src/svg/brush-sharp.svg new file mode 100644 index 0000000..f3ac69f --- /dev/null +++ b/src/svg/brush-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/brush.svg b/src/svg/brush.svg new file mode 100644 index 0000000..9913ffd --- /dev/null +++ b/src/svg/brush.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bug-outline.svg b/src/svg/bug-outline.svg new file mode 100644 index 0000000..caacd82 --- /dev/null +++ b/src/svg/bug-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bug-sharp.svg b/src/svg/bug-sharp.svg new file mode 100644 index 0000000..6541ab3 --- /dev/null +++ b/src/svg/bug-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bug.svg b/src/svg/bug.svg new file mode 100644 index 0000000..2965887 --- /dev/null +++ b/src/svg/bug.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/build-outline.svg b/src/svg/build-outline.svg new file mode 100644 index 0000000..844ca6d --- /dev/null +++ b/src/svg/build-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/build-sharp.svg b/src/svg/build-sharp.svg new file mode 100644 index 0000000..d540f52 --- /dev/null +++ b/src/svg/build-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/build.svg b/src/svg/build.svg new file mode 100644 index 0000000..ebc659c --- /dev/null +++ b/src/svg/build.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bulb-outline.svg b/src/svg/bulb-outline.svg new file mode 100644 index 0000000..2ce6043 --- /dev/null +++ b/src/svg/bulb-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bulb-sharp.svg b/src/svg/bulb-sharp.svg new file mode 100644 index 0000000..60206a5 --- /dev/null +++ b/src/svg/bulb-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bulb.svg b/src/svg/bulb.svg new file mode 100644 index 0000000..9ac173d --- /dev/null +++ b/src/svg/bulb.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bus-outline.svg b/src/svg/bus-outline.svg new file mode 100644 index 0000000..138aed1 --- /dev/null +++ b/src/svg/bus-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bus-sharp.svg b/src/svg/bus-sharp.svg new file mode 100644 index 0000000..f11005b --- /dev/null +++ b/src/svg/bus-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/bus.svg b/src/svg/bus.svg new file mode 100644 index 0000000..40b7bf2 --- /dev/null +++ b/src/svg/bus.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/business-outline.svg b/src/svg/business-outline.svg new file mode 100644 index 0000000..3b91c68 --- /dev/null +++ b/src/svg/business-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/business-sharp.svg b/src/svg/business-sharp.svg new file mode 100644 index 0000000..23c8365 --- /dev/null +++ b/src/svg/business-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/business.svg b/src/svg/business.svg new file mode 100644 index 0000000..e70f64e --- /dev/null +++ b/src/svg/business.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cafe-outline.svg b/src/svg/cafe-outline.svg new file mode 100644 index 0000000..91bcbf0 --- /dev/null +++ b/src/svg/cafe-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cafe-sharp.svg b/src/svg/cafe-sharp.svg new file mode 100644 index 0000000..c121e1c --- /dev/null +++ b/src/svg/cafe-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cafe.svg b/src/svg/cafe.svg new file mode 100644 index 0000000..9c67745 --- /dev/null +++ b/src/svg/cafe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calculator-outline.svg b/src/svg/calculator-outline.svg new file mode 100644 index 0000000..c51a017 --- /dev/null +++ b/src/svg/calculator-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calculator-sharp.svg b/src/svg/calculator-sharp.svg new file mode 100644 index 0000000..bd13dd2 --- /dev/null +++ b/src/svg/calculator-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calculator.svg b/src/svg/calculator.svg new file mode 100644 index 0000000..fb6f166 --- /dev/null +++ b/src/svg/calculator.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar-clear-outline.svg b/src/svg/calendar-clear-outline.svg new file mode 100644 index 0000000..823cd49 --- /dev/null +++ b/src/svg/calendar-clear-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar-clear-sharp.svg b/src/svg/calendar-clear-sharp.svg new file mode 100644 index 0000000..55cbdff --- /dev/null +++ b/src/svg/calendar-clear-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar-clear.svg b/src/svg/calendar-clear.svg new file mode 100644 index 0000000..ac46bf8 --- /dev/null +++ b/src/svg/calendar-clear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar-number-outline.svg b/src/svg/calendar-number-outline.svg new file mode 100644 index 0000000..411c5e4 --- /dev/null +++ b/src/svg/calendar-number-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar-number-sharp.svg b/src/svg/calendar-number-sharp.svg new file mode 100644 index 0000000..1e06bdc --- /dev/null +++ b/src/svg/calendar-number-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar-number.svg b/src/svg/calendar-number.svg new file mode 100644 index 0000000..e1e28c8 --- /dev/null +++ b/src/svg/calendar-number.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar-outline.svg b/src/svg/calendar-outline.svg new file mode 100644 index 0000000..dae0f76 --- /dev/null +++ b/src/svg/calendar-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar-sharp.svg b/src/svg/calendar-sharp.svg new file mode 100644 index 0000000..48feff4 --- /dev/null +++ b/src/svg/calendar-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/calendar.svg b/src/svg/calendar.svg new file mode 100644 index 0000000..477bd9f --- /dev/null +++ b/src/svg/calendar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/call-outline.svg b/src/svg/call-outline.svg new file mode 100644 index 0000000..ea2b93d --- /dev/null +++ b/src/svg/call-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/call-sharp.svg b/src/svg/call-sharp.svg new file mode 100644 index 0000000..4b8ae42 --- /dev/null +++ b/src/svg/call-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/call.svg b/src/svg/call.svg new file mode 100644 index 0000000..0024154 --- /dev/null +++ b/src/svg/call.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/camera-outline.svg b/src/svg/camera-outline.svg new file mode 100644 index 0000000..cf03db8 --- /dev/null +++ b/src/svg/camera-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/camera-reverse-outline.svg b/src/svg/camera-reverse-outline.svg new file mode 100644 index 0000000..ccfc2a2 --- /dev/null +++ b/src/svg/camera-reverse-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/camera-reverse-sharp.svg b/src/svg/camera-reverse-sharp.svg new file mode 100644 index 0000000..f53185b --- /dev/null +++ b/src/svg/camera-reverse-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/camera-reverse.svg b/src/svg/camera-reverse.svg new file mode 100644 index 0000000..3fcb704 --- /dev/null +++ b/src/svg/camera-reverse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/camera-sharp.svg b/src/svg/camera-sharp.svg new file mode 100644 index 0000000..050907e --- /dev/null +++ b/src/svg/camera-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/camera.svg b/src/svg/camera.svg new file mode 100644 index 0000000..51a9391 --- /dev/null +++ b/src/svg/camera.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/car-outline.svg b/src/svg/car-outline.svg new file mode 100644 index 0000000..3e69a5b --- /dev/null +++ b/src/svg/car-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/car-sharp.svg b/src/svg/car-sharp.svg new file mode 100644 index 0000000..4c231df --- /dev/null +++ b/src/svg/car-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/car-sport-outline.svg b/src/svg/car-sport-outline.svg new file mode 100644 index 0000000..69c8b8b --- /dev/null +++ b/src/svg/car-sport-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/car-sport-sharp.svg b/src/svg/car-sport-sharp.svg new file mode 100644 index 0000000..03c833b --- /dev/null +++ b/src/svg/car-sport-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/car-sport.svg b/src/svg/car-sport.svg new file mode 100644 index 0000000..a15e41e --- /dev/null +++ b/src/svg/car-sport.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/car.svg b/src/svg/car.svg new file mode 100644 index 0000000..9d38406 --- /dev/null +++ b/src/svg/car.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/card-outline.svg b/src/svg/card-outline.svg new file mode 100644 index 0000000..1002a2c --- /dev/null +++ b/src/svg/card-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/card-sharp.svg b/src/svg/card-sharp.svg new file mode 100644 index 0000000..7654325 --- /dev/null +++ b/src/svg/card-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/card.svg b/src/svg/card.svg new file mode 100644 index 0000000..43b769c --- /dev/null +++ b/src/svg/card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-back-circle-outline.svg b/src/svg/caret-back-circle-outline.svg new file mode 100644 index 0000000..e9e179a --- /dev/null +++ b/src/svg/caret-back-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-back-circle-sharp.svg b/src/svg/caret-back-circle-sharp.svg new file mode 100644 index 0000000..215b10b --- /dev/null +++ b/src/svg/caret-back-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-back-circle.svg b/src/svg/caret-back-circle.svg new file mode 100644 index 0000000..c8864c7 --- /dev/null +++ b/src/svg/caret-back-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-back-outline.svg b/src/svg/caret-back-outline.svg new file mode 100644 index 0000000..e67609b --- /dev/null +++ b/src/svg/caret-back-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-back-sharp.svg b/src/svg/caret-back-sharp.svg new file mode 100644 index 0000000..31ccfbc --- /dev/null +++ b/src/svg/caret-back-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-back.svg b/src/svg/caret-back.svg new file mode 100644 index 0000000..e67609b --- /dev/null +++ b/src/svg/caret-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-down-circle-outline.svg b/src/svg/caret-down-circle-outline.svg new file mode 100644 index 0000000..20af0fd --- /dev/null +++ b/src/svg/caret-down-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-down-circle-sharp.svg b/src/svg/caret-down-circle-sharp.svg new file mode 100644 index 0000000..a617e5e --- /dev/null +++ b/src/svg/caret-down-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-down-circle.svg b/src/svg/caret-down-circle.svg new file mode 100644 index 0000000..b303402 --- /dev/null +++ b/src/svg/caret-down-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-down-outline.svg b/src/svg/caret-down-outline.svg new file mode 100644 index 0000000..2925923 --- /dev/null +++ b/src/svg/caret-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-down-sharp.svg b/src/svg/caret-down-sharp.svg new file mode 100644 index 0000000..67b520e --- /dev/null +++ b/src/svg/caret-down-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-down.svg b/src/svg/caret-down.svg new file mode 100644 index 0000000..2925923 --- /dev/null +++ b/src/svg/caret-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-forward-circle-outline.svg b/src/svg/caret-forward-circle-outline.svg new file mode 100644 index 0000000..dfc8c87 --- /dev/null +++ b/src/svg/caret-forward-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-forward-circle-sharp.svg b/src/svg/caret-forward-circle-sharp.svg new file mode 100644 index 0000000..ab41b57 --- /dev/null +++ b/src/svg/caret-forward-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-forward-circle.svg b/src/svg/caret-forward-circle.svg new file mode 100644 index 0000000..fbe3c14 --- /dev/null +++ b/src/svg/caret-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-forward-outline.svg b/src/svg/caret-forward-outline.svg new file mode 100644 index 0000000..cba2a6e --- /dev/null +++ b/src/svg/caret-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-forward-sharp.svg b/src/svg/caret-forward-sharp.svg new file mode 100644 index 0000000..608c102 --- /dev/null +++ b/src/svg/caret-forward-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-forward.svg b/src/svg/caret-forward.svg new file mode 100644 index 0000000..cba2a6e --- /dev/null +++ b/src/svg/caret-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-up-circle-outline.svg b/src/svg/caret-up-circle-outline.svg new file mode 100644 index 0000000..fcb988b --- /dev/null +++ b/src/svg/caret-up-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-up-circle-sharp.svg b/src/svg/caret-up-circle-sharp.svg new file mode 100644 index 0000000..76d49e1 --- /dev/null +++ b/src/svg/caret-up-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-up-circle.svg b/src/svg/caret-up-circle.svg new file mode 100644 index 0000000..28d3223 --- /dev/null +++ b/src/svg/caret-up-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-up-outline.svg b/src/svg/caret-up-outline.svg new file mode 100644 index 0000000..c289e84 --- /dev/null +++ b/src/svg/caret-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-up-sharp.svg b/src/svg/caret-up-sharp.svg new file mode 100644 index 0000000..6468123 --- /dev/null +++ b/src/svg/caret-up-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/caret-up.svg b/src/svg/caret-up.svg new file mode 100644 index 0000000..c289e84 --- /dev/null +++ b/src/svg/caret-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cart-outline.svg b/src/svg/cart-outline.svg new file mode 100644 index 0000000..a3e5797 --- /dev/null +++ b/src/svg/cart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cart-sharp.svg b/src/svg/cart-sharp.svg new file mode 100644 index 0000000..08a3faf --- /dev/null +++ b/src/svg/cart-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cart.svg b/src/svg/cart.svg new file mode 100644 index 0000000..c69b639 --- /dev/null +++ b/src/svg/cart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cash-outline.svg b/src/svg/cash-outline.svg new file mode 100644 index 0000000..075ed0b --- /dev/null +++ b/src/svg/cash-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cash-sharp.svg b/src/svg/cash-sharp.svg new file mode 100644 index 0000000..f7afd38 --- /dev/null +++ b/src/svg/cash-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cash.svg b/src/svg/cash.svg new file mode 100644 index 0000000..306581c --- /dev/null +++ b/src/svg/cash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cellular-outline.svg b/src/svg/cellular-outline.svg new file mode 100644 index 0000000..b79b177 --- /dev/null +++ b/src/svg/cellular-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cellular-sharp.svg b/src/svg/cellular-sharp.svg new file mode 100644 index 0000000..be9c934 --- /dev/null +++ b/src/svg/cellular-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cellular.svg b/src/svg/cellular.svg new file mode 100644 index 0000000..7ea02ba --- /dev/null +++ b/src/svg/cellular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbox-ellipses-outline.svg b/src/svg/chatbox-ellipses-outline.svg new file mode 100644 index 0000000..58e38cf --- /dev/null +++ b/src/svg/chatbox-ellipses-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbox-ellipses-sharp.svg b/src/svg/chatbox-ellipses-sharp.svg new file mode 100644 index 0000000..19ba10b --- /dev/null +++ b/src/svg/chatbox-ellipses-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbox-ellipses.svg b/src/svg/chatbox-ellipses.svg new file mode 100644 index 0000000..c97c0a3 --- /dev/null +++ b/src/svg/chatbox-ellipses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbox-outline.svg b/src/svg/chatbox-outline.svg new file mode 100644 index 0000000..205c6e2 --- /dev/null +++ b/src/svg/chatbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbox-sharp.svg b/src/svg/chatbox-sharp.svg new file mode 100644 index 0000000..c763c45 --- /dev/null +++ b/src/svg/chatbox-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbox.svg b/src/svg/chatbox.svg new file mode 100644 index 0000000..e72fa99 --- /dev/null +++ b/src/svg/chatbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubble-ellipses-outline.svg b/src/svg/chatbubble-ellipses-outline.svg new file mode 100644 index 0000000..542514e --- /dev/null +++ b/src/svg/chatbubble-ellipses-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubble-ellipses-sharp.svg b/src/svg/chatbubble-ellipses-sharp.svg new file mode 100644 index 0000000..830af5d --- /dev/null +++ b/src/svg/chatbubble-ellipses-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubble-ellipses.svg b/src/svg/chatbubble-ellipses.svg new file mode 100644 index 0000000..cc802c9 --- /dev/null +++ b/src/svg/chatbubble-ellipses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubble-outline.svg b/src/svg/chatbubble-outline.svg new file mode 100644 index 0000000..0de9a86 --- /dev/null +++ b/src/svg/chatbubble-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubble-sharp.svg b/src/svg/chatbubble-sharp.svg new file mode 100644 index 0000000..75e56a2 --- /dev/null +++ b/src/svg/chatbubble-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubble.svg b/src/svg/chatbubble.svg new file mode 100644 index 0000000..9ab70a4 --- /dev/null +++ b/src/svg/chatbubble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubbles-outline.svg b/src/svg/chatbubbles-outline.svg new file mode 100644 index 0000000..fb80c30 --- /dev/null +++ b/src/svg/chatbubbles-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubbles-sharp.svg b/src/svg/chatbubbles-sharp.svg new file mode 100644 index 0000000..c6f6b70 --- /dev/null +++ b/src/svg/chatbubbles-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chatbubbles.svg b/src/svg/chatbubbles.svg new file mode 100644 index 0000000..4290420 --- /dev/null +++ b/src/svg/chatbubbles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkbox-outline.svg b/src/svg/checkbox-outline.svg new file mode 100644 index 0000000..beaccd3 --- /dev/null +++ b/src/svg/checkbox-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkbox-sharp.svg b/src/svg/checkbox-sharp.svg new file mode 100644 index 0000000..f6158ab --- /dev/null +++ b/src/svg/checkbox-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkbox.svg b/src/svg/checkbox.svg new file mode 100644 index 0000000..e19b1be --- /dev/null +++ b/src/svg/checkbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-circle-outline.svg b/src/svg/checkmark-circle-outline.svg new file mode 100644 index 0000000..282905d --- /dev/null +++ b/src/svg/checkmark-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-circle-sharp.svg b/src/svg/checkmark-circle-sharp.svg new file mode 100644 index 0000000..7856b95 --- /dev/null +++ b/src/svg/checkmark-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-circle.svg b/src/svg/checkmark-circle.svg new file mode 100644 index 0000000..f8243b6 --- /dev/null +++ b/src/svg/checkmark-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-done-circle-outline.svg b/src/svg/checkmark-done-circle-outline.svg new file mode 100644 index 0000000..1d8a9f4 --- /dev/null +++ b/src/svg/checkmark-done-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-done-circle-sharp.svg b/src/svg/checkmark-done-circle-sharp.svg new file mode 100644 index 0000000..381636a --- /dev/null +++ b/src/svg/checkmark-done-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-done-circle.svg b/src/svg/checkmark-done-circle.svg new file mode 100644 index 0000000..91ee67d --- /dev/null +++ b/src/svg/checkmark-done-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-done-outline.svg b/src/svg/checkmark-done-outline.svg new file mode 100644 index 0000000..37b50a8 --- /dev/null +++ b/src/svg/checkmark-done-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-done-sharp.svg b/src/svg/checkmark-done-sharp.svg new file mode 100644 index 0000000..bc6faf8 --- /dev/null +++ b/src/svg/checkmark-done-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-done.svg b/src/svg/checkmark-done.svg new file mode 100644 index 0000000..37b50a8 --- /dev/null +++ b/src/svg/checkmark-done.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-outline.svg b/src/svg/checkmark-outline.svg new file mode 100644 index 0000000..2dfb689 --- /dev/null +++ b/src/svg/checkmark-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark-sharp.svg b/src/svg/checkmark-sharp.svg new file mode 100644 index 0000000..46fb9ad --- /dev/null +++ b/src/svg/checkmark-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/checkmark.svg b/src/svg/checkmark.svg new file mode 100644 index 0000000..2dfb689 --- /dev/null +++ b/src/svg/checkmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-back-circle-outline.svg b/src/svg/chevron-back-circle-outline.svg new file mode 100644 index 0000000..34a2183 --- /dev/null +++ b/src/svg/chevron-back-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-back-circle-sharp.svg b/src/svg/chevron-back-circle-sharp.svg new file mode 100644 index 0000000..9b29a8d --- /dev/null +++ b/src/svg/chevron-back-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-back-circle.svg b/src/svg/chevron-back-circle.svg new file mode 100644 index 0000000..f0555cf --- /dev/null +++ b/src/svg/chevron-back-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-back-outline.svg b/src/svg/chevron-back-outline.svg new file mode 100644 index 0000000..db39cd0 --- /dev/null +++ b/src/svg/chevron-back-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-back-sharp.svg b/src/svg/chevron-back-sharp.svg new file mode 100644 index 0000000..ca9e5bc --- /dev/null +++ b/src/svg/chevron-back-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-back.svg b/src/svg/chevron-back.svg new file mode 100644 index 0000000..db39cd0 --- /dev/null +++ b/src/svg/chevron-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-collapse-outline.svg b/src/svg/chevron-collapse-outline.svg new file mode 100644 index 0000000..573066b --- /dev/null +++ b/src/svg/chevron-collapse-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-collapse-sharp.svg b/src/svg/chevron-collapse-sharp.svg new file mode 100644 index 0000000..d3fe290 --- /dev/null +++ b/src/svg/chevron-collapse-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-collapse.svg b/src/svg/chevron-collapse.svg new file mode 100644 index 0000000..6e21132 --- /dev/null +++ b/src/svg/chevron-collapse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-down-circle-outline.svg b/src/svg/chevron-down-circle-outline.svg new file mode 100644 index 0000000..d060ad1 --- /dev/null +++ b/src/svg/chevron-down-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-down-circle-sharp.svg b/src/svg/chevron-down-circle-sharp.svg new file mode 100644 index 0000000..284201e --- /dev/null +++ b/src/svg/chevron-down-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-down-circle.svg b/src/svg/chevron-down-circle.svg new file mode 100644 index 0000000..66a66ae --- /dev/null +++ b/src/svg/chevron-down-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-down-outline.svg b/src/svg/chevron-down-outline.svg new file mode 100644 index 0000000..68309a5 --- /dev/null +++ b/src/svg/chevron-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-down-sharp.svg b/src/svg/chevron-down-sharp.svg new file mode 100644 index 0000000..8ca3fdb --- /dev/null +++ b/src/svg/chevron-down-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-down.svg b/src/svg/chevron-down.svg new file mode 100644 index 0000000..68309a5 --- /dev/null +++ b/src/svg/chevron-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-expand-outline.svg b/src/svg/chevron-expand-outline.svg new file mode 100644 index 0000000..e91ae00 --- /dev/null +++ b/src/svg/chevron-expand-outline.svg @@ -0,0 +1 @@ + diff --git a/src/svg/chevron-expand-sharp.svg b/src/svg/chevron-expand-sharp.svg new file mode 100644 index 0000000..9a2e57d --- /dev/null +++ b/src/svg/chevron-expand-sharp.svg @@ -0,0 +1 @@ + diff --git a/src/svg/chevron-expand.svg b/src/svg/chevron-expand.svg new file mode 100644 index 0000000..f934270 --- /dev/null +++ b/src/svg/chevron-expand.svg @@ -0,0 +1 @@ + diff --git a/src/svg/chevron-forward-circle-outline.svg b/src/svg/chevron-forward-circle-outline.svg new file mode 100644 index 0000000..0b82832 --- /dev/null +++ b/src/svg/chevron-forward-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-forward-circle-sharp.svg b/src/svg/chevron-forward-circle-sharp.svg new file mode 100644 index 0000000..4461952 --- /dev/null +++ b/src/svg/chevron-forward-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-forward-circle.svg b/src/svg/chevron-forward-circle.svg new file mode 100644 index 0000000..22f7c83 --- /dev/null +++ b/src/svg/chevron-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-forward-outline.svg b/src/svg/chevron-forward-outline.svg new file mode 100644 index 0000000..63a20ac --- /dev/null +++ b/src/svg/chevron-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-forward-sharp.svg b/src/svg/chevron-forward-sharp.svg new file mode 100644 index 0000000..b2fac68 --- /dev/null +++ b/src/svg/chevron-forward-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-forward.svg b/src/svg/chevron-forward.svg new file mode 100644 index 0000000..63a20ac --- /dev/null +++ b/src/svg/chevron-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-up-circle-outline.svg b/src/svg/chevron-up-circle-outline.svg new file mode 100644 index 0000000..5fb2c52 --- /dev/null +++ b/src/svg/chevron-up-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-up-circle-sharp.svg b/src/svg/chevron-up-circle-sharp.svg new file mode 100644 index 0000000..f152497 --- /dev/null +++ b/src/svg/chevron-up-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-up-circle.svg b/src/svg/chevron-up-circle.svg new file mode 100644 index 0000000..e7870b1 --- /dev/null +++ b/src/svg/chevron-up-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-up-outline.svg b/src/svg/chevron-up-outline.svg new file mode 100644 index 0000000..dcff9a6 --- /dev/null +++ b/src/svg/chevron-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-up-sharp.svg b/src/svg/chevron-up-sharp.svg new file mode 100644 index 0000000..a49fc5d --- /dev/null +++ b/src/svg/chevron-up-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/chevron-up.svg b/src/svg/chevron-up.svg new file mode 100644 index 0000000..dcff9a6 --- /dev/null +++ b/src/svg/chevron-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/clipboard-outline.svg b/src/svg/clipboard-outline.svg new file mode 100644 index 0000000..32eacb1 --- /dev/null +++ b/src/svg/clipboard-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/clipboard-sharp.svg b/src/svg/clipboard-sharp.svg new file mode 100644 index 0000000..9b3c5a4 --- /dev/null +++ b/src/svg/clipboard-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/clipboard.svg b/src/svg/clipboard.svg new file mode 100644 index 0000000..09f8e73 --- /dev/null +++ b/src/svg/clipboard.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/close-circle-outline.svg b/src/svg/close-circle-outline.svg new file mode 100644 index 0000000..9314204 --- /dev/null +++ b/src/svg/close-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/close-circle-sharp.svg b/src/svg/close-circle-sharp.svg new file mode 100644 index 0000000..1a37edc --- /dev/null +++ b/src/svg/close-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/close-circle.svg b/src/svg/close-circle.svg new file mode 100644 index 0000000..47d8ff0 --- /dev/null +++ b/src/svg/close-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/close-outline.svg b/src/svg/close-outline.svg new file mode 100644 index 0000000..d276a28 --- /dev/null +++ b/src/svg/close-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/close-sharp.svg b/src/svg/close-sharp.svg new file mode 100644 index 0000000..9faf993 --- /dev/null +++ b/src/svg/close-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/close.svg b/src/svg/close.svg new file mode 100644 index 0000000..8e2e273 --- /dev/null +++ b/src/svg/close.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-circle-outline.svg b/src/svg/cloud-circle-outline.svg new file mode 100644 index 0000000..834f67b --- /dev/null +++ b/src/svg/cloud-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-circle-sharp.svg b/src/svg/cloud-circle-sharp.svg new file mode 100644 index 0000000..83165c3 --- /dev/null +++ b/src/svg/cloud-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-circle.svg b/src/svg/cloud-circle.svg new file mode 100644 index 0000000..042c90d --- /dev/null +++ b/src/svg/cloud-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-done-outline.svg b/src/svg/cloud-done-outline.svg new file mode 100644 index 0000000..8322c4b --- /dev/null +++ b/src/svg/cloud-done-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-done-sharp.svg b/src/svg/cloud-done-sharp.svg new file mode 100644 index 0000000..0f01e46 --- /dev/null +++ b/src/svg/cloud-done-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-done.svg b/src/svg/cloud-done.svg new file mode 100644 index 0000000..afa7d4f --- /dev/null +++ b/src/svg/cloud-done.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-download-outline.svg b/src/svg/cloud-download-outline.svg new file mode 100644 index 0000000..7bed5c1 --- /dev/null +++ b/src/svg/cloud-download-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-download-sharp.svg b/src/svg/cloud-download-sharp.svg new file mode 100644 index 0000000..eadbeb4 --- /dev/null +++ b/src/svg/cloud-download-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-download.svg b/src/svg/cloud-download.svg new file mode 100644 index 0000000..b18b426 --- /dev/null +++ b/src/svg/cloud-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-offline-outline.svg b/src/svg/cloud-offline-outline.svg new file mode 100644 index 0000000..18817ba --- /dev/null +++ b/src/svg/cloud-offline-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-offline-sharp.svg b/src/svg/cloud-offline-sharp.svg new file mode 100644 index 0000000..fb41c7d --- /dev/null +++ b/src/svg/cloud-offline-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-offline.svg b/src/svg/cloud-offline.svg new file mode 100644 index 0000000..cacdb93 --- /dev/null +++ b/src/svg/cloud-offline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-outline.svg b/src/svg/cloud-outline.svg new file mode 100644 index 0000000..c5bb195 --- /dev/null +++ b/src/svg/cloud-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-sharp.svg b/src/svg/cloud-sharp.svg new file mode 100644 index 0000000..8f58e04 --- /dev/null +++ b/src/svg/cloud-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-upload-outline.svg b/src/svg/cloud-upload-outline.svg new file mode 100644 index 0000000..5589af3 --- /dev/null +++ b/src/svg/cloud-upload-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-upload-sharp.svg b/src/svg/cloud-upload-sharp.svg new file mode 100644 index 0000000..e3ca492 --- /dev/null +++ b/src/svg/cloud-upload-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud-upload.svg b/src/svg/cloud-upload.svg new file mode 100644 index 0000000..dff2648 --- /dev/null +++ b/src/svg/cloud-upload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloud.svg b/src/svg/cloud.svg new file mode 100644 index 0000000..214f480 --- /dev/null +++ b/src/svg/cloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloudy-night-outline.svg b/src/svg/cloudy-night-outline.svg new file mode 100644 index 0000000..9b7f9d1 --- /dev/null +++ b/src/svg/cloudy-night-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloudy-night-sharp.svg b/src/svg/cloudy-night-sharp.svg new file mode 100644 index 0000000..fb8b79f --- /dev/null +++ b/src/svg/cloudy-night-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloudy-night.svg b/src/svg/cloudy-night.svg new file mode 100644 index 0000000..968f1d9 --- /dev/null +++ b/src/svg/cloudy-night.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloudy-outline.svg b/src/svg/cloudy-outline.svg new file mode 100644 index 0000000..3d82f80 --- /dev/null +++ b/src/svg/cloudy-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloudy-sharp.svg b/src/svg/cloudy-sharp.svg new file mode 100644 index 0000000..bc89475 --- /dev/null +++ b/src/svg/cloudy-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cloudy.svg b/src/svg/cloudy.svg new file mode 100644 index 0000000..9e12634 --- /dev/null +++ b/src/svg/cloudy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-download-outline.svg b/src/svg/code-download-outline.svg new file mode 100644 index 0000000..f6bc499 --- /dev/null +++ b/src/svg/code-download-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-download-sharp.svg b/src/svg/code-download-sharp.svg new file mode 100644 index 0000000..cf57f1e --- /dev/null +++ b/src/svg/code-download-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-download.svg b/src/svg/code-download.svg new file mode 100644 index 0000000..814d294 --- /dev/null +++ b/src/svg/code-download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-outline.svg b/src/svg/code-outline.svg new file mode 100644 index 0000000..09ff666 --- /dev/null +++ b/src/svg/code-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-sharp.svg b/src/svg/code-sharp.svg new file mode 100644 index 0000000..fb927d1 --- /dev/null +++ b/src/svg/code-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-slash-outline.svg b/src/svg/code-slash-outline.svg new file mode 100644 index 0000000..5cd1d89 --- /dev/null +++ b/src/svg/code-slash-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-slash-sharp.svg b/src/svg/code-slash-sharp.svg new file mode 100644 index 0000000..69b646e --- /dev/null +++ b/src/svg/code-slash-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-slash.svg b/src/svg/code-slash.svg new file mode 100644 index 0000000..fccc9a2 --- /dev/null +++ b/src/svg/code-slash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-working-outline.svg b/src/svg/code-working-outline.svg new file mode 100644 index 0000000..c0039a0 --- /dev/null +++ b/src/svg/code-working-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-working-sharp.svg b/src/svg/code-working-sharp.svg new file mode 100644 index 0000000..0b5e9f5 --- /dev/null +++ b/src/svg/code-working-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code-working.svg b/src/svg/code-working.svg new file mode 100644 index 0000000..19a6f2c --- /dev/null +++ b/src/svg/code-working.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/code.svg b/src/svg/code.svg new file mode 100644 index 0000000..749950a --- /dev/null +++ b/src/svg/code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cog-outline.svg b/src/svg/cog-outline.svg new file mode 100644 index 0000000..176fd96 --- /dev/null +++ b/src/svg/cog-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cog-sharp.svg b/src/svg/cog-sharp.svg new file mode 100644 index 0000000..49158a7 --- /dev/null +++ b/src/svg/cog-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cog.svg b/src/svg/cog.svg new file mode 100644 index 0000000..ef99c14 --- /dev/null +++ b/src/svg/cog.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-fill-outline.svg b/src/svg/color-fill-outline.svg new file mode 100644 index 0000000..2c8f6f9 --- /dev/null +++ b/src/svg/color-fill-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-fill-sharp.svg b/src/svg/color-fill-sharp.svg new file mode 100644 index 0000000..410f5d6 --- /dev/null +++ b/src/svg/color-fill-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-fill.svg b/src/svg/color-fill.svg new file mode 100644 index 0000000..fb75173 --- /dev/null +++ b/src/svg/color-fill.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-filter-outline.svg b/src/svg/color-filter-outline.svg new file mode 100644 index 0000000..ab0ff27 --- /dev/null +++ b/src/svg/color-filter-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-filter-sharp.svg b/src/svg/color-filter-sharp.svg new file mode 100644 index 0000000..49b5695 --- /dev/null +++ b/src/svg/color-filter-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-filter.svg b/src/svg/color-filter.svg new file mode 100644 index 0000000..9c3ab94 --- /dev/null +++ b/src/svg/color-filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-palette-outline.svg b/src/svg/color-palette-outline.svg new file mode 100644 index 0000000..8a7d2f9 --- /dev/null +++ b/src/svg/color-palette-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-palette-sharp.svg b/src/svg/color-palette-sharp.svg new file mode 100644 index 0000000..15285de --- /dev/null +++ b/src/svg/color-palette-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-palette.svg b/src/svg/color-palette.svg new file mode 100644 index 0000000..1ed94b7 --- /dev/null +++ b/src/svg/color-palette.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-wand-outline.svg b/src/svg/color-wand-outline.svg new file mode 100644 index 0000000..edb8f45 --- /dev/null +++ b/src/svg/color-wand-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-wand-sharp.svg b/src/svg/color-wand-sharp.svg new file mode 100644 index 0000000..a2bd634 --- /dev/null +++ b/src/svg/color-wand-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/color-wand.svg b/src/svg/color-wand.svg new file mode 100644 index 0000000..2517195 --- /dev/null +++ b/src/svg/color-wand.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + diff --git a/src/svg/compass-outline.svg b/src/svg/compass-outline.svg new file mode 100644 index 0000000..1f10182 --- /dev/null +++ b/src/svg/compass-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/compass-sharp.svg b/src/svg/compass-sharp.svg new file mode 100644 index 0000000..af67ad3 --- /dev/null +++ b/src/svg/compass-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/compass.svg b/src/svg/compass.svg new file mode 100644 index 0000000..b42e81d --- /dev/null +++ b/src/svg/compass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/construct-outline.svg b/src/svg/construct-outline.svg new file mode 100644 index 0000000..450db77 --- /dev/null +++ b/src/svg/construct-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/construct-sharp.svg b/src/svg/construct-sharp.svg new file mode 100644 index 0000000..254a764 --- /dev/null +++ b/src/svg/construct-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/construct.svg b/src/svg/construct.svg new file mode 100644 index 0000000..3640c41 --- /dev/null +++ b/src/svg/construct.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/contract-outline.svg b/src/svg/contract-outline.svg new file mode 100644 index 0000000..f6291f3 --- /dev/null +++ b/src/svg/contract-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/contract-sharp.svg b/src/svg/contract-sharp.svg new file mode 100644 index 0000000..7533877 --- /dev/null +++ b/src/svg/contract-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/contract.svg b/src/svg/contract.svg new file mode 100644 index 0000000..f6291f3 --- /dev/null +++ b/src/svg/contract.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/contrast-outline.svg b/src/svg/contrast-outline.svg new file mode 100644 index 0000000..951f68d --- /dev/null +++ b/src/svg/contrast-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/contrast-sharp.svg b/src/svg/contrast-sharp.svg new file mode 100644 index 0000000..d2892f5 --- /dev/null +++ b/src/svg/contrast-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/contrast.svg b/src/svg/contrast.svg new file mode 100644 index 0000000..9557f86 --- /dev/null +++ b/src/svg/contrast.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/copy-outline.svg b/src/svg/copy-outline.svg new file mode 100644 index 0000000..33c327c --- /dev/null +++ b/src/svg/copy-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/copy-sharp.svg b/src/svg/copy-sharp.svg new file mode 100644 index 0000000..2fd75c8 --- /dev/null +++ b/src/svg/copy-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/copy.svg b/src/svg/copy.svg new file mode 100644 index 0000000..96128a9 --- /dev/null +++ b/src/svg/copy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/create-outline.svg b/src/svg/create-outline.svg new file mode 100644 index 0000000..55fb3cd --- /dev/null +++ b/src/svg/create-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/create-sharp.svg b/src/svg/create-sharp.svg new file mode 100644 index 0000000..a318b9b --- /dev/null +++ b/src/svg/create-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/create.svg b/src/svg/create.svg new file mode 100644 index 0000000..6d6636d --- /dev/null +++ b/src/svg/create.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/crop-outline.svg b/src/svg/crop-outline.svg new file mode 100644 index 0000000..fa74f36 --- /dev/null +++ b/src/svg/crop-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/crop-sharp.svg b/src/svg/crop-sharp.svg new file mode 100644 index 0000000..5068d9b --- /dev/null +++ b/src/svg/crop-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/crop.svg b/src/svg/crop.svg new file mode 100644 index 0000000..00bddd2 --- /dev/null +++ b/src/svg/crop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cube-outline.svg b/src/svg/cube-outline.svg new file mode 100644 index 0000000..f671c55 --- /dev/null +++ b/src/svg/cube-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cube-sharp.svg b/src/svg/cube-sharp.svg new file mode 100644 index 0000000..39f23a6 --- /dev/null +++ b/src/svg/cube-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cube.svg b/src/svg/cube.svg new file mode 100644 index 0000000..50cda8a --- /dev/null +++ b/src/svg/cube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cut-outline.svg b/src/svg/cut-outline.svg new file mode 100644 index 0000000..33a4cec --- /dev/null +++ b/src/svg/cut-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cut-sharp.svg b/src/svg/cut-sharp.svg new file mode 100644 index 0000000..95901ea --- /dev/null +++ b/src/svg/cut-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/cut.svg b/src/svg/cut.svg new file mode 100644 index 0000000..dd2f829 --- /dev/null +++ b/src/svg/cut.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/desktop-outline.svg b/src/svg/desktop-outline.svg new file mode 100644 index 0000000..06c2dfb --- /dev/null +++ b/src/svg/desktop-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/desktop-sharp.svg b/src/svg/desktop-sharp.svg new file mode 100644 index 0000000..e769ecb --- /dev/null +++ b/src/svg/desktop-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/desktop.svg b/src/svg/desktop.svg new file mode 100644 index 0000000..b315bb1 --- /dev/null +++ b/src/svg/desktop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/diamond-outline.svg b/src/svg/diamond-outline.svg new file mode 100644 index 0000000..b9c5e3b --- /dev/null +++ b/src/svg/diamond-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/diamond-sharp.svg b/src/svg/diamond-sharp.svg new file mode 100644 index 0000000..8c6da9f --- /dev/null +++ b/src/svg/diamond-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/diamond.svg b/src/svg/diamond.svg new file mode 100644 index 0000000..14c17e3 --- /dev/null +++ b/src/svg/diamond.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/dice-outline.svg b/src/svg/dice-outline.svg new file mode 100644 index 0000000..f264dc4 --- /dev/null +++ b/src/svg/dice-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/dice-sharp.svg b/src/svg/dice-sharp.svg new file mode 100644 index 0000000..44dbf22 --- /dev/null +++ b/src/svg/dice-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/dice.svg b/src/svg/dice.svg new file mode 100644 index 0000000..71bdffb --- /dev/null +++ b/src/svg/dice.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/disc-outline.svg b/src/svg/disc-outline.svg new file mode 100644 index 0000000..895d52d --- /dev/null +++ b/src/svg/disc-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/disc-sharp.svg b/src/svg/disc-sharp.svg new file mode 100644 index 0000000..ab40ecb --- /dev/null +++ b/src/svg/disc-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/disc.svg b/src/svg/disc.svg new file mode 100644 index 0000000..9e0963f --- /dev/null +++ b/src/svg/disc.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-attach-outline.svg b/src/svg/document-attach-outline.svg new file mode 100644 index 0000000..be53ffb --- /dev/null +++ b/src/svg/document-attach-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-attach-sharp.svg b/src/svg/document-attach-sharp.svg new file mode 100644 index 0000000..5e009c4 --- /dev/null +++ b/src/svg/document-attach-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-attach.svg b/src/svg/document-attach.svg new file mode 100644 index 0000000..92421ed --- /dev/null +++ b/src/svg/document-attach.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-lock-outline.svg b/src/svg/document-lock-outline.svg new file mode 100644 index 0000000..95890c7 --- /dev/null +++ b/src/svg/document-lock-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-lock-sharp.svg b/src/svg/document-lock-sharp.svg new file mode 100644 index 0000000..d42da2d --- /dev/null +++ b/src/svg/document-lock-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-lock.svg b/src/svg/document-lock.svg new file mode 100644 index 0000000..7139503 --- /dev/null +++ b/src/svg/document-lock.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-outline.svg b/src/svg/document-outline.svg new file mode 100644 index 0000000..263c039 --- /dev/null +++ b/src/svg/document-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-sharp.svg b/src/svg/document-sharp.svg new file mode 100644 index 0000000..bda3517 --- /dev/null +++ b/src/svg/document-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-text-outline.svg b/src/svg/document-text-outline.svg new file mode 100644 index 0000000..814f72c --- /dev/null +++ b/src/svg/document-text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-text-sharp.svg b/src/svg/document-text-sharp.svg new file mode 100644 index 0000000..d69c15a --- /dev/null +++ b/src/svg/document-text-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document-text.svg b/src/svg/document-text.svg new file mode 100644 index 0000000..ee9cae9 --- /dev/null +++ b/src/svg/document-text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/document.svg b/src/svg/document.svg new file mode 100644 index 0000000..d204309 --- /dev/null +++ b/src/svg/document.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/documents-outline.svg b/src/svg/documents-outline.svg new file mode 100644 index 0000000..6a1e4ef --- /dev/null +++ b/src/svg/documents-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/documents-sharp.svg b/src/svg/documents-sharp.svg new file mode 100644 index 0000000..7397c7d --- /dev/null +++ b/src/svg/documents-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/documents.svg b/src/svg/documents.svg new file mode 100644 index 0000000..bb6619f --- /dev/null +++ b/src/svg/documents.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/download-outline.svg b/src/svg/download-outline.svg new file mode 100644 index 0000000..07a30d5 --- /dev/null +++ b/src/svg/download-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/download-sharp.svg b/src/svg/download-sharp.svg new file mode 100644 index 0000000..e05909e --- /dev/null +++ b/src/svg/download-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/download.svg b/src/svg/download.svg new file mode 100644 index 0000000..247a34c --- /dev/null +++ b/src/svg/download.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/duplicate-outline.svg b/src/svg/duplicate-outline.svg new file mode 100644 index 0000000..12cc4f5 --- /dev/null +++ b/src/svg/duplicate-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/duplicate-sharp.svg b/src/svg/duplicate-sharp.svg new file mode 100644 index 0000000..4cbfc49 --- /dev/null +++ b/src/svg/duplicate-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/duplicate.svg b/src/svg/duplicate.svg new file mode 100644 index 0000000..780af49 --- /dev/null +++ b/src/svg/duplicate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ear-outline.svg b/src/svg/ear-outline.svg new file mode 100644 index 0000000..f83b457 --- /dev/null +++ b/src/svg/ear-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ear-sharp.svg b/src/svg/ear-sharp.svg new file mode 100644 index 0000000..e52a46f --- /dev/null +++ b/src/svg/ear-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ear.svg b/src/svg/ear.svg new file mode 100644 index 0000000..a36681a --- /dev/null +++ b/src/svg/ear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/earth-outline.svg b/src/svg/earth-outline.svg new file mode 100644 index 0000000..a545b62 --- /dev/null +++ b/src/svg/earth-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/earth-sharp.svg b/src/svg/earth-sharp.svg new file mode 100644 index 0000000..2496308 --- /dev/null +++ b/src/svg/earth-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/earth.svg b/src/svg/earth.svg new file mode 100644 index 0000000..b6c5c2a --- /dev/null +++ b/src/svg/earth.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/easel-outline.svg b/src/svg/easel-outline.svg new file mode 100644 index 0000000..4120522 --- /dev/null +++ b/src/svg/easel-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/easel-sharp.svg b/src/svg/easel-sharp.svg new file mode 100644 index 0000000..35f1a5e --- /dev/null +++ b/src/svg/easel-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/easel.svg b/src/svg/easel.svg new file mode 100644 index 0000000..23e823a --- /dev/null +++ b/src/svg/easel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/egg-outline.svg b/src/svg/egg-outline.svg new file mode 100644 index 0000000..14673e5 --- /dev/null +++ b/src/svg/egg-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/egg-sharp.svg b/src/svg/egg-sharp.svg new file mode 100644 index 0000000..6a87c72 --- /dev/null +++ b/src/svg/egg-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/egg.svg b/src/svg/egg.svg new file mode 100644 index 0000000..98896fd --- /dev/null +++ b/src/svg/egg.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipse-outline.svg b/src/svg/ellipse-outline.svg new file mode 100644 index 0000000..0972ebe --- /dev/null +++ b/src/svg/ellipse-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipse-sharp.svg b/src/svg/ellipse-sharp.svg new file mode 100644 index 0000000..ecf3f64 --- /dev/null +++ b/src/svg/ellipse-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipse.svg b/src/svg/ellipse.svg new file mode 100644 index 0000000..ecf3f64 --- /dev/null +++ b/src/svg/ellipse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-horizontal-circle-outline.svg b/src/svg/ellipsis-horizontal-circle-outline.svg new file mode 100644 index 0000000..6b1736b --- /dev/null +++ b/src/svg/ellipsis-horizontal-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-horizontal-circle-sharp.svg b/src/svg/ellipsis-horizontal-circle-sharp.svg new file mode 100644 index 0000000..776406e --- /dev/null +++ b/src/svg/ellipsis-horizontal-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-horizontal-circle.svg b/src/svg/ellipsis-horizontal-circle.svg new file mode 100644 index 0000000..776406e --- /dev/null +++ b/src/svg/ellipsis-horizontal-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-horizontal-outline.svg b/src/svg/ellipsis-horizontal-outline.svg new file mode 100644 index 0000000..7779e2b --- /dev/null +++ b/src/svg/ellipsis-horizontal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-horizontal-sharp.svg b/src/svg/ellipsis-horizontal-sharp.svg new file mode 100644 index 0000000..5495119 --- /dev/null +++ b/src/svg/ellipsis-horizontal-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-horizontal.svg b/src/svg/ellipsis-horizontal.svg new file mode 100644 index 0000000..5495119 --- /dev/null +++ b/src/svg/ellipsis-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-vertical-circle-outline.svg b/src/svg/ellipsis-vertical-circle-outline.svg new file mode 100644 index 0000000..81818d2 --- /dev/null +++ b/src/svg/ellipsis-vertical-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-vertical-circle-sharp.svg b/src/svg/ellipsis-vertical-circle-sharp.svg new file mode 100644 index 0000000..2a72e4f --- /dev/null +++ b/src/svg/ellipsis-vertical-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-vertical-circle.svg b/src/svg/ellipsis-vertical-circle.svg new file mode 100644 index 0000000..2a72e4f --- /dev/null +++ b/src/svg/ellipsis-vertical-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-vertical-outline.svg b/src/svg/ellipsis-vertical-outline.svg new file mode 100644 index 0000000..dc18904 --- /dev/null +++ b/src/svg/ellipsis-vertical-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-vertical-sharp.svg b/src/svg/ellipsis-vertical-sharp.svg new file mode 100644 index 0000000..6101ff9 --- /dev/null +++ b/src/svg/ellipsis-vertical-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ellipsis-vertical.svg b/src/svg/ellipsis-vertical.svg new file mode 100644 index 0000000..6101ff9 --- /dev/null +++ b/src/svg/ellipsis-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/enter-outline.svg b/src/svg/enter-outline.svg new file mode 100644 index 0000000..f20b56a --- /dev/null +++ b/src/svg/enter-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/enter-sharp.svg b/src/svg/enter-sharp.svg new file mode 100644 index 0000000..5322c8a --- /dev/null +++ b/src/svg/enter-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/enter.svg b/src/svg/enter.svg new file mode 100644 index 0000000..9cae5a5 --- /dev/null +++ b/src/svg/enter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/exit-outline.svg b/src/svg/exit-outline.svg new file mode 100644 index 0000000..386455a --- /dev/null +++ b/src/svg/exit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/exit-sharp.svg b/src/svg/exit-sharp.svg new file mode 100644 index 0000000..5cc9171 --- /dev/null +++ b/src/svg/exit-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/exit.svg b/src/svg/exit.svg new file mode 100644 index 0000000..96c69d7 --- /dev/null +++ b/src/svg/exit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/expand-outline.svg b/src/svg/expand-outline.svg new file mode 100644 index 0000000..234d683 --- /dev/null +++ b/src/svg/expand-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/expand-sharp.svg b/src/svg/expand-sharp.svg new file mode 100644 index 0000000..3bd0bab --- /dev/null +++ b/src/svg/expand-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/expand.svg b/src/svg/expand.svg new file mode 100644 index 0000000..234d683 --- /dev/null +++ b/src/svg/expand.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/extension-puzzle-outline.svg b/src/svg/extension-puzzle-outline.svg new file mode 100644 index 0000000..655cfc1 --- /dev/null +++ b/src/svg/extension-puzzle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/extension-puzzle-sharp.svg b/src/svg/extension-puzzle-sharp.svg new file mode 100644 index 0000000..f27d87e --- /dev/null +++ b/src/svg/extension-puzzle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/extension-puzzle.svg b/src/svg/extension-puzzle.svg new file mode 100644 index 0000000..2e8e26c --- /dev/null +++ b/src/svg/extension-puzzle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eye-off-outline.svg b/src/svg/eye-off-outline.svg new file mode 100644 index 0000000..fa50786 --- /dev/null +++ b/src/svg/eye-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eye-off-sharp.svg b/src/svg/eye-off-sharp.svg new file mode 100644 index 0000000..aa14c88 --- /dev/null +++ b/src/svg/eye-off-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eye-off.svg b/src/svg/eye-off.svg new file mode 100644 index 0000000..8e196bb --- /dev/null +++ b/src/svg/eye-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eye-outline.svg b/src/svg/eye-outline.svg new file mode 100644 index 0000000..67b4fe9 --- /dev/null +++ b/src/svg/eye-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eye-sharp.svg b/src/svg/eye-sharp.svg new file mode 100644 index 0000000..dee3600 --- /dev/null +++ b/src/svg/eye-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eye.svg b/src/svg/eye.svg new file mode 100644 index 0000000..f3d1f85 --- /dev/null +++ b/src/svg/eye.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eyedrop-outline.svg b/src/svg/eyedrop-outline.svg new file mode 100644 index 0000000..f91036f --- /dev/null +++ b/src/svg/eyedrop-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eyedrop-sharp.svg b/src/svg/eyedrop-sharp.svg new file mode 100644 index 0000000..9a48c6e --- /dev/null +++ b/src/svg/eyedrop-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/eyedrop.svg b/src/svg/eyedrop.svg new file mode 100644 index 0000000..dc4a661 --- /dev/null +++ b/src/svg/eyedrop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fast-food-outline.svg b/src/svg/fast-food-outline.svg new file mode 100644 index 0000000..abe4024 --- /dev/null +++ b/src/svg/fast-food-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fast-food-sharp.svg b/src/svg/fast-food-sharp.svg new file mode 100644 index 0000000..1c49818 --- /dev/null +++ b/src/svg/fast-food-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fast-food.svg b/src/svg/fast-food.svg new file mode 100644 index 0000000..a5b79e0 --- /dev/null +++ b/src/svg/fast-food.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/female-outline.svg b/src/svg/female-outline.svg new file mode 100644 index 0000000..9d29a7b --- /dev/null +++ b/src/svg/female-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/female-sharp.svg b/src/svg/female-sharp.svg new file mode 100644 index 0000000..ecf16bd --- /dev/null +++ b/src/svg/female-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/female.svg b/src/svg/female.svg new file mode 100644 index 0000000..287eacf --- /dev/null +++ b/src/svg/female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray-full-outline.svg b/src/svg/file-tray-full-outline.svg new file mode 100644 index 0000000..fec42ba --- /dev/null +++ b/src/svg/file-tray-full-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray-full-sharp.svg b/src/svg/file-tray-full-sharp.svg new file mode 100644 index 0000000..e46dbd1 --- /dev/null +++ b/src/svg/file-tray-full-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray-full.svg b/src/svg/file-tray-full.svg new file mode 100644 index 0000000..2527156 --- /dev/null +++ b/src/svg/file-tray-full.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray-outline.svg b/src/svg/file-tray-outline.svg new file mode 100644 index 0000000..253abe0 --- /dev/null +++ b/src/svg/file-tray-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray-sharp.svg b/src/svg/file-tray-sharp.svg new file mode 100644 index 0000000..9cd935c --- /dev/null +++ b/src/svg/file-tray-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray-stacked-outline.svg b/src/svg/file-tray-stacked-outline.svg new file mode 100644 index 0000000..5c2385d --- /dev/null +++ b/src/svg/file-tray-stacked-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray-stacked-sharp.svg b/src/svg/file-tray-stacked-sharp.svg new file mode 100644 index 0000000..5128e43 --- /dev/null +++ b/src/svg/file-tray-stacked-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray-stacked.svg b/src/svg/file-tray-stacked.svg new file mode 100644 index 0000000..1fe3a2d --- /dev/null +++ b/src/svg/file-tray-stacked.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/file-tray.svg b/src/svg/file-tray.svg new file mode 100644 index 0000000..b6f5995 --- /dev/null +++ b/src/svg/file-tray.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/film-outline.svg b/src/svg/film-outline.svg new file mode 100644 index 0000000..77a904a --- /dev/null +++ b/src/svg/film-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/film-sharp.svg b/src/svg/film-sharp.svg new file mode 100644 index 0000000..819181a --- /dev/null +++ b/src/svg/film-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/film.svg b/src/svg/film.svg new file mode 100644 index 0000000..a8ef2fd --- /dev/null +++ b/src/svg/film.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/filter-circle-outline.svg b/src/svg/filter-circle-outline.svg new file mode 100644 index 0000000..3daf907 --- /dev/null +++ b/src/svg/filter-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/filter-circle-sharp.svg b/src/svg/filter-circle-sharp.svg new file mode 100644 index 0000000..23c59e8 --- /dev/null +++ b/src/svg/filter-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/filter-circle.svg b/src/svg/filter-circle.svg new file mode 100644 index 0000000..b75cf38 --- /dev/null +++ b/src/svg/filter-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/filter-outline.svg b/src/svg/filter-outline.svg new file mode 100644 index 0000000..1d657be --- /dev/null +++ b/src/svg/filter-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/filter-sharp.svg b/src/svg/filter-sharp.svg new file mode 100644 index 0000000..003a9ba --- /dev/null +++ b/src/svg/filter-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/filter.svg b/src/svg/filter.svg new file mode 100644 index 0000000..c47a49a --- /dev/null +++ b/src/svg/filter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/finger-print-outline.svg b/src/svg/finger-print-outline.svg new file mode 100644 index 0000000..4928e68 --- /dev/null +++ b/src/svg/finger-print-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/finger-print-sharp.svg b/src/svg/finger-print-sharp.svg new file mode 100644 index 0000000..bd9010b --- /dev/null +++ b/src/svg/finger-print-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/finger-print.svg b/src/svg/finger-print.svg new file mode 100644 index 0000000..94e8e52 --- /dev/null +++ b/src/svg/finger-print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fish-outline.svg b/src/svg/fish-outline.svg new file mode 100644 index 0000000..74ece3b --- /dev/null +++ b/src/svg/fish-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fish-sharp.svg b/src/svg/fish-sharp.svg new file mode 100644 index 0000000..cf70d93 --- /dev/null +++ b/src/svg/fish-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fish.svg b/src/svg/fish.svg new file mode 100644 index 0000000..ab6c636 --- /dev/null +++ b/src/svg/fish.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fitness-outline.svg b/src/svg/fitness-outline.svg new file mode 100644 index 0000000..2850d19 --- /dev/null +++ b/src/svg/fitness-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fitness-sharp.svg b/src/svg/fitness-sharp.svg new file mode 100644 index 0000000..8024099 --- /dev/null +++ b/src/svg/fitness-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/fitness.svg b/src/svg/fitness.svg new file mode 100644 index 0000000..caa80b9 --- /dev/null +++ b/src/svg/fitness.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flag-outline.svg b/src/svg/flag-outline.svg new file mode 100644 index 0000000..246f9ef --- /dev/null +++ b/src/svg/flag-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flag-sharp.svg b/src/svg/flag-sharp.svg new file mode 100644 index 0000000..1516d32 --- /dev/null +++ b/src/svg/flag-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flag.svg b/src/svg/flag.svg new file mode 100644 index 0000000..f6a5482 --- /dev/null +++ b/src/svg/flag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flame-outline.svg b/src/svg/flame-outline.svg new file mode 100644 index 0000000..3b9bcdf --- /dev/null +++ b/src/svg/flame-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flame-sharp.svg b/src/svg/flame-sharp.svg new file mode 100644 index 0000000..109df52 --- /dev/null +++ b/src/svg/flame-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flame.svg b/src/svg/flame.svg new file mode 100644 index 0000000..48866db --- /dev/null +++ b/src/svg/flame.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flash-off-outline.svg b/src/svg/flash-off-outline.svg new file mode 100644 index 0000000..9911f85 --- /dev/null +++ b/src/svg/flash-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flash-off-sharp.svg b/src/svg/flash-off-sharp.svg new file mode 100644 index 0000000..b5f04bd --- /dev/null +++ b/src/svg/flash-off-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flash-off.svg b/src/svg/flash-off.svg new file mode 100644 index 0000000..9e62bb1 --- /dev/null +++ b/src/svg/flash-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flash-outline.svg b/src/svg/flash-outline.svg new file mode 100644 index 0000000..ac1ff06 --- /dev/null +++ b/src/svg/flash-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flash-sharp.svg b/src/svg/flash-sharp.svg new file mode 100644 index 0000000..6e8f9d4 --- /dev/null +++ b/src/svg/flash-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flash.svg b/src/svg/flash.svg new file mode 100644 index 0000000..a8d632f --- /dev/null +++ b/src/svg/flash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flashlight-outline.svg b/src/svg/flashlight-outline.svg new file mode 100644 index 0000000..18f3a2f --- /dev/null +++ b/src/svg/flashlight-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flashlight-sharp.svg b/src/svg/flashlight-sharp.svg new file mode 100644 index 0000000..d2e8e7b --- /dev/null +++ b/src/svg/flashlight-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flashlight.svg b/src/svg/flashlight.svg new file mode 100644 index 0000000..e660d20 --- /dev/null +++ b/src/svg/flashlight.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flask-outline.svg b/src/svg/flask-outline.svg new file mode 100644 index 0000000..a80ed62 --- /dev/null +++ b/src/svg/flask-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flask-sharp.svg b/src/svg/flask-sharp.svg new file mode 100644 index 0000000..3c55329 --- /dev/null +++ b/src/svg/flask-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flask.svg b/src/svg/flask.svg new file mode 100644 index 0000000..9b7a6f3 --- /dev/null +++ b/src/svg/flask.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flower-outline.svg b/src/svg/flower-outline.svg new file mode 100644 index 0000000..ac90aca --- /dev/null +++ b/src/svg/flower-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flower-sharp.svg b/src/svg/flower-sharp.svg new file mode 100644 index 0000000..ef7d596 --- /dev/null +++ b/src/svg/flower-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/flower.svg b/src/svg/flower.svg new file mode 100644 index 0000000..8134cb0 --- /dev/null +++ b/src/svg/flower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/folder-open-outline.svg b/src/svg/folder-open-outline.svg new file mode 100644 index 0000000..a151aa7 --- /dev/null +++ b/src/svg/folder-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/folder-open-sharp.svg b/src/svg/folder-open-sharp.svg new file mode 100644 index 0000000..9f41acf --- /dev/null +++ b/src/svg/folder-open-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/folder-open.svg b/src/svg/folder-open.svg new file mode 100644 index 0000000..d507307 --- /dev/null +++ b/src/svg/folder-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/folder-outline.svg b/src/svg/folder-outline.svg new file mode 100644 index 0000000..471cd07 --- /dev/null +++ b/src/svg/folder-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/folder-sharp.svg b/src/svg/folder-sharp.svg new file mode 100644 index 0000000..31d13be --- /dev/null +++ b/src/svg/folder-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/folder.svg b/src/svg/folder.svg new file mode 100644 index 0000000..d5a13f4 --- /dev/null +++ b/src/svg/folder.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/football-outline.svg b/src/svg/football-outline.svg new file mode 100644 index 0000000..401abcf --- /dev/null +++ b/src/svg/football-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/football-sharp.svg b/src/svg/football-sharp.svg new file mode 100644 index 0000000..9b476e0 --- /dev/null +++ b/src/svg/football-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/football.svg b/src/svg/football.svg new file mode 100644 index 0000000..fe7a21a --- /dev/null +++ b/src/svg/football.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/footsteps-outline.svg b/src/svg/footsteps-outline.svg new file mode 100644 index 0000000..b88f2cb --- /dev/null +++ b/src/svg/footsteps-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/footsteps-sharp.svg b/src/svg/footsteps-sharp.svg new file mode 100644 index 0000000..defcfd9 --- /dev/null +++ b/src/svg/footsteps-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/footsteps.svg b/src/svg/footsteps.svg new file mode 100644 index 0000000..5861f08 --- /dev/null +++ b/src/svg/footsteps.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/funnel-outline.svg b/src/svg/funnel-outline.svg new file mode 100644 index 0000000..e01b62c --- /dev/null +++ b/src/svg/funnel-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/funnel-sharp.svg b/src/svg/funnel-sharp.svg new file mode 100644 index 0000000..f1f5d08 --- /dev/null +++ b/src/svg/funnel-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/funnel.svg b/src/svg/funnel.svg new file mode 100644 index 0000000..55a4b92 --- /dev/null +++ b/src/svg/funnel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/game-controller-outline.svg b/src/svg/game-controller-outline.svg new file mode 100644 index 0000000..d60e146 --- /dev/null +++ b/src/svg/game-controller-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/game-controller-sharp.svg b/src/svg/game-controller-sharp.svg new file mode 100644 index 0000000..29d7d18 --- /dev/null +++ b/src/svg/game-controller-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/game-controller.svg b/src/svg/game-controller.svg new file mode 100644 index 0000000..19f08a8 --- /dev/null +++ b/src/svg/game-controller.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/gift-outline.svg b/src/svg/gift-outline.svg new file mode 100644 index 0000000..82a027c --- /dev/null +++ b/src/svg/gift-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/gift-sharp.svg b/src/svg/gift-sharp.svg new file mode 100644 index 0000000..162b84c --- /dev/null +++ b/src/svg/gift-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/gift.svg b/src/svg/gift.svg new file mode 100644 index 0000000..d989260 --- /dev/null +++ b/src/svg/gift.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-branch-outline.svg b/src/svg/git-branch-outline.svg new file mode 100644 index 0000000..1210d8a --- /dev/null +++ b/src/svg/git-branch-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-branch-sharp.svg b/src/svg/git-branch-sharp.svg new file mode 100644 index 0000000..e0c7f24 --- /dev/null +++ b/src/svg/git-branch-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-branch.svg b/src/svg/git-branch.svg new file mode 100644 index 0000000..86ce97e --- /dev/null +++ b/src/svg/git-branch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-commit-outline.svg b/src/svg/git-commit-outline.svg new file mode 100644 index 0000000..10db613 --- /dev/null +++ b/src/svg/git-commit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-commit-sharp.svg b/src/svg/git-commit-sharp.svg new file mode 100644 index 0000000..21dee15 --- /dev/null +++ b/src/svg/git-commit-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-commit.svg b/src/svg/git-commit.svg new file mode 100644 index 0000000..3844a23 --- /dev/null +++ b/src/svg/git-commit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-compare-outline.svg b/src/svg/git-compare-outline.svg new file mode 100644 index 0000000..59c0cda --- /dev/null +++ b/src/svg/git-compare-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-compare-sharp.svg b/src/svg/git-compare-sharp.svg new file mode 100644 index 0000000..a560c24 --- /dev/null +++ b/src/svg/git-compare-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-compare.svg b/src/svg/git-compare.svg new file mode 100644 index 0000000..a70582f --- /dev/null +++ b/src/svg/git-compare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-merge-outline.svg b/src/svg/git-merge-outline.svg new file mode 100644 index 0000000..d2a4094 --- /dev/null +++ b/src/svg/git-merge-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-merge-sharp.svg b/src/svg/git-merge-sharp.svg new file mode 100644 index 0000000..a42c914 --- /dev/null +++ b/src/svg/git-merge-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-merge.svg b/src/svg/git-merge.svg new file mode 100644 index 0000000..9aacd6b --- /dev/null +++ b/src/svg/git-merge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-network-outline.svg b/src/svg/git-network-outline.svg new file mode 100644 index 0000000..cdeb14f --- /dev/null +++ b/src/svg/git-network-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-network-sharp.svg b/src/svg/git-network-sharp.svg new file mode 100644 index 0000000..9bb4515 --- /dev/null +++ b/src/svg/git-network-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-network.svg b/src/svg/git-network.svg new file mode 100644 index 0000000..136e941 --- /dev/null +++ b/src/svg/git-network.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-pull-request-outline.svg b/src/svg/git-pull-request-outline.svg new file mode 100644 index 0000000..f79863c --- /dev/null +++ b/src/svg/git-pull-request-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-pull-request-sharp.svg b/src/svg/git-pull-request-sharp.svg new file mode 100644 index 0000000..9711377 --- /dev/null +++ b/src/svg/git-pull-request-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/git-pull-request.svg b/src/svg/git-pull-request.svg new file mode 100644 index 0000000..d641a07 --- /dev/null +++ b/src/svg/git-pull-request.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/glasses-outline.svg b/src/svg/glasses-outline.svg new file mode 100644 index 0000000..44b9807 --- /dev/null +++ b/src/svg/glasses-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/glasses-sharp.svg b/src/svg/glasses-sharp.svg new file mode 100644 index 0000000..4bd06aa --- /dev/null +++ b/src/svg/glasses-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/glasses.svg b/src/svg/glasses.svg new file mode 100644 index 0000000..67945bf --- /dev/null +++ b/src/svg/glasses.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/globe-outline.svg b/src/svg/globe-outline.svg new file mode 100644 index 0000000..b336cab --- /dev/null +++ b/src/svg/globe-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/globe-sharp.svg b/src/svg/globe-sharp.svg new file mode 100644 index 0000000..9fed741 --- /dev/null +++ b/src/svg/globe-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/globe.svg b/src/svg/globe.svg new file mode 100644 index 0000000..6617ec0 --- /dev/null +++ b/src/svg/globe.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/golf-outline.svg b/src/svg/golf-outline.svg new file mode 100644 index 0000000..e43a532 --- /dev/null +++ b/src/svg/golf-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/golf-sharp.svg b/src/svg/golf-sharp.svg new file mode 100644 index 0000000..432f9a4 --- /dev/null +++ b/src/svg/golf-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/golf.svg b/src/svg/golf.svg new file mode 100644 index 0000000..b22a2c1 --- /dev/null +++ b/src/svg/golf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/grid-outline.svg b/src/svg/grid-outline.svg new file mode 100644 index 0000000..4e8ec5f --- /dev/null +++ b/src/svg/grid-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/grid-sharp.svg b/src/svg/grid-sharp.svg new file mode 100644 index 0000000..f67e404 --- /dev/null +++ b/src/svg/grid-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/grid.svg b/src/svg/grid.svg new file mode 100644 index 0000000..6e579bc --- /dev/null +++ b/src/svg/grid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hammer-outline.svg b/src/svg/hammer-outline.svg new file mode 100644 index 0000000..e26ca3b --- /dev/null +++ b/src/svg/hammer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hammer-sharp.svg b/src/svg/hammer-sharp.svg new file mode 100644 index 0000000..71bca55 --- /dev/null +++ b/src/svg/hammer-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hammer.svg b/src/svg/hammer.svg new file mode 100644 index 0000000..63ddd48 --- /dev/null +++ b/src/svg/hammer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hand-left-outline.svg b/src/svg/hand-left-outline.svg new file mode 100644 index 0000000..8151be8 --- /dev/null +++ b/src/svg/hand-left-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hand-left-sharp.svg b/src/svg/hand-left-sharp.svg new file mode 100644 index 0000000..ec2e203 --- /dev/null +++ b/src/svg/hand-left-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hand-left.svg b/src/svg/hand-left.svg new file mode 100644 index 0000000..4db75f6 --- /dev/null +++ b/src/svg/hand-left.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hand-right-outline.svg b/src/svg/hand-right-outline.svg new file mode 100644 index 0000000..38d9158 --- /dev/null +++ b/src/svg/hand-right-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hand-right-sharp.svg b/src/svg/hand-right-sharp.svg new file mode 100644 index 0000000..b575cdb --- /dev/null +++ b/src/svg/hand-right-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hand-right.svg b/src/svg/hand-right.svg new file mode 100644 index 0000000..3234582 --- /dev/null +++ b/src/svg/hand-right.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/happy-outline.svg b/src/svg/happy-outline.svg new file mode 100644 index 0000000..52f8a14 --- /dev/null +++ b/src/svg/happy-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/happy-sharp.svg b/src/svg/happy-sharp.svg new file mode 100644 index 0000000..e41f193 --- /dev/null +++ b/src/svg/happy-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/happy.svg b/src/svg/happy.svg new file mode 100644 index 0000000..262c757 --- /dev/null +++ b/src/svg/happy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hardware-chip-outline.svg b/src/svg/hardware-chip-outline.svg new file mode 100644 index 0000000..bef0414 --- /dev/null +++ b/src/svg/hardware-chip-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hardware-chip-sharp.svg b/src/svg/hardware-chip-sharp.svg new file mode 100644 index 0000000..a1335b9 --- /dev/null +++ b/src/svg/hardware-chip-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hardware-chip.svg b/src/svg/hardware-chip.svg new file mode 100644 index 0000000..77dccf7 --- /dev/null +++ b/src/svg/hardware-chip.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/headset-outline.svg b/src/svg/headset-outline.svg new file mode 100644 index 0000000..ae4f4b9 --- /dev/null +++ b/src/svg/headset-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/headset-sharp.svg b/src/svg/headset-sharp.svg new file mode 100644 index 0000000..37e93e5 --- /dev/null +++ b/src/svg/headset-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/headset.svg b/src/svg/headset.svg new file mode 100644 index 0000000..56347c4 --- /dev/null +++ b/src/svg/headset.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-circle-outline.svg b/src/svg/heart-circle-outline.svg new file mode 100644 index 0000000..7df8081 --- /dev/null +++ b/src/svg/heart-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-circle-sharp.svg b/src/svg/heart-circle-sharp.svg new file mode 100644 index 0000000..b560a89 --- /dev/null +++ b/src/svg/heart-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-circle.svg b/src/svg/heart-circle.svg new file mode 100644 index 0000000..3ce0402 --- /dev/null +++ b/src/svg/heart-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-dislike-circle-outline.svg b/src/svg/heart-dislike-circle-outline.svg new file mode 100644 index 0000000..6538608 --- /dev/null +++ b/src/svg/heart-dislike-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-dislike-circle-sharp.svg b/src/svg/heart-dislike-circle-sharp.svg new file mode 100644 index 0000000..e6fe639 --- /dev/null +++ b/src/svg/heart-dislike-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-dislike-circle.svg b/src/svg/heart-dislike-circle.svg new file mode 100644 index 0000000..ba76d4a --- /dev/null +++ b/src/svg/heart-dislike-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-dislike-outline.svg b/src/svg/heart-dislike-outline.svg new file mode 100644 index 0000000..aadff78 --- /dev/null +++ b/src/svg/heart-dislike-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-dislike-sharp.svg b/src/svg/heart-dislike-sharp.svg new file mode 100644 index 0000000..6982a3c --- /dev/null +++ b/src/svg/heart-dislike-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-dislike.svg b/src/svg/heart-dislike.svg new file mode 100644 index 0000000..93d8e22 --- /dev/null +++ b/src/svg/heart-dislike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-half-outline.svg b/src/svg/heart-half-outline.svg new file mode 100644 index 0000000..a220600 --- /dev/null +++ b/src/svg/heart-half-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-half-sharp.svg b/src/svg/heart-half-sharp.svg new file mode 100644 index 0000000..0fd0bca --- /dev/null +++ b/src/svg/heart-half-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-half.svg b/src/svg/heart-half.svg new file mode 100644 index 0000000..a220600 --- /dev/null +++ b/src/svg/heart-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-outline.svg b/src/svg/heart-outline.svg new file mode 100644 index 0000000..82823ce --- /dev/null +++ b/src/svg/heart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart-sharp.svg b/src/svg/heart-sharp.svg new file mode 100644 index 0000000..ac382c3 --- /dev/null +++ b/src/svg/heart-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/heart.svg b/src/svg/heart.svg new file mode 100644 index 0000000..1bfd362 --- /dev/null +++ b/src/svg/heart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help-buoy-outline.svg b/src/svg/help-buoy-outline.svg new file mode 100644 index 0000000..626c9fe --- /dev/null +++ b/src/svg/help-buoy-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help-buoy-sharp.svg b/src/svg/help-buoy-sharp.svg new file mode 100644 index 0000000..ef2b122 --- /dev/null +++ b/src/svg/help-buoy-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help-buoy.svg b/src/svg/help-buoy.svg new file mode 100644 index 0000000..c9bb015 --- /dev/null +++ b/src/svg/help-buoy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help-circle-outline.svg b/src/svg/help-circle-outline.svg new file mode 100644 index 0000000..79f7354 --- /dev/null +++ b/src/svg/help-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help-circle-sharp.svg b/src/svg/help-circle-sharp.svg new file mode 100644 index 0000000..7efcab0 --- /dev/null +++ b/src/svg/help-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help-circle.svg b/src/svg/help-circle.svg new file mode 100644 index 0000000..8c44ca1 --- /dev/null +++ b/src/svg/help-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help-outline.svg b/src/svg/help-outline.svg new file mode 100644 index 0000000..d16b0da --- /dev/null +++ b/src/svg/help-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help-sharp.svg b/src/svg/help-sharp.svg new file mode 100644 index 0000000..4da9985 --- /dev/null +++ b/src/svg/help-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/help.svg b/src/svg/help.svg new file mode 100644 index 0000000..d16b0da --- /dev/null +++ b/src/svg/help.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/home-outline.svg b/src/svg/home-outline.svg new file mode 100644 index 0000000..97d58a1 --- /dev/null +++ b/src/svg/home-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/home-sharp.svg b/src/svg/home-sharp.svg new file mode 100644 index 0000000..35a07e0 --- /dev/null +++ b/src/svg/home-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/home.svg b/src/svg/home.svg new file mode 100644 index 0000000..bd7019c --- /dev/null +++ b/src/svg/home.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hourglass-outline.svg b/src/svg/hourglass-outline.svg new file mode 100644 index 0000000..12c61ff --- /dev/null +++ b/src/svg/hourglass-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hourglass-sharp.svg b/src/svg/hourglass-sharp.svg new file mode 100644 index 0000000..2425bee --- /dev/null +++ b/src/svg/hourglass-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/hourglass.svg b/src/svg/hourglass.svg new file mode 100644 index 0000000..0d3e48f --- /dev/null +++ b/src/svg/hourglass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ice-cream-outline.svg b/src/svg/ice-cream-outline.svg new file mode 100644 index 0000000..64a6b84 --- /dev/null +++ b/src/svg/ice-cream-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ice-cream-sharp.svg b/src/svg/ice-cream-sharp.svg new file mode 100644 index 0000000..63e2df4 --- /dev/null +++ b/src/svg/ice-cream-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ice-cream.svg b/src/svg/ice-cream.svg new file mode 100644 index 0000000..f3ad56e --- /dev/null +++ b/src/svg/ice-cream.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/id-card-outline.svg b/src/svg/id-card-outline.svg new file mode 100644 index 0000000..8c3d914 --- /dev/null +++ b/src/svg/id-card-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/id-card-sharp.svg b/src/svg/id-card-sharp.svg new file mode 100644 index 0000000..f391819 --- /dev/null +++ b/src/svg/id-card-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/id-card.svg b/src/svg/id-card.svg new file mode 100644 index 0000000..ed391b8 --- /dev/null +++ b/src/svg/id-card.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/image-outline.svg b/src/svg/image-outline.svg new file mode 100644 index 0000000..f0c2106 --- /dev/null +++ b/src/svg/image-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/image-sharp.svg b/src/svg/image-sharp.svg new file mode 100644 index 0000000..89eeb4f --- /dev/null +++ b/src/svg/image-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/image.svg b/src/svg/image.svg new file mode 100644 index 0000000..946e795 --- /dev/null +++ b/src/svg/image.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/images-outline.svg b/src/svg/images-outline.svg new file mode 100644 index 0000000..19a0f52 --- /dev/null +++ b/src/svg/images-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/images-sharp.svg b/src/svg/images-sharp.svg new file mode 100644 index 0000000..cee5ea2 --- /dev/null +++ b/src/svg/images-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/images.svg b/src/svg/images.svg new file mode 100644 index 0000000..78ab8e0 --- /dev/null +++ b/src/svg/images.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/infinite-outline.svg b/src/svg/infinite-outline.svg new file mode 100644 index 0000000..33c91c1 --- /dev/null +++ b/src/svg/infinite-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/infinite-sharp.svg b/src/svg/infinite-sharp.svg new file mode 100644 index 0000000..a76469a --- /dev/null +++ b/src/svg/infinite-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/infinite.svg b/src/svg/infinite.svg new file mode 100644 index 0000000..543b5c5 --- /dev/null +++ b/src/svg/infinite.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/information-circle-outline.svg b/src/svg/information-circle-outline.svg new file mode 100644 index 0000000..e5e84d8 --- /dev/null +++ b/src/svg/information-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/information-circle-sharp.svg b/src/svg/information-circle-sharp.svg new file mode 100644 index 0000000..17d8f4f --- /dev/null +++ b/src/svg/information-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/information-circle.svg b/src/svg/information-circle.svg new file mode 100644 index 0000000..8ac3e86 --- /dev/null +++ b/src/svg/information-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/information-outline.svg b/src/svg/information-outline.svg new file mode 100644 index 0000000..7914bd4 --- /dev/null +++ b/src/svg/information-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/information-sharp.svg b/src/svg/information-sharp.svg new file mode 100644 index 0000000..941c182 --- /dev/null +++ b/src/svg/information-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/information.svg b/src/svg/information.svg new file mode 100644 index 0000000..7914bd4 --- /dev/null +++ b/src/svg/information.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/invert-mode-outline.svg b/src/svg/invert-mode-outline.svg new file mode 100644 index 0000000..f778cd6 --- /dev/null +++ b/src/svg/invert-mode-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/invert-mode-sharp.svg b/src/svg/invert-mode-sharp.svg new file mode 100644 index 0000000..5a5da23 --- /dev/null +++ b/src/svg/invert-mode-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/invert-mode.svg b/src/svg/invert-mode.svg new file mode 100644 index 0000000..c5b0d23 --- /dev/null +++ b/src/svg/invert-mode.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/journal-outline.svg b/src/svg/journal-outline.svg new file mode 100644 index 0000000..1a0c30c --- /dev/null +++ b/src/svg/journal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/journal-sharp.svg b/src/svg/journal-sharp.svg new file mode 100644 index 0000000..1c62973 --- /dev/null +++ b/src/svg/journal-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/journal.svg b/src/svg/journal.svg new file mode 100644 index 0000000..a20e363 --- /dev/null +++ b/src/svg/journal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/key-outline.svg b/src/svg/key-outline.svg new file mode 100644 index 0000000..a43dda4 --- /dev/null +++ b/src/svg/key-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/key-sharp.svg b/src/svg/key-sharp.svg new file mode 100644 index 0000000..7565925 --- /dev/null +++ b/src/svg/key-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/key.svg b/src/svg/key.svg new file mode 100644 index 0000000..6ea8ec7 --- /dev/null +++ b/src/svg/key.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/keypad-outline.svg b/src/svg/keypad-outline.svg new file mode 100644 index 0000000..8223a2c --- /dev/null +++ b/src/svg/keypad-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/keypad-sharp.svg b/src/svg/keypad-sharp.svg new file mode 100644 index 0000000..956fe61 --- /dev/null +++ b/src/svg/keypad-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/keypad.svg b/src/svg/keypad.svg new file mode 100644 index 0000000..387efaf --- /dev/null +++ b/src/svg/keypad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/language-outline.svg b/src/svg/language-outline.svg new file mode 100644 index 0000000..eec59b1 --- /dev/null +++ b/src/svg/language-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/language-sharp.svg b/src/svg/language-sharp.svg new file mode 100644 index 0000000..dce68ab --- /dev/null +++ b/src/svg/language-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/language.svg b/src/svg/language.svg new file mode 100644 index 0000000..f14f571 --- /dev/null +++ b/src/svg/language.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/laptop-outline.svg b/src/svg/laptop-outline.svg new file mode 100644 index 0000000..9d7bd0b --- /dev/null +++ b/src/svg/laptop-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/laptop-sharp.svg b/src/svg/laptop-sharp.svg new file mode 100644 index 0000000..a4bbfc4 --- /dev/null +++ b/src/svg/laptop-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/laptop.svg b/src/svg/laptop.svg new file mode 100644 index 0000000..1196855 --- /dev/null +++ b/src/svg/laptop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/layers-outline.svg b/src/svg/layers-outline.svg new file mode 100644 index 0000000..aac73fe --- /dev/null +++ b/src/svg/layers-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/layers-sharp.svg b/src/svg/layers-sharp.svg new file mode 100644 index 0000000..06494d2 --- /dev/null +++ b/src/svg/layers-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/layers.svg b/src/svg/layers.svg new file mode 100644 index 0000000..0089d68 --- /dev/null +++ b/src/svg/layers.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/leaf-outline.svg b/src/svg/leaf-outline.svg new file mode 100644 index 0000000..3c03532 --- /dev/null +++ b/src/svg/leaf-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/leaf-sharp.svg b/src/svg/leaf-sharp.svg new file mode 100644 index 0000000..2a6f2fa --- /dev/null +++ b/src/svg/leaf-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/leaf.svg b/src/svg/leaf.svg new file mode 100644 index 0000000..c6b8fdf --- /dev/null +++ b/src/svg/leaf.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/library-outline.svg b/src/svg/library-outline.svg new file mode 100644 index 0000000..f7b5587 --- /dev/null +++ b/src/svg/library-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/library-sharp.svg b/src/svg/library-sharp.svg new file mode 100644 index 0000000..3f024c9 --- /dev/null +++ b/src/svg/library-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/library.svg b/src/svg/library.svg new file mode 100644 index 0000000..82a7ed2 --- /dev/null +++ b/src/svg/library.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/link-outline.svg b/src/svg/link-outline.svg new file mode 100644 index 0000000..fc8ff88 --- /dev/null +++ b/src/svg/link-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/link-sharp.svg b/src/svg/link-sharp.svg new file mode 100644 index 0000000..155656e --- /dev/null +++ b/src/svg/link-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/link.svg b/src/svg/link.svg new file mode 100644 index 0000000..6473b90 --- /dev/null +++ b/src/svg/link.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/list-circle-outline.svg b/src/svg/list-circle-outline.svg new file mode 100644 index 0000000..c814128 --- /dev/null +++ b/src/svg/list-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/list-circle-sharp.svg b/src/svg/list-circle-sharp.svg new file mode 100644 index 0000000..1e08caf --- /dev/null +++ b/src/svg/list-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/list-circle.svg b/src/svg/list-circle.svg new file mode 100644 index 0000000..6479cf2 --- /dev/null +++ b/src/svg/list-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/list-outline.svg b/src/svg/list-outline.svg new file mode 100644 index 0000000..fe2003a --- /dev/null +++ b/src/svg/list-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/list-sharp.svg b/src/svg/list-sharp.svg new file mode 100644 index 0000000..47eb87c --- /dev/null +++ b/src/svg/list-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/list.svg b/src/svg/list.svg new file mode 100644 index 0000000..ae61f1e --- /dev/null +++ b/src/svg/list.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/locate-outline.svg b/src/svg/locate-outline.svg new file mode 100644 index 0000000..2509b3b --- /dev/null +++ b/src/svg/locate-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/locate-sharp.svg b/src/svg/locate-sharp.svg new file mode 100644 index 0000000..64aab97 --- /dev/null +++ b/src/svg/locate-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/locate.svg b/src/svg/locate.svg new file mode 100644 index 0000000..b145199 --- /dev/null +++ b/src/svg/locate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/location-outline.svg b/src/svg/location-outline.svg new file mode 100644 index 0000000..0b9ad32 --- /dev/null +++ b/src/svg/location-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/location-sharp.svg b/src/svg/location-sharp.svg new file mode 100644 index 0000000..a429f9a --- /dev/null +++ b/src/svg/location-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/location.svg b/src/svg/location.svg new file mode 100644 index 0000000..00ddd79 --- /dev/null +++ b/src/svg/location.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/lock-closed-outline.svg b/src/svg/lock-closed-outline.svg new file mode 100644 index 0000000..a8114e2 --- /dev/null +++ b/src/svg/lock-closed-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/lock-closed-sharp.svg b/src/svg/lock-closed-sharp.svg new file mode 100644 index 0000000..af2fba7 --- /dev/null +++ b/src/svg/lock-closed-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/lock-closed.svg b/src/svg/lock-closed.svg new file mode 100644 index 0000000..09c53a4 --- /dev/null +++ b/src/svg/lock-closed.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/lock-open-outline.svg b/src/svg/lock-open-outline.svg new file mode 100644 index 0000000..f0549ff --- /dev/null +++ b/src/svg/lock-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/lock-open-sharp.svg b/src/svg/lock-open-sharp.svg new file mode 100644 index 0000000..100a3fb --- /dev/null +++ b/src/svg/lock-open-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/lock-open.svg b/src/svg/lock-open.svg new file mode 100644 index 0000000..f2e1042 --- /dev/null +++ b/src/svg/lock-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/log-in-outline.svg b/src/svg/log-in-outline.svg new file mode 100644 index 0000000..386f9f7 --- /dev/null +++ b/src/svg/log-in-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/log-in-sharp.svg b/src/svg/log-in-sharp.svg new file mode 100644 index 0000000..a9e23d8 --- /dev/null +++ b/src/svg/log-in-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/log-in.svg b/src/svg/log-in.svg new file mode 100644 index 0000000..b550340 --- /dev/null +++ b/src/svg/log-in.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/log-out-outline.svg b/src/svg/log-out-outline.svg new file mode 100644 index 0000000..f8736fb --- /dev/null +++ b/src/svg/log-out-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/log-out-sharp.svg b/src/svg/log-out-sharp.svg new file mode 100644 index 0000000..f91da0e --- /dev/null +++ b/src/svg/log-out-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/log-out.svg b/src/svg/log-out.svg new file mode 100644 index 0000000..c801993 --- /dev/null +++ b/src/svg/log-out.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-alipay.svg b/src/svg/logo-alipay.svg new file mode 100644 index 0000000..e59357e --- /dev/null +++ b/src/svg/logo-alipay.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-amazon.svg b/src/svg/logo-amazon.svg new file mode 100644 index 0000000..8cb5ba8 --- /dev/null +++ b/src/svg/logo-amazon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-amplify.svg b/src/svg/logo-amplify.svg new file mode 100644 index 0000000..364f036 --- /dev/null +++ b/src/svg/logo-amplify.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-android.svg b/src/svg/logo-android.svg new file mode 100644 index 0000000..4af55dd --- /dev/null +++ b/src/svg/logo-android.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-angular.svg b/src/svg/logo-angular.svg new file mode 100644 index 0000000..fed849a --- /dev/null +++ b/src/svg/logo-angular.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-appflow.svg b/src/svg/logo-appflow.svg new file mode 100644 index 0000000..4d3b6a2 --- /dev/null +++ b/src/svg/logo-appflow.svg @@ -0,0 +1,4 @@ + + + + diff --git a/src/svg/logo-apple-appstore.svg b/src/svg/logo-apple-appstore.svg new file mode 100644 index 0000000..cea989d --- /dev/null +++ b/src/svg/logo-apple-appstore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-apple-ar.svg b/src/svg/logo-apple-ar.svg new file mode 100644 index 0000000..3464094 --- /dev/null +++ b/src/svg/logo-apple-ar.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-apple.svg b/src/svg/logo-apple.svg new file mode 100644 index 0000000..5d7ba24 --- /dev/null +++ b/src/svg/logo-apple.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-behance.svg b/src/svg/logo-behance.svg new file mode 100644 index 0000000..2959920 --- /dev/null +++ b/src/svg/logo-behance.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-bitbucket.svg b/src/svg/logo-bitbucket.svg new file mode 100644 index 0000000..d02065b --- /dev/null +++ b/src/svg/logo-bitbucket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-bitcoin.svg b/src/svg/logo-bitcoin.svg new file mode 100644 index 0000000..27e2929 --- /dev/null +++ b/src/svg/logo-bitcoin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-buffer.svg b/src/svg/logo-buffer.svg new file mode 100644 index 0000000..b2150b0 --- /dev/null +++ b/src/svg/logo-buffer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-capacitor.svg b/src/svg/logo-capacitor.svg new file mode 100644 index 0000000..a0aae7c --- /dev/null +++ b/src/svg/logo-capacitor.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-chrome.svg b/src/svg/logo-chrome.svg new file mode 100644 index 0000000..6a3c5f6 --- /dev/null +++ b/src/svg/logo-chrome.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-closed-captioning.svg b/src/svg/logo-closed-captioning.svg new file mode 100644 index 0000000..0cc682c --- /dev/null +++ b/src/svg/logo-closed-captioning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-codepen.svg b/src/svg/logo-codepen.svg new file mode 100644 index 0000000..de40afb --- /dev/null +++ b/src/svg/logo-codepen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-css3.svg b/src/svg/logo-css3.svg new file mode 100644 index 0000000..eff3c2d --- /dev/null +++ b/src/svg/logo-css3.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-designernews.svg b/src/svg/logo-designernews.svg new file mode 100644 index 0000000..0705671 --- /dev/null +++ b/src/svg/logo-designernews.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-deviantart.svg b/src/svg/logo-deviantart.svg new file mode 100644 index 0000000..dce544e --- /dev/null +++ b/src/svg/logo-deviantart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-discord.svg b/src/svg/logo-discord.svg new file mode 100644 index 0000000..d0f54aa --- /dev/null +++ b/src/svg/logo-discord.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-docker.svg b/src/svg/logo-docker.svg new file mode 100644 index 0000000..628e519 --- /dev/null +++ b/src/svg/logo-docker.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-dribbble.svg b/src/svg/logo-dribbble.svg new file mode 100644 index 0000000..9441f3e --- /dev/null +++ b/src/svg/logo-dribbble.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-dropbox.svg b/src/svg/logo-dropbox.svg new file mode 100644 index 0000000..2b781ed --- /dev/null +++ b/src/svg/logo-dropbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-edge.svg b/src/svg/logo-edge.svg new file mode 100644 index 0000000..3d1c83a --- /dev/null +++ b/src/svg/logo-edge.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-electron.svg b/src/svg/logo-electron.svg new file mode 100644 index 0000000..aadd169 --- /dev/null +++ b/src/svg/logo-electron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-euro.svg b/src/svg/logo-euro.svg new file mode 100644 index 0000000..7b5ddd4 --- /dev/null +++ b/src/svg/logo-euro.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-facebook.svg b/src/svg/logo-facebook.svg new file mode 100644 index 0000000..19c40fc --- /dev/null +++ b/src/svg/logo-facebook.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-figma.svg b/src/svg/logo-figma.svg new file mode 100644 index 0000000..c985927 --- /dev/null +++ b/src/svg/logo-figma.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-firebase.svg b/src/svg/logo-firebase.svg new file mode 100644 index 0000000..4e71675 --- /dev/null +++ b/src/svg/logo-firebase.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-firefox.svg b/src/svg/logo-firefox.svg new file mode 100644 index 0000000..f3697c9 --- /dev/null +++ b/src/svg/logo-firefox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-flickr.svg b/src/svg/logo-flickr.svg new file mode 100644 index 0000000..6d3324f --- /dev/null +++ b/src/svg/logo-flickr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-foursquare.svg b/src/svg/logo-foursquare.svg new file mode 100644 index 0000000..f0ef7f8 --- /dev/null +++ b/src/svg/logo-foursquare.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-github.svg b/src/svg/logo-github.svg new file mode 100644 index 0000000..d4b744d --- /dev/null +++ b/src/svg/logo-github.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-gitlab.svg b/src/svg/logo-gitlab.svg new file mode 100644 index 0000000..c50282a --- /dev/null +++ b/src/svg/logo-gitlab.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/logo-google-playstore.svg b/src/svg/logo-google-playstore.svg new file mode 100644 index 0000000..5a2d5ec --- /dev/null +++ b/src/svg/logo-google-playstore.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-google.svg b/src/svg/logo-google.svg new file mode 100644 index 0000000..a1ccb2a --- /dev/null +++ b/src/svg/logo-google.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-hackernews.svg b/src/svg/logo-hackernews.svg new file mode 100644 index 0000000..5bbf768 --- /dev/null +++ b/src/svg/logo-hackernews.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-html5.svg b/src/svg/logo-html5.svg new file mode 100644 index 0000000..91b1f02 --- /dev/null +++ b/src/svg/logo-html5.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-instagram.svg b/src/svg/logo-instagram.svg new file mode 100644 index 0000000..51f59a3 --- /dev/null +++ b/src/svg/logo-instagram.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-ionic.svg b/src/svg/logo-ionic.svg new file mode 100644 index 0000000..e4c7501 --- /dev/null +++ b/src/svg/logo-ionic.svg @@ -0,0 +1,6 @@ + + + + + + diff --git a/src/svg/logo-ionitron.svg b/src/svg/logo-ionitron.svg new file mode 100644 index 0000000..fa4834a --- /dev/null +++ b/src/svg/logo-ionitron.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-javascript.svg b/src/svg/logo-javascript.svg new file mode 100644 index 0000000..f30ad04 --- /dev/null +++ b/src/svg/logo-javascript.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-laravel.svg b/src/svg/logo-laravel.svg new file mode 100644 index 0000000..0d65b47 --- /dev/null +++ b/src/svg/logo-laravel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-linkedin.svg b/src/svg/logo-linkedin.svg new file mode 100644 index 0000000..43bbe8f --- /dev/null +++ b/src/svg/logo-linkedin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-markdown.svg b/src/svg/logo-markdown.svg new file mode 100644 index 0000000..10d92ef --- /dev/null +++ b/src/svg/logo-markdown.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-mastodon.svg b/src/svg/logo-mastodon.svg new file mode 100644 index 0000000..9e96c94 --- /dev/null +++ b/src/svg/logo-mastodon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-medium.svg b/src/svg/logo-medium.svg new file mode 100644 index 0000000..1ac5617 --- /dev/null +++ b/src/svg/logo-medium.svg @@ -0,0 +1,13 @@ + + + + + + + + diff --git a/src/svg/logo-microsoft.svg b/src/svg/logo-microsoft.svg new file mode 100644 index 0000000..016037c --- /dev/null +++ b/src/svg/logo-microsoft.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-no-smoking.svg b/src/svg/logo-no-smoking.svg new file mode 100644 index 0000000..4afe49c --- /dev/null +++ b/src/svg/logo-no-smoking.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-nodejs.svg b/src/svg/logo-nodejs.svg new file mode 100644 index 0000000..b38dee5 --- /dev/null +++ b/src/svg/logo-nodejs.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-npm.svg b/src/svg/logo-npm.svg new file mode 100644 index 0000000..7895e1e --- /dev/null +++ b/src/svg/logo-npm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-octocat.svg b/src/svg/logo-octocat.svg new file mode 100644 index 0000000..ecc2c02 --- /dev/null +++ b/src/svg/logo-octocat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-paypal.svg b/src/svg/logo-paypal.svg new file mode 100644 index 0000000..54d5033 --- /dev/null +++ b/src/svg/logo-paypal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-pinterest.svg b/src/svg/logo-pinterest.svg new file mode 100644 index 0000000..751db82 --- /dev/null +++ b/src/svg/logo-pinterest.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-playstation.svg b/src/svg/logo-playstation.svg new file mode 100644 index 0000000..63e600a --- /dev/null +++ b/src/svg/logo-playstation.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-pwa.svg b/src/svg/logo-pwa.svg new file mode 100644 index 0000000..bd92604 --- /dev/null +++ b/src/svg/logo-pwa.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-python.svg b/src/svg/logo-python.svg new file mode 100644 index 0000000..4854c78 --- /dev/null +++ b/src/svg/logo-python.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-react.svg b/src/svg/logo-react.svg new file mode 100644 index 0000000..fb0ed4f --- /dev/null +++ b/src/svg/logo-react.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-reddit.svg b/src/svg/logo-reddit.svg new file mode 100644 index 0000000..7c0e886 --- /dev/null +++ b/src/svg/logo-reddit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-rss.svg b/src/svg/logo-rss.svg new file mode 100644 index 0000000..d8032ec --- /dev/null +++ b/src/svg/logo-rss.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-sass.svg b/src/svg/logo-sass.svg new file mode 100644 index 0000000..ba7b450 --- /dev/null +++ b/src/svg/logo-sass.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-skype.svg b/src/svg/logo-skype.svg new file mode 100644 index 0000000..b90b2f7 --- /dev/null +++ b/src/svg/logo-skype.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-slack.svg b/src/svg/logo-slack.svg new file mode 100644 index 0000000..a089308 --- /dev/null +++ b/src/svg/logo-slack.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-snapchat.svg b/src/svg/logo-snapchat.svg new file mode 100644 index 0000000..d991b97 --- /dev/null +++ b/src/svg/logo-snapchat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-soundcloud.svg b/src/svg/logo-soundcloud.svg new file mode 100644 index 0000000..16ff07b --- /dev/null +++ b/src/svg/logo-soundcloud.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-stackoverflow.svg b/src/svg/logo-stackoverflow.svg new file mode 100644 index 0000000..93c27ae --- /dev/null +++ b/src/svg/logo-stackoverflow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-steam.svg b/src/svg/logo-steam.svg new file mode 100644 index 0000000..c0851b9 --- /dev/null +++ b/src/svg/logo-steam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-stencil.svg b/src/svg/logo-stencil.svg new file mode 100644 index 0000000..2acaf28 --- /dev/null +++ b/src/svg/logo-stencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-tableau.svg b/src/svg/logo-tableau.svg new file mode 100644 index 0000000..2d47c7c --- /dev/null +++ b/src/svg/logo-tableau.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-tiktok.svg b/src/svg/logo-tiktok.svg new file mode 100644 index 0000000..a04095d --- /dev/null +++ b/src/svg/logo-tiktok.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-trapeze.svg b/src/svg/logo-trapeze.svg new file mode 100644 index 0000000..c0c4a1a --- /dev/null +++ b/src/svg/logo-trapeze.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/logo-tumblr.svg b/src/svg/logo-tumblr.svg new file mode 100644 index 0000000..ff55785 --- /dev/null +++ b/src/svg/logo-tumblr.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-tux.svg b/src/svg/logo-tux.svg new file mode 100644 index 0000000..506c9ff --- /dev/null +++ b/src/svg/logo-tux.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-twitch.svg b/src/svg/logo-twitch.svg new file mode 100644 index 0000000..952eb91 --- /dev/null +++ b/src/svg/logo-twitch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-twitter.svg b/src/svg/logo-twitter.svg new file mode 100644 index 0000000..d758c20 --- /dev/null +++ b/src/svg/logo-twitter.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-usd.svg b/src/svg/logo-usd.svg new file mode 100644 index 0000000..d75c9b6 --- /dev/null +++ b/src/svg/logo-usd.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-venmo.svg b/src/svg/logo-venmo.svg new file mode 100644 index 0000000..2a5ae63 --- /dev/null +++ b/src/svg/logo-venmo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-vercel.svg b/src/svg/logo-vercel.svg new file mode 100644 index 0000000..02993ff --- /dev/null +++ b/src/svg/logo-vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-vimeo.svg b/src/svg/logo-vimeo.svg new file mode 100644 index 0000000..b4b013a --- /dev/null +++ b/src/svg/logo-vimeo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-vk.svg b/src/svg/logo-vk.svg new file mode 100644 index 0000000..8f4c36a --- /dev/null +++ b/src/svg/logo-vk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-vue.svg b/src/svg/logo-vue.svg new file mode 100644 index 0000000..b4d9320 --- /dev/null +++ b/src/svg/logo-vue.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-web-component.svg b/src/svg/logo-web-component.svg new file mode 100644 index 0000000..e0f7625 --- /dev/null +++ b/src/svg/logo-web-component.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-wechat.svg b/src/svg/logo-wechat.svg new file mode 100644 index 0000000..a22bd24 --- /dev/null +++ b/src/svg/logo-wechat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-whatsapp.svg b/src/svg/logo-whatsapp.svg new file mode 100644 index 0000000..99cbb0c --- /dev/null +++ b/src/svg/logo-whatsapp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-windows.svg b/src/svg/logo-windows.svg new file mode 100644 index 0000000..896610a --- /dev/null +++ b/src/svg/logo-windows.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-wordpress.svg b/src/svg/logo-wordpress.svg new file mode 100644 index 0000000..d473a36 --- /dev/null +++ b/src/svg/logo-wordpress.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-xbox.svg b/src/svg/logo-xbox.svg new file mode 100644 index 0000000..b98cbd2 --- /dev/null +++ b/src/svg/logo-xbox.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-xing.svg b/src/svg/logo-xing.svg new file mode 100644 index 0000000..480f9c0 --- /dev/null +++ b/src/svg/logo-xing.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-yahoo.svg b/src/svg/logo-yahoo.svg new file mode 100644 index 0000000..a42e0a6 --- /dev/null +++ b/src/svg/logo-yahoo.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/svg/logo-yen.svg b/src/svg/logo-yen.svg new file mode 100644 index 0000000..ef3f514 --- /dev/null +++ b/src/svg/logo-yen.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/logo-youtube.svg b/src/svg/logo-youtube.svg new file mode 100644 index 0000000..b6e103a --- /dev/null +++ b/src/svg/logo-youtube.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/magnet-outline.svg b/src/svg/magnet-outline.svg new file mode 100644 index 0000000..73cea32 --- /dev/null +++ b/src/svg/magnet-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/magnet-sharp.svg b/src/svg/magnet-sharp.svg new file mode 100644 index 0000000..3737ecc --- /dev/null +++ b/src/svg/magnet-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/magnet.svg b/src/svg/magnet.svg new file mode 100644 index 0000000..616d8bb --- /dev/null +++ b/src/svg/magnet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail-open-outline.svg b/src/svg/mail-open-outline.svg new file mode 100644 index 0000000..c1a21c1 --- /dev/null +++ b/src/svg/mail-open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail-open-sharp.svg b/src/svg/mail-open-sharp.svg new file mode 100644 index 0000000..10d44a3 --- /dev/null +++ b/src/svg/mail-open-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail-open.svg b/src/svg/mail-open.svg new file mode 100644 index 0000000..035de0d --- /dev/null +++ b/src/svg/mail-open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail-outline.svg b/src/svg/mail-outline.svg new file mode 100644 index 0000000..0bd9bc1 --- /dev/null +++ b/src/svg/mail-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail-sharp.svg b/src/svg/mail-sharp.svg new file mode 100644 index 0000000..bef13b3 --- /dev/null +++ b/src/svg/mail-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail-unread-outline.svg b/src/svg/mail-unread-outline.svg new file mode 100644 index 0000000..ca49b9e --- /dev/null +++ b/src/svg/mail-unread-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail-unread-sharp.svg b/src/svg/mail-unread-sharp.svg new file mode 100644 index 0000000..7d6585f --- /dev/null +++ b/src/svg/mail-unread-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail-unread.svg b/src/svg/mail-unread.svg new file mode 100644 index 0000000..568b8c2 --- /dev/null +++ b/src/svg/mail-unread.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mail.svg b/src/svg/mail.svg new file mode 100644 index 0000000..cb4db23 --- /dev/null +++ b/src/svg/mail.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/male-female-outline.svg b/src/svg/male-female-outline.svg new file mode 100644 index 0000000..e848edc --- /dev/null +++ b/src/svg/male-female-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/male-female-sharp.svg b/src/svg/male-female-sharp.svg new file mode 100644 index 0000000..be300b0 --- /dev/null +++ b/src/svg/male-female-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/male-female.svg b/src/svg/male-female.svg new file mode 100644 index 0000000..f8abf07 --- /dev/null +++ b/src/svg/male-female.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/male-outline.svg b/src/svg/male-outline.svg new file mode 100644 index 0000000..da717b6 --- /dev/null +++ b/src/svg/male-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/male-sharp.svg b/src/svg/male-sharp.svg new file mode 100644 index 0000000..2e1ca61 --- /dev/null +++ b/src/svg/male-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/male.svg b/src/svg/male.svg new file mode 100644 index 0000000..44d9073 --- /dev/null +++ b/src/svg/male.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/man-outline.svg b/src/svg/man-outline.svg new file mode 100644 index 0000000..e594b80 --- /dev/null +++ b/src/svg/man-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/man-sharp.svg b/src/svg/man-sharp.svg new file mode 100644 index 0000000..67aee87 --- /dev/null +++ b/src/svg/man-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/man.svg b/src/svg/man.svg new file mode 100644 index 0000000..3cfea39 --- /dev/null +++ b/src/svg/man.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/map-outline.svg b/src/svg/map-outline.svg new file mode 100644 index 0000000..aff5e4d --- /dev/null +++ b/src/svg/map-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/map-sharp.svg b/src/svg/map-sharp.svg new file mode 100644 index 0000000..505ad42 --- /dev/null +++ b/src/svg/map-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/map.svg b/src/svg/map.svg new file mode 100644 index 0000000..e3cf990 --- /dev/null +++ b/src/svg/map.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medal-outline.svg b/src/svg/medal-outline.svg new file mode 100644 index 0000000..87eaa2a --- /dev/null +++ b/src/svg/medal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medal-sharp.svg b/src/svg/medal-sharp.svg new file mode 100644 index 0000000..61ac1de --- /dev/null +++ b/src/svg/medal-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medal.svg b/src/svg/medal.svg new file mode 100644 index 0000000..36f959b --- /dev/null +++ b/src/svg/medal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medical-outline.svg b/src/svg/medical-outline.svg new file mode 100644 index 0000000..3f4eef5 --- /dev/null +++ b/src/svg/medical-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medical-sharp.svg b/src/svg/medical-sharp.svg new file mode 100644 index 0000000..2edfa5d --- /dev/null +++ b/src/svg/medical-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medical.svg b/src/svg/medical.svg new file mode 100644 index 0000000..0ec1cd1 --- /dev/null +++ b/src/svg/medical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medkit-outline.svg b/src/svg/medkit-outline.svg new file mode 100644 index 0000000..7c88ce4 --- /dev/null +++ b/src/svg/medkit-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medkit-sharp.svg b/src/svg/medkit-sharp.svg new file mode 100644 index 0000000..2d9216a --- /dev/null +++ b/src/svg/medkit-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/medkit.svg b/src/svg/medkit.svg new file mode 100644 index 0000000..9dbc139 --- /dev/null +++ b/src/svg/medkit.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/megaphone-outline.svg b/src/svg/megaphone-outline.svg new file mode 100644 index 0000000..62ff548 --- /dev/null +++ b/src/svg/megaphone-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/megaphone-sharp.svg b/src/svg/megaphone-sharp.svg new file mode 100644 index 0000000..be8da8a --- /dev/null +++ b/src/svg/megaphone-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/megaphone.svg b/src/svg/megaphone.svg new file mode 100644 index 0000000..d07e5b0 --- /dev/null +++ b/src/svg/megaphone.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/menu-outline.svg b/src/svg/menu-outline.svg new file mode 100644 index 0000000..eb4cb0c --- /dev/null +++ b/src/svg/menu-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/menu-sharp.svg b/src/svg/menu-sharp.svg new file mode 100644 index 0000000..2fd058b --- /dev/null +++ b/src/svg/menu-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/menu.svg b/src/svg/menu.svg new file mode 100644 index 0000000..1cb4170 --- /dev/null +++ b/src/svg/menu.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-circle-outline.svg b/src/svg/mic-circle-outline.svg new file mode 100644 index 0000000..007a0ef --- /dev/null +++ b/src/svg/mic-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-circle-sharp.svg b/src/svg/mic-circle-sharp.svg new file mode 100644 index 0000000..0ebfd66 --- /dev/null +++ b/src/svg/mic-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-circle.svg b/src/svg/mic-circle.svg new file mode 100644 index 0000000..eec747c --- /dev/null +++ b/src/svg/mic-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-off-circle-outline.svg b/src/svg/mic-off-circle-outline.svg new file mode 100644 index 0000000..c3a8b30 --- /dev/null +++ b/src/svg/mic-off-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-off-circle-sharp.svg b/src/svg/mic-off-circle-sharp.svg new file mode 100644 index 0000000..e4dadf6 --- /dev/null +++ b/src/svg/mic-off-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-off-circle.svg b/src/svg/mic-off-circle.svg new file mode 100644 index 0000000..d4b081b --- /dev/null +++ b/src/svg/mic-off-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-off-outline.svg b/src/svg/mic-off-outline.svg new file mode 100644 index 0000000..ca05c48 --- /dev/null +++ b/src/svg/mic-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-off-sharp.svg b/src/svg/mic-off-sharp.svg new file mode 100644 index 0000000..b1247dc --- /dev/null +++ b/src/svg/mic-off-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-off.svg b/src/svg/mic-off.svg new file mode 100644 index 0000000..1bb0108 --- /dev/null +++ b/src/svg/mic-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-outline.svg b/src/svg/mic-outline.svg new file mode 100644 index 0000000..703964d --- /dev/null +++ b/src/svg/mic-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic-sharp.svg b/src/svg/mic-sharp.svg new file mode 100644 index 0000000..d2ef591 --- /dev/null +++ b/src/svg/mic-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/mic.svg b/src/svg/mic.svg new file mode 100644 index 0000000..72090c5 --- /dev/null +++ b/src/svg/mic.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/moon-outline.svg b/src/svg/moon-outline.svg new file mode 100644 index 0000000..9e0b758 --- /dev/null +++ b/src/svg/moon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/moon-sharp.svg b/src/svg/moon-sharp.svg new file mode 100644 index 0000000..11691e2 --- /dev/null +++ b/src/svg/moon-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/moon.svg b/src/svg/moon.svg new file mode 100644 index 0000000..8994552 --- /dev/null +++ b/src/svg/moon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/move-outline.svg b/src/svg/move-outline.svg new file mode 100644 index 0000000..b16d6c8 --- /dev/null +++ b/src/svg/move-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/move-sharp.svg b/src/svg/move-sharp.svg new file mode 100644 index 0000000..e8f98bc --- /dev/null +++ b/src/svg/move-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/move.svg b/src/svg/move.svg new file mode 100644 index 0000000..b16d6c8 --- /dev/null +++ b/src/svg/move.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/musical-note-outline.svg b/src/svg/musical-note-outline.svg new file mode 100644 index 0000000..cc94b70 --- /dev/null +++ b/src/svg/musical-note-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/musical-note-sharp.svg b/src/svg/musical-note-sharp.svg new file mode 100644 index 0000000..73d91ae --- /dev/null +++ b/src/svg/musical-note-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/musical-note.svg b/src/svg/musical-note.svg new file mode 100644 index 0000000..1a540d9 --- /dev/null +++ b/src/svg/musical-note.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/musical-notes-outline.svg b/src/svg/musical-notes-outline.svg new file mode 100644 index 0000000..4123fe1 --- /dev/null +++ b/src/svg/musical-notes-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/musical-notes-sharp.svg b/src/svg/musical-notes-sharp.svg new file mode 100644 index 0000000..d7a8d5d --- /dev/null +++ b/src/svg/musical-notes-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/musical-notes.svg b/src/svg/musical-notes.svg new file mode 100644 index 0000000..3d0cf98 --- /dev/null +++ b/src/svg/musical-notes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/navigate-circle-outline.svg b/src/svg/navigate-circle-outline.svg new file mode 100644 index 0000000..6215360 --- /dev/null +++ b/src/svg/navigate-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/navigate-circle-sharp.svg b/src/svg/navigate-circle-sharp.svg new file mode 100644 index 0000000..887b19f --- /dev/null +++ b/src/svg/navigate-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/navigate-circle.svg b/src/svg/navigate-circle.svg new file mode 100644 index 0000000..1cce87b --- /dev/null +++ b/src/svg/navigate-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/navigate-outline.svg b/src/svg/navigate-outline.svg new file mode 100644 index 0000000..f48ce37 --- /dev/null +++ b/src/svg/navigate-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/navigate-sharp.svg b/src/svg/navigate-sharp.svg new file mode 100644 index 0000000..848571d --- /dev/null +++ b/src/svg/navigate-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/navigate.svg b/src/svg/navigate.svg new file mode 100644 index 0000000..3a79404 --- /dev/null +++ b/src/svg/navigate.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/newspaper-outline.svg b/src/svg/newspaper-outline.svg new file mode 100644 index 0000000..6589e6a --- /dev/null +++ b/src/svg/newspaper-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/newspaper-sharp.svg b/src/svg/newspaper-sharp.svg new file mode 100644 index 0000000..6d8af69 --- /dev/null +++ b/src/svg/newspaper-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/newspaper.svg b/src/svg/newspaper.svg new file mode 100644 index 0000000..c2e9853 --- /dev/null +++ b/src/svg/newspaper.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-circle-outline.svg b/src/svg/notifications-circle-outline.svg new file mode 100644 index 0000000..219e7b0 --- /dev/null +++ b/src/svg/notifications-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-circle-sharp.svg b/src/svg/notifications-circle-sharp.svg new file mode 100644 index 0000000..07b9b4d --- /dev/null +++ b/src/svg/notifications-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-circle.svg b/src/svg/notifications-circle.svg new file mode 100644 index 0000000..a082220 --- /dev/null +++ b/src/svg/notifications-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-off-circle-outline.svg b/src/svg/notifications-off-circle-outline.svg new file mode 100644 index 0000000..bfcddf7 --- /dev/null +++ b/src/svg/notifications-off-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-off-circle-sharp.svg b/src/svg/notifications-off-circle-sharp.svg new file mode 100644 index 0000000..f917f55 --- /dev/null +++ b/src/svg/notifications-off-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-off-circle.svg b/src/svg/notifications-off-circle.svg new file mode 100644 index 0000000..607a5b6 --- /dev/null +++ b/src/svg/notifications-off-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-off-outline.svg b/src/svg/notifications-off-outline.svg new file mode 100644 index 0000000..9bebc39 --- /dev/null +++ b/src/svg/notifications-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-off-sharp.svg b/src/svg/notifications-off-sharp.svg new file mode 100644 index 0000000..afe528a --- /dev/null +++ b/src/svg/notifications-off-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-off.svg b/src/svg/notifications-off.svg new file mode 100644 index 0000000..376351e --- /dev/null +++ b/src/svg/notifications-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-outline.svg b/src/svg/notifications-outline.svg new file mode 100644 index 0000000..6d9abd4 --- /dev/null +++ b/src/svg/notifications-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications-sharp.svg b/src/svg/notifications-sharp.svg new file mode 100644 index 0000000..337d4f9 --- /dev/null +++ b/src/svg/notifications-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/notifications.svg b/src/svg/notifications.svg new file mode 100644 index 0000000..4285ccb --- /dev/null +++ b/src/svg/notifications.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/nuclear-outline.svg b/src/svg/nuclear-outline.svg new file mode 100644 index 0000000..3b33fd5 --- /dev/null +++ b/src/svg/nuclear-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/nuclear-sharp.svg b/src/svg/nuclear-sharp.svg new file mode 100644 index 0000000..a0db059 --- /dev/null +++ b/src/svg/nuclear-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/nuclear.svg b/src/svg/nuclear.svg new file mode 100644 index 0000000..0d2b8b3 --- /dev/null +++ b/src/svg/nuclear.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/nutrition-outline.svg b/src/svg/nutrition-outline.svg new file mode 100644 index 0000000..8695118 --- /dev/null +++ b/src/svg/nutrition-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/nutrition-sharp.svg b/src/svg/nutrition-sharp.svg new file mode 100644 index 0000000..6b6614d --- /dev/null +++ b/src/svg/nutrition-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/nutrition.svg b/src/svg/nutrition.svg new file mode 100644 index 0000000..081b69d --- /dev/null +++ b/src/svg/nutrition.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/open-outline.svg b/src/svg/open-outline.svg new file mode 100644 index 0000000..4ae9e4b --- /dev/null +++ b/src/svg/open-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/open-sharp.svg b/src/svg/open-sharp.svg new file mode 100644 index 0000000..ec5080a --- /dev/null +++ b/src/svg/open-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/open.svg b/src/svg/open.svg new file mode 100644 index 0000000..28f99c0 --- /dev/null +++ b/src/svg/open.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/options-outline.svg b/src/svg/options-outline.svg new file mode 100644 index 0000000..b7289e2 --- /dev/null +++ b/src/svg/options-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/options-sharp.svg b/src/svg/options-sharp.svg new file mode 100644 index 0000000..17aea01 --- /dev/null +++ b/src/svg/options-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/options.svg b/src/svg/options.svg new file mode 100644 index 0000000..0a152b9 --- /dev/null +++ b/src/svg/options.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/paper-plane-outline.svg b/src/svg/paper-plane-outline.svg new file mode 100644 index 0000000..123ee55 --- /dev/null +++ b/src/svg/paper-plane-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/paper-plane-sharp.svg b/src/svg/paper-plane-sharp.svg new file mode 100644 index 0000000..8a092a1 --- /dev/null +++ b/src/svg/paper-plane-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/paper-plane.svg b/src/svg/paper-plane.svg new file mode 100644 index 0000000..9da39b0 --- /dev/null +++ b/src/svg/paper-plane.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/partly-sunny-outline.svg b/src/svg/partly-sunny-outline.svg new file mode 100644 index 0000000..a6358b2 --- /dev/null +++ b/src/svg/partly-sunny-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/partly-sunny-sharp.svg b/src/svg/partly-sunny-sharp.svg new file mode 100644 index 0000000..d0c2b3b --- /dev/null +++ b/src/svg/partly-sunny-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/partly-sunny.svg b/src/svg/partly-sunny.svg new file mode 100644 index 0000000..4a28207 --- /dev/null +++ b/src/svg/partly-sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pause-circle-outline.svg b/src/svg/pause-circle-outline.svg new file mode 100644 index 0000000..ce26ee9 --- /dev/null +++ b/src/svg/pause-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pause-circle-sharp.svg b/src/svg/pause-circle-sharp.svg new file mode 100644 index 0000000..26c1ba9 --- /dev/null +++ b/src/svg/pause-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pause-circle.svg b/src/svg/pause-circle.svg new file mode 100644 index 0000000..3db4ce8 --- /dev/null +++ b/src/svg/pause-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pause-outline.svg b/src/svg/pause-outline.svg new file mode 100644 index 0000000..ee7c657 --- /dev/null +++ b/src/svg/pause-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pause-sharp.svg b/src/svg/pause-sharp.svg new file mode 100644 index 0000000..36d9bf6 --- /dev/null +++ b/src/svg/pause-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pause.svg b/src/svg/pause.svg new file mode 100644 index 0000000..6e29aa3 --- /dev/null +++ b/src/svg/pause.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/paw-outline.svg b/src/svg/paw-outline.svg new file mode 100644 index 0000000..03d64be --- /dev/null +++ b/src/svg/paw-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/paw-sharp.svg b/src/svg/paw-sharp.svg new file mode 100644 index 0000000..b36433c --- /dev/null +++ b/src/svg/paw-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/paw.svg b/src/svg/paw.svg new file mode 100644 index 0000000..812b93d --- /dev/null +++ b/src/svg/paw.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pencil-outline.svg b/src/svg/pencil-outline.svg new file mode 100644 index 0000000..a2a4668 --- /dev/null +++ b/src/svg/pencil-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pencil-sharp.svg b/src/svg/pencil-sharp.svg new file mode 100644 index 0000000..a127fe5 --- /dev/null +++ b/src/svg/pencil-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pencil.svg b/src/svg/pencil.svg new file mode 100644 index 0000000..23faae3 --- /dev/null +++ b/src/svg/pencil.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/people-circle-outline.svg b/src/svg/people-circle-outline.svg new file mode 100644 index 0000000..f7deb41 --- /dev/null +++ b/src/svg/people-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/people-circle-sharp.svg b/src/svg/people-circle-sharp.svg new file mode 100644 index 0000000..6763876 --- /dev/null +++ b/src/svg/people-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/people-circle.svg b/src/svg/people-circle.svg new file mode 100644 index 0000000..5356fff --- /dev/null +++ b/src/svg/people-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/people-outline.svg b/src/svg/people-outline.svg new file mode 100644 index 0000000..b22227d --- /dev/null +++ b/src/svg/people-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/people-sharp.svg b/src/svg/people-sharp.svg new file mode 100644 index 0000000..607427a --- /dev/null +++ b/src/svg/people-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/people.svg b/src/svg/people.svg new file mode 100644 index 0000000..fae9465 --- /dev/null +++ b/src/svg/people.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-add-outline.svg b/src/svg/person-add-outline.svg new file mode 100644 index 0000000..219c10f --- /dev/null +++ b/src/svg/person-add-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-add-sharp.svg b/src/svg/person-add-sharp.svg new file mode 100644 index 0000000..d4d8e3f --- /dev/null +++ b/src/svg/person-add-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-add.svg b/src/svg/person-add.svg new file mode 100644 index 0000000..320ac4a --- /dev/null +++ b/src/svg/person-add.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-circle-outline.svg b/src/svg/person-circle-outline.svg new file mode 100644 index 0000000..dd6c479 --- /dev/null +++ b/src/svg/person-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-circle-sharp.svg b/src/svg/person-circle-sharp.svg new file mode 100644 index 0000000..8b95d4f --- /dev/null +++ b/src/svg/person-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-circle.svg b/src/svg/person-circle.svg new file mode 100644 index 0000000..08263f3 --- /dev/null +++ b/src/svg/person-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-outline.svg b/src/svg/person-outline.svg new file mode 100644 index 0000000..1fde945 --- /dev/null +++ b/src/svg/person-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-remove-outline.svg b/src/svg/person-remove-outline.svg new file mode 100644 index 0000000..7ea034d --- /dev/null +++ b/src/svg/person-remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-remove-sharp.svg b/src/svg/person-remove-sharp.svg new file mode 100644 index 0000000..6472796 --- /dev/null +++ b/src/svg/person-remove-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-remove.svg b/src/svg/person-remove.svg new file mode 100644 index 0000000..57f9e9c --- /dev/null +++ b/src/svg/person-remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person-sharp.svg b/src/svg/person-sharp.svg new file mode 100644 index 0000000..fe8f8d9 --- /dev/null +++ b/src/svg/person-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/person.svg b/src/svg/person.svg new file mode 100644 index 0000000..481ee80 --- /dev/null +++ b/src/svg/person.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/phone-landscape-outline.svg b/src/svg/phone-landscape-outline.svg new file mode 100644 index 0000000..f49931e --- /dev/null +++ b/src/svg/phone-landscape-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/phone-landscape-sharp.svg b/src/svg/phone-landscape-sharp.svg new file mode 100644 index 0000000..bf452c6 --- /dev/null +++ b/src/svg/phone-landscape-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/phone-landscape.svg b/src/svg/phone-landscape.svg new file mode 100644 index 0000000..039f95b --- /dev/null +++ b/src/svg/phone-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/phone-portrait-outline.svg b/src/svg/phone-portrait-outline.svg new file mode 100644 index 0000000..004d1cc --- /dev/null +++ b/src/svg/phone-portrait-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/phone-portrait-sharp.svg b/src/svg/phone-portrait-sharp.svg new file mode 100644 index 0000000..fa2e269 --- /dev/null +++ b/src/svg/phone-portrait-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/phone-portrait.svg b/src/svg/phone-portrait.svg new file mode 100644 index 0000000..ddee593 --- /dev/null +++ b/src/svg/phone-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pie-chart-outline.svg b/src/svg/pie-chart-outline.svg new file mode 100644 index 0000000..1a21d42 --- /dev/null +++ b/src/svg/pie-chart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pie-chart-sharp.svg b/src/svg/pie-chart-sharp.svg new file mode 100644 index 0000000..0e1714e --- /dev/null +++ b/src/svg/pie-chart-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pie-chart.svg b/src/svg/pie-chart.svg new file mode 100644 index 0000000..754b52d --- /dev/null +++ b/src/svg/pie-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pin-outline.svg b/src/svg/pin-outline.svg new file mode 100644 index 0000000..e777d62 --- /dev/null +++ b/src/svg/pin-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pin-sharp.svg b/src/svg/pin-sharp.svg new file mode 100644 index 0000000..5d825ec --- /dev/null +++ b/src/svg/pin-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pin.svg b/src/svg/pin.svg new file mode 100644 index 0000000..f677493 --- /dev/null +++ b/src/svg/pin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pint-outline.svg b/src/svg/pint-outline.svg new file mode 100644 index 0000000..793b864 --- /dev/null +++ b/src/svg/pint-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pint-sharp.svg b/src/svg/pint-sharp.svg new file mode 100644 index 0000000..a44ea5d --- /dev/null +++ b/src/svg/pint-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pint.svg b/src/svg/pint.svg new file mode 100644 index 0000000..0e23da5 --- /dev/null +++ b/src/svg/pint.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pizza-outline.svg b/src/svg/pizza-outline.svg new file mode 100644 index 0000000..b78827b --- /dev/null +++ b/src/svg/pizza-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pizza-sharp.svg b/src/svg/pizza-sharp.svg new file mode 100644 index 0000000..e9fce09 --- /dev/null +++ b/src/svg/pizza-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pizza.svg b/src/svg/pizza.svg new file mode 100644 index 0000000..799fb42 --- /dev/null +++ b/src/svg/pizza.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/planet-outline.svg b/src/svg/planet-outline.svg new file mode 100644 index 0000000..150cc1a --- /dev/null +++ b/src/svg/planet-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/planet-sharp.svg b/src/svg/planet-sharp.svg new file mode 100644 index 0000000..5632ac4 --- /dev/null +++ b/src/svg/planet-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/planet.svg b/src/svg/planet.svg new file mode 100644 index 0000000..d39f882 --- /dev/null +++ b/src/svg/planet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-back-circle-outline.svg b/src/svg/play-back-circle-outline.svg new file mode 100644 index 0000000..f03b3cb --- /dev/null +++ b/src/svg/play-back-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-back-circle-sharp.svg b/src/svg/play-back-circle-sharp.svg new file mode 100644 index 0000000..4b79597 --- /dev/null +++ b/src/svg/play-back-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-back-circle.svg b/src/svg/play-back-circle.svg new file mode 100644 index 0000000..166df6c --- /dev/null +++ b/src/svg/play-back-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-back-outline.svg b/src/svg/play-back-outline.svg new file mode 100644 index 0000000..491f55b --- /dev/null +++ b/src/svg/play-back-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-back-sharp.svg b/src/svg/play-back-sharp.svg new file mode 100644 index 0000000..88a227d --- /dev/null +++ b/src/svg/play-back-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-back.svg b/src/svg/play-back.svg new file mode 100644 index 0000000..d034497 --- /dev/null +++ b/src/svg/play-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-circle-outline.svg b/src/svg/play-circle-outline.svg new file mode 100644 index 0000000..74c3c0c --- /dev/null +++ b/src/svg/play-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-circle-sharp.svg b/src/svg/play-circle-sharp.svg new file mode 100644 index 0000000..0eca969 --- /dev/null +++ b/src/svg/play-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-circle.svg b/src/svg/play-circle.svg new file mode 100644 index 0000000..51aca38 --- /dev/null +++ b/src/svg/play-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-forward-circle-outline.svg b/src/svg/play-forward-circle-outline.svg new file mode 100644 index 0000000..3039ffc --- /dev/null +++ b/src/svg/play-forward-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-forward-circle-sharp.svg b/src/svg/play-forward-circle-sharp.svg new file mode 100644 index 0000000..b82ddac --- /dev/null +++ b/src/svg/play-forward-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-forward-circle.svg b/src/svg/play-forward-circle.svg new file mode 100644 index 0000000..dbaacb7 --- /dev/null +++ b/src/svg/play-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-forward-outline.svg b/src/svg/play-forward-outline.svg new file mode 100644 index 0000000..a2ffa60 --- /dev/null +++ b/src/svg/play-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-forward-sharp.svg b/src/svg/play-forward-sharp.svg new file mode 100644 index 0000000..5a9f08f --- /dev/null +++ b/src/svg/play-forward-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-forward.svg b/src/svg/play-forward.svg new file mode 100644 index 0000000..1c09004 --- /dev/null +++ b/src/svg/play-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-outline.svg b/src/svg/play-outline.svg new file mode 100644 index 0000000..1ab8ac9 --- /dev/null +++ b/src/svg/play-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-sharp.svg b/src/svg/play-sharp.svg new file mode 100644 index 0000000..b88c619 --- /dev/null +++ b/src/svg/play-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-back-circle-outline.svg b/src/svg/play-skip-back-circle-outline.svg new file mode 100644 index 0000000..ed1567e --- /dev/null +++ b/src/svg/play-skip-back-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-back-circle-sharp.svg b/src/svg/play-skip-back-circle-sharp.svg new file mode 100644 index 0000000..8c22c7b --- /dev/null +++ b/src/svg/play-skip-back-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-back-circle.svg b/src/svg/play-skip-back-circle.svg new file mode 100644 index 0000000..7a5193f --- /dev/null +++ b/src/svg/play-skip-back-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-back-outline.svg b/src/svg/play-skip-back-outline.svg new file mode 100644 index 0000000..2007e67 --- /dev/null +++ b/src/svg/play-skip-back-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-back-sharp.svg b/src/svg/play-skip-back-sharp.svg new file mode 100644 index 0000000..0822348 --- /dev/null +++ b/src/svg/play-skip-back-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-back.svg b/src/svg/play-skip-back.svg new file mode 100644 index 0000000..e3ccd79 --- /dev/null +++ b/src/svg/play-skip-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-forward-circle-outline.svg b/src/svg/play-skip-forward-circle-outline.svg new file mode 100644 index 0000000..294284e --- /dev/null +++ b/src/svg/play-skip-forward-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-forward-circle-sharp.svg b/src/svg/play-skip-forward-circle-sharp.svg new file mode 100644 index 0000000..e55aeb0 --- /dev/null +++ b/src/svg/play-skip-forward-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-forward-circle.svg b/src/svg/play-skip-forward-circle.svg new file mode 100644 index 0000000..2329a4f --- /dev/null +++ b/src/svg/play-skip-forward-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-forward-outline.svg b/src/svg/play-skip-forward-outline.svg new file mode 100644 index 0000000..77bf2b7 --- /dev/null +++ b/src/svg/play-skip-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-forward-sharp.svg b/src/svg/play-skip-forward-sharp.svg new file mode 100644 index 0000000..fc2f15c --- /dev/null +++ b/src/svg/play-skip-forward-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play-skip-forward.svg b/src/svg/play-skip-forward.svg new file mode 100644 index 0000000..a89e137 --- /dev/null +++ b/src/svg/play-skip-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/play.svg b/src/svg/play.svg new file mode 100644 index 0000000..eb75877 --- /dev/null +++ b/src/svg/play.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/podium-outline.svg b/src/svg/podium-outline.svg new file mode 100644 index 0000000..4104da0 --- /dev/null +++ b/src/svg/podium-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/podium-sharp.svg b/src/svg/podium-sharp.svg new file mode 100644 index 0000000..e7fd353 --- /dev/null +++ b/src/svg/podium-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/podium.svg b/src/svg/podium.svg new file mode 100644 index 0000000..cb6a252 --- /dev/null +++ b/src/svg/podium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/power-outline.svg b/src/svg/power-outline.svg new file mode 100644 index 0000000..92b9f07 --- /dev/null +++ b/src/svg/power-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/power-sharp.svg b/src/svg/power-sharp.svg new file mode 100644 index 0000000..f0651ee --- /dev/null +++ b/src/svg/power-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/power.svg b/src/svg/power.svg new file mode 100644 index 0000000..f4f9deb --- /dev/null +++ b/src/svg/power.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pricetag-outline.svg b/src/svg/pricetag-outline.svg new file mode 100644 index 0000000..8f537b8 --- /dev/null +++ b/src/svg/pricetag-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pricetag-sharp.svg b/src/svg/pricetag-sharp.svg new file mode 100644 index 0000000..23f1e93 --- /dev/null +++ b/src/svg/pricetag-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pricetag.svg b/src/svg/pricetag.svg new file mode 100644 index 0000000..b9b83a1 --- /dev/null +++ b/src/svg/pricetag.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pricetags-outline.svg b/src/svg/pricetags-outline.svg new file mode 100644 index 0000000..66771c5 --- /dev/null +++ b/src/svg/pricetags-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pricetags-sharp.svg b/src/svg/pricetags-sharp.svg new file mode 100644 index 0000000..d130dea --- /dev/null +++ b/src/svg/pricetags-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pricetags.svg b/src/svg/pricetags.svg new file mode 100644 index 0000000..da344ff --- /dev/null +++ b/src/svg/pricetags.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/print-outline.svg b/src/svg/print-outline.svg new file mode 100644 index 0000000..d331238 --- /dev/null +++ b/src/svg/print-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/print-sharp.svg b/src/svg/print-sharp.svg new file mode 100644 index 0000000..852acfa --- /dev/null +++ b/src/svg/print-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/print.svg b/src/svg/print.svg new file mode 100644 index 0000000..761a89a --- /dev/null +++ b/src/svg/print.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/prism-outline.svg b/src/svg/prism-outline.svg new file mode 100644 index 0000000..e8aa7da --- /dev/null +++ b/src/svg/prism-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/prism-sharp.svg b/src/svg/prism-sharp.svg new file mode 100644 index 0000000..d745bd2 --- /dev/null +++ b/src/svg/prism-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/prism.svg b/src/svg/prism.svg new file mode 100644 index 0000000..4af3509 --- /dev/null +++ b/src/svg/prism.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pulse-outline.svg b/src/svg/pulse-outline.svg new file mode 100644 index 0000000..52ce955 --- /dev/null +++ b/src/svg/pulse-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pulse-sharp.svg b/src/svg/pulse-sharp.svg new file mode 100644 index 0000000..2c27f51 --- /dev/null +++ b/src/svg/pulse-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/pulse.svg b/src/svg/pulse.svg new file mode 100644 index 0000000..ac2aae1 --- /dev/null +++ b/src/svg/pulse.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/push-outline.svg b/src/svg/push-outline.svg new file mode 100644 index 0000000..9cc728e --- /dev/null +++ b/src/svg/push-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/push-sharp.svg b/src/svg/push-sharp.svg new file mode 100644 index 0000000..6ab26b5 --- /dev/null +++ b/src/svg/push-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/push.svg b/src/svg/push.svg new file mode 100644 index 0000000..2c18945 --- /dev/null +++ b/src/svg/push.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/qr-code-outline.svg b/src/svg/qr-code-outline.svg new file mode 100644 index 0000000..eaa9ec8 --- /dev/null +++ b/src/svg/qr-code-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/qr-code-sharp.svg b/src/svg/qr-code-sharp.svg new file mode 100644 index 0000000..efebbc2 --- /dev/null +++ b/src/svg/qr-code-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/qr-code.svg b/src/svg/qr-code.svg new file mode 100644 index 0000000..a4303d7 --- /dev/null +++ b/src/svg/qr-code.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio-button-off-outline.svg b/src/svg/radio-button-off-outline.svg new file mode 100644 index 0000000..c496089 --- /dev/null +++ b/src/svg/radio-button-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio-button-off-sharp.svg b/src/svg/radio-button-off-sharp.svg new file mode 100644 index 0000000..c496089 --- /dev/null +++ b/src/svg/radio-button-off-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio-button-off.svg b/src/svg/radio-button-off.svg new file mode 100644 index 0000000..c496089 --- /dev/null +++ b/src/svg/radio-button-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio-button-on-outline.svg b/src/svg/radio-button-on-outline.svg new file mode 100644 index 0000000..1487582 --- /dev/null +++ b/src/svg/radio-button-on-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio-button-on-sharp.svg b/src/svg/radio-button-on-sharp.svg new file mode 100644 index 0000000..1487582 --- /dev/null +++ b/src/svg/radio-button-on-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio-button-on.svg b/src/svg/radio-button-on.svg new file mode 100644 index 0000000..1487582 --- /dev/null +++ b/src/svg/radio-button-on.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio-outline.svg b/src/svg/radio-outline.svg new file mode 100644 index 0000000..1d9c031 --- /dev/null +++ b/src/svg/radio-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio-sharp.svg b/src/svg/radio-sharp.svg new file mode 100644 index 0000000..d3b344e --- /dev/null +++ b/src/svg/radio-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/radio.svg b/src/svg/radio.svg new file mode 100644 index 0000000..2e74e26 --- /dev/null +++ b/src/svg/radio.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rainy-outline.svg b/src/svg/rainy-outline.svg new file mode 100644 index 0000000..f71460d --- /dev/null +++ b/src/svg/rainy-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rainy-sharp.svg b/src/svg/rainy-sharp.svg new file mode 100644 index 0000000..1602e40 --- /dev/null +++ b/src/svg/rainy-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rainy.svg b/src/svg/rainy.svg new file mode 100644 index 0000000..f72344d --- /dev/null +++ b/src/svg/rainy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reader-outline.svg b/src/svg/reader-outline.svg new file mode 100644 index 0000000..276a004 --- /dev/null +++ b/src/svg/reader-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reader-sharp.svg b/src/svg/reader-sharp.svg new file mode 100644 index 0000000..f9f36b5 --- /dev/null +++ b/src/svg/reader-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reader.svg b/src/svg/reader.svg new file mode 100644 index 0000000..6971154 --- /dev/null +++ b/src/svg/reader.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/receipt-outline.svg b/src/svg/receipt-outline.svg new file mode 100644 index 0000000..040c2e7 --- /dev/null +++ b/src/svg/receipt-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/receipt-sharp.svg b/src/svg/receipt-sharp.svg new file mode 100644 index 0000000..3f684cc --- /dev/null +++ b/src/svg/receipt-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/receipt.svg b/src/svg/receipt.svg new file mode 100644 index 0000000..5509ed1 --- /dev/null +++ b/src/svg/receipt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/recording-outline.svg b/src/svg/recording-outline.svg new file mode 100644 index 0000000..6e7c3aa --- /dev/null +++ b/src/svg/recording-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/recording-sharp.svg b/src/svg/recording-sharp.svg new file mode 100644 index 0000000..31e946d --- /dev/null +++ b/src/svg/recording-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/recording.svg b/src/svg/recording.svg new file mode 100644 index 0000000..4505e72 --- /dev/null +++ b/src/svg/recording.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/refresh-circle-outline.svg b/src/svg/refresh-circle-outline.svg new file mode 100644 index 0000000..cf1f4ab --- /dev/null +++ b/src/svg/refresh-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/refresh-circle-sharp.svg b/src/svg/refresh-circle-sharp.svg new file mode 100644 index 0000000..3af9be7 --- /dev/null +++ b/src/svg/refresh-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/refresh-circle.svg b/src/svg/refresh-circle.svg new file mode 100644 index 0000000..ad6ff29 --- /dev/null +++ b/src/svg/refresh-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/refresh-outline.svg b/src/svg/refresh-outline.svg new file mode 100644 index 0000000..01ab81d --- /dev/null +++ b/src/svg/refresh-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/refresh-sharp.svg b/src/svg/refresh-sharp.svg new file mode 100644 index 0000000..bcd683a --- /dev/null +++ b/src/svg/refresh-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/refresh.svg b/src/svg/refresh.svg new file mode 100644 index 0000000..01ab81d --- /dev/null +++ b/src/svg/refresh.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reload-circle-outline.svg b/src/svg/reload-circle-outline.svg new file mode 100644 index 0000000..96348e5 --- /dev/null +++ b/src/svg/reload-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reload-circle-sharp.svg b/src/svg/reload-circle-sharp.svg new file mode 100644 index 0000000..77d5a83 --- /dev/null +++ b/src/svg/reload-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reload-circle.svg b/src/svg/reload-circle.svg new file mode 100644 index 0000000..dd7b5da --- /dev/null +++ b/src/svg/reload-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reload-outline.svg b/src/svg/reload-outline.svg new file mode 100644 index 0000000..d37fd86 --- /dev/null +++ b/src/svg/reload-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reload-sharp.svg b/src/svg/reload-sharp.svg new file mode 100644 index 0000000..d0248f3 --- /dev/null +++ b/src/svg/reload-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reload.svg b/src/svg/reload.svg new file mode 100644 index 0000000..d37fd86 --- /dev/null +++ b/src/svg/reload.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/remove-circle-outline.svg b/src/svg/remove-circle-outline.svg new file mode 100644 index 0000000..5f2b473 --- /dev/null +++ b/src/svg/remove-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/remove-circle-sharp.svg b/src/svg/remove-circle-sharp.svg new file mode 100644 index 0000000..3459c41 --- /dev/null +++ b/src/svg/remove-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/remove-circle.svg b/src/svg/remove-circle.svg new file mode 100644 index 0000000..d83e1f1 --- /dev/null +++ b/src/svg/remove-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/remove-outline.svg b/src/svg/remove-outline.svg new file mode 100644 index 0000000..215d65e --- /dev/null +++ b/src/svg/remove-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/remove-sharp.svg b/src/svg/remove-sharp.svg new file mode 100644 index 0000000..28608a4 --- /dev/null +++ b/src/svg/remove-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/remove.svg b/src/svg/remove.svg new file mode 100644 index 0000000..215d65e --- /dev/null +++ b/src/svg/remove.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-four-outline.svg b/src/svg/reorder-four-outline.svg new file mode 100644 index 0000000..5170c10 --- /dev/null +++ b/src/svg/reorder-four-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-four-sharp.svg b/src/svg/reorder-four-sharp.svg new file mode 100644 index 0000000..139395b --- /dev/null +++ b/src/svg/reorder-four-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-four.svg b/src/svg/reorder-four.svg new file mode 100644 index 0000000..9c4b623 --- /dev/null +++ b/src/svg/reorder-four.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-three-outline.svg b/src/svg/reorder-three-outline.svg new file mode 100644 index 0000000..1055a0c --- /dev/null +++ b/src/svg/reorder-three-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-three-sharp.svg b/src/svg/reorder-three-sharp.svg new file mode 100644 index 0000000..02dacb8 --- /dev/null +++ b/src/svg/reorder-three-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-three.svg b/src/svg/reorder-three.svg new file mode 100644 index 0000000..482c57a --- /dev/null +++ b/src/svg/reorder-three.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-two-outline.svg b/src/svg/reorder-two-outline.svg new file mode 100644 index 0000000..bef3e5e --- /dev/null +++ b/src/svg/reorder-two-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-two-sharp.svg b/src/svg/reorder-two-sharp.svg new file mode 100644 index 0000000..56478f0 --- /dev/null +++ b/src/svg/reorder-two-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/reorder-two.svg b/src/svg/reorder-two.svg new file mode 100644 index 0000000..14faa93 --- /dev/null +++ b/src/svg/reorder-two.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/repeat-outline.svg b/src/svg/repeat-outline.svg new file mode 100644 index 0000000..031efb3 --- /dev/null +++ b/src/svg/repeat-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/repeat-sharp.svg b/src/svg/repeat-sharp.svg new file mode 100644 index 0000000..b023d0f --- /dev/null +++ b/src/svg/repeat-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/repeat.svg b/src/svg/repeat.svg new file mode 100644 index 0000000..031efb3 --- /dev/null +++ b/src/svg/repeat.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/resize-outline.svg b/src/svg/resize-outline.svg new file mode 100644 index 0000000..0da2d07 --- /dev/null +++ b/src/svg/resize-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/resize-sharp.svg b/src/svg/resize-sharp.svg new file mode 100644 index 0000000..9152780 --- /dev/null +++ b/src/svg/resize-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/resize.svg b/src/svg/resize.svg new file mode 100644 index 0000000..0da2d07 --- /dev/null +++ b/src/svg/resize.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/restaurant-outline.svg b/src/svg/restaurant-outline.svg new file mode 100644 index 0000000..25fad14 --- /dev/null +++ b/src/svg/restaurant-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/restaurant-sharp.svg b/src/svg/restaurant-sharp.svg new file mode 100644 index 0000000..3b73cbb --- /dev/null +++ b/src/svg/restaurant-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/restaurant.svg b/src/svg/restaurant.svg new file mode 100644 index 0000000..8d6520f --- /dev/null +++ b/src/svg/restaurant.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-down-back-outline.svg b/src/svg/return-down-back-outline.svg new file mode 100644 index 0000000..9791cc9 --- /dev/null +++ b/src/svg/return-down-back-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-down-back-sharp.svg b/src/svg/return-down-back-sharp.svg new file mode 100644 index 0000000..9e475ec --- /dev/null +++ b/src/svg/return-down-back-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-down-back.svg b/src/svg/return-down-back.svg new file mode 100644 index 0000000..9791cc9 --- /dev/null +++ b/src/svg/return-down-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-down-forward-outline.svg b/src/svg/return-down-forward-outline.svg new file mode 100644 index 0000000..9fc50d2 --- /dev/null +++ b/src/svg/return-down-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-down-forward-sharp.svg b/src/svg/return-down-forward-sharp.svg new file mode 100644 index 0000000..d73cfc7 --- /dev/null +++ b/src/svg/return-down-forward-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-down-forward.svg b/src/svg/return-down-forward.svg new file mode 100644 index 0000000..9fc50d2 --- /dev/null +++ b/src/svg/return-down-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-up-back-outline.svg b/src/svg/return-up-back-outline.svg new file mode 100644 index 0000000..cf701f5 --- /dev/null +++ b/src/svg/return-up-back-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-up-back-sharp.svg b/src/svg/return-up-back-sharp.svg new file mode 100644 index 0000000..9f0dc6f --- /dev/null +++ b/src/svg/return-up-back-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-up-back.svg b/src/svg/return-up-back.svg new file mode 100644 index 0000000..cf701f5 --- /dev/null +++ b/src/svg/return-up-back.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-up-forward-outline.svg b/src/svg/return-up-forward-outline.svg new file mode 100644 index 0000000..538ab13 --- /dev/null +++ b/src/svg/return-up-forward-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-up-forward-sharp.svg b/src/svg/return-up-forward-sharp.svg new file mode 100644 index 0000000..b9a1c05 --- /dev/null +++ b/src/svg/return-up-forward-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/return-up-forward.svg b/src/svg/return-up-forward.svg new file mode 100644 index 0000000..538ab13 --- /dev/null +++ b/src/svg/return-up-forward.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ribbon-outline.svg b/src/svg/ribbon-outline.svg new file mode 100644 index 0000000..46ec948 --- /dev/null +++ b/src/svg/ribbon-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ribbon-sharp.svg b/src/svg/ribbon-sharp.svg new file mode 100644 index 0000000..ee799fd --- /dev/null +++ b/src/svg/ribbon-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ribbon.svg b/src/svg/ribbon.svg new file mode 100644 index 0000000..4e42790 --- /dev/null +++ b/src/svg/ribbon.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rocket-outline.svg b/src/svg/rocket-outline.svg new file mode 100644 index 0000000..f2608cb --- /dev/null +++ b/src/svg/rocket-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rocket-sharp.svg b/src/svg/rocket-sharp.svg new file mode 100644 index 0000000..9ecce36 --- /dev/null +++ b/src/svg/rocket-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rocket.svg b/src/svg/rocket.svg new file mode 100644 index 0000000..cc01506 --- /dev/null +++ b/src/svg/rocket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rose-outline.svg b/src/svg/rose-outline.svg new file mode 100644 index 0000000..c3a9a0f --- /dev/null +++ b/src/svg/rose-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rose-sharp.svg b/src/svg/rose-sharp.svg new file mode 100644 index 0000000..d3a3606 --- /dev/null +++ b/src/svg/rose-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/rose.svg b/src/svg/rose.svg new file mode 100644 index 0000000..922138b --- /dev/null +++ b/src/svg/rose.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sad-outline.svg b/src/svg/sad-outline.svg new file mode 100644 index 0000000..0631ed3 --- /dev/null +++ b/src/svg/sad-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sad-sharp.svg b/src/svg/sad-sharp.svg new file mode 100644 index 0000000..e0b4861 --- /dev/null +++ b/src/svg/sad-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sad.svg b/src/svg/sad.svg new file mode 100644 index 0000000..8915101 --- /dev/null +++ b/src/svg/sad.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/save-outline.svg b/src/svg/save-outline.svg new file mode 100644 index 0000000..752e63e --- /dev/null +++ b/src/svg/save-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/save-sharp.svg b/src/svg/save-sharp.svg new file mode 100644 index 0000000..a28b317 --- /dev/null +++ b/src/svg/save-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/save.svg b/src/svg/save.svg new file mode 100644 index 0000000..d09b111 --- /dev/null +++ b/src/svg/save.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scale-outline.svg b/src/svg/scale-outline.svg new file mode 100644 index 0000000..6ef894a --- /dev/null +++ b/src/svg/scale-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scale-sharp.svg b/src/svg/scale-sharp.svg new file mode 100644 index 0000000..f757ed0 --- /dev/null +++ b/src/svg/scale-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scale.svg b/src/svg/scale.svg new file mode 100644 index 0000000..bb43533 --- /dev/null +++ b/src/svg/scale.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scan-circle-outline.svg b/src/svg/scan-circle-outline.svg new file mode 100644 index 0000000..da0660b --- /dev/null +++ b/src/svg/scan-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scan-circle-sharp.svg b/src/svg/scan-circle-sharp.svg new file mode 100644 index 0000000..4df2fc3 --- /dev/null +++ b/src/svg/scan-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scan-circle.svg b/src/svg/scan-circle.svg new file mode 100644 index 0000000..dfe37c5 --- /dev/null +++ b/src/svg/scan-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scan-outline.svg b/src/svg/scan-outline.svg new file mode 100644 index 0000000..ba798bd --- /dev/null +++ b/src/svg/scan-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scan-sharp.svg b/src/svg/scan-sharp.svg new file mode 100644 index 0000000..f1756ff --- /dev/null +++ b/src/svg/scan-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/scan.svg b/src/svg/scan.svg new file mode 100644 index 0000000..8e087bd --- /dev/null +++ b/src/svg/scan.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/school-outline.svg b/src/svg/school-outline.svg new file mode 100644 index 0000000..e5c34cf --- /dev/null +++ b/src/svg/school-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/school-sharp.svg b/src/svg/school-sharp.svg new file mode 100644 index 0000000..5dd6e0f --- /dev/null +++ b/src/svg/school-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/school.svg b/src/svg/school.svg new file mode 100644 index 0000000..71d3330 --- /dev/null +++ b/src/svg/school.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/search-circle-outline.svg b/src/svg/search-circle-outline.svg new file mode 100644 index 0000000..4c824a4 --- /dev/null +++ b/src/svg/search-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/search-circle-sharp.svg b/src/svg/search-circle-sharp.svg new file mode 100644 index 0000000..20725f5 --- /dev/null +++ b/src/svg/search-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/search-circle.svg b/src/svg/search-circle.svg new file mode 100644 index 0000000..4249157 --- /dev/null +++ b/src/svg/search-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/search-outline.svg b/src/svg/search-outline.svg new file mode 100644 index 0000000..260cced --- /dev/null +++ b/src/svg/search-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/search-sharp.svg b/src/svg/search-sharp.svg new file mode 100644 index 0000000..8256a5f --- /dev/null +++ b/src/svg/search-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/search.svg b/src/svg/search.svg new file mode 100644 index 0000000..8655d9e --- /dev/null +++ b/src/svg/search.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/send-outline.svg b/src/svg/send-outline.svg new file mode 100644 index 0000000..fb05fff --- /dev/null +++ b/src/svg/send-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/send-sharp.svg b/src/svg/send-sharp.svg new file mode 100644 index 0000000..a422e6d --- /dev/null +++ b/src/svg/send-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/send.svg b/src/svg/send.svg new file mode 100644 index 0000000..d514ac0 --- /dev/null +++ b/src/svg/send.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/server-outline.svg b/src/svg/server-outline.svg new file mode 100644 index 0000000..82244c8 --- /dev/null +++ b/src/svg/server-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/server-sharp.svg b/src/svg/server-sharp.svg new file mode 100644 index 0000000..9db5c5e --- /dev/null +++ b/src/svg/server-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/server.svg b/src/svg/server.svg new file mode 100644 index 0000000..dd52fe9 --- /dev/null +++ b/src/svg/server.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/settings-outline.svg b/src/svg/settings-outline.svg new file mode 100644 index 0000000..4618ccc --- /dev/null +++ b/src/svg/settings-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/settings-sharp.svg b/src/svg/settings-sharp.svg new file mode 100644 index 0000000..38e803a --- /dev/null +++ b/src/svg/settings-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/settings.svg b/src/svg/settings.svg new file mode 100644 index 0000000..757390e --- /dev/null +++ b/src/svg/settings.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shapes-outline.svg b/src/svg/shapes-outline.svg new file mode 100644 index 0000000..e17d027 --- /dev/null +++ b/src/svg/shapes-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shapes-sharp.svg b/src/svg/shapes-sharp.svg new file mode 100644 index 0000000..73c2df4 --- /dev/null +++ b/src/svg/shapes-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shapes.svg b/src/svg/shapes.svg new file mode 100644 index 0000000..7ee021e --- /dev/null +++ b/src/svg/shapes.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/share-outline.svg b/src/svg/share-outline.svg new file mode 100644 index 0000000..53afcaf --- /dev/null +++ b/src/svg/share-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/share-sharp.svg b/src/svg/share-sharp.svg new file mode 100644 index 0000000..0f80a65 --- /dev/null +++ b/src/svg/share-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/share-social-outline.svg b/src/svg/share-social-outline.svg new file mode 100644 index 0000000..67387be --- /dev/null +++ b/src/svg/share-social-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/share-social-sharp.svg b/src/svg/share-social-sharp.svg new file mode 100644 index 0000000..afa6a60 --- /dev/null +++ b/src/svg/share-social-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/share-social.svg b/src/svg/share-social.svg new file mode 100644 index 0000000..90529e4 --- /dev/null +++ b/src/svg/share-social.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/share.svg b/src/svg/share.svg new file mode 100644 index 0000000..e4be096 --- /dev/null +++ b/src/svg/share.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield-checkmark-outline.svg b/src/svg/shield-checkmark-outline.svg new file mode 100644 index 0000000..617d5c7 --- /dev/null +++ b/src/svg/shield-checkmark-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield-checkmark-sharp.svg b/src/svg/shield-checkmark-sharp.svg new file mode 100644 index 0000000..79b18e7 --- /dev/null +++ b/src/svg/shield-checkmark-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield-checkmark.svg b/src/svg/shield-checkmark.svg new file mode 100644 index 0000000..195347d --- /dev/null +++ b/src/svg/shield-checkmark.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield-half-outline.svg b/src/svg/shield-half-outline.svg new file mode 100644 index 0000000..7c39690 --- /dev/null +++ b/src/svg/shield-half-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield-half-sharp.svg b/src/svg/shield-half-sharp.svg new file mode 100644 index 0000000..3c0fc14 --- /dev/null +++ b/src/svg/shield-half-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield-half.svg b/src/svg/shield-half.svg new file mode 100644 index 0000000..2568b76 --- /dev/null +++ b/src/svg/shield-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield-outline.svg b/src/svg/shield-outline.svg new file mode 100644 index 0000000..75365ef --- /dev/null +++ b/src/svg/shield-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield-sharp.svg b/src/svg/shield-sharp.svg new file mode 100644 index 0000000..1bb4a7a --- /dev/null +++ b/src/svg/shield-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shield.svg b/src/svg/shield.svg new file mode 100644 index 0000000..5ec9764 --- /dev/null +++ b/src/svg/shield.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shirt-outline.svg b/src/svg/shirt-outline.svg new file mode 100644 index 0000000..df93e98 --- /dev/null +++ b/src/svg/shirt-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shirt-sharp.svg b/src/svg/shirt-sharp.svg new file mode 100644 index 0000000..5166efe --- /dev/null +++ b/src/svg/shirt-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shirt.svg b/src/svg/shirt.svg new file mode 100644 index 0000000..6d29d6d --- /dev/null +++ b/src/svg/shirt.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shuffle-outline.svg b/src/svg/shuffle-outline.svg new file mode 100644 index 0000000..f01e3c3 --- /dev/null +++ b/src/svg/shuffle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shuffle-sharp.svg b/src/svg/shuffle-sharp.svg new file mode 100644 index 0000000..19ad0f6 --- /dev/null +++ b/src/svg/shuffle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/shuffle.svg b/src/svg/shuffle.svg new file mode 100644 index 0000000..f01e3c3 --- /dev/null +++ b/src/svg/shuffle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/skull-outline.svg b/src/svg/skull-outline.svg new file mode 100644 index 0000000..3e953f9 --- /dev/null +++ b/src/svg/skull-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/skull-sharp.svg b/src/svg/skull-sharp.svg new file mode 100644 index 0000000..560c7a3 --- /dev/null +++ b/src/svg/skull-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/skull.svg b/src/svg/skull.svg new file mode 100644 index 0000000..a6ba978 --- /dev/null +++ b/src/svg/skull.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/snow-outline.svg b/src/svg/snow-outline.svg new file mode 100644 index 0000000..9379173 --- /dev/null +++ b/src/svg/snow-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/snow-sharp.svg b/src/svg/snow-sharp.svg new file mode 100644 index 0000000..85f7abf --- /dev/null +++ b/src/svg/snow-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/snow.svg b/src/svg/snow.svg new file mode 100644 index 0000000..96c2a1b --- /dev/null +++ b/src/svg/snow.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sparkles-outline.svg b/src/svg/sparkles-outline.svg new file mode 100644 index 0000000..ecb8fa6 --- /dev/null +++ b/src/svg/sparkles-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sparkles-sharp.svg b/src/svg/sparkles-sharp.svg new file mode 100644 index 0000000..912bd1f --- /dev/null +++ b/src/svg/sparkles-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sparkles.svg b/src/svg/sparkles.svg new file mode 100644 index 0000000..07b83a9 --- /dev/null +++ b/src/svg/sparkles.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/speedometer-outline.svg b/src/svg/speedometer-outline.svg new file mode 100644 index 0000000..c4a5d90 --- /dev/null +++ b/src/svg/speedometer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/speedometer-sharp.svg b/src/svg/speedometer-sharp.svg new file mode 100644 index 0000000..91a3cc8 --- /dev/null +++ b/src/svg/speedometer-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/speedometer.svg b/src/svg/speedometer.svg new file mode 100644 index 0000000..1f54967 --- /dev/null +++ b/src/svg/speedometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/square-outline.svg b/src/svg/square-outline.svg new file mode 100644 index 0000000..0c77e90 --- /dev/null +++ b/src/svg/square-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/square-sharp.svg b/src/svg/square-sharp.svg new file mode 100644 index 0000000..855836d --- /dev/null +++ b/src/svg/square-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/square.svg b/src/svg/square.svg new file mode 100644 index 0000000..c9f5e1a --- /dev/null +++ b/src/svg/square.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/star-half-outline.svg b/src/svg/star-half-outline.svg new file mode 100644 index 0000000..1e0197e --- /dev/null +++ b/src/svg/star-half-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/star-half-sharp.svg b/src/svg/star-half-sharp.svg new file mode 100644 index 0000000..5a794c1 --- /dev/null +++ b/src/svg/star-half-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/star-half.svg b/src/svg/star-half.svg new file mode 100644 index 0000000..1e0197e --- /dev/null +++ b/src/svg/star-half.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/star-outline.svg b/src/svg/star-outline.svg new file mode 100644 index 0000000..15badb9 --- /dev/null +++ b/src/svg/star-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/star-sharp.svg b/src/svg/star-sharp.svg new file mode 100644 index 0000000..c08c3de --- /dev/null +++ b/src/svg/star-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/star.svg b/src/svg/star.svg new file mode 100644 index 0000000..33b27a5 --- /dev/null +++ b/src/svg/star.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stats-chart-outline.svg b/src/svg/stats-chart-outline.svg new file mode 100644 index 0000000..0247fe5 --- /dev/null +++ b/src/svg/stats-chart-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stats-chart-sharp.svg b/src/svg/stats-chart-sharp.svg new file mode 100644 index 0000000..8e072a2 --- /dev/null +++ b/src/svg/stats-chart-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stats-chart.svg b/src/svg/stats-chart.svg new file mode 100644 index 0000000..b98c75f --- /dev/null +++ b/src/svg/stats-chart.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stop-circle-outline.svg b/src/svg/stop-circle-outline.svg new file mode 100644 index 0000000..7035374 --- /dev/null +++ b/src/svg/stop-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stop-circle-sharp.svg b/src/svg/stop-circle-sharp.svg new file mode 100644 index 0000000..ffba4a7 --- /dev/null +++ b/src/svg/stop-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stop-circle.svg b/src/svg/stop-circle.svg new file mode 100644 index 0000000..ee1dad4 --- /dev/null +++ b/src/svg/stop-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stop-outline.svg b/src/svg/stop-outline.svg new file mode 100644 index 0000000..1fd3a1a --- /dev/null +++ b/src/svg/stop-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stop-sharp.svg b/src/svg/stop-sharp.svg new file mode 100644 index 0000000..651808f --- /dev/null +++ b/src/svg/stop-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stop.svg b/src/svg/stop.svg new file mode 100644 index 0000000..c613d9f --- /dev/null +++ b/src/svg/stop.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stopwatch-outline.svg b/src/svg/stopwatch-outline.svg new file mode 100644 index 0000000..5e55124 --- /dev/null +++ b/src/svg/stopwatch-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stopwatch-sharp.svg b/src/svg/stopwatch-sharp.svg new file mode 100644 index 0000000..07b7cd8 --- /dev/null +++ b/src/svg/stopwatch-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/stopwatch.svg b/src/svg/stopwatch.svg new file mode 100644 index 0000000..8a1818f --- /dev/null +++ b/src/svg/stopwatch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/storefront-outline.svg b/src/svg/storefront-outline.svg new file mode 100644 index 0000000..e8f73d3 --- /dev/null +++ b/src/svg/storefront-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/storefront-sharp.svg b/src/svg/storefront-sharp.svg new file mode 100644 index 0000000..2e78144 --- /dev/null +++ b/src/svg/storefront-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/storefront.svg b/src/svg/storefront.svg new file mode 100644 index 0000000..13ce222 --- /dev/null +++ b/src/svg/storefront.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/subway-outline.svg b/src/svg/subway-outline.svg new file mode 100644 index 0000000..a940e99 --- /dev/null +++ b/src/svg/subway-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/subway-sharp.svg b/src/svg/subway-sharp.svg new file mode 100644 index 0000000..c04e8b6 --- /dev/null +++ b/src/svg/subway-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/subway.svg b/src/svg/subway.svg new file mode 100644 index 0000000..6d9ad1c --- /dev/null +++ b/src/svg/subway.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sunny-outline.svg b/src/svg/sunny-outline.svg new file mode 100644 index 0000000..29381bf --- /dev/null +++ b/src/svg/sunny-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sunny-sharp.svg b/src/svg/sunny-sharp.svg new file mode 100644 index 0000000..bb64598 --- /dev/null +++ b/src/svg/sunny-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sunny.svg b/src/svg/sunny.svg new file mode 100644 index 0000000..572da73 --- /dev/null +++ b/src/svg/sunny.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/swap-horizontal-outline.svg b/src/svg/swap-horizontal-outline.svg new file mode 100644 index 0000000..c015be7 --- /dev/null +++ b/src/svg/swap-horizontal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/swap-horizontal-sharp.svg b/src/svg/swap-horizontal-sharp.svg new file mode 100644 index 0000000..dde5881 --- /dev/null +++ b/src/svg/swap-horizontal-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/swap-horizontal.svg b/src/svg/swap-horizontal.svg new file mode 100644 index 0000000..c015be7 --- /dev/null +++ b/src/svg/swap-horizontal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/swap-vertical-outline.svg b/src/svg/swap-vertical-outline.svg new file mode 100644 index 0000000..70c2434 --- /dev/null +++ b/src/svg/swap-vertical-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/swap-vertical-sharp.svg b/src/svg/swap-vertical-sharp.svg new file mode 100644 index 0000000..47d8077 --- /dev/null +++ b/src/svg/swap-vertical-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/swap-vertical.svg b/src/svg/swap-vertical.svg new file mode 100644 index 0000000..70c2434 --- /dev/null +++ b/src/svg/swap-vertical.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sync-circle-outline.svg b/src/svg/sync-circle-outline.svg new file mode 100644 index 0000000..60e02e6 --- /dev/null +++ b/src/svg/sync-circle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sync-circle-sharp.svg b/src/svg/sync-circle-sharp.svg new file mode 100644 index 0000000..be48cf7 --- /dev/null +++ b/src/svg/sync-circle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sync-circle.svg b/src/svg/sync-circle.svg new file mode 100644 index 0000000..d13069f --- /dev/null +++ b/src/svg/sync-circle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sync-outline.svg b/src/svg/sync-outline.svg new file mode 100644 index 0000000..42f2fc6 --- /dev/null +++ b/src/svg/sync-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sync-sharp.svg b/src/svg/sync-sharp.svg new file mode 100644 index 0000000..7aa6d90 --- /dev/null +++ b/src/svg/sync-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/sync.svg b/src/svg/sync.svg new file mode 100644 index 0000000..42f2fc6 --- /dev/null +++ b/src/svg/sync.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tablet-landscape-outline.svg b/src/svg/tablet-landscape-outline.svg new file mode 100644 index 0000000..0b0d853 --- /dev/null +++ b/src/svg/tablet-landscape-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tablet-landscape-sharp.svg b/src/svg/tablet-landscape-sharp.svg new file mode 100644 index 0000000..789ae26 --- /dev/null +++ b/src/svg/tablet-landscape-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tablet-landscape.svg b/src/svg/tablet-landscape.svg new file mode 100644 index 0000000..18d5eba --- /dev/null +++ b/src/svg/tablet-landscape.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tablet-portrait-outline.svg b/src/svg/tablet-portrait-outline.svg new file mode 100644 index 0000000..ae8f564 --- /dev/null +++ b/src/svg/tablet-portrait-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tablet-portrait-sharp.svg b/src/svg/tablet-portrait-sharp.svg new file mode 100644 index 0000000..5874867 --- /dev/null +++ b/src/svg/tablet-portrait-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tablet-portrait.svg b/src/svg/tablet-portrait.svg new file mode 100644 index 0000000..90124e8 --- /dev/null +++ b/src/svg/tablet-portrait.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/telescope-outline.svg b/src/svg/telescope-outline.svg new file mode 100644 index 0000000..466d22e --- /dev/null +++ b/src/svg/telescope-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/telescope-sharp.svg b/src/svg/telescope-sharp.svg new file mode 100644 index 0000000..12c4564 --- /dev/null +++ b/src/svg/telescope-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/telescope.svg b/src/svg/telescope.svg new file mode 100644 index 0000000..c79300e --- /dev/null +++ b/src/svg/telescope.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tennisball-outline.svg b/src/svg/tennisball-outline.svg new file mode 100644 index 0000000..cf072b6 --- /dev/null +++ b/src/svg/tennisball-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tennisball-sharp.svg b/src/svg/tennisball-sharp.svg new file mode 100644 index 0000000..116b7d4 --- /dev/null +++ b/src/svg/tennisball-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tennisball.svg b/src/svg/tennisball.svg new file mode 100644 index 0000000..d7a40c8 --- /dev/null +++ b/src/svg/tennisball.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/terminal-outline.svg b/src/svg/terminal-outline.svg new file mode 100644 index 0000000..63aec55 --- /dev/null +++ b/src/svg/terminal-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/terminal-sharp.svg b/src/svg/terminal-sharp.svg new file mode 100644 index 0000000..7a9233f --- /dev/null +++ b/src/svg/terminal-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/terminal.svg b/src/svg/terminal.svg new file mode 100644 index 0000000..25894b2 --- /dev/null +++ b/src/svg/terminal.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/text-outline.svg b/src/svg/text-outline.svg new file mode 100644 index 0000000..acff996 --- /dev/null +++ b/src/svg/text-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/text-sharp.svg b/src/svg/text-sharp.svg new file mode 100644 index 0000000..7a6ae6c --- /dev/null +++ b/src/svg/text-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/text.svg b/src/svg/text.svg new file mode 100644 index 0000000..2c456ff --- /dev/null +++ b/src/svg/text.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thermometer-outline.svg b/src/svg/thermometer-outline.svg new file mode 100644 index 0000000..b5ab15f --- /dev/null +++ b/src/svg/thermometer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thermometer-sharp.svg b/src/svg/thermometer-sharp.svg new file mode 100644 index 0000000..2026ac1 --- /dev/null +++ b/src/svg/thermometer-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thermometer.svg b/src/svg/thermometer.svg new file mode 100644 index 0000000..c9a9390 --- /dev/null +++ b/src/svg/thermometer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thumbs-down-outline.svg b/src/svg/thumbs-down-outline.svg new file mode 100644 index 0000000..e7fa2e5 --- /dev/null +++ b/src/svg/thumbs-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thumbs-down-sharp.svg b/src/svg/thumbs-down-sharp.svg new file mode 100644 index 0000000..0d7d9ef --- /dev/null +++ b/src/svg/thumbs-down-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thumbs-down.svg b/src/svg/thumbs-down.svg new file mode 100644 index 0000000..e548eb8 --- /dev/null +++ b/src/svg/thumbs-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thumbs-up-outline.svg b/src/svg/thumbs-up-outline.svg new file mode 100644 index 0000000..88dfd37 --- /dev/null +++ b/src/svg/thumbs-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thumbs-up-sharp.svg b/src/svg/thumbs-up-sharp.svg new file mode 100644 index 0000000..9a4317e --- /dev/null +++ b/src/svg/thumbs-up-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thumbs-up.svg b/src/svg/thumbs-up.svg new file mode 100644 index 0000000..6d0f991 --- /dev/null +++ b/src/svg/thumbs-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thunderstorm-outline.svg b/src/svg/thunderstorm-outline.svg new file mode 100644 index 0000000..52167e6 --- /dev/null +++ b/src/svg/thunderstorm-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thunderstorm-sharp.svg b/src/svg/thunderstorm-sharp.svg new file mode 100644 index 0000000..cf939b9 --- /dev/null +++ b/src/svg/thunderstorm-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/thunderstorm.svg b/src/svg/thunderstorm.svg new file mode 100644 index 0000000..a62ac5f --- /dev/null +++ b/src/svg/thunderstorm.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ticket-outline.svg b/src/svg/ticket-outline.svg new file mode 100644 index 0000000..f2e4497 --- /dev/null +++ b/src/svg/ticket-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ticket-sharp.svg b/src/svg/ticket-sharp.svg new file mode 100644 index 0000000..69fab46 --- /dev/null +++ b/src/svg/ticket-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/ticket.svg b/src/svg/ticket.svg new file mode 100644 index 0000000..cd024b9 --- /dev/null +++ b/src/svg/ticket.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/time-outline.svg b/src/svg/time-outline.svg new file mode 100644 index 0000000..c98dc08 --- /dev/null +++ b/src/svg/time-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/time-sharp.svg b/src/svg/time-sharp.svg new file mode 100644 index 0000000..78a0189 --- /dev/null +++ b/src/svg/time-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/time.svg b/src/svg/time.svg new file mode 100644 index 0000000..373a61b --- /dev/null +++ b/src/svg/time.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/timer-outline.svg b/src/svg/timer-outline.svg new file mode 100644 index 0000000..ddf70a4 --- /dev/null +++ b/src/svg/timer-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/timer-sharp.svg b/src/svg/timer-sharp.svg new file mode 100644 index 0000000..ab210d8 --- /dev/null +++ b/src/svg/timer-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/timer.svg b/src/svg/timer.svg new file mode 100644 index 0000000..15c5153 --- /dev/null +++ b/src/svg/timer.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/today-outline.svg b/src/svg/today-outline.svg new file mode 100644 index 0000000..22d5d7b --- /dev/null +++ b/src/svg/today-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/today-sharp.svg b/src/svg/today-sharp.svg new file mode 100644 index 0000000..c951c7a --- /dev/null +++ b/src/svg/today-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/today.svg b/src/svg/today.svg new file mode 100644 index 0000000..809f09e --- /dev/null +++ b/src/svg/today.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/toggle-outline.svg b/src/svg/toggle-outline.svg new file mode 100644 index 0000000..3464209 --- /dev/null +++ b/src/svg/toggle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/toggle-sharp.svg b/src/svg/toggle-sharp.svg new file mode 100644 index 0000000..a5a0945 --- /dev/null +++ b/src/svg/toggle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/toggle.svg b/src/svg/toggle.svg new file mode 100644 index 0000000..af75568 --- /dev/null +++ b/src/svg/toggle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trail-sign-outline.svg b/src/svg/trail-sign-outline.svg new file mode 100644 index 0000000..fc50d33 --- /dev/null +++ b/src/svg/trail-sign-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trail-sign-sharp.svg b/src/svg/trail-sign-sharp.svg new file mode 100644 index 0000000..7729de9 --- /dev/null +++ b/src/svg/trail-sign-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trail-sign.svg b/src/svg/trail-sign.svg new file mode 100644 index 0000000..c3b279a --- /dev/null +++ b/src/svg/trail-sign.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/train-outline.svg b/src/svg/train-outline.svg new file mode 100644 index 0000000..347c2b0 --- /dev/null +++ b/src/svg/train-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/train-sharp.svg b/src/svg/train-sharp.svg new file mode 100644 index 0000000..22b0ab0 --- /dev/null +++ b/src/svg/train-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/train.svg b/src/svg/train.svg new file mode 100644 index 0000000..602e163 --- /dev/null +++ b/src/svg/train.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/transgender-outline.svg b/src/svg/transgender-outline.svg new file mode 100644 index 0000000..f5d16e8 --- /dev/null +++ b/src/svg/transgender-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/transgender-sharp.svg b/src/svg/transgender-sharp.svg new file mode 100644 index 0000000..3c40341 --- /dev/null +++ b/src/svg/transgender-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/transgender.svg b/src/svg/transgender.svg new file mode 100644 index 0000000..042aec8 --- /dev/null +++ b/src/svg/transgender.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trash-bin-outline.svg b/src/svg/trash-bin-outline.svg new file mode 100644 index 0000000..ca2dcf2 --- /dev/null +++ b/src/svg/trash-bin-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trash-bin-sharp.svg b/src/svg/trash-bin-sharp.svg new file mode 100644 index 0000000..304809f --- /dev/null +++ b/src/svg/trash-bin-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trash-bin.svg b/src/svg/trash-bin.svg new file mode 100644 index 0000000..ac32a57 --- /dev/null +++ b/src/svg/trash-bin.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trash-outline.svg b/src/svg/trash-outline.svg new file mode 100644 index 0000000..de466a1 --- /dev/null +++ b/src/svg/trash-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trash-sharp.svg b/src/svg/trash-sharp.svg new file mode 100644 index 0000000..bf2065a --- /dev/null +++ b/src/svg/trash-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trash.svg b/src/svg/trash.svg new file mode 100644 index 0000000..2171fe3 --- /dev/null +++ b/src/svg/trash.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trending-down-outline.svg b/src/svg/trending-down-outline.svg new file mode 100644 index 0000000..1057190 --- /dev/null +++ b/src/svg/trending-down-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trending-down-sharp.svg b/src/svg/trending-down-sharp.svg new file mode 100644 index 0000000..1534374 --- /dev/null +++ b/src/svg/trending-down-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trending-down.svg b/src/svg/trending-down.svg new file mode 100644 index 0000000..1057190 --- /dev/null +++ b/src/svg/trending-down.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trending-up-outline.svg b/src/svg/trending-up-outline.svg new file mode 100644 index 0000000..2705213 --- /dev/null +++ b/src/svg/trending-up-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trending-up-sharp.svg b/src/svg/trending-up-sharp.svg new file mode 100644 index 0000000..73e1658 --- /dev/null +++ b/src/svg/trending-up-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trending-up.svg b/src/svg/trending-up.svg new file mode 100644 index 0000000..2705213 --- /dev/null +++ b/src/svg/trending-up.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/triangle-outline.svg b/src/svg/triangle-outline.svg new file mode 100644 index 0000000..d100c14 --- /dev/null +++ b/src/svg/triangle-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/triangle-sharp.svg b/src/svg/triangle-sharp.svg new file mode 100644 index 0000000..ac3a436 --- /dev/null +++ b/src/svg/triangle-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/triangle.svg b/src/svg/triangle.svg new file mode 100644 index 0000000..236b2da --- /dev/null +++ b/src/svg/triangle.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trophy-outline.svg b/src/svg/trophy-outline.svg new file mode 100644 index 0000000..e5cc0fb --- /dev/null +++ b/src/svg/trophy-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trophy-sharp.svg b/src/svg/trophy-sharp.svg new file mode 100644 index 0000000..d7ab18b --- /dev/null +++ b/src/svg/trophy-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/trophy.svg b/src/svg/trophy.svg new file mode 100644 index 0000000..0e546f8 --- /dev/null +++ b/src/svg/trophy.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tv-outline.svg b/src/svg/tv-outline.svg new file mode 100644 index 0000000..f47c928 --- /dev/null +++ b/src/svg/tv-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tv-sharp.svg b/src/svg/tv-sharp.svg new file mode 100644 index 0000000..959a521 --- /dev/null +++ b/src/svg/tv-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/tv.svg b/src/svg/tv.svg new file mode 100644 index 0000000..742a036 --- /dev/null +++ b/src/svg/tv.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/umbrella-outline.svg b/src/svg/umbrella-outline.svg new file mode 100644 index 0000000..d4ab8ab --- /dev/null +++ b/src/svg/umbrella-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/umbrella-sharp.svg b/src/svg/umbrella-sharp.svg new file mode 100644 index 0000000..d7a257c --- /dev/null +++ b/src/svg/umbrella-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/umbrella.svg b/src/svg/umbrella.svg new file mode 100644 index 0000000..614d072 --- /dev/null +++ b/src/svg/umbrella.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/unlink-outline.svg b/src/svg/unlink-outline.svg new file mode 100644 index 0000000..66adfc1 --- /dev/null +++ b/src/svg/unlink-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/unlink-sharp.svg b/src/svg/unlink-sharp.svg new file mode 100644 index 0000000..4962809 --- /dev/null +++ b/src/svg/unlink-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/unlink.svg b/src/svg/unlink.svg new file mode 100644 index 0000000..d9d04c5 --- /dev/null +++ b/src/svg/unlink.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/videocam-off-outline.svg b/src/svg/videocam-off-outline.svg new file mode 100644 index 0000000..5ff06f4 --- /dev/null +++ b/src/svg/videocam-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/videocam-off-sharp.svg b/src/svg/videocam-off-sharp.svg new file mode 100644 index 0000000..47c2ec8 --- /dev/null +++ b/src/svg/videocam-off-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/videocam-off.svg b/src/svg/videocam-off.svg new file mode 100644 index 0000000..17606d6 --- /dev/null +++ b/src/svg/videocam-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/videocam-outline.svg b/src/svg/videocam-outline.svg new file mode 100644 index 0000000..c82039b --- /dev/null +++ b/src/svg/videocam-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/videocam-sharp.svg b/src/svg/videocam-sharp.svg new file mode 100644 index 0000000..41683c7 --- /dev/null +++ b/src/svg/videocam-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/videocam.svg b/src/svg/videocam.svg new file mode 100644 index 0000000..6b97dec --- /dev/null +++ b/src/svg/videocam.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-high-outline.svg b/src/svg/volume-high-outline.svg new file mode 100644 index 0000000..ca9ec7c --- /dev/null +++ b/src/svg/volume-high-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-high-sharp.svg b/src/svg/volume-high-sharp.svg new file mode 100644 index 0000000..ea9438b --- /dev/null +++ b/src/svg/volume-high-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-high.svg b/src/svg/volume-high.svg new file mode 100644 index 0000000..0b62bd7 --- /dev/null +++ b/src/svg/volume-high.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-low-outline.svg b/src/svg/volume-low-outline.svg new file mode 100644 index 0000000..0a08ab0 --- /dev/null +++ b/src/svg/volume-low-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-low-sharp.svg b/src/svg/volume-low-sharp.svg new file mode 100644 index 0000000..19830b2 --- /dev/null +++ b/src/svg/volume-low-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-low.svg b/src/svg/volume-low.svg new file mode 100644 index 0000000..ca544ff --- /dev/null +++ b/src/svg/volume-low.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-medium-outline.svg b/src/svg/volume-medium-outline.svg new file mode 100644 index 0000000..3c5856f --- /dev/null +++ b/src/svg/volume-medium-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-medium-sharp.svg b/src/svg/volume-medium-sharp.svg new file mode 100644 index 0000000..c67b9b2 --- /dev/null +++ b/src/svg/volume-medium-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-medium.svg b/src/svg/volume-medium.svg new file mode 100644 index 0000000..3340c63 --- /dev/null +++ b/src/svg/volume-medium.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-mute-outline.svg b/src/svg/volume-mute-outline.svg new file mode 100644 index 0000000..2ea71d6 --- /dev/null +++ b/src/svg/volume-mute-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-mute-sharp.svg b/src/svg/volume-mute-sharp.svg new file mode 100644 index 0000000..b8a225d --- /dev/null +++ b/src/svg/volume-mute-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-mute.svg b/src/svg/volume-mute.svg new file mode 100644 index 0000000..e81cc34 --- /dev/null +++ b/src/svg/volume-mute.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-off-outline.svg b/src/svg/volume-off-outline.svg new file mode 100644 index 0000000..77c702e --- /dev/null +++ b/src/svg/volume-off-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-off-sharp.svg b/src/svg/volume-off-sharp.svg new file mode 100644 index 0000000..d0bd79d --- /dev/null +++ b/src/svg/volume-off-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/volume-off.svg b/src/svg/volume-off.svg new file mode 100644 index 0000000..0116e17 --- /dev/null +++ b/src/svg/volume-off.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/walk-outline.svg b/src/svg/walk-outline.svg new file mode 100644 index 0000000..6228ec8 --- /dev/null +++ b/src/svg/walk-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/walk-sharp.svg b/src/svg/walk-sharp.svg new file mode 100644 index 0000000..baabf05 --- /dev/null +++ b/src/svg/walk-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/walk.svg b/src/svg/walk.svg new file mode 100644 index 0000000..f22547e --- /dev/null +++ b/src/svg/walk.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/wallet-outline.svg b/src/svg/wallet-outline.svg new file mode 100644 index 0000000..72bbf0a --- /dev/null +++ b/src/svg/wallet-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/wallet-sharp.svg b/src/svg/wallet-sharp.svg new file mode 100644 index 0000000..f245287 --- /dev/null +++ b/src/svg/wallet-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/wallet.svg b/src/svg/wallet.svg new file mode 100644 index 0000000..fd7bb93 --- /dev/null +++ b/src/svg/wallet.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/warning-outline.svg b/src/svg/warning-outline.svg new file mode 100644 index 0000000..f308e7a --- /dev/null +++ b/src/svg/warning-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/warning-sharp.svg b/src/svg/warning-sharp.svg new file mode 100644 index 0000000..73297fc --- /dev/null +++ b/src/svg/warning-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/warning.svg b/src/svg/warning.svg new file mode 100644 index 0000000..c90d2b3 --- /dev/null +++ b/src/svg/warning.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/watch-outline.svg b/src/svg/watch-outline.svg new file mode 100644 index 0000000..3bf018e --- /dev/null +++ b/src/svg/watch-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/watch-sharp.svg b/src/svg/watch-sharp.svg new file mode 100644 index 0000000..b646a8c --- /dev/null +++ b/src/svg/watch-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/watch.svg b/src/svg/watch.svg new file mode 100644 index 0000000..7af3380 --- /dev/null +++ b/src/svg/watch.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/water-outline.svg b/src/svg/water-outline.svg new file mode 100644 index 0000000..21c3101 --- /dev/null +++ b/src/svg/water-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/water-sharp.svg b/src/svg/water-sharp.svg new file mode 100644 index 0000000..b4149e0 --- /dev/null +++ b/src/svg/water-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/water.svg b/src/svg/water.svg new file mode 100644 index 0000000..e3e7d1a --- /dev/null +++ b/src/svg/water.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/wifi-outline.svg b/src/svg/wifi-outline.svg new file mode 100644 index 0000000..560f2a6 --- /dev/null +++ b/src/svg/wifi-outline.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/wifi-sharp.svg b/src/svg/wifi-sharp.svg new file mode 100644 index 0000000..c4d57d9 --- /dev/null +++ b/src/svg/wifi-sharp.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/wifi.svg b/src/svg/wifi.svg new file mode 100644 index 0000000..1e767ca --- /dev/null +++ b/src/svg/wifi.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/src/svg/wine-outline.svg b/src/svg/wine-outline.svg new file mode 100644 index 0000000..fe275d0 --- /dev/null +++ b/src/svg/wine-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/wine-sharp.svg b/src/svg/wine-sharp.svg new file mode 100644 index 0000000..e4bfa26 --- /dev/null +++ b/src/svg/wine-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/wine.svg b/src/svg/wine.svg new file mode 100644 index 0000000..b1558bc --- /dev/null +++ b/src/svg/wine.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/woman-outline.svg b/src/svg/woman-outline.svg new file mode 100644 index 0000000..f21e3c3 --- /dev/null +++ b/src/svg/woman-outline.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/woman-sharp.svg b/src/svg/woman-sharp.svg new file mode 100644 index 0000000..5ecd7e2 --- /dev/null +++ b/src/svg/woman-sharp.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/svg/woman.svg b/src/svg/woman.svg new file mode 100644 index 0000000..db31f94 --- /dev/null +++ b/src/svg/woman.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/src/types.ts b/src/types.ts new file mode 100644 index 0000000..8fb9cb1 --- /dev/null +++ b/src/types.ts @@ -0,0 +1,9 @@ +import { CSSProperties } from 'react'; + +export interface IonIconProps { + svgProps?: Omit, 'className' | 'style'>; + style?: CSSProperties; + strokeWidth?: number; + className?: string; + color?: string; +} diff --git a/templates/svg.js b/templates/svg.js new file mode 100644 index 0000000..267fa6d --- /dev/null +++ b/templates/svg.js @@ -0,0 +1,17 @@ +const propTypesTemplate = ( + { /* imports, */ interfaces, componentName, jsx, exports }, + { tpl } +) => { + return tpl`import { memo } from 'react'; +import type { IonIconProps } from '../types'; +${interfaces} + +function ${componentName}({ className, strokeWidth, color, style, svgProps: props }: IonIconProps) { + return ${jsx}; +} + +${exports} + `; +}; + +module.exports = propTypesTemplate; diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..462de59 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,24 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": ["dom", "dom.iterable", "esnext"], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "noFallthroughCasesInSwitch": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "sourceMap": false, + "declaration": false, + "declarationMap": false, + "noEmit": true, + "outDir": "./dist", + "jsx": "react-jsx" + }, + "include": ["src"] +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..b7b7389 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,3547 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@aashutoshrathi/word-wrap@^1.2.3": + version "1.2.6" + resolved "https://registry.yarnpkg.com/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz#bd9154aec9983f77b3a034ecaa015c2e4201f6cf" + integrity sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA== + +"@ampproject/remapping@^2.2.0": + version "2.3.0" + resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" + integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.24" + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.22.13", "@babel/code-frame@^7.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" + integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== + dependencies: + "@babel/highlight" "^7.24.2" + picocolors "^1.0.0" + +"@babel/compat-data@^7.23.5": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.1.tgz#31c1f66435f2a9c329bb5716a6d6186c516c3742" + integrity sha512-Pc65opHDliVpRHuKfzI+gSA4zcgr65O4cl64fFJIWEEh8JoHIHh0Oez1Eo8Arz8zq/JhgKodQaxEwUPRtZylVA== + +"@babel/core@^7.21.3": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.3.tgz#568864247ea10fbd4eff04dda1e05f9e2ea985c3" + integrity sha512-5FcvN1JHw2sHJChotgx8Ek0lyuh4kCKelgMTTqhYJJtloNvUfpAFMeNQUtdlIaktwrSV9LtCdqwk48wL2wBacQ== + dependencies: + "@ampproject/remapping" "^2.2.0" + "@babel/code-frame" "^7.24.2" + "@babel/generator" "^7.24.1" + "@babel/helper-compilation-targets" "^7.23.6" + "@babel/helper-module-transforms" "^7.23.3" + "@babel/helpers" "^7.24.1" + "@babel/parser" "^7.24.1" + "@babel/template" "^7.24.0" + "@babel/traverse" "^7.24.1" + "@babel/types" "^7.24.0" + convert-source-map "^2.0.0" + debug "^4.1.0" + gensync "^1.0.0-beta.2" + json5 "^2.2.3" + semver "^6.3.1" + +"@babel/generator@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.1.tgz#e67e06f68568a4ebf194d1c6014235344f0476d0" + integrity sha512-DfCRfZsBcrPEHUfuBMgbJ1Ut01Y/itOs+hY2nFLgqsqXd52/iSiVq5TITtUasIUgm+IIKdY2/1I7auiQOEeC9A== + dependencies: + "@babel/types" "^7.24.0" + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + jsesc "^2.5.1" + +"@babel/helper-compilation-targets@^7.23.6": + version "7.23.6" + resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" + integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== + dependencies: + "@babel/compat-data" "^7.23.5" + "@babel/helper-validator-option" "^7.23.5" + browserslist "^4.22.2" + lru-cache "^5.1.1" + semver "^6.3.1" + +"@babel/helper-environment-visitor@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" + integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== + +"@babel/helper-function-name@^7.23.0": + version "7.23.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" + integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== + dependencies: + "@babel/template" "^7.22.15" + "@babel/types" "^7.23.0" + +"@babel/helper-hoist-variables@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" + integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-module-imports@^7.22.15": + version "7.24.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" + integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== + dependencies: + "@babel/types" "^7.24.0" + +"@babel/helper-module-transforms@^7.23.3": + version "7.23.3" + resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" + integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== + dependencies: + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-module-imports" "^7.22.15" + "@babel/helper-simple-access" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/helper-validator-identifier" "^7.22.20" + +"@babel/helper-simple-access@^7.22.5": + version "7.22.5" + resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" + integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-split-export-declaration@^7.22.6": + version "7.22.6" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" + integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== + dependencies: + "@babel/types" "^7.22.5" + +"@babel/helper-string-parser@^7.23.4": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" + integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== + +"@babel/helper-validator-identifier@^7.22.20": + version "7.22.20" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" + integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== + +"@babel/helper-validator-option@^7.23.5": + version "7.23.5" + resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" + integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== + +"@babel/helpers@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.1.tgz#183e44714b9eba36c3038e442516587b1e0a1a94" + integrity sha512-BpU09QqEe6ZCHuIHFphEFgvNSrubve1FtyMton26ekZ85gRGi6LrTF7zArARp2YvyFxloeiRmtSCq5sjh1WqIg== + dependencies: + "@babel/template" "^7.24.0" + "@babel/traverse" "^7.24.1" + "@babel/types" "^7.24.0" + +"@babel/highlight@^7.24.2": + version "7.24.2" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26" + integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA== + dependencies: + "@babel/helper-validator-identifier" "^7.22.20" + chalk "^2.4.2" + js-tokens "^4.0.0" + picocolors "^1.0.0" + +"@babel/parser@^7.24.0", "@babel/parser@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.1.tgz#1e416d3627393fab1cb5b0f2f1796a100ae9133a" + integrity sha512-Zo9c7N3xdOIQrNip7Lc9wvRPzlRtovHVE4lkz8WEDr7uYh/GMQhSiIgFxGIArRHYdJE5kxtZjAf8rT0xhdLCzg== + +"@babel/template@^7.22.15", "@babel/template@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50" + integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== + dependencies: + "@babel/code-frame" "^7.23.5" + "@babel/parser" "^7.24.0" + "@babel/types" "^7.24.0" + +"@babel/traverse@^7.24.1": + version "7.24.1" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.1.tgz#d65c36ac9dd17282175d1e4a3c49d5b7988f530c" + integrity sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ== + dependencies: + "@babel/code-frame" "^7.24.1" + "@babel/generator" "^7.24.1" + "@babel/helper-environment-visitor" "^7.22.20" + "@babel/helper-function-name" "^7.23.0" + "@babel/helper-hoist-variables" "^7.22.5" + "@babel/helper-split-export-declaration" "^7.22.6" + "@babel/parser" "^7.24.1" + "@babel/types" "^7.24.0" + debug "^4.3.1" + globals "^11.1.0" + +"@babel/types@^7.21.3", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.0": + version "7.24.0" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.0.tgz#3b951f435a92e7333eba05b7566fd297960ea1bf" + integrity sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w== + dependencies: + "@babel/helper-string-parser" "^7.23.4" + "@babel/helper-validator-identifier" "^7.22.20" + to-fast-properties "^2.0.0" + +"@eslint-community/eslint-utils@^4.1.2", "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": + version "4.4.0" + resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" + integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== + dependencies: + eslint-visitor-keys "^3.3.0" + +"@eslint-community/regexpp@^4.5.1", "@eslint-community/regexpp@^4.6.0", "@eslint-community/regexpp@^4.6.1": + version "4.10.0" + resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.10.0.tgz#548f6de556857c8bb73bbee70c35dc82a2e74d63" + integrity sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA== + +"@eslint/eslintrc@^2.1.4": + version "2.1.4" + resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-2.1.4.tgz#388a269f0f25c1b6adc317b5a2c55714894c70ad" + integrity sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ== + dependencies: + ajv "^6.12.4" + debug "^4.3.2" + espree "^9.6.0" + globals "^13.19.0" + ignore "^5.2.0" + import-fresh "^3.2.1" + js-yaml "^4.1.0" + minimatch "^3.1.2" + strip-json-comments "^3.1.1" + +"@eslint/js@8.57.0": + version "8.57.0" + resolved "https://registry.yarnpkg.com/@eslint/js/-/js-8.57.0.tgz#a5417ae8427873f1dd08b70b3574b453e67b5f7f" + integrity sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g== + +"@humanwhocodes/config-array@^0.11.14": + version "0.11.14" + resolved "https://registry.yarnpkg.com/@humanwhocodes/config-array/-/config-array-0.11.14.tgz#d78e481a039f7566ecc9660b4ea7fe6b1fec442b" + integrity sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg== + dependencies: + "@humanwhocodes/object-schema" "^2.0.2" + debug "^4.3.1" + minimatch "^3.0.5" + +"@humanwhocodes/module-importer@^1.0.1": + version "1.0.1" + resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" + integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== + +"@humanwhocodes/object-schema@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@humanwhocodes/object-schema/-/object-schema-2.0.2.tgz#d9fae00a2d5cb40f92cfe64b47ad749fbc38f917" + integrity sha512-6EwiSjwWYP7pTckG6I5eyFANjPhmPjUX9JRLUSfNPC7FX7zK9gyZAfUEaECL6ALTpGX5AjnBq3C9XmVWPitNpw== + +"@isaacs/cliui@^8.0.2": + version "8.0.2" + resolved "https://registry.yarnpkg.com/@isaacs/cliui/-/cliui-8.0.2.tgz#b37667b7bc181c168782259bab42474fbf52b550" + integrity sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA== + dependencies: + string-width "^5.1.2" + string-width-cjs "npm:string-width@^4.2.0" + strip-ansi "^7.0.1" + strip-ansi-cjs "npm:strip-ansi@^6.0.1" + wrap-ansi "^8.1.0" + wrap-ansi-cjs "npm:wrap-ansi@^7.0.0" + +"@jridgewell/gen-mapping@^0.3.5": + version "0.3.5" + resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" + integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== + dependencies: + "@jridgewell/set-array" "^1.2.1" + "@jridgewell/sourcemap-codec" "^1.4.10" + "@jridgewell/trace-mapping" "^0.3.24" + +"@jridgewell/resolve-uri@^3.1.0": + version "3.1.2" + resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" + integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== + +"@jridgewell/set-array@^1.2.1": + version "1.2.1" + resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" + integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== + +"@jridgewell/source-map@^0.3.3": + version "0.3.6" + resolved "https://registry.yarnpkg.com/@jridgewell/source-map/-/source-map-0.3.6.tgz#9d71ca886e32502eb9362c9a74a46787c36df81a" + integrity sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ== + dependencies: + "@jridgewell/gen-mapping" "^0.3.5" + "@jridgewell/trace-mapping" "^0.3.25" + +"@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14", "@jridgewell/sourcemap-codec@^1.4.15": + version "1.4.15" + resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" + integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== + +"@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": + version "0.3.25" + resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" + integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== + dependencies: + "@jridgewell/resolve-uri" "^3.1.0" + "@jridgewell/sourcemap-codec" "^1.4.14" + +"@nodelib/fs.scandir@2.1.5": + version "2.1.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" + integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== + dependencies: + "@nodelib/fs.stat" "2.0.5" + run-parallel "^1.1.9" + +"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": + version "2.0.5" + resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" + integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== + +"@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": + version "1.2.8" + resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" + integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== + dependencies: + "@nodelib/fs.scandir" "2.1.5" + fastq "^1.6.0" + +"@pkgjs/parseargs@^0.11.0": + version "0.11.0" + resolved "https://registry.yarnpkg.com/@pkgjs/parseargs/-/parseargs-0.11.0.tgz#a77ea742fab25775145434eb1d2328cf5013ac33" + integrity sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg== + +"@rollup/plugin-commonjs@^25.0.7": + version "25.0.7" + resolved "https://registry.yarnpkg.com/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.7.tgz#145cec7589ad952171aeb6a585bbeabd0fd3b4cf" + integrity sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ== + dependencies: + "@rollup/pluginutils" "^5.0.1" + commondir "^1.0.1" + estree-walker "^2.0.2" + glob "^8.0.3" + is-reference "1.2.1" + magic-string "^0.30.3" + +"@rollup/plugin-node-resolve@^15.2.3": + version "15.2.3" + resolved "https://registry.yarnpkg.com/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz#e5e0b059bd85ca57489492f295ce88c2d4b0daf9" + integrity sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ== + dependencies: + "@rollup/pluginutils" "^5.0.1" + "@types/resolve" "1.20.2" + deepmerge "^4.2.2" + is-builtin-module "^3.2.1" + is-module "^1.0.0" + resolve "^1.22.1" + +"@rollup/plugin-terser@^0.4.4": + version "0.4.4" + resolved "https://registry.yarnpkg.com/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz#15dffdb3f73f121aa4fbb37e7ca6be9aeea91962" + integrity sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A== + dependencies: + serialize-javascript "^6.0.1" + smob "^1.0.0" + terser "^5.17.4" + +"@rollup/plugin-typescript@^11.1.6": + version "11.1.6" + resolved "https://registry.yarnpkg.com/@rollup/plugin-typescript/-/plugin-typescript-11.1.6.tgz#724237d5ec12609ec01429f619d2a3e7d4d1b22b" + integrity sha512-R92yOmIACgYdJ7dJ97p4K69I8gg6IEHt8M7dUBxN3W6nrO8uUxX5ixl0yU/N3aZTi8WhPuICvOHXQvF6FaykAA== + dependencies: + "@rollup/pluginutils" "^5.1.0" + resolve "^1.22.1" + +"@rollup/pluginutils@^5.0.1", "@rollup/pluginutils@^5.1.0": + version "5.1.0" + resolved "https://registry.yarnpkg.com/@rollup/pluginutils/-/pluginutils-5.1.0.tgz#7e53eddc8c7f483a4ad0b94afb1f7f5fd3c771e0" + integrity sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g== + dependencies: + "@types/estree" "^1.0.0" + estree-walker "^2.0.2" + picomatch "^2.3.1" + +"@rollup/rollup-android-arm-eabi@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.13.0.tgz#b98786c1304b4ff8db3a873180b778649b5dff2b" + integrity sha512-5ZYPOuaAqEH/W3gYsRkxQATBW3Ii1MfaT4EQstTnLKViLi2gLSQmlmtTpGucNP3sXEpOiI5tdGhjdE111ekyEg== + +"@rollup/rollup-android-arm64@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.13.0.tgz#8833679af11172b1bf1ab7cb3bad84df4caf0c9e" + integrity sha512-BSbaCmn8ZadK3UAQdlauSvtaJjhlDEjS5hEVVIN3A4bbl3X+otyf/kOJV08bYiRxfejP3DXFzO2jz3G20107+Q== + +"@rollup/rollup-darwin-arm64@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.13.0.tgz#ef02d73e0a95d406e0eb4fd61a53d5d17775659b" + integrity sha512-Ovf2evVaP6sW5Ut0GHyUSOqA6tVKfrTHddtmxGQc1CTQa1Cw3/KMCDEEICZBbyppcwnhMwcDce9ZRxdWRpVd6g== + +"@rollup/rollup-darwin-x64@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.13.0.tgz#3ce5b9bcf92b3341a5c1c58a3e6bcce0ea9e7455" + integrity sha512-U+Jcxm89UTK592vZ2J9st9ajRv/hrwHdnvyuJpa5A2ngGSVHypigidkQJP+YiGL6JODiUeMzkqQzbCG3At81Gg== + +"@rollup/rollup-linux-arm-gnueabihf@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.13.0.tgz#3d3d2c018bdd8e037c6bfedd52acfff1c97e4be4" + integrity sha512-8wZidaUJUTIR5T4vRS22VkSMOVooG0F4N+JSwQXWSRiC6yfEsFMLTYRFHvby5mFFuExHa/yAp9juSphQQJAijQ== + +"@rollup/rollup-linux-arm64-gnu@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.13.0.tgz#5fc8cc978ff396eaa136d7bfe05b5b9138064143" + integrity sha512-Iu0Kno1vrD7zHQDxOmvweqLkAzjxEVqNhUIXBsZ8hu8Oak7/5VTPrxOEZXYC1nmrBVJp0ZcL2E7lSuuOVaE3+w== + +"@rollup/rollup-linux-arm64-musl@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.13.0.tgz#f2ae7d7bed416ffa26d6b948ac5772b520700eef" + integrity sha512-C31QrW47llgVyrRjIwiOwsHFcaIwmkKi3PCroQY5aVq4H0A5v/vVVAtFsI1nfBngtoRpeREvZOkIhmRwUKkAdw== + +"@rollup/rollup-linux-riscv64-gnu@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.13.0.tgz#303d57a328ee9a50c85385936f31cf62306d30b6" + integrity sha512-Oq90dtMHvthFOPMl7pt7KmxzX7E71AfyIhh+cPhLY9oko97Zf2C9tt/XJD4RgxhaGeAraAXDtqxvKE1y/j35lA== + +"@rollup/rollup-linux-x64-gnu@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.13.0.tgz#f672f6508f090fc73f08ba40ff76c20b57424778" + integrity sha512-yUD/8wMffnTKuiIsl6xU+4IA8UNhQ/f1sAnQebmE/lyQ8abjsVyDkyRkWop0kdMhKMprpNIhPmYlCxgHrPoXoA== + +"@rollup/rollup-linux-x64-musl@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.13.0.tgz#d2f34b1b157f3e7f13925bca3288192a66755a89" + integrity sha512-9RyNqoFNdF0vu/qqX63fKotBh43fJQeYC98hCaf89DYQpv+xu0D8QFSOS0biA7cGuqJFOc1bJ+m2rhhsKcw1hw== + +"@rollup/rollup-win32-arm64-msvc@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.13.0.tgz#8ffecc980ae4d9899eb2f9c4ae471a8d58d2da6b" + integrity sha512-46ue8ymtm/5PUU6pCvjlic0z82qWkxv54GTJZgHrQUuZnVH+tvvSP0LsozIDsCBFO4VjJ13N68wqrKSeScUKdA== + +"@rollup/rollup-win32-ia32-msvc@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.13.0.tgz#a7505884f415662e088365b9218b2b03a88fc6f2" + integrity sha512-P5/MqLdLSlqxbeuJ3YDeX37srC8mCflSyTrUsgbU1c/U9j6l2g2GiIdYaGD9QjdMQPMSgYm7hgg0551wHyIluw== + +"@rollup/rollup-win32-x64-msvc@4.13.0": + version "4.13.0" + resolved "https://registry.yarnpkg.com/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.13.0.tgz#6abd79db7ff8d01a58865ba20a63cfd23d9e2a10" + integrity sha512-UKXUQNbO3DOhzLRwHSpa0HnhhCgNODvfoPWv2FCXme8N/ANFfhIPMGuOT+QuKd16+B5yxZ0HdpNlqPvTMS1qfw== + +"@svgr/babel-plugin-add-jsx-attribute@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-add-jsx-attribute/-/babel-plugin-add-jsx-attribute-8.0.0.tgz#4001f5d5dd87fa13303e36ee106e3ff3a7eb8b22" + integrity sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g== + +"@svgr/babel-plugin-remove-jsx-attribute@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-attribute/-/babel-plugin-remove-jsx-attribute-8.0.0.tgz#69177f7937233caca3a1afb051906698f2f59186" + integrity sha512-BcCkm/STipKvbCl6b7QFrMh/vx00vIP63k2eM66MfHJzPr6O2U0jYEViXkHJWqXqQYjdeA9cuCl5KWmlwjDvbA== + +"@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-remove-jsx-empty-expression/-/babel-plugin-remove-jsx-empty-expression-8.0.0.tgz#c2c48104cfd7dcd557f373b70a56e9e3bdae1d44" + integrity sha512-5BcGCBfBxB5+XSDSWnhTThfI9jcO5f0Ai2V24gZpG+wXF14BzwxxdDb4g6trdOux0rhibGs385BeFMSmxtS3uA== + +"@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-replace-jsx-attribute-value/-/babel-plugin-replace-jsx-attribute-value-8.0.0.tgz#8fbb6b2e91fa26ac5d4aa25c6b6e4f20f9c0ae27" + integrity sha512-KVQ+PtIjb1BuYT3ht8M5KbzWBhdAjjUPdlMtpuw/VjT8coTrItWX6Qafl9+ji831JaJcu6PJNKCV0bp01lBNzQ== + +"@svgr/babel-plugin-svg-dynamic-title@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-dynamic-title/-/babel-plugin-svg-dynamic-title-8.0.0.tgz#1d5ba1d281363fc0f2f29a60d6d936f9bbc657b0" + integrity sha512-omNiKqwjNmOQJ2v6ge4SErBbkooV2aAWwaPFs2vUY7p7GhVkzRkJ00kILXQvRhA6miHnNpXv7MRnnSjdRjK8og== + +"@svgr/babel-plugin-svg-em-dimensions@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-svg-em-dimensions/-/babel-plugin-svg-em-dimensions-8.0.0.tgz#35e08df300ea8b1d41cb8f62309c241b0369e501" + integrity sha512-mURHYnu6Iw3UBTbhGwE/vsngtCIbHE43xCRK7kCw4t01xyGqb2Pd+WXekRRoFOBIY29ZoOhUCTEweDMdrjfi9g== + +"@svgr/babel-plugin-transform-react-native-svg@8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-react-native-svg/-/babel-plugin-transform-react-native-svg-8.1.0.tgz#90a8b63998b688b284f255c6a5248abd5b28d754" + integrity sha512-Tx8T58CHo+7nwJ+EhUwx3LfdNSG9R2OKfaIXXs5soiy5HtgoAEkDay9LIimLOcG8dJQH1wPZp/cnAv6S9CrR1Q== + +"@svgr/babel-plugin-transform-svg-component@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-plugin-transform-svg-component/-/babel-plugin-transform-svg-component-8.0.0.tgz#013b4bfca88779711f0ed2739f3f7efcefcf4f7e" + integrity sha512-DFx8xa3cZXTdb/k3kfPeaixecQLgKh5NVBMwD0AQxOzcZawK4oo1Jh9LbrcACUivsCA7TLG8eeWgrDXjTMhRmw== + +"@svgr/babel-preset@8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/babel-preset/-/babel-preset-8.1.0.tgz#0e87119aecdf1c424840b9d4565b7137cabf9ece" + integrity sha512-7EYDbHE7MxHpv4sxvnVPngw5fuR6pw79SkcrILHJ/iMpuKySNCl5W1qcwPEpU+LgyRXOaAFgH0KhwD18wwg6ug== + dependencies: + "@svgr/babel-plugin-add-jsx-attribute" "8.0.0" + "@svgr/babel-plugin-remove-jsx-attribute" "8.0.0" + "@svgr/babel-plugin-remove-jsx-empty-expression" "8.0.0" + "@svgr/babel-plugin-replace-jsx-attribute-value" "8.0.0" + "@svgr/babel-plugin-svg-dynamic-title" "8.0.0" + "@svgr/babel-plugin-svg-em-dimensions" "8.0.0" + "@svgr/babel-plugin-transform-react-native-svg" "8.1.0" + "@svgr/babel-plugin-transform-svg-component" "8.0.0" + +"@svgr/cli@^8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/cli/-/cli-8.1.0.tgz#dd7fcf42a144eb681bb9923c5d806bf6cafd7512" + integrity sha512-SnlaLspB610XFXvs3PmhzViHErsXp0yIy4ERyZlHDlO1ro2iYtHMWYk2mztdLD/lBjiA4ZXe4RePON3qU/Tc4A== + dependencies: + "@svgr/core" "8.1.0" + "@svgr/plugin-jsx" "8.1.0" + "@svgr/plugin-prettier" "8.1.0" + "@svgr/plugin-svgo" "8.1.0" + camelcase "^6.2.0" + chalk "^4.1.2" + commander "^9.4.1" + dashify "^2.0.0" + glob "^8.0.3" + snake-case "^3.0.4" + +"@svgr/core@8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/core/-/core-8.1.0.tgz#41146f9b40b1a10beaf5cc4f361a16a3c1885e88" + integrity sha512-8QqtOQT5ACVlmsvKOJNEaWmRPmcojMOzCz4Hs2BGG/toAp/K38LcsMRyLp349glq5AzJbCEeimEoxaX6v/fLrA== + dependencies: + "@babel/core" "^7.21.3" + "@svgr/babel-preset" "8.1.0" + camelcase "^6.2.0" + cosmiconfig "^8.1.3" + snake-case "^3.0.4" + +"@svgr/hast-util-to-babel-ast@8.0.0": + version "8.0.0" + resolved "https://registry.yarnpkg.com/@svgr/hast-util-to-babel-ast/-/hast-util-to-babel-ast-8.0.0.tgz#6952fd9ce0f470e1aded293b792a2705faf4ffd4" + integrity sha512-EbDKwO9GpfWP4jN9sGdYwPBU0kdomaPIL2Eu4YwmgP+sJeXT+L7bMwJUBnhzfH8Q2qMBqZ4fJwpCyYsAN3mt2Q== + dependencies: + "@babel/types" "^7.21.3" + entities "^4.4.0" + +"@svgr/plugin-jsx@8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/plugin-jsx/-/plugin-jsx-8.1.0.tgz#96969f04a24b58b174ee4cd974c60475acbd6928" + integrity sha512-0xiIyBsLlr8quN+WyuxooNW9RJ0Dpr8uOnH/xrCVO8GLUcwHISwj1AG0k+LFzteTkAA0GbX0kj9q6Dk70PTiPA== + dependencies: + "@babel/core" "^7.21.3" + "@svgr/babel-preset" "8.1.0" + "@svgr/hast-util-to-babel-ast" "8.0.0" + svg-parser "^2.0.4" + +"@svgr/plugin-prettier@8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/plugin-prettier/-/plugin-prettier-8.1.0.tgz#71bf0d0b0ae4c2234a2deb0e5bad21c2cfe31364" + integrity sha512-o4/uFI8G64tAjBZ4E7gJfH+VP7Qi3T0+M4WnIsP91iFnGPqs5WvPDkpZALXPiyWEtzfYs1Rmwy1Zdfu8qoZuKw== + dependencies: + deepmerge "^4.3.1" + prettier "^2.8.7" + +"@svgr/plugin-svgo@8.1.0": + version "8.1.0" + resolved "https://registry.yarnpkg.com/@svgr/plugin-svgo/-/plugin-svgo-8.1.0.tgz#b115b7b967b564f89ac58feae89b88c3decd0f00" + integrity sha512-Ywtl837OGO9pTLIN/onoWLmDQ4zFUycI1g76vuKGEz6evR/ZTJlJuz3G/fIkb6OVBJ2g0o6CGJzaEjfmEo3AHA== + dependencies: + cosmiconfig "^8.1.3" + deepmerge "^4.3.1" + svgo "^3.0.2" + +"@trysound/sax@0.2.0": + version "0.2.0" + resolved "https://registry.yarnpkg.com/@trysound/sax/-/sax-0.2.0.tgz#cccaab758af56761eb7bf37af6f03f326dd798ad" + integrity sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA== + +"@types/estree@*", "@types/estree@1.0.5", "@types/estree@^1.0.0": + version "1.0.5" + resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" + integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== + +"@types/json-schema@^7.0.12": + version "7.0.15" + resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" + integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== + +"@types/json5@^0.0.29": + version "0.0.29" + resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee" + integrity sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ== + +"@types/prop-types@*": + version "15.7.12" + resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.12.tgz#12bb1e2be27293c1406acb6af1c3f3a1481d98c6" + integrity sha512-5zvhXYtRNRluoE/jAp4GVsSduVUzNWKkOZrCDBWYtE7biZywwdC2AcEzg+cSMLFRfVgeAFqpfNabiPjxFddV1Q== + +"@types/react@^18.2.70": + version "18.2.70" + resolved "https://registry.yarnpkg.com/@types/react/-/react-18.2.70.tgz#89a37f9e0a6a4931f4259c598f40fd44dd6abf71" + integrity sha512-hjlM2hho2vqklPhopNkXkdkeq6Lv8WSZTpr7956zY+3WS5cfYUewtCzsJLsbW5dEv3lfSeQ4W14ZFeKC437JRQ== + dependencies: + "@types/prop-types" "*" + "@types/scheduler" "*" + csstype "^3.0.2" + +"@types/resolve@1.20.2": + version "1.20.2" + resolved "https://registry.yarnpkg.com/@types/resolve/-/resolve-1.20.2.tgz#97d26e00cd4a0423b4af620abecf3e6f442b7975" + integrity sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q== + +"@types/scheduler@*": + version "0.16.8" + resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.8.tgz#ce5ace04cfeabe7ef87c0091e50752e36707deff" + integrity sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A== + +"@types/semver@^7.5.0": + version "7.5.8" + resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.8.tgz#8268a8c57a3e4abd25c165ecd36237db7948a55e" + integrity sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ== + +"@typescript-eslint/eslint-plugin@^6.13.2": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.21.0.tgz#30830c1ca81fd5f3c2714e524c4303e0194f9cd3" + integrity sha512-oy9+hTPCUFpngkEZUSzbf9MxI65wbKFoQYsgPdILTfbUldp5ovUuphZVe4i30emU9M/kP+T64Di0mxl7dSw3MA== + dependencies: + "@eslint-community/regexpp" "^4.5.1" + "@typescript-eslint/scope-manager" "6.21.0" + "@typescript-eslint/type-utils" "6.21.0" + "@typescript-eslint/utils" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" + debug "^4.3.4" + graphemer "^1.4.0" + ignore "^5.2.4" + natural-compare "^1.4.0" + semver "^7.5.4" + ts-api-utils "^1.0.1" + +"@typescript-eslint/parser@^6.13.2": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-6.21.0.tgz#af8fcf66feee2edc86bc5d1cf45e33b0630bf35b" + integrity sha512-tbsV1jPne5CkFQCgPBcDOt30ItF7aJoZL997JSF7MhGQqOeT3svWRYxiqlfA5RUdlHN6Fi+EI9bxqbdyAUZjYQ== + dependencies: + "@typescript-eslint/scope-manager" "6.21.0" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/typescript-estree" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" + debug "^4.3.4" + +"@typescript-eslint/scope-manager@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-6.21.0.tgz#ea8a9bfc8f1504a6ac5d59a6df308d3a0630a2b1" + integrity sha512-OwLUIWZJry80O99zvqXVEioyniJMa+d2GrqpUTqi5/v5D5rOrppJVBPa0yKCblcigC0/aYAzxxqQ1B+DS2RYsg== + dependencies: + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" + +"@typescript-eslint/type-utils@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-6.21.0.tgz#6473281cfed4dacabe8004e8521cee0bd9d4c01e" + integrity sha512-rZQI7wHfao8qMX3Rd3xqeYSMCL3SoiSQLBATSiVKARdFGCYSRvmViieZjqc58jKgs8Y8i9YvVVhRbHSTA4VBag== + dependencies: + "@typescript-eslint/typescript-estree" "6.21.0" + "@typescript-eslint/utils" "6.21.0" + debug "^4.3.4" + ts-api-utils "^1.0.1" + +"@typescript-eslint/types@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-6.21.0.tgz#205724c5123a8fef7ecd195075fa6e85bac3436d" + integrity sha512-1kFmZ1rOm5epu9NZEZm1kckCDGj5UJEf7P1kliH4LKu/RkwpsfqqGmY2OOcUs18lSlQBKLDYBOGxRVtrMN5lpg== + +"@typescript-eslint/typescript-estree@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-6.21.0.tgz#c47ae7901db3b8bddc3ecd73daff2d0895688c46" + integrity sha512-6npJTkZcO+y2/kr+z0hc4HwNfrrP4kNYh57ek7yCNlrBjWQ1Y0OS7jiZTkgumrvkX5HkEKXFZkkdFNkaW2wmUQ== + dependencies: + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/visitor-keys" "6.21.0" + debug "^4.3.4" + globby "^11.1.0" + is-glob "^4.0.3" + minimatch "9.0.3" + semver "^7.5.4" + ts-api-utils "^1.0.1" + +"@typescript-eslint/utils@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-6.21.0.tgz#4714e7a6b39e773c1c8e97ec587f520840cd8134" + integrity sha512-NfWVaC8HP9T8cbKQxHcsJBY5YE1O33+jpMwN45qzWWaPDZgLIbo12toGMWnmhvCpd3sIxkpDw3Wv1B3dYrbDQQ== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + "@types/json-schema" "^7.0.12" + "@types/semver" "^7.5.0" + "@typescript-eslint/scope-manager" "6.21.0" + "@typescript-eslint/types" "6.21.0" + "@typescript-eslint/typescript-estree" "6.21.0" + semver "^7.5.4" + +"@typescript-eslint/visitor-keys@6.21.0": + version "6.21.0" + resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-6.21.0.tgz#87a99d077aa507e20e238b11d56cc26ade45fe47" + integrity sha512-JJtkDduxLi9bivAB+cYOVMtbkqdPOhZ+ZI5LC47MIRrDV4Yn2o+ZnW10Nkmr28xRpSpdJ6Sm42Hjf2+REYXm0A== + dependencies: + "@typescript-eslint/types" "6.21.0" + eslint-visitor-keys "^3.4.1" + +"@ungap/structured-clone@^1.2.0": + version "1.2.0" + resolved "https://registry.yarnpkg.com/@ungap/structured-clone/-/structured-clone-1.2.0.tgz#756641adb587851b5ccb3e095daf27ae581c8406" + integrity sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ== + +acorn-jsx@^5.3.2: + version "5.3.2" + resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" + integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== + +acorn@^8.8.2, acorn@^8.9.0: + version "8.11.3" + resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.11.3.tgz#71e0b14e13a4ec160724b38fb7b0f233b1b81d7a" + integrity sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg== + +ajv@^6.12.4: + version "6.12.6" + resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" + integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== + dependencies: + fast-deep-equal "^3.1.1" + fast-json-stable-stringify "^2.0.0" + json-schema-traverse "^0.4.1" + uri-js "^4.2.2" + +ansi-regex@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" + integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== + +ansi-regex@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-6.0.1.tgz#3183e38fae9a65d7cb5e53945cd5897d0260a06a" + integrity sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA== + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansi-styles@^4.0.0, ansi-styles@^4.1.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" + integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== + dependencies: + color-convert "^2.0.1" + +ansi-styles@^6.1.0: + version "6.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-6.2.1.tgz#0e62320cf99c21afff3b3012192546aacbfb05c5" + integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug== + +argparse@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" + integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== + +array-buffer-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz#1e5583ec16763540a27ae52eed99ff899223568f" + integrity sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg== + dependencies: + call-bind "^1.0.5" + is-array-buffer "^3.0.4" + +array-includes@^3.1.7: + version "3.1.8" + resolved "https://registry.yarnpkg.com/array-includes/-/array-includes-3.1.8.tgz#5e370cbe172fdd5dd6530c1d4aadda25281ba97d" + integrity sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + get-intrinsic "^1.2.4" + is-string "^1.0.7" + +array-union@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" + integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== + +array.prototype.findlastindex@^1.2.3: + version "1.2.5" + resolved "https://registry.yarnpkg.com/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.5.tgz#8c35a755c72908719453f87145ca011e39334d0d" + integrity sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-shim-unscopables "^1.0.2" + +array.prototype.flat@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz#1476217df8cff17d72ee8f3ba06738db5b387d18" + integrity sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + +array.prototype.flatmap@^1.3.2: + version "1.3.2" + resolved "https://registry.yarnpkg.com/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz#c9a7c6831db8e719d6ce639190146c24bbd3e527" + integrity sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + es-shim-unscopables "^1.0.0" + +arraybuffer.prototype.slice@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz#097972f4255e41bc3425e37dc3f6421cf9aefde6" + integrity sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A== + dependencies: + array-buffer-byte-length "^1.0.1" + call-bind "^1.0.5" + define-properties "^1.2.1" + es-abstract "^1.22.3" + es-errors "^1.2.1" + get-intrinsic "^1.2.3" + is-array-buffer "^3.0.4" + is-shared-array-buffer "^1.0.2" + +available-typed-arrays@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz#a5cc375d6a03c2efc87a553f3e0b1522def14846" + integrity sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ== + dependencies: + possible-typed-array-names "^1.0.0" + +balanced-match@^1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" + integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== + +boolbase@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e" + integrity sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww== + +brace-expansion@^1.1.7: + version "1.1.11" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" + integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== + dependencies: + balanced-match "^1.0.0" + concat-map "0.0.1" + +brace-expansion@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" + integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== + dependencies: + balanced-match "^1.0.0" + +braces@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" + integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== + dependencies: + fill-range "^7.0.1" + +browserslist@^4.0.0, browserslist@^4.21.4, browserslist@^4.22.2: + version "4.23.0" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" + integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== + dependencies: + caniuse-lite "^1.0.30001587" + electron-to-chromium "^1.4.668" + node-releases "^2.0.14" + update-browserslist-db "^1.0.13" + +buffer-from@^1.0.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" + integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== + +builtin-modules@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.3.0.tgz#cae62812b89801e9656336e46223e030386be7b6" + integrity sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw== + +builtins@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/builtins/-/builtins-5.0.1.tgz#87f6db9ab0458be728564fa81d876d8d74552fa9" + integrity sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ== + dependencies: + semver "^7.0.0" + +call-bind@^1.0.2, call-bind@^1.0.5, call-bind@^1.0.6, call-bind@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.7.tgz#06016599c40c56498c18769d2730be242b6fa3b9" + integrity sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + set-function-length "^1.2.1" + +callsites@^3.0.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" + integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== + +camelcase@^6.2.0: + version "6.3.0" + resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" + integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== + +caniuse-api@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/caniuse-api/-/caniuse-api-3.0.0.tgz#5e4d90e2274961d46291997df599e3ed008ee4c0" + integrity sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw== + dependencies: + browserslist "^4.0.0" + caniuse-lite "^1.0.0" + lodash.memoize "^4.1.2" + lodash.uniq "^4.5.0" + +caniuse-lite@^1.0.0, caniuse-lite@^1.0.30001587: + version "1.0.30001600" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001600.tgz#93a3ee17a35aa6a9f0c6ef1b2ab49507d1ab9079" + integrity sha512-+2S9/2JFhYmYaDpZvo0lKkfvuKIglrx68MwOBqMGHhQsNkLjB5xtc/TGoEPs+MxjSyN/72qer2g97nzR641mOQ== + +chalk@^2.4.2: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" + integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== + dependencies: + ansi-styles "^4.1.0" + supports-color "^7.1.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-convert@^2.0.1: + version "2.0.1" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" + integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== + dependencies: + color-name "~1.1.4" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== + +color-name@~1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" + integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== + +colord@^2.9.1: + version "2.9.3" + resolved "https://registry.yarnpkg.com/colord/-/colord-2.9.3.tgz#4f8ce919de456f1d5c1c368c307fe20f3e59fb43" + integrity sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw== + +commander@^2.20.0: + version "2.20.3" + resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" + integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== + +commander@^7.2.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-7.2.0.tgz#a36cb57d0b501ce108e4d20559a150a391d97ab7" + integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw== + +commander@^9.4.1: + version "9.5.0" + resolved "https://registry.yarnpkg.com/commander/-/commander-9.5.0.tgz#bc08d1eb5cedf7ccb797a96199d41c7bc3e60d30" + integrity sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ== + +commondir@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/commondir/-/commondir-1.0.1.tgz#ddd800da0c66127393cca5950ea968a3aaf1253b" + integrity sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg== + +concat-map@0.0.1: + version "0.0.1" + resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" + integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== + +concat-with-sourcemaps@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/concat-with-sourcemaps/-/concat-with-sourcemaps-1.1.0.tgz#d4ea93f05ae25790951b99e7b3b09e3908a4082e" + integrity sha512-4gEjHJFT9e+2W/77h/DS5SGUgwDaOwprX8L/gl5+3ixnzkVJJsZWDSelmN3Oilw3LNDZjZV0yqH1hLG3k6nghg== + dependencies: + source-map "^0.6.1" + +convert-source-map@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" + integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== + +cosmiconfig@^8.1.3: + version "8.3.6" + resolved "https://registry.yarnpkg.com/cosmiconfig/-/cosmiconfig-8.3.6.tgz#060a2b871d66dba6c8538ea1118ba1ac16f5fae3" + integrity sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA== + dependencies: + import-fresh "^3.3.0" + js-yaml "^4.1.0" + parse-json "^5.2.0" + path-type "^4.0.0" + +cross-spawn@^7.0.0, cross-spawn@^7.0.2: + version "7.0.3" + resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" + integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== + dependencies: + path-key "^3.1.0" + shebang-command "^2.0.0" + which "^2.0.1" + +css-declaration-sorter@^6.3.1: + version "6.4.1" + resolved "https://registry.yarnpkg.com/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz#28beac7c20bad7f1775be3a7129d7eae409a3a71" + integrity sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g== + +css-select@^4.1.3: + version "4.3.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-4.3.0.tgz#db7129b2846662fd8628cfc496abb2b59e41529b" + integrity sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ== + dependencies: + boolbase "^1.0.0" + css-what "^6.0.1" + domhandler "^4.3.1" + domutils "^2.8.0" + nth-check "^2.0.1" + +css-select@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/css-select/-/css-select-5.1.0.tgz#b8ebd6554c3637ccc76688804ad3f6a6fdaea8a6" + integrity sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg== + dependencies: + boolbase "^1.0.0" + css-what "^6.1.0" + domhandler "^5.0.2" + domutils "^3.0.1" + nth-check "^2.0.1" + +css-tree@^1.1.2, css-tree@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.1.3.tgz#eb4870fb6fd7707327ec95c2ff2ab09b5e8db91d" + integrity sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q== + dependencies: + mdn-data "2.0.14" + source-map "^0.6.1" + +css-tree@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.3.1.tgz#10264ce1e5442e8572fc82fbe490644ff54b5c20" + integrity sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw== + dependencies: + mdn-data "2.0.30" + source-map-js "^1.0.1" + +css-tree@~2.2.0: + version "2.2.1" + resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-2.2.1.tgz#36115d382d60afd271e377f9c5f67d02bd48c032" + integrity sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA== + dependencies: + mdn-data "2.0.28" + source-map-js "^1.0.1" + +css-what@^6.0.1, css-what@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/css-what/-/css-what-6.1.0.tgz#fb5effcf76f1ddea2c81bdfaa4de44e79bac70f4" + integrity sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw== + +cssesc@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/cssesc/-/cssesc-3.0.0.tgz#37741919903b868565e1c09ea747445cd18983ee" + integrity sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg== + +cssnano-preset-default@^5.2.14: + version "5.2.14" + resolved "https://registry.yarnpkg.com/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz#309def4f7b7e16d71ab2438052093330d9ab45d8" + integrity sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A== + dependencies: + css-declaration-sorter "^6.3.1" + cssnano-utils "^3.1.0" + postcss-calc "^8.2.3" + postcss-colormin "^5.3.1" + postcss-convert-values "^5.1.3" + postcss-discard-comments "^5.1.2" + postcss-discard-duplicates "^5.1.0" + postcss-discard-empty "^5.1.1" + postcss-discard-overridden "^5.1.0" + postcss-merge-longhand "^5.1.7" + postcss-merge-rules "^5.1.4" + postcss-minify-font-values "^5.1.0" + postcss-minify-gradients "^5.1.1" + postcss-minify-params "^5.1.4" + postcss-minify-selectors "^5.2.1" + postcss-normalize-charset "^5.1.0" + postcss-normalize-display-values "^5.1.0" + postcss-normalize-positions "^5.1.1" + postcss-normalize-repeat-style "^5.1.1" + postcss-normalize-string "^5.1.0" + postcss-normalize-timing-functions "^5.1.0" + postcss-normalize-unicode "^5.1.1" + postcss-normalize-url "^5.1.0" + postcss-normalize-whitespace "^5.1.1" + postcss-ordered-values "^5.1.3" + postcss-reduce-initial "^5.1.2" + postcss-reduce-transforms "^5.1.0" + postcss-svgo "^5.1.0" + postcss-unique-selectors "^5.1.1" + +cssnano-utils@^3.1.0: + version "3.1.0" + resolved "https://registry.yarnpkg.com/cssnano-utils/-/cssnano-utils-3.1.0.tgz#95684d08c91511edfc70d2636338ca37ef3a6861" + integrity sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA== + +cssnano@^5.0.1: + version "5.1.15" + resolved "https://registry.yarnpkg.com/cssnano/-/cssnano-5.1.15.tgz#ded66b5480d5127fcb44dac12ea5a983755136bf" + integrity sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw== + dependencies: + cssnano-preset-default "^5.2.14" + lilconfig "^2.0.3" + yaml "^1.10.2" + +csso@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/csso/-/csso-4.2.0.tgz#ea3a561346e8dc9f546d6febedd50187cf389529" + integrity sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA== + dependencies: + css-tree "^1.1.2" + +csso@^5.0.5: + version "5.0.5" + resolved "https://registry.yarnpkg.com/csso/-/csso-5.0.5.tgz#f9b7fe6cc6ac0b7d90781bb16d5e9874303e2ca6" + integrity sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ== + dependencies: + css-tree "~2.2.0" + +csstype@^3.0.2: + version "3.1.3" + resolved "https://registry.yarnpkg.com/csstype/-/csstype-3.1.3.tgz#d80ff294d114fb0e6ac500fbf85b60137d7eff81" + integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw== + +dashify@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dashify/-/dashify-2.0.0.tgz#fff270ca2868ca427fee571de35691d6e437a648" + integrity sha512-hpA5C/YrPjucXypHPPc0oJ1l9Hf6wWbiOL7Ik42cxnsUOhWiCB/fylKbKqqJalW9FgkNQCw16YO8uW9Hs0Iy1A== + +data-view-buffer@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-buffer/-/data-view-buffer-1.0.1.tgz#8ea6326efec17a2e42620696e671d7d5a8bc66b2" + integrity sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz#90721ca95ff280677eb793749fce1011347669e2" + integrity sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +data-view-byte-offset@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz#5e0bbfb4828ed2d1b9b400cd8a7d119bca0ff18a" + integrity sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-data-view "^1.0.1" + +debug@^3.2.7: + version "3.2.7" + resolved "https://registry.yarnpkg.com/debug/-/debug-3.2.7.tgz#72580b7e9145fb39b6676f9c5e5fb100b934179a" + integrity sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ== + dependencies: + ms "^2.1.1" + +debug@^4.1.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: + version "4.3.4" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" + integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== + dependencies: + ms "2.1.2" + +deep-is@^0.1.3: + version "0.1.4" + resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" + integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== + +deepmerge@^4.2.2, deepmerge@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" + integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== + +define-data-property@^1.0.1, define-data-property@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/define-data-property/-/define-data-property-1.1.4.tgz#894dc141bb7d3060ae4366f6a0107e68fbe48c5e" + integrity sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A== + dependencies: + es-define-property "^1.0.0" + es-errors "^1.3.0" + gopd "^1.0.1" + +define-properties@^1.1.3, define-properties@^1.2.0, define-properties@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/define-properties/-/define-properties-1.2.1.tgz#10781cc616eb951a80a034bafcaa7377f6af2b6c" + integrity sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg== + dependencies: + define-data-property "^1.0.1" + has-property-descriptors "^1.0.0" + object-keys "^1.1.1" + +dir-glob@^3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" + integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== + dependencies: + path-type "^4.0.0" + +doctrine@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-2.1.0.tgz#5cd01fc101621b42c4cd7f5d1a66243716d3f39d" + integrity sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw== + dependencies: + esutils "^2.0.2" + +doctrine@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" + integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== + dependencies: + esutils "^2.0.2" + +dom-serializer@^1.0.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-1.4.1.tgz#de5d41b1aea290215dc45a6dae8adcf1d32e2d30" + integrity sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag== + dependencies: + domelementtype "^2.0.1" + domhandler "^4.2.0" + entities "^2.0.0" + +dom-serializer@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/dom-serializer/-/dom-serializer-2.0.0.tgz#e41b802e1eedf9f6cae183ce5e622d789d7d8e53" + integrity sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg== + dependencies: + domelementtype "^2.3.0" + domhandler "^5.0.2" + entities "^4.2.0" + +domelementtype@^2.0.1, domelementtype@^2.2.0, domelementtype@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-2.3.0.tgz#5c45e8e869952626331d7aab326d01daf65d589d" + integrity sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw== + +domhandler@^4.2.0, domhandler@^4.3.1: + version "4.3.1" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-4.3.1.tgz#8d792033416f59d68bc03a5aa7b018c1ca89279c" + integrity sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ== + dependencies: + domelementtype "^2.2.0" + +domhandler@^5.0.2, domhandler@^5.0.3: + version "5.0.3" + resolved "https://registry.yarnpkg.com/domhandler/-/domhandler-5.0.3.tgz#cc385f7f751f1d1fc650c21374804254538c7d31" + integrity sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w== + dependencies: + domelementtype "^2.3.0" + +domutils@^2.8.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-2.8.0.tgz#4437def5db6e2d1f5d6ee859bd95ca7d02048135" + integrity sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A== + dependencies: + dom-serializer "^1.0.1" + domelementtype "^2.2.0" + domhandler "^4.2.0" + +domutils@^3.0.1: + version "3.1.0" + resolved "https://registry.yarnpkg.com/domutils/-/domutils-3.1.0.tgz#c47f551278d3dc4b0b1ab8cbb42d751a6f0d824e" + integrity sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA== + dependencies: + dom-serializer "^2.0.0" + domelementtype "^2.3.0" + domhandler "^5.0.3" + +dot-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/dot-case/-/dot-case-3.0.4.tgz#9b2b670d00a431667a8a75ba29cd1b98809ce751" + integrity sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w== + dependencies: + no-case "^3.0.4" + tslib "^2.0.3" + +eastasianwidth@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/eastasianwidth/-/eastasianwidth-0.2.0.tgz#696ce2ec0aa0e6ea93a397ffcf24aa7840c827cb" + integrity sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA== + +electron-to-chromium@^1.4.668: + version "1.4.715" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.715.tgz#bb16bcf2a3537962fccfa746b5c98c5f7404ff46" + integrity sha512-XzWNH4ZSa9BwVUQSDorPWAUQ5WGuYz7zJUNpNif40zFCiCl20t8zgylmreNmn26h5kiyw2lg7RfTmeMBsDklqg== + +emoji-regex@^8.0.0: + version "8.0.0" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" + integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== + +emoji-regex@^9.2.2: + version "9.2.2" + resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-9.2.2.tgz#840c8803b0d8047f4ff0cf963176b32d4ef3ed72" + integrity sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg== + +entities@^2.0.0: + version "2.2.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-2.2.0.tgz#098dc90ebb83d8dffa089d55256b351d34c4da55" + integrity sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A== + +entities@^4.2.0, entities@^4.4.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/entities/-/entities-4.5.0.tgz#5d268ea5e7113ec74c4d033b79ea5a35a488fb48" + integrity sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw== + +error-ex@^1.3.1: + version "1.3.2" + resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" + integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== + dependencies: + is-arrayish "^0.2.1" + +es-abstract@^1.22.1, es-abstract@^1.22.3, es-abstract@^1.23.0, es-abstract@^1.23.2: + version "1.23.2" + resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.23.2.tgz#693312f3940f967b8dd3eebacb590b01712622e0" + integrity sha512-60s3Xv2T2p1ICykc7c+DNDPLDMm9t4QxCOUU0K9JxiLjM3C1zB9YVdN7tjxrFd4+AkZ8CdX1ovUga4P2+1e+/w== + dependencies: + array-buffer-byte-length "^1.0.1" + arraybuffer.prototype.slice "^1.0.3" + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + data-view-buffer "^1.0.1" + data-view-byte-length "^1.0.1" + data-view-byte-offset "^1.0.0" + es-define-property "^1.0.0" + es-errors "^1.3.0" + es-object-atoms "^1.0.0" + es-set-tostringtag "^2.0.3" + es-to-primitive "^1.2.1" + function.prototype.name "^1.1.6" + get-intrinsic "^1.2.4" + get-symbol-description "^1.0.2" + globalthis "^1.0.3" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + has-proto "^1.0.3" + has-symbols "^1.0.3" + hasown "^2.0.2" + internal-slot "^1.0.7" + is-array-buffer "^3.0.4" + is-callable "^1.2.7" + is-data-view "^1.0.1" + is-negative-zero "^2.0.3" + is-regex "^1.1.4" + is-shared-array-buffer "^1.0.3" + is-string "^1.0.7" + is-typed-array "^1.1.13" + is-weakref "^1.0.2" + object-inspect "^1.13.1" + object-keys "^1.1.1" + object.assign "^4.1.5" + regexp.prototype.flags "^1.5.2" + safe-array-concat "^1.1.2" + safe-regex-test "^1.0.3" + string.prototype.trim "^1.2.9" + string.prototype.trimend "^1.0.8" + string.prototype.trimstart "^1.0.7" + typed-array-buffer "^1.0.2" + typed-array-byte-length "^1.0.1" + typed-array-byte-offset "^1.0.2" + typed-array-length "^1.0.5" + unbox-primitive "^1.0.2" + which-typed-array "^1.1.15" + +es-define-property@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-define-property/-/es-define-property-1.0.0.tgz#c7faefbdff8b2696cf5f46921edfb77cc4ba3845" + integrity sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ== + dependencies: + get-intrinsic "^1.2.4" + +es-errors@^1.2.1, es-errors@^1.3.0: + version "1.3.0" + resolved "https://registry.yarnpkg.com/es-errors/-/es-errors-1.3.0.tgz#05f75a25dab98e4fb1dcd5e1472c0546d5057c8f" + integrity sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw== + +es-object-atoms@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/es-object-atoms/-/es-object-atoms-1.0.0.tgz#ddb55cd47ac2e240701260bc2a8e31ecb643d941" + integrity sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw== + dependencies: + es-errors "^1.3.0" + +es-set-tostringtag@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz#8bb60f0a440c2e4281962428438d58545af39777" + integrity sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ== + dependencies: + get-intrinsic "^1.2.4" + has-tostringtag "^1.0.2" + hasown "^2.0.1" + +es-shim-unscopables@^1.0.0, es-shim-unscopables@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/es-shim-unscopables/-/es-shim-unscopables-1.0.2.tgz#1f6942e71ecc7835ed1c8a83006d8771a63a3763" + integrity sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw== + dependencies: + hasown "^2.0.0" + +es-to-primitive@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/es-to-primitive/-/es-to-primitive-1.2.1.tgz#e55cd4c9cdc188bcefb03b366c736323fc5c898a" + integrity sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA== + dependencies: + is-callable "^1.1.4" + is-date-object "^1.0.1" + is-symbol "^1.0.2" + +escalade@^3.1.1: + version "3.1.2" + resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" + integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== + +escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== + +escape-string-regexp@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" + integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== + +eslint-compat-utils@^0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/eslint-compat-utils/-/eslint-compat-utils-0.5.0.tgz#f7b2eb2befec25a370fac76934d3f9189f312a65" + integrity sha512-dc6Y8tzEcSYZMHa+CMPLi/hyo1FzNeonbhJL7Ol0ccuKQkwopJcJBA9YL/xmMTLU1eKigXo9vj9nALElWYSowg== + dependencies: + semver "^7.5.4" + +eslint-config-standard@^17.1.0: + version "17.1.0" + resolved "https://registry.yarnpkg.com/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz#40ffb8595d47a6b242e07cbfd49dc211ed128975" + integrity sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q== + +eslint-import-resolver-node@^0.3.9: + version "0.3.9" + resolved "https://registry.yarnpkg.com/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz#d4eaac52b8a2e7c3cd1903eb00f7e053356118ac" + integrity sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g== + dependencies: + debug "^3.2.7" + is-core-module "^2.13.0" + resolve "^1.22.4" + +eslint-module-utils@^2.8.0: + version "2.8.1" + resolved "https://registry.yarnpkg.com/eslint-module-utils/-/eslint-module-utils-2.8.1.tgz#52f2404300c3bd33deece9d7372fb337cc1d7c34" + integrity sha512-rXDXR3h7cs7dy9RNpUlQf80nX31XWJEyGq1tRMo+6GsO5VmTe4UTwtmonAD4ZkAsrfMVDA2wlGJ3790Ys+D49Q== + dependencies: + debug "^3.2.7" + +eslint-plugin-es-x@^7.5.0: + version "7.6.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-es-x/-/eslint-plugin-es-x-7.6.0.tgz#ccee7a4556c0f816d1ae88fd0eea21540e8ccd65" + integrity sha512-I0AmeNgevgaTR7y2lrVCJmGYF0rjoznpDvqV/kIkZSZbZ8Rw3eu4cGlvBBULScfkSOCzqKbff5LR4CNrV7mZHA== + dependencies: + "@eslint-community/eslint-utils" "^4.1.2" + "@eslint-community/regexpp" "^4.6.0" + eslint-compat-utils "^0.5.0" + +eslint-plugin-import@^2.29.0: + version "2.29.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-import/-/eslint-plugin-import-2.29.1.tgz#d45b37b5ef5901d639c15270d74d46d161150643" + integrity sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw== + dependencies: + array-includes "^3.1.7" + array.prototype.findlastindex "^1.2.3" + array.prototype.flat "^1.3.2" + array.prototype.flatmap "^1.3.2" + debug "^3.2.7" + doctrine "^2.1.0" + eslint-import-resolver-node "^0.3.9" + eslint-module-utils "^2.8.0" + hasown "^2.0.0" + is-core-module "^2.13.1" + is-glob "^4.0.3" + minimatch "^3.1.2" + object.fromentries "^2.0.7" + object.groupby "^1.0.1" + object.values "^1.1.7" + semver "^6.3.1" + tsconfig-paths "^3.15.0" + +eslint-plugin-n@^16.3.1: + version "16.6.2" + resolved "https://registry.yarnpkg.com/eslint-plugin-n/-/eslint-plugin-n-16.6.2.tgz#6a60a1a376870064c906742272074d5d0b412b0b" + integrity sha512-6TyDmZ1HXoFQXnhCTUjVFULReoBPOAjpuiKELMkeP40yffI/1ZRO+d9ug/VC6fqISo2WkuIBk3cvuRPALaWlOQ== + dependencies: + "@eslint-community/eslint-utils" "^4.4.0" + builtins "^5.0.1" + eslint-plugin-es-x "^7.5.0" + get-tsconfig "^4.7.0" + globals "^13.24.0" + ignore "^5.2.4" + is-builtin-module "^3.2.1" + is-core-module "^2.12.1" + minimatch "^3.1.2" + resolve "^1.22.2" + semver "^7.5.3" + +eslint-plugin-promise@^6.1.1: + version "6.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz#269a3e2772f62875661220631bd4dafcb4083816" + integrity sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig== + +eslint-plugin-security@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/eslint-plugin-security/-/eslint-plugin-security-2.1.1.tgz#4b975326ce17ade28fa8521773e3212677db5fac" + integrity sha512-7cspIGj7WTfR3EhaILzAPcfCo5R9FbeWvbgsPYWivSurTBKW88VQxtP3c4aWMG9Hz/GfJlJVdXEJ3c8LqS+u2w== + dependencies: + safe-regex "^2.1.1" + +eslint-scope@^7.2.2: + version "7.2.2" + resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-7.2.2.tgz#deb4f92563390f32006894af62a22dba1c46423f" + integrity sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg== + dependencies: + esrecurse "^4.3.0" + estraverse "^5.2.0" + +eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.1, eslint-visitor-keys@^3.4.3: + version "3.4.3" + resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" + integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== + +eslint@^8.55.0: + version "8.57.0" + resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.57.0.tgz#c786a6fd0e0b68941aaf624596fb987089195668" + integrity sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ== + dependencies: + "@eslint-community/eslint-utils" "^4.2.0" + "@eslint-community/regexpp" "^4.6.1" + "@eslint/eslintrc" "^2.1.4" + "@eslint/js" "8.57.0" + "@humanwhocodes/config-array" "^0.11.14" + "@humanwhocodes/module-importer" "^1.0.1" + "@nodelib/fs.walk" "^1.2.8" + "@ungap/structured-clone" "^1.2.0" + ajv "^6.12.4" + chalk "^4.0.0" + cross-spawn "^7.0.2" + debug "^4.3.2" + doctrine "^3.0.0" + escape-string-regexp "^4.0.0" + eslint-scope "^7.2.2" + eslint-visitor-keys "^3.4.3" + espree "^9.6.1" + esquery "^1.4.2" + esutils "^2.0.2" + fast-deep-equal "^3.1.3" + file-entry-cache "^6.0.1" + find-up "^5.0.0" + glob-parent "^6.0.2" + globals "^13.19.0" + graphemer "^1.4.0" + ignore "^5.2.0" + imurmurhash "^0.1.4" + is-glob "^4.0.0" + is-path-inside "^3.0.3" + js-yaml "^4.1.0" + json-stable-stringify-without-jsonify "^1.0.1" + levn "^0.4.1" + lodash.merge "^4.6.2" + minimatch "^3.1.2" + natural-compare "^1.4.0" + optionator "^0.9.3" + strip-ansi "^6.0.1" + text-table "^0.2.0" + +espree@^9.6.0, espree@^9.6.1: + version "9.6.1" + resolved "https://registry.yarnpkg.com/espree/-/espree-9.6.1.tgz#a2a17b8e434690a5432f2f8018ce71d331a48c6f" + integrity sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ== + dependencies: + acorn "^8.9.0" + acorn-jsx "^5.3.2" + eslint-visitor-keys "^3.4.1" + +esquery@^1.4.2: + version "1.5.0" + resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.5.0.tgz#6ce17738de8577694edd7361c57182ac8cb0db0b" + integrity sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg== + dependencies: + estraverse "^5.1.0" + +esrecurse@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" + integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== + dependencies: + estraverse "^5.2.0" + +estraverse@^5.1.0, estraverse@^5.2.0: + version "5.3.0" + resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" + integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== + +estree-walker@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362" + integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w== + +estree-walker@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-2.0.2.tgz#52f010178c2a4c117a7757cfe942adb7d2da4cac" + integrity sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w== + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +eventemitter3@^4.0.4: + version "4.0.7" + resolved "https://registry.yarnpkg.com/eventemitter3/-/eventemitter3-4.0.7.tgz#2de9b68f6528d5644ef5c59526a1b4a07306169f" + integrity sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw== + +fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: + version "3.1.3" + resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" + integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== + +fast-glob@^3.2.9: + version "3.3.2" + resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" + integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== + dependencies: + "@nodelib/fs.stat" "^2.0.2" + "@nodelib/fs.walk" "^1.2.3" + glob-parent "^5.1.2" + merge2 "^1.3.0" + micromatch "^4.0.4" + +fast-json-stable-stringify@^2.0.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" + integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== + +fast-levenshtein@^2.0.6: + version "2.0.6" + resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" + integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== + +fastq@^1.6.0: + version "1.17.1" + resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" + integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== + dependencies: + reusify "^1.0.4" + +file-entry-cache@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" + integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== + dependencies: + flat-cache "^3.0.4" + +fill-range@^7.0.1: + version "7.0.1" + resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" + integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== + dependencies: + to-regex-range "^5.0.1" + +find-up@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" + integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== + dependencies: + locate-path "^6.0.0" + path-exists "^4.0.0" + +flat-cache@^3.0.4: + version "3.2.0" + resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.2.0.tgz#2c0c2d5040c99b1632771a9d105725c0115363ee" + integrity sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw== + dependencies: + flatted "^3.2.9" + keyv "^4.5.3" + rimraf "^3.0.2" + +flatted@^3.2.9: + version "3.3.1" + resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" + integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== + +for-each@^0.3.3: + version "0.3.3" + resolved "https://registry.yarnpkg.com/for-each/-/for-each-0.3.3.tgz#69b447e88a0a5d32c3e7084f3f1710034b21376e" + integrity sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw== + dependencies: + is-callable "^1.1.3" + +foreground-child@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/foreground-child/-/foreground-child-3.1.1.tgz#1d173e776d75d2772fed08efe4a0de1ea1b12d0d" + integrity sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg== + dependencies: + cross-spawn "^7.0.0" + signal-exit "^4.0.1" + +fs.realpath@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" + integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== + +fsevents@~2.3.2: + version "2.3.3" + resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" + integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== + +function-bind@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" + integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== + +function.prototype.name@^1.1.6: + version "1.1.6" + resolved "https://registry.yarnpkg.com/function.prototype.name/-/function.prototype.name-1.1.6.tgz#cdf315b7d90ee77a4c6ee216c3c3362da07533fd" + integrity sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg== + dependencies: + call-bind "^1.0.2" + define-properties "^1.2.0" + es-abstract "^1.22.1" + functions-have-names "^1.2.3" + +functions-have-names@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/functions-have-names/-/functions-have-names-1.2.3.tgz#0404fe4ee2ba2f607f0e0ec3c80bae994133b834" + integrity sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ== + +generic-names@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/generic-names/-/generic-names-4.0.0.tgz#0bd8a2fd23fe8ea16cbd0a279acd69c06933d9a3" + integrity sha512-ySFolZQfw9FoDb3ed9d80Cm9f0+r7qj+HJkWjeD9RBfpxEVTlVhol+gvaQB/78WbwYfbnNh8nWHHBSlg072y6A== + dependencies: + loader-utils "^3.2.0" + +gensync@^1.0.0-beta.2: + version "1.0.0-beta.2" + resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" + integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== + +get-intrinsic@^1.1.3, get-intrinsic@^1.2.1, get-intrinsic@^1.2.3, get-intrinsic@^1.2.4: + version "1.2.4" + resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.2.4.tgz#e385f5a4b5227d449c3eabbad05494ef0abbeadd" + integrity sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ== + dependencies: + es-errors "^1.3.0" + function-bind "^1.1.2" + has-proto "^1.0.1" + has-symbols "^1.0.3" + hasown "^2.0.0" + +get-symbol-description@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/get-symbol-description/-/get-symbol-description-1.0.2.tgz#533744d5aa20aca4e079c8e5daf7fd44202821f5" + integrity sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg== + dependencies: + call-bind "^1.0.5" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + +get-tsconfig@^4.7.0: + version "4.7.3" + resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.3.tgz#0498163d98f7b58484dd4906999c0c9d5f103f83" + integrity sha512-ZvkrzoUA0PQZM6fy6+/Hce561s+faD1rsNwhnO5FelNjyy7EMGJ3Rz1AQ8GYDWjhRs/7dBLOEJvhK8MiEJOAFg== + dependencies: + resolve-pkg-maps "^1.0.0" + +glob-parent@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" + integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== + dependencies: + is-glob "^4.0.1" + +glob-parent@^6.0.2: + version "6.0.2" + resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" + integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== + dependencies: + is-glob "^4.0.3" + +glob@^10.3.7: + version "10.3.10" + resolved "https://registry.yarnpkg.com/glob/-/glob-10.3.10.tgz#0351ebb809fd187fe421ab96af83d3a70715df4b" + integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g== + dependencies: + foreground-child "^3.1.0" + jackspeak "^2.3.5" + minimatch "^9.0.1" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + path-scurry "^1.10.1" + +glob@^7.1.3: + version "7.2.3" + resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" + 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" + +glob@^8.0.3: + version "8.1.0" + resolved "https://registry.yarnpkg.com/glob/-/glob-8.1.0.tgz#d388f656593ef708ee3e34640fdfb99a9fd1c33e" + integrity sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ== + dependencies: + fs.realpath "^1.0.0" + inflight "^1.0.4" + inherits "2" + minimatch "^5.0.1" + once "^1.3.0" + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^13.19.0, globals@^13.24.0: + version "13.24.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-13.24.0.tgz#8432a19d78ce0c1e833949c36adb345400bb1171" + integrity sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ== + dependencies: + type-fest "^0.20.2" + +globalthis@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/globalthis/-/globalthis-1.0.3.tgz#5852882a52b80dc301b0660273e1ed082f0b6ccf" + integrity sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA== + dependencies: + define-properties "^1.1.3" + +globby@^11.1.0: + version "11.1.0" + resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" + integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== + dependencies: + array-union "^2.1.0" + dir-glob "^3.0.1" + fast-glob "^3.2.9" + ignore "^5.2.0" + merge2 "^1.4.1" + slash "^3.0.0" + +gopd@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/gopd/-/gopd-1.0.1.tgz#29ff76de69dac7489b7c0918a5788e56477c332c" + integrity sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA== + dependencies: + get-intrinsic "^1.1.3" + +graphemer@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" + integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== + +has-bigints@^1.0.1, has-bigints@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-bigints/-/has-bigints-1.0.2.tgz#0871bd3e3d51626f6ca0966668ba35d5602d6eaa" + integrity sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ== + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== + +has-flag@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" + integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== + +has-property-descriptors@^1.0.0, has-property-descriptors@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz#963ed7d071dc7bf5f084c5bfbe0d1b6222586854" + integrity sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg== + dependencies: + es-define-property "^1.0.0" + +has-proto@^1.0.1, has-proto@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-proto/-/has-proto-1.0.3.tgz#b31ddfe9b0e6e9914536a6ab286426d0214f77fd" + integrity sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q== + +has-symbols@^1.0.2, has-symbols@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.3.tgz#bb7b2c4349251dce87b125f7bdf874aa7c8b39f8" + integrity sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A== + +has-tostringtag@^1.0.0, has-tostringtag@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/has-tostringtag/-/has-tostringtag-1.0.2.tgz#2cdc42d40bef2e5b4eeab7c01a73c54ce7ab5abc" + integrity sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw== + dependencies: + has-symbols "^1.0.3" + +hasown@^2.0.0, hasown@^2.0.1, hasown@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" + integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== + dependencies: + function-bind "^1.1.2" + +icss-replace-symbols@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded" + integrity sha512-chIaY3Vh2mh2Q3RGXttaDIzeiPvaVXJ+C4DAh/w3c37SKZ/U6PGMmuicR2EQQp9bKG8zLMCl7I+PtIoOOPp8Gg== + +icss-utils@^5.0.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/icss-utils/-/icss-utils-5.1.0.tgz#c6be6858abd013d768e98366ae47e25d5887b1ae" + integrity sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA== + +ignore@^5.2.0, ignore@^5.2.4: + version "5.3.1" + resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" + integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== + +import-cwd@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/import-cwd/-/import-cwd-3.0.0.tgz#20845547718015126ea9b3676b7592fb8bd4cf92" + integrity sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg== + dependencies: + import-from "^3.0.0" + +import-fresh@^3.2.1, import-fresh@^3.3.0: + version "3.3.0" + resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" + integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== + dependencies: + parent-module "^1.0.0" + resolve-from "^4.0.0" + +import-from@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/import-from/-/import-from-3.0.0.tgz#055cfec38cd5a27d8057ca51376d7d3bf0891966" + integrity sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ== + dependencies: + resolve-from "^5.0.0" + +imurmurhash@^0.1.4: + version "0.1.4" + resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" + integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== + +inflight@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" + integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== + dependencies: + once "^1.3.0" + wrappy "1" + +inherits@2: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +internal-slot@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/internal-slot/-/internal-slot-1.0.7.tgz#c06dcca3ed874249881007b0a5523b172a190802" + integrity sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g== + dependencies: + es-errors "^1.3.0" + hasown "^2.0.0" + side-channel "^1.0.4" + +is-array-buffer@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/is-array-buffer/-/is-array-buffer-3.0.4.tgz#7a1f92b3d61edd2bc65d24f130530ea93d7fae98" + integrity sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw== + dependencies: + call-bind "^1.0.2" + get-intrinsic "^1.2.1" + +is-arrayish@^0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" + integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== + +is-bigint@^1.0.1: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-bigint/-/is-bigint-1.0.4.tgz#08147a1875bc2b32005d41ccd8291dffc6691df3" + integrity sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg== + dependencies: + has-bigints "^1.0.1" + +is-boolean-object@^1.1.0: + version "1.1.2" + resolved "https://registry.yarnpkg.com/is-boolean-object/-/is-boolean-object-1.1.2.tgz#5c6dc200246dd9321ae4b885a114bb1f75f63719" + integrity sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-builtin-module@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/is-builtin-module/-/is-builtin-module-3.2.1.tgz#f03271717d8654cfcaf07ab0463faa3571581169" + integrity sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A== + dependencies: + builtin-modules "^3.3.0" + +is-callable@^1.1.3, is-callable@^1.1.4, is-callable@^1.2.7: + version "1.2.7" + resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.7.tgz#3bc2a85ea742d9e36205dcacdd72ca1fdc51b055" + integrity sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA== + +is-core-module@^2.12.1, is-core-module@^2.13.0, is-core-module@^2.13.1: + version "2.13.1" + resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" + integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== + dependencies: + hasown "^2.0.0" + +is-data-view@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/is-data-view/-/is-data-view-1.0.1.tgz#4b4d3a511b70f3dc26d42c03ca9ca515d847759f" + integrity sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w== + dependencies: + is-typed-array "^1.1.13" + +is-date-object@^1.0.1: + version "1.0.5" + resolved "https://registry.yarnpkg.com/is-date-object/-/is-date-object-1.0.5.tgz#0841d5536e724c25597bf6ea62e1bd38298df31f" + integrity sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ== + dependencies: + has-tostringtag "^1.0.0" + +is-extglob@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" + integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== + +is-fullwidth-code-point@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" + integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== + +is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: + version "4.0.3" + resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" + integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== + dependencies: + is-extglob "^2.1.1" + +is-module@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/is-module/-/is-module-1.0.0.tgz#3258fb69f78c14d5b815d664336b4cffb6441591" + integrity sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g== + +is-negative-zero@^2.0.3: + version "2.0.3" + resolved "https://registry.yarnpkg.com/is-negative-zero/-/is-negative-zero-2.0.3.tgz#ced903a027aca6381b777a5743069d7376a49747" + integrity sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw== + +is-number-object@^1.0.4: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-number-object/-/is-number-object-1.0.7.tgz#59d50ada4c45251784e9904f5246c742f07a42fc" + integrity sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ== + dependencies: + has-tostringtag "^1.0.0" + +is-number@^7.0.0: + version "7.0.0" + resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" + integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== + +is-path-inside@^3.0.3: + version "3.0.3" + resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" + integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== + +is-reference@1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.2.1.tgz#8b2dac0b371f4bc994fdeaba9eb542d03002d0b7" + integrity sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ== + dependencies: + "@types/estree" "*" + +is-regex@^1.1.4: + version "1.1.4" + resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.1.4.tgz#eef5663cd59fa4c0ae339505323df6854bb15958" + integrity sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg== + dependencies: + call-bind "^1.0.2" + has-tostringtag "^1.0.0" + +is-shared-array-buffer@^1.0.2, is-shared-array-buffer@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz#1237f1cba059cdb62431d378dcc37d9680181688" + integrity sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg== + dependencies: + call-bind "^1.0.7" + +is-string@^1.0.5, is-string@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/is-string/-/is-string-1.0.7.tgz#0dd12bf2006f255bb58f695110eff7491eebc0fd" + integrity sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg== + dependencies: + has-tostringtag "^1.0.0" + +is-symbol@^1.0.2, is-symbol@^1.0.3: + version "1.0.4" + resolved "https://registry.yarnpkg.com/is-symbol/-/is-symbol-1.0.4.tgz#a6dac93b635b063ca6872236de88910a57af139c" + integrity sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg== + dependencies: + has-symbols "^1.0.2" + +is-typed-array@^1.1.13: + version "1.1.13" + resolved "https://registry.yarnpkg.com/is-typed-array/-/is-typed-array-1.1.13.tgz#d6c5ca56df62334959322d7d7dd1cca50debe229" + integrity sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw== + dependencies: + which-typed-array "^1.1.14" + +is-weakref@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/is-weakref/-/is-weakref-1.0.2.tgz#9529f383a9338205e89765e0392efc2f100f06f2" + integrity sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ== + dependencies: + call-bind "^1.0.2" + +isarray@^2.0.5: + version "2.0.5" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-2.0.5.tgz#8af1e4c1221244cc62459faf38940d4e644a5723" + integrity sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw== + +isexe@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" + integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== + +jackspeak@^2.3.5: + version "2.3.6" + resolved "https://registry.yarnpkg.com/jackspeak/-/jackspeak-2.3.6.tgz#647ecc472238aee4b06ac0e461acc21a8c505ca8" + integrity sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ== + dependencies: + "@isaacs/cliui" "^8.0.2" + optionalDependencies: + "@pkgjs/parseargs" "^0.11.0" + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-yaml@^4.1.0: + version "4.1.0" + resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" + integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== + dependencies: + argparse "^2.0.1" + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +json-buffer@3.0.1: + version "3.0.1" + resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" + integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== + +json-parse-even-better-errors@^2.3.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" + integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== + +json-schema-traverse@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" + integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== + +json-stable-stringify-without-jsonify@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" + integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== + +json5@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/json5/-/json5-1.0.2.tgz#63d98d60f21b313b77c4d6da18bfa69d80e1d593" + integrity sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA== + dependencies: + minimist "^1.2.0" + +json5@^2.2.3: + version "2.2.3" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" + integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== + +keyv@^4.5.3: + version "4.5.4" + resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" + integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== + dependencies: + json-buffer "3.0.1" + +levn@^0.4.1: + version "0.4.1" + resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" + integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== + dependencies: + prelude-ls "^1.2.1" + type-check "~0.4.0" + +lilconfig@^2.0.3, lilconfig@^2.0.5: + version "2.1.0" + resolved "https://registry.yarnpkg.com/lilconfig/-/lilconfig-2.1.0.tgz#78e23ac89ebb7e1bfbf25b18043de756548e7f52" + integrity sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ== + +lines-and-columns@^1.1.6: + version "1.2.4" + resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" + integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== + +loader-utils@^3.2.0: + version "3.2.1" + resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-3.2.1.tgz#4fb104b599daafd82ef3e1a41fb9265f87e1f576" + integrity sha512-ZvFw1KWS3GVyYBYb7qkmRM/WwL2TQQBxgCK62rlvm4WpVQ23Nb4tYjApUlfjrEGvOs7KHEsmyUn75OHZrJMWPw== + +locate-path@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" + integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== + dependencies: + p-locate "^5.0.0" + +lodash.camelcase@^4.3.0: + version "4.3.0" + resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6" + integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA== + +lodash.memoize@^4.1.2: + version "4.1.2" + resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" + integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== + +lodash.merge@^4.6.2: + version "4.6.2" + resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" + integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== + +lodash.uniq@^4.5.0: + version "4.5.0" + resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773" + integrity sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ== + +loose-envify@^1.1.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +lower-case@^2.0.2: + version "2.0.2" + resolved "https://registry.yarnpkg.com/lower-case/-/lower-case-2.0.2.tgz#6fa237c63dbdc4a82ca0fd882e4722dc5e634e28" + integrity sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg== + dependencies: + tslib "^2.0.3" + +lru-cache@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" + integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== + dependencies: + yallist "^3.0.2" + +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + +"lru-cache@^9.1.1 || ^10.0.0": + version "10.2.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-10.2.0.tgz#0bd445ca57363465900f4d1f9bd8db343a4d95c3" + integrity sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q== + +magic-string@^0.30.3, magic-string@^0.30.4: + version "0.30.8" + resolved "https://registry.yarnpkg.com/magic-string/-/magic-string-0.30.8.tgz#14e8624246d2bedba70d5462aa99ac9681844613" + integrity sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ== + dependencies: + "@jridgewell/sourcemap-codec" "^1.4.15" + +mdn-data@2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.14.tgz#7113fc4281917d63ce29b43446f701e68c25ba50" + integrity sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow== + +mdn-data@2.0.28: + version "2.0.28" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.28.tgz#5ec48e7bef120654539069e1ae4ddc81ca490eba" + integrity sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g== + +mdn-data@2.0.30: + version "2.0.30" + resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-2.0.30.tgz#ce4df6f80af6cfbe218ecd5c552ba13c4dfa08cc" + integrity sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA== + +merge2@^1.3.0, merge2@^1.4.1: + version "1.4.1" + resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" + integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== + +micromatch@^4.0.4: + version "4.0.5" + resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" + integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== + dependencies: + braces "^3.0.2" + picomatch "^2.3.1" + +minimatch@9.0.3, minimatch@^9.0.1: + version "9.0.3" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.3.tgz#a6e00c3de44c3a542bfaae70abfc22420a6da825" + integrity sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg== + dependencies: + brace-expansion "^2.0.1" + +minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2: + version "3.1.2" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" + integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== + dependencies: + brace-expansion "^1.1.7" + +minimatch@^5.0.1: + version "5.1.6" + resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" + integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== + dependencies: + brace-expansion "^2.0.1" + +minimist@^1.2.0, minimist@^1.2.6: + version "1.2.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.8.tgz#c1a464e7693302e082a075cee0c057741ac4772c" + integrity sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA== + +"minipass@^5.0.0 || ^6.0.2 || ^7.0.0": + version "7.0.4" + resolved "https://registry.yarnpkg.com/minipass/-/minipass-7.0.4.tgz#dbce03740f50a4786ba994c1fb908844d27b038c" + integrity sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ== + +ms@2.1.2: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +ms@^2.1.1: + version "2.1.3" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" + integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== + +nanoid@^3.3.7: + version "3.3.7" + resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.3.7.tgz#d0c301a691bc8d54efa0a2226ccf3fe2fd656bd8" + integrity sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g== + +natural-compare@^1.4.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" + integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== + +no-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/no-case/-/no-case-3.0.4.tgz#d361fd5c9800f558551a8369fc0dcd4662b6124d" + integrity sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg== + dependencies: + lower-case "^2.0.2" + tslib "^2.0.3" + +node-releases@^2.0.14: + version "2.0.14" + resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" + integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== + +normalize-url@^6.0.1: + version "6.1.0" + resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-6.1.0.tgz#40d0885b535deffe3f3147bec877d05fe4c5668a" + integrity sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A== + +nth-check@^2.0.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-2.1.1.tgz#c9eab428effce36cd6b92c924bdb000ef1f1ed1d" + integrity sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w== + dependencies: + boolbase "^1.0.0" + +object-inspect@^1.13.1: + version "1.13.1" + resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.13.1.tgz#b96c6109324ccfef6b12216a956ca4dc2ff94bc2" + integrity sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ== + +object-keys@^1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e" + integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA== + +object.assign@^4.1.5: + version "4.1.5" + resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.5.tgz#3a833f9ab7fdb80fc9e8d2300c803d216d8fdbb0" + integrity sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ== + dependencies: + call-bind "^1.0.5" + define-properties "^1.2.1" + has-symbols "^1.0.3" + object-keys "^1.1.1" + +object.fromentries@^2.0.7: + version "2.0.8" + resolved "https://registry.yarnpkg.com/object.fromentries/-/object.fromentries-2.0.8.tgz#f7195d8a9b97bd95cbc1999ea939ecd1a2b00c65" + integrity sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + es-object-atoms "^1.0.0" + +object.groupby@^1.0.1: + version "1.0.3" + resolved "https://registry.yarnpkg.com/object.groupby/-/object.groupby-1.0.3.tgz#9b125c36238129f6f7b61954a1e7176148d5002e" + integrity sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.2" + +object.values@^1.1.7: + version "1.2.0" + resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.2.0.tgz#65405a9d92cee68ac2d303002e0b8470a4d9ab1b" + integrity sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +once@^1.3.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" + integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== + dependencies: + wrappy "1" + +optionator@^0.9.3: + version "0.9.3" + resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.3.tgz#007397d44ed1872fdc6ed31360190f81814e2c64" + integrity sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg== + dependencies: + "@aashutoshrathi/word-wrap" "^1.2.3" + deep-is "^0.1.3" + fast-levenshtein "^2.0.6" + levn "^0.4.1" + prelude-ls "^1.2.1" + type-check "^0.4.0" + +p-finally@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae" + integrity sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow== + +p-limit@^3.0.2: + version "3.1.0" + resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" + integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== + dependencies: + yocto-queue "^0.1.0" + +p-locate@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" + integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== + dependencies: + p-limit "^3.0.2" + +p-queue@^6.6.2: + version "6.6.2" + resolved "https://registry.yarnpkg.com/p-queue/-/p-queue-6.6.2.tgz#2068a9dcf8e67dd0ec3e7a2bcb76810faa85e426" + integrity sha512-RwFpb72c/BhQLEXIZ5K2e+AhgNVmIejGlTgiB9MzZ0e93GRvqZ7uSi0dvRF7/XIXDeNkra2fNHBxTyPDGySpjQ== + dependencies: + eventemitter3 "^4.0.4" + p-timeout "^3.2.0" + +p-timeout@^3.2.0: + version "3.2.0" + resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-3.2.0.tgz#c7e17abc971d2a7962ef83626b35d635acf23dfe" + integrity sha512-rhIwUycgwwKcP9yTOOFK/AKsAopjjCakVqLHePO3CC6Mir1Z99xT+R63jZxAT5lFZLa2inS5h+ZS2GvR99/FBg== + dependencies: + p-finally "^1.0.0" + +parent-module@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" + integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== + dependencies: + callsites "^3.0.0" + +parse-json@^5.2.0: + version "5.2.0" + resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" + integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== + dependencies: + "@babel/code-frame" "^7.0.0" + error-ex "^1.3.1" + json-parse-even-better-errors "^2.3.0" + lines-and-columns "^1.1.6" + +path-exists@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" + integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== + +path-is-absolute@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" + integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== + +path-key@^3.1.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" + integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== + +path-parse@^1.0.7: + version "1.0.7" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" + integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== + +path-scurry@^1.10.1: + version "1.10.1" + resolved "https://registry.yarnpkg.com/path-scurry/-/path-scurry-1.10.1.tgz#9ba6bf5aa8500fe9fd67df4f0d9483b2b0bfc698" + integrity sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ== + dependencies: + lru-cache "^9.1.1 || ^10.0.0" + minipass "^5.0.0 || ^6.0.2 || ^7.0.0" + +path-type@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" + integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== + +picocolors@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" + integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== + +picomatch@^2.3.1: + version "2.3.1" + resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" + integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== + +pify@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/pify/-/pify-5.0.0.tgz#1f5eca3f5e87ebec28cc6d54a0e4aaf00acc127f" + integrity sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA== + +possible-typed-array-names@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz#89bb63c6fada2c3e90adc4a647beeeb39cc7bf8f" + integrity sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q== + +postcss-calc@^8.2.3: + version "8.2.4" + resolved "https://registry.yarnpkg.com/postcss-calc/-/postcss-calc-8.2.4.tgz#77b9c29bfcbe8a07ff6693dc87050828889739a5" + integrity sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q== + dependencies: + postcss-selector-parser "^6.0.9" + postcss-value-parser "^4.2.0" + +postcss-colormin@^5.3.1: + version "5.3.1" + resolved "https://registry.yarnpkg.com/postcss-colormin/-/postcss-colormin-5.3.1.tgz#86c27c26ed6ba00d96c79e08f3ffb418d1d1988f" + integrity sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + colord "^2.9.1" + postcss-value-parser "^4.2.0" + +postcss-convert-values@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz#04998bb9ba6b65aa31035d669a6af342c5f9d393" + integrity sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA== + dependencies: + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" + +postcss-discard-comments@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz#8df5e81d2925af2780075840c1526f0660e53696" + integrity sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ== + +postcss-discard-duplicates@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz#9eb4fe8456706a4eebd6d3b7b777d07bad03e848" + integrity sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw== + +postcss-discard-empty@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz#e57762343ff7f503fe53fca553d18d7f0c369c6c" + integrity sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A== + +postcss-discard-overridden@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz#7e8c5b53325747e9d90131bb88635282fb4a276e" + integrity sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw== + +postcss-load-config@^3.0.0: + version "3.1.4" + resolved "https://registry.yarnpkg.com/postcss-load-config/-/postcss-load-config-3.1.4.tgz#1ab2571faf84bb078877e1d07905eabe9ebda855" + integrity sha512-6DiM4E7v4coTE4uzA8U//WhtPwyhiim3eyjEMFCnUpzbrkK9wJHgKDT2mR+HbtSrd/NubVaYTOpSpjUl8NQeRg== + dependencies: + lilconfig "^2.0.5" + yaml "^1.10.2" + +postcss-merge-longhand@^5.1.7: + version "5.1.7" + resolved "https://registry.yarnpkg.com/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz#24a1bdf402d9ef0e70f568f39bdc0344d568fb16" + integrity sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ== + dependencies: + postcss-value-parser "^4.2.0" + stylehacks "^5.1.1" + +postcss-merge-rules@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz#2f26fa5cacb75b1402e213789f6766ae5e40313c" + integrity sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + cssnano-utils "^3.1.0" + postcss-selector-parser "^6.0.5" + +postcss-minify-font-values@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz#f1df0014a726083d260d3bd85d7385fb89d1f01b" + integrity sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-minify-gradients@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz#f1fe1b4f498134a5068240c2f25d46fcd236ba2c" + integrity sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw== + dependencies: + colord "^2.9.1" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-minify-params@^5.1.4: + version "5.1.4" + resolved "https://registry.yarnpkg.com/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz#c06a6c787128b3208b38c9364cfc40c8aa5d7352" + integrity sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw== + dependencies: + browserslist "^4.21.4" + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-minify-selectors@^5.2.1: + version "5.2.1" + resolved "https://registry.yarnpkg.com/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz#d4e7e6b46147b8117ea9325a915a801d5fe656c6" + integrity sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-modules-extract-imports@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz#cda1f047c0ae80c97dbe28c3e76a43b88025741d" + integrity sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw== + +postcss-modules-local-by-default@^4.0.0: + version "4.0.4" + resolved "https://registry.yarnpkg.com/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.4.tgz#7cbed92abd312b94aaea85b68226d3dec39a14e6" + integrity sha512-L4QzMnOdVwRm1Qb8m4x8jsZzKAaPAgrUF1r/hjDR2Xj7R+8Zsf97jAlSQzWtKx5YNiNGN8QxmPFIc/sh+RQl+Q== + dependencies: + icss-utils "^5.0.0" + postcss-selector-parser "^6.0.2" + postcss-value-parser "^4.1.0" + +postcss-modules-scope@^3.0.0: + version "3.1.1" + resolved "https://registry.yarnpkg.com/postcss-modules-scope/-/postcss-modules-scope-3.1.1.tgz#32cfab55e84887c079a19bbb215e721d683ef134" + integrity sha512-uZgqzdTleelWjzJY+Fhti6F3C9iF1JR/dODLs/JDefozYcKTBCdD8BIl6nNPbTbcLnGrk56hzwZC2DaGNvYjzA== + dependencies: + postcss-selector-parser "^6.0.4" + +postcss-modules-values@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz#d7c5e7e68c3bb3c9b27cbf48ca0bb3ffb4602c9c" + integrity sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ== + dependencies: + icss-utils "^5.0.0" + +postcss-modules@^4.0.0: + version "4.3.1" + resolved "https://registry.yarnpkg.com/postcss-modules/-/postcss-modules-4.3.1.tgz#517c06c09eab07d133ae0effca2c510abba18048" + integrity sha512-ItUhSUxBBdNamkT3KzIZwYNNRFKmkJrofvC2nWab3CPKhYBQ1f27XXh1PAPE27Psx58jeelPsxWB/+og+KEH0Q== + dependencies: + generic-names "^4.0.0" + icss-replace-symbols "^1.1.0" + lodash.camelcase "^4.3.0" + postcss-modules-extract-imports "^3.0.0" + postcss-modules-local-by-default "^4.0.0" + postcss-modules-scope "^3.0.0" + postcss-modules-values "^4.0.0" + string-hash "^1.1.1" + +postcss-normalize-charset@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz#9302de0b29094b52c259e9b2cf8dc0879879f0ed" + integrity sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg== + +postcss-normalize-display-values@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz#72abbae58081960e9edd7200fcf21ab8325c3da8" + integrity sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-positions@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz#ef97279d894087b59325b45c47f1e863daefbb92" + integrity sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-repeat-style@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz#e9eb96805204f4766df66fd09ed2e13545420fb2" + integrity sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-string@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz#411961169e07308c82c1f8c55f3e8a337757e228" + integrity sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-timing-functions@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz#d5614410f8f0b2388e9f240aa6011ba6f52dafbb" + integrity sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-normalize-unicode@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz#f67297fca3fea7f17e0d2caa40769afc487aa030" + integrity sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA== + dependencies: + browserslist "^4.21.4" + postcss-value-parser "^4.2.0" + +postcss-normalize-url@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz#ed9d88ca82e21abef99f743457d3729a042adcdc" + integrity sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew== + dependencies: + normalize-url "^6.0.1" + postcss-value-parser "^4.2.0" + +postcss-normalize-whitespace@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz#08a1a0d1ffa17a7cc6efe1e6c9da969cc4493cfa" + integrity sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-ordered-values@^5.1.3: + version "5.1.3" + resolved "https://registry.yarnpkg.com/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz#b6fd2bd10f937b23d86bc829c69e7732ce76ea38" + integrity sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ== + dependencies: + cssnano-utils "^3.1.0" + postcss-value-parser "^4.2.0" + +postcss-reduce-initial@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz#798cd77b3e033eae7105c18c9d371d989e1382d6" + integrity sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg== + dependencies: + browserslist "^4.21.4" + caniuse-api "^3.0.0" + +postcss-reduce-transforms@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz#333b70e7758b802f3dd0ddfe98bb1ccfef96b6e9" + integrity sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ== + dependencies: + postcss-value-parser "^4.2.0" + +postcss-selector-parser@^6.0.2, postcss-selector-parser@^6.0.4, postcss-selector-parser@^6.0.5, postcss-selector-parser@^6.0.9: + version "6.0.16" + resolved "https://registry.yarnpkg.com/postcss-selector-parser/-/postcss-selector-parser-6.0.16.tgz#3b88b9f5c5abd989ef4e2fc9ec8eedd34b20fb04" + integrity sha512-A0RVJrX+IUkVZbW3ClroRWurercFhieevHB38sr2+l9eUClMqome3LmEmnhlNy+5Mr2EYN6B2Kaw9wYdd+VHiw== + dependencies: + cssesc "^3.0.0" + util-deprecate "^1.0.2" + +postcss-svgo@^5.1.0: + version "5.1.0" + resolved "https://registry.yarnpkg.com/postcss-svgo/-/postcss-svgo-5.1.0.tgz#0a317400ced789f233a28826e77523f15857d80d" + integrity sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA== + dependencies: + postcss-value-parser "^4.2.0" + svgo "^2.7.0" + +postcss-unique-selectors@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz#a9f273d1eacd09e9aa6088f4b0507b18b1b541b6" + integrity sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA== + dependencies: + postcss-selector-parser "^6.0.5" + +postcss-value-parser@^4.1.0, postcss-value-parser@^4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz#723c09920836ba6d3e5af019f92bc0971c02e514" + integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ== + +postcss@^8.4.38: + version "8.4.38" + resolved "https://registry.yarnpkg.com/postcss/-/postcss-8.4.38.tgz#b387d533baf2054288e337066d81c6bee9db9e0e" + integrity sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A== + dependencies: + nanoid "^3.3.7" + picocolors "^1.0.0" + source-map-js "^1.2.0" + +prelude-ls@^1.2.1: + version "1.2.1" + resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" + integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== + +prettier@^2.8.7: + version "2.8.8" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.8.8.tgz#e8c5d7e98a4305ffe3de2e1fc4aca1a71c28b1da" + integrity sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q== + +promise.series@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/promise.series/-/promise.series-0.2.0.tgz#2cc7ebe959fc3a6619c04ab4dbdc9e452d864bbd" + integrity sha512-VWQJyU2bcDTgZw8kpfBpB/ejZASlCrzwz5f2hjb/zlujOEB4oeiAhHygAWq8ubsX2GVkD4kCU5V2dwOTaCY5EQ== + +punycode@^2.1.0: + version "2.3.1" + resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" + integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== + +queue-microtask@^1.2.2: + version "1.2.3" + resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" + integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== + +randombytes@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" + integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== + dependencies: + safe-buffer "^5.1.0" + +react@^18.2.0: + version "18.2.0" + resolved "https://registry.yarnpkg.com/react/-/react-18.2.0.tgz#555bd98592883255fa00de14f1151a917b5d77d5" + integrity sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ== + dependencies: + loose-envify "^1.1.0" + +regexp-tree@~0.1.1: + version "0.1.27" + resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.27.tgz#2198f0ef54518ffa743fe74d983b56ffd631b6cd" + integrity sha512-iETxpjK6YoRWJG5o6hXLwvjYAoW+FEZn9os0PD/b6AP6xQwsa/Y7lCVgIixBbUPMfhu+i2LtdeAqVTgGlQarfA== + +regexp.prototype.flags@^1.5.2: + version "1.5.2" + resolved "https://registry.yarnpkg.com/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz#138f644a3350f981a858c44f6bb1a61ff59be334" + integrity sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw== + dependencies: + call-bind "^1.0.6" + define-properties "^1.2.1" + es-errors "^1.3.0" + set-function-name "^2.0.1" + +resolve-from@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" + integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== + +resolve-from@^5.0.0: + version "5.0.0" + resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" + integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== + +resolve-pkg-maps@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz#616b3dc2c57056b5588c31cdf4b3d64db133720f" + integrity sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw== + +resolve@^1.19.0, resolve@^1.22.1, resolve@^1.22.2, resolve@^1.22.4: + version "1.22.8" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" + integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== + dependencies: + is-core-module "^2.13.0" + path-parse "^1.0.7" + supports-preserve-symlinks-flag "^1.0.0" + +reusify@^1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" + integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== + +rimraf@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" + integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== + dependencies: + glob "^7.1.3" + +rimraf@^5.0.5: + version "5.0.5" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.5.tgz#9be65d2d6e683447d2e9013da2bf451139a61ccf" + integrity sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A== + dependencies: + glob "^10.3.7" + +rollup-plugin-dts@^6.1.0: + version "6.1.0" + resolved "https://registry.yarnpkg.com/rollup-plugin-dts/-/rollup-plugin-dts-6.1.0.tgz#56e9c5548dac717213c6a4aa9df523faf04f75ae" + integrity sha512-ijSCPICkRMDKDLBK9torss07+8dl9UpY9z1N/zTeA1cIqdzMlpkV3MOOC7zukyvQfDyxa1s3Dl2+DeiP/G6DOw== + dependencies: + magic-string "^0.30.4" + optionalDependencies: + "@babel/code-frame" "^7.22.13" + +rollup-plugin-peer-deps-external@^2.2.4: + version "2.2.4" + resolved "https://registry.yarnpkg.com/rollup-plugin-peer-deps-external/-/rollup-plugin-peer-deps-external-2.2.4.tgz#8a420bbfd6dccc30aeb68c9bf57011f2f109570d" + integrity sha512-AWdukIM1+k5JDdAqV/Cxd+nejvno2FVLVeZ74NKggm3Q5s9cbbcOgUPGdbxPi4BXu7xGaZ8HG12F+thImYu/0g== + +rollup-plugin-postcss@^4.0.2: + version "4.0.2" + resolved "https://registry.yarnpkg.com/rollup-plugin-postcss/-/rollup-plugin-postcss-4.0.2.tgz#15e9462f39475059b368ce0e49c800fa4b1f7050" + integrity sha512-05EaY6zvZdmvPUDi3uCcAQoESDcYnv8ogJJQRp6V5kZ6J6P7uAVJlrTZcaaA20wTH527YTnKfkAoPxWI/jPp4w== + dependencies: + chalk "^4.1.0" + concat-with-sourcemaps "^1.1.0" + cssnano "^5.0.1" + import-cwd "^3.0.0" + p-queue "^6.6.2" + pify "^5.0.0" + postcss-load-config "^3.0.0" + postcss-modules "^4.0.0" + promise.series "^0.2.0" + resolve "^1.19.0" + rollup-pluginutils "^2.8.2" + safe-identifier "^0.4.2" + style-inject "^0.3.0" + +rollup-pluginutils@^2.8.2: + version "2.8.2" + resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e" + integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ== + dependencies: + estree-walker "^0.6.1" + +rollup@^4.13.0: + version "4.13.0" + resolved "https://registry.yarnpkg.com/rollup/-/rollup-4.13.0.tgz#dd2ae144b4cdc2ea25420477f68d4937a721237a" + integrity sha512-3YegKemjoQnYKmsBlOHfMLVPPA5xLkQ8MHLLSw/fBrFaVkEayL51DilPpNNLq1exr98F2B1TzrV0FUlN3gWRPg== + dependencies: + "@types/estree" "1.0.5" + optionalDependencies: + "@rollup/rollup-android-arm-eabi" "4.13.0" + "@rollup/rollup-android-arm64" "4.13.0" + "@rollup/rollup-darwin-arm64" "4.13.0" + "@rollup/rollup-darwin-x64" "4.13.0" + "@rollup/rollup-linux-arm-gnueabihf" "4.13.0" + "@rollup/rollup-linux-arm64-gnu" "4.13.0" + "@rollup/rollup-linux-arm64-musl" "4.13.0" + "@rollup/rollup-linux-riscv64-gnu" "4.13.0" + "@rollup/rollup-linux-x64-gnu" "4.13.0" + "@rollup/rollup-linux-x64-musl" "4.13.0" + "@rollup/rollup-win32-arm64-msvc" "4.13.0" + "@rollup/rollup-win32-ia32-msvc" "4.13.0" + "@rollup/rollup-win32-x64-msvc" "4.13.0" + fsevents "~2.3.2" + +run-parallel@^1.1.9: + version "1.2.0" + resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" + integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== + dependencies: + queue-microtask "^1.2.2" + +safe-array-concat@^1.1.2: + version "1.1.2" + resolved "https://registry.yarnpkg.com/safe-array-concat/-/safe-array-concat-1.1.2.tgz#81d77ee0c4e8b863635227c721278dd524c20edb" + integrity sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q== + dependencies: + call-bind "^1.0.7" + get-intrinsic "^1.2.4" + has-symbols "^1.0.3" + isarray "^2.0.5" + +safe-buffer@^5.1.0: + version "5.2.1" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" + integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== + +safe-identifier@^0.4.2: + version "0.4.2" + resolved "https://registry.yarnpkg.com/safe-identifier/-/safe-identifier-0.4.2.tgz#cf6bfca31c2897c588092d1750d30ef501d59fcb" + integrity sha512-6pNbSMW6OhAi9j+N8V+U715yBQsaWJ7eyEUaOrawX+isg5ZxhUlV1NipNtgaKHmFGiABwt+ZF04Ii+3Xjkg+8w== + +safe-regex-test@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/safe-regex-test/-/safe-regex-test-1.0.3.tgz#a5b4c0f06e0ab50ea2c395c14d8371232924c377" + integrity sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw== + dependencies: + call-bind "^1.0.6" + es-errors "^1.3.0" + is-regex "^1.1.4" + +safe-regex@^2.1.1: + version "2.1.1" + resolved "https://registry.yarnpkg.com/safe-regex/-/safe-regex-2.1.1.tgz#f7128f00d056e2fe5c11e81a1324dd974aadced2" + integrity sha512-rx+x8AMzKb5Q5lQ95Zoi6ZbJqwCLkqi3XuJXp5P3rT8OEc6sZCJG5AE5dU3lsgRr/F4Bs31jSlVN+j5KrsGu9A== + dependencies: + regexp-tree "~0.1.1" + +semver@^6.3.1: + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== + +semver@^7.0.0, semver@^7.5.3, semver@^7.5.4: + version "7.6.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" + integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== + dependencies: + lru-cache "^6.0.0" + +serialize-javascript@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.2.tgz#defa1e055c83bf6d59ea805d8da862254eb6a6c2" + integrity sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g== + dependencies: + randombytes "^2.1.0" + +set-function-length@^1.2.1: + version "1.2.2" + resolved "https://registry.yarnpkg.com/set-function-length/-/set-function-length-1.2.2.tgz#aac72314198eaed975cf77b2c3b6b880695e5449" + integrity sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + function-bind "^1.1.2" + get-intrinsic "^1.2.4" + gopd "^1.0.1" + has-property-descriptors "^1.0.2" + +set-function-name@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/set-function-name/-/set-function-name-2.0.2.tgz#16a705c5a0dc2f5e638ca96d8a8cd4e1c2b90985" + integrity sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ== + dependencies: + define-data-property "^1.1.4" + es-errors "^1.3.0" + functions-have-names "^1.2.3" + has-property-descriptors "^1.0.2" + +shebang-command@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" + integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== + dependencies: + shebang-regex "^3.0.0" + +shebang-regex@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" + integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== + +side-channel@^1.0.4: + version "1.0.6" + resolved "https://registry.yarnpkg.com/side-channel/-/side-channel-1.0.6.tgz#abd25fb7cd24baf45466406b1096b7831c9215f2" + integrity sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + get-intrinsic "^1.2.4" + object-inspect "^1.13.1" + +signal-exit@^4.0.1: + version "4.1.0" + resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-4.1.0.tgz#952188c1cbd546070e2dd20d0f41c0ae0530cb04" + integrity sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw== + +slash@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" + integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== + +smob@^1.0.0: + version "1.4.1" + resolved "https://registry.yarnpkg.com/smob/-/smob-1.4.1.tgz#66270e7df6a7527664816c5b577a23f17ba6f5b5" + integrity sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ== + +snake-case@^3.0.4: + version "3.0.4" + resolved "https://registry.yarnpkg.com/snake-case/-/snake-case-3.0.4.tgz#4f2bbd568e9935abdfd593f34c691dadb49c452c" + integrity sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg== + dependencies: + dot-case "^3.0.4" + tslib "^2.0.3" + +source-map-js@^1.0.1, source-map-js@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.2.0.tgz#16b809c162517b5b8c3e7dcd315a2a5c2612b2af" + integrity sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg== + +source-map-support@~0.5.20: + version "0.5.21" + resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f" + integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w== + dependencies: + buffer-from "^1.0.0" + source-map "^0.6.0" + +source-map@^0.6.0, source-map@^0.6.1: + version "0.6.1" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" + integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== + +stable@^0.1.8: + version "0.1.8" + resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf" + integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w== + +string-hash@^1.1.1: + version "1.1.3" + resolved "https://registry.yarnpkg.com/string-hash/-/string-hash-1.1.3.tgz#e8aafc0ac1855b4666929ed7dd1275df5d6c811b" + integrity sha512-kJUvRUFK49aub+a7T1nNE66EJbZBMnBgoC1UbCZ5n6bsZKBRga4KgBRTMn/pFkeCZSYtNeSyMxPDM0AXWELk2A== + +"string-width-cjs@npm:string-width@^4.2.0": + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^4.1.0: + version "4.2.3" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" + integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== + dependencies: + emoji-regex "^8.0.0" + is-fullwidth-code-point "^3.0.0" + strip-ansi "^6.0.1" + +string-width@^5.0.1, string-width@^5.1.2: + version "5.1.2" + resolved "https://registry.yarnpkg.com/string-width/-/string-width-5.1.2.tgz#14f8daec6d81e7221d2a357e668cab73bdbca794" + integrity sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA== + dependencies: + eastasianwidth "^0.2.0" + emoji-regex "^9.2.2" + strip-ansi "^7.0.1" + +string.prototype.trim@^1.2.9: + version "1.2.9" + resolved "https://registry.yarnpkg.com/string.prototype.trim/-/string.prototype.trim-1.2.9.tgz#b6fa326d72d2c78b6df02f7759c73f8f6274faa4" + integrity sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-abstract "^1.23.0" + es-object-atoms "^1.0.0" + +string.prototype.trimend@^1.0.8: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimend/-/string.prototype.trimend-1.0.8.tgz#3651b8513719e8a9f48de7f2f77640b26652b229" + integrity sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +string.prototype.trimstart@^1.0.7: + version "1.0.8" + resolved "https://registry.yarnpkg.com/string.prototype.trimstart/-/string.prototype.trimstart-1.0.8.tgz#7ee834dda8c7c17eff3118472bb35bfedaa34dde" + integrity sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg== + dependencies: + call-bind "^1.0.7" + define-properties "^1.2.1" + es-object-atoms "^1.0.0" + +"strip-ansi-cjs@npm:strip-ansi@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^6.0.0, strip-ansi@^6.0.1: + version "6.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" + integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== + dependencies: + ansi-regex "^5.0.1" + +strip-ansi@^7.0.1: + version "7.1.0" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-7.1.0.tgz#d5b6568ca689d8561370b0707685d22434faff45" + integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ== + dependencies: + ansi-regex "^6.0.1" + +strip-bom@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-3.0.0.tgz#2334c18e9c759f7bdd56fdef7e9ae3d588e68ed3" + integrity sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA== + +strip-json-comments@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" + integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== + +style-inject@^0.3.0: + version "0.3.0" + resolved "https://registry.yarnpkg.com/style-inject/-/style-inject-0.3.0.tgz#d21c477affec91811cc82355832a700d22bf8dd3" + integrity sha512-IezA2qp+vcdlhJaVm5SOdPPTUu0FCEqfNSli2vRuSIBbu5Nq5UvygTk/VzeCqfLz2Atj3dVII5QBKGZRZ0edzw== + +stylehacks@^5.1.1: + version "5.1.1" + resolved "https://registry.yarnpkg.com/stylehacks/-/stylehacks-5.1.1.tgz#7934a34eb59d7152149fa69d6e9e56f2fc34bcc9" + integrity sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw== + dependencies: + browserslist "^4.21.4" + postcss-selector-parser "^6.0.4" + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +supports-color@^7.1.0: + version "7.2.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" + integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== + dependencies: + has-flag "^4.0.0" + +supports-preserve-symlinks-flag@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" + integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== + +svg-parser@^2.0.4: + version "2.0.4" + resolved "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5" + integrity sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== + +svgo@^2.7.0: + version "2.8.0" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-2.8.0.tgz#4ff80cce6710dc2795f0c7c74101e6764cfccd24" + integrity sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^4.1.3" + css-tree "^1.1.3" + csso "^4.2.0" + picocolors "^1.0.0" + stable "^0.1.8" + +svgo@^3.0.2: + version "3.2.0" + resolved "https://registry.yarnpkg.com/svgo/-/svgo-3.2.0.tgz#7a5dff2938d8c6096e00295c2390e8e652fa805d" + integrity sha512-4PP6CMW/V7l/GmKRKzsLR8xxjdHTV4IMvhTnpuHwwBazSIlw5W/5SmPjN8Dwyt7lKbSJrRDgp4t9ph0HgChFBQ== + dependencies: + "@trysound/sax" "0.2.0" + commander "^7.2.0" + css-select "^5.1.0" + css-tree "^2.3.1" + css-what "^6.1.0" + csso "^5.0.5" + picocolors "^1.0.0" + +terser@^5.17.4: + version "5.29.2" + resolved "https://registry.yarnpkg.com/terser/-/terser-5.29.2.tgz#c17d573ce1da1b30f21a877bffd5655dd86fdb35" + integrity sha512-ZiGkhUBIM+7LwkNjXYJq8svgkd+QK3UUr0wJqY4MieaezBSAIPgbSPZyIx0idM6XWK5CMzSWa8MJIzmRcB8Caw== + dependencies: + "@jridgewell/source-map" "^0.3.3" + acorn "^8.8.2" + commander "^2.20.0" + source-map-support "~0.5.20" + +text-table@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" + integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== + +to-regex-range@^5.0.1: + version "5.0.1" + resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" + integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== + dependencies: + is-number "^7.0.0" + +ts-api-utils@^1.0.1: + version "1.3.0" + resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" + integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== + +tsconfig-paths@^3.15.0: + version "3.15.0" + resolved "https://registry.yarnpkg.com/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz#5299ec605e55b1abb23ec939ef15edaf483070d4" + integrity sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg== + dependencies: + "@types/json5" "^0.0.29" + json5 "^1.0.2" + minimist "^1.2.6" + strip-bom "^3.0.0" + +tslib@^2.0.3, tslib@^2.6.2: + version "2.6.2" + resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae" + integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q== + +type-check@^0.4.0, type-check@~0.4.0: + version "0.4.0" + resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" + integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== + dependencies: + prelude-ls "^1.2.1" + +type-fest@^0.20.2: + version "0.20.2" + resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" + integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== + +typed-array-buffer@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-buffer/-/typed-array-buffer-1.0.2.tgz#1867c5d83b20fcb5ccf32649e5e2fc7424474ff3" + integrity sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ== + dependencies: + call-bind "^1.0.7" + es-errors "^1.3.0" + is-typed-array "^1.1.13" + +typed-array-byte-length@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/typed-array-byte-length/-/typed-array-byte-length-1.0.1.tgz#d92972d3cff99a3fa2e765a28fcdc0f1d89dec67" + integrity sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-byte-offset@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/typed-array-byte-offset/-/typed-array-byte-offset-1.0.2.tgz#f9ec1acb9259f395093e4567eb3c28a580d02063" + integrity sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + +typed-array-length@^1.0.5: + version "1.0.6" + resolved "https://registry.yarnpkg.com/typed-array-length/-/typed-array-length-1.0.6.tgz#57155207c76e64a3457482dfdc1c9d1d3c4c73a3" + integrity sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g== + dependencies: + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-proto "^1.0.3" + is-typed-array "^1.1.13" + possible-typed-array-names "^1.0.0" + +typescript@^5.4.3: + version "5.4.3" + resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.3.tgz#5c6fedd4c87bee01cd7a528a30145521f8e0feff" + integrity sha512-KrPd3PKaCLr78MalgiwJnA25Nm8HAmdwN3mYUYZgG/wizIo9EainNVQI9/yDavtVFRN2h3k8uf3GLHuhDMgEHg== + +unbox-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/unbox-primitive/-/unbox-primitive-1.0.2.tgz#29032021057d5e6cdbd08c5129c226dff8ed6f9e" + integrity sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw== + dependencies: + call-bind "^1.0.2" + has-bigints "^1.0.2" + has-symbols "^1.0.3" + which-boxed-primitive "^1.0.2" + +update-browserslist-db@^1.0.13: + version "1.0.13" + resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" + integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== + dependencies: + escalade "^3.1.1" + picocolors "^1.0.0" + +uri-js@^4.2.2: + version "4.4.1" + resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" + integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== + dependencies: + punycode "^2.1.0" + +util-deprecate@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw== + +which-boxed-primitive@^1.0.2: + version "1.0.2" + resolved "https://registry.yarnpkg.com/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz#13757bc89b209b049fe5d86430e21cf40a89a8e6" + integrity sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg== + dependencies: + is-bigint "^1.0.1" + is-boolean-object "^1.1.0" + is-number-object "^1.0.4" + is-string "^1.0.5" + is-symbol "^1.0.3" + +which-typed-array@^1.1.14, which-typed-array@^1.1.15: + version "1.1.15" + resolved "https://registry.yarnpkg.com/which-typed-array/-/which-typed-array-1.1.15.tgz#264859e9b11a649b388bfaaf4f767df1f779b38d" + integrity sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA== + dependencies: + available-typed-arrays "^1.0.7" + call-bind "^1.0.7" + for-each "^0.3.3" + gopd "^1.0.1" + has-tostringtag "^1.0.2" + +which@^2.0.1: + version "2.0.2" + resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" + integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== + dependencies: + isexe "^2.0.0" + +"wrap-ansi-cjs@npm:wrap-ansi@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" + integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== + dependencies: + ansi-styles "^4.0.0" + string-width "^4.1.0" + strip-ansi "^6.0.0" + +wrap-ansi@^8.1.0: + version "8.1.0" + resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-8.1.0.tgz#56dc22368ee570face1b49819975d9b9a5ead214" + integrity sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ== + dependencies: + ansi-styles "^6.1.0" + string-width "^5.0.1" + strip-ansi "^7.0.1" + +wrappy@1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" + integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== + +yallist@^3.0.2: + version "3.1.1" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" + integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== + +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + +yaml@^1.10.2: + version "1.10.2" + resolved "https://registry.yarnpkg.com/yaml/-/yaml-1.10.2.tgz#2301c5ffbf12b467de8da2333a459e29e7920e4b" + integrity sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg== + +yocto-queue@^0.1.0: + version "0.1.0" + resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" + integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==